From 50adcbb302bda326baff434b2c5ffcbad51d247c Mon Sep 17 00:00:00 2001
From: CitadelStationBot
Date: Mon, 24 Jul 2017 16:45:14 -0500
Subject: [PATCH 001/154] DCS Continued
---
code/controllers/subsystem/garbage.dm | 8 +-
code/datums/components/README.md | 99 +++++++++++++++++++++++++
code/datums/components/component.dm | 44 ++++++-----
code/datums/components/component.dm.rej | 35 +++++++++
4 files changed, 168 insertions(+), 18 deletions(-)
create mode 100644 code/datums/components/README.md
create mode 100644 code/datums/components/component.dm.rej
diff --git a/code/controllers/subsystem/garbage.dm b/code/controllers/subsystem/garbage.dm
index 2cee9a192a..20672ea975 100644
--- a/code/controllers/subsystem/garbage.dm
+++ b/code/controllers/subsystem/garbage.dm
@@ -247,7 +247,13 @@ SUBSYSTEM_DEF(garbage)
if (timer.spent)
continue
qdel(timer)
- QDEL_LIST(datum_components)
+ var/list/dc = datum_components
+ for(var/I in dc)
+ var/datum/component/C = I
+ C._RemoveNoSignal()
+ qdel(C)
+ if(dc)
+ dc.Cut()
return QDEL_HINT_QUEUE
/datum/var/gc_destroyed //Time when this object was destroyed.
diff --git a/code/datums/components/README.md b/code/datums/components/README.md
new file mode 100644
index 0000000000..f92e618a7f
--- /dev/null
+++ b/code/datums/components/README.md
@@ -0,0 +1,99 @@
+# Datum Component System (DCS)
+
+## Concept
+
+Loosely adapted from /vg/. This is an entity component system for adding behaviours to datums when inheritance doesn't quite cut it. By using signals and events instead of direct inheritance, you can inject behaviours without hacky overloads. It requires a different method of thinking, but is not hard to use correctly. If a behaviour can have application across more than one thing. Make it generic, make it a component. Atom/mob/obj event? Give it a signal, and forward it's arguments with a `SendSignal()` call. Now every component that want's to can also know about this happening.
+
+### In the code
+
+#### Slippery things
+
+At the time of this writing, every object that is slippery overrides atom/Crossed does some checks, then slips the mob. Instead of all those Crossed overrides they could add a slippery component to all these objects. And have the checks in one proc that is run by the Crossed event
+
+#### Powercells
+
+A lot of objects have powercells. The `get_cell()` proc was added to give generic access to the cell var if it had one. This is just a specific use case of `GetComponent()`
+
+#### Radios
+
+The radio object as it is should not exist, given that more things use the _concept_ of radios rather than the object itself. The actual function of the radio can exist in a component which all the things that use it (Request consoles, actual radios, the SM shard) can add to themselves.
+
+#### Standos
+
+Stands have a lot of procs which mimic mob procs. Rather than inserting hooks for all these procs in overrides, the same can be accomplished with signals
+
+## API
+
+### Vars
+
+1. `/datum/var/list/datum_components` (private)
+ * Lazy list of all components a datum has (TODO: Make this a typecache with longer paths overwriting shorter ones maybe? It'd be weird)
+1. `/datum/component/var/enabled` (protected, boolean)
+ * If the component is enabled. If not, it will not react to signals
+ * TRUE by default
+1. `/datum/component/var/dupe_mode` (protected, enum)
+ * How multiple components of the exact same type are handled when added to the datum.
+ * `COMPONENT_DUPE_HIGHLANDER` (default): Old component will be deleted, new component will first have `/datum/component/proc/InheritComponent(datum/component/old, FALSE)` on it
+ * `COMPONENT_DUPE_ALLOWED`: The components will be treated as seperate, `GetComponent()` will return the first added
+ * `COMPONENT_DUPE_UNIQUE`: New component will be deleted, old component will first have `/datum/component/proc/InheritComponent(datum/component/new, TRUE)` on it
+1. `/datum/component/var/list/signal_procs` (private)
+ * Associated lazy list of signals -> callbacks that will be run when the parent datum recieves that signal
+1. `/datum/component/var/datum/parent` (protected, read-only)
+ * The datum this component belongs to
+
+### Procs
+
+1. `/datum/proc/GetComponent(component_type(type)) -> datum/component?` (public, final)
+ * Returns a reference to a component of component_type if it exists in the datum, null otherwise
+1. `/datum/proc/GetComponents(component_type(type)) -> list` (public, final)
+ * Returns a list of references to all components of component_type that exist in the datum
+1. `/datum/proc/GetExactComponent(component_type(type)) -> datum/component?` (public, final)
+ * Returns a reference to a component whose type MATCHES component_type if that component exists in the datum, null otherwise
+1. `GET_COMPONENT(varname, component_type)` OR `GET_COMPONENT_FROM(varname, component_type, src)`
+ * Shorthand for `var/component_type/varname = src.GetComponent(component_type)`
+1. `/datum/proc/AddComponent(component_type(type), ...) -> datum/component` (public, final)
+ * Creates an instance of `component_type` in the datum and passes `...` to it's `New()` call
+ * Sends the `COMSIG_COMPONENT_ADDED` signal to the datum
+ * All components a datum owns are deleted with the datum
+ * Returns the component that was created. Or the old component in a dupe situation where `COMPONENT_DUPE_UNIQUE` was set
+1. `/datum/proc/ComponentActivated(datum/component/C)` (abstract)
+ * Called on a component's `parent` after a signal recieved causes it to activate. `src` is the parameter
+ * Will only be called if a component's callback returns `TRUE`
+1. `/datum/proc/TakeComponent(datum/component/C)` (public, final)
+ * Properly transfers ownership of a component from one datum to another
+ * Singals `COMSIG_COMPONENT_REMOVING` on the parent
+ * Called on the datum you want to own the component with another datum's component
+1. `/datum/proc/SendSignal(signal, ...)` (public, final)
+ * Call to send a signal to the components of the target datum
+ * Extra arguments are to be specified in the signal definition
+1. `/datum/component/New(datum/parent, ...)` (protected, virtual)
+ * Forwarded the arguments from `AddComponent()`
+1. `/datum/component/Destroy()` (virtual)
+ * Sends the `COMSIG_COMPONENT_REMOVING` signal to the parent datum if the `parent` isn't being qdeleted
+ * Properly removes the component from `parent` and cleans up references
+1. `/datum/component/proc/InheritComponent(datum/component/C, i_am_original(boolean))` (abstract)
+ * Called on a component when a component of the same type was added to the same parent
+ * See `/datum/component/var/dupe_mode`
+ * `C`'s type will always be the same of the called component
+1. `/datum/component/proc/OnTransfer(datum/new_parent)` (abstract)
+ * Called before the new `parent` is assigned in `TakeComponent()`, after the remove signal, before the added signal
+ * Allows the component to react to ownership transfers
+1. `/datum/component/proc/_RemoveNoSignal()` (private, final)
+ * Internal, clears the parent var and removes the component from the parents component list
+1. `/datum/component/proc/RegisterSignal(signal(string), proc_ref(type), override(boolean))` (protected, final) (Consider removing for performance gainz)
+ * Makes a component listen for the specified `signal` on it's `parent` datum.
+ * When that signal is recieved `proc_ref` will be called on the component, along with associated arguments
+ * Example proc ref: `.proc/OnEvent`
+ * If a previous registration is overwritten by the call, a runtime occurs. Setting `override` to TRUE prevents this
+ * These callbacks run asyncronously
+ * Returning `TRUE` from these callbacks will trigger a `TRUE` return from the `SendSignal()` that initiated it
+1. `/datum/component/proc/ReceiveSignal(signal, ...)` (virtual)
+ * Called when a component recieves any signal and is enabled
+ * Default implementation looks if the signal is registered and runs the appropriate proc
+
+### See signals and their arguments in __DEFINES\components.dm
+
+## Examples
+ Material Containers: #29268 (Too many GetComponent calls, but not bad)
+ Slips: #00000 (PR DIS)
+ Powercells: (TODO)
\ No newline at end of file
diff --git a/code/datums/components/component.dm b/code/datums/components/component.dm
index b9212d2786..1bbd785d22 100644
--- a/code/datums/components/component.dm
+++ b/code/datums/components/component.dm
@@ -1,8 +1,8 @@
/datum/component
- var/enabled = TRUE // Enables or disables the components
- var/dupe_mode = COMPONENT_DUPE_HIGHLANDER // How components of the same type are handled in the same parent
- var/list/signal_procs // list of signals -> callbacks
- var/datum/parent // parent datum
+ var/enabled = TRUE
+ var/dupe_mode = COMPONENT_DUPE_HIGHLANDER
+ var/list/signal_procs
+ var/datum/parent
/datum/component/New(datum/P, ...)
var/dm = dupe_mode
@@ -11,26 +11,34 @@
if(old)
switch(dm)
if(COMPONENT_DUPE_HIGHLANDER)
- P.RemoveComponent(old)
- old = null //in case SendSignal() blocks
+ InheritComponent(old, FALSE)
+ qdel(old)
if(COMPONENT_DUPE_UNIQUE)
+ old.InheritComponent(src, TRUE)
qdel(src)
return
- P.SendSignal(COMSIG_COMPONENT_ADDED, list(src), FALSE)
+ P.SendSignal(COMSIG_COMPONENT_ADDED, src)
LAZYADD(P.datum_components, src)
parent = P
/datum/component/Destroy()
- RemoveNoSignal()
+ enabled = FALSE
+ var/datum/P = parent
+ if(P)
+ _RemoveNoSignal()
+ P.SendSignal(COMSIG_COMPONENT_REMOVING, src)
+ LAZYCLEARLIST(signal_procs)
return ..()
-/datum/component/proc/RemoveNoSignal()
+/datum/component/proc/_RemoveNoSignal()
var/datum/P = parent
if(P)
LAZYREMOVE(P.datum_components, src)
parent = null
/datum/component/proc/RegisterSignal(sig_type, proc_on_self, override = FALSE)
+ if(QDELETED(src))
+ return
var/list/procs = signal_procs
if(!procs)
procs = list()
@@ -79,19 +87,21 @@
if(istype(I, c_type))
. += I
-/datum/proc/AddComponents(list/new_types)
- for(var/new_type in new_types)
- AddComponent(new_type)
-
/datum/proc/AddComponent(new_type, ...)
var/nt = new_type
args[1] = src
var/datum/component/C = new nt(arglist(args))
return QDELING(C) ? GetComponent(new_type) : C
-/datum/proc/RemoveComponent(datum/component/C)
+/datum/proc/TakeComponent(datum/component/C)
if(!C)
return
- C.RemoveNoSignal()
- SendSignal(COMSIG_COMPONENT_REMOVING, list(C), FALSE)
- qdel(C)
+ var/datum/helicopter = C.parent
+ if(helicopter == src)
+ //wat
+ return
+ C._RemoveNoSignal()
+ helicopter.SendSignal(COMSIG_COMPONENT_REMOVING, C)
+ C.OnTransfer(src)
+ C.parent = src
+ SendSignal(COMSIG_COMPONENT_ADDED, C)
\ No newline at end of file
diff --git a/code/datums/components/component.dm.rej b/code/datums/components/component.dm.rej
new file mode 100644
index 0000000000..2116ae9d81
--- /dev/null
+++ b/code/datums/components/component.dm.rej
@@ -0,0 +1,35 @@
+diff a/code/datums/components/component.dm b/code/datums/components/component.dm (rejected hunks)
+@@ -47,12 +47,14 @@
+
+ procs[sig_type] = CALLBACK(src, proc_on_self)
+
+-/datum/component/proc/ReceiveSignal(sigtype, list/sig_args)
++/datum/component/proc/ReceiveSignal(sigtype, ...)
+ var/list/sps = signal_procs
+ var/datum/callback/CB = LAZYACCESS(sps, sigtype)
+ if(!CB)
+ return FALSE
+- return CB.InvokeAsync(arglist(sig_args))
++ var/list/arguments = args.Copy()
++ arguments.Cut(1, 2)
++ return CB.InvokeAsync(arglist(arguments))
+
+ /datum/component/proc/InheritComponent(datum/component/C, i_am_original)
+ return
+@@ -62,14 +64,14 @@
+
+ /datum/var/list/datum_components //list of /datum/component
+
+-/datum/proc/SendSignal(sigtype, list/sig_args)
++/datum/proc/SendSignal(sigtype, ...)
+ var/list/comps = datum_components
+ . = FALSE
+ for(var/I in comps)
+ var/datum/component/C = I
+ if(!C.enabled)
+ continue
+- if(C.ReceiveSignal(sigtype, sig_args))
++ if(C.ReceiveSignal(arglist(args)))
+ ComponentActivated(C)
+ . = TRUE
+
From 9b7a0c5d548dce14052068133060c3b6994d8b7a Mon Sep 17 00:00:00 2001
From: CitadelStationBot
Date: Wed, 26 Jul 2017 15:44:58 -0500
Subject: [PATCH 002/154] Tweaks the ash walker nest so that lava rivers won't
wreck them
---
.../lavaland_surface_ash_walker1.dmm | 309 ++++++++++--------
.../lavaland_surface_ash_walker1.dmm.rej | 307 +++++++++++++++++
2 files changed, 475 insertions(+), 141 deletions(-)
create mode 100644 _maps/RandomRuins/LavaRuins/lavaland_surface_ash_walker1.dmm.rej
diff --git a/_maps/RandomRuins/LavaRuins/lavaland_surface_ash_walker1.dmm b/_maps/RandomRuins/LavaRuins/lavaland_surface_ash_walker1.dmm
index 7537f91f09..0fa2f0795c 100644
--- a/_maps/RandomRuins/LavaRuins/lavaland_surface_ash_walker1.dmm
+++ b/_maps/RandomRuins/LavaRuins/lavaland_surface_ash_walker1.dmm
@@ -6,13 +6,13 @@
/obj/structure/stone_tile/surrounding_tile{
dir = 4
},
-/turf/closed/mineral/volcanic/lava_land_surface,
+/turf/closed/mineral/volcanic,
/area/lavaland/surface/outdoors)
"ac" = (
/obj/structure/stone_tile/block{
dir = 1
},
-/turf/closed/mineral/volcanic/lava_land_surface,
+/turf/closed/mineral/volcanic,
/area/lavaland/surface/outdoors)
"ad" = (
/obj/structure/stone_tile/block{
@@ -21,13 +21,13 @@
/obj/structure/stone_tile/cracked{
dir = 8
},
-/turf/closed/mineral/volcanic/lava_land_surface,
+/turf/closed/mineral/volcanic,
/area/lavaland/surface/outdoors)
"ae" = (
/obj/structure/stone_tile/block/cracked{
dir = 1
},
-/turf/closed/mineral/volcanic/lava_land_surface,
+/turf/closed/mineral/volcanic,
/area/lavaland/surface/outdoors)
"af" = (
/obj/structure/stone_tile/block{
@@ -36,26 +36,26 @@
/obj/structure/stone_tile{
dir = 8
},
-/turf/closed/mineral/volcanic/lava_land_surface,
+/turf/closed/mineral/volcanic,
/area/lavaland/surface/outdoors)
"ag" = (
/obj/structure/stone_tile/surrounding_tile/cracked{
dir = 1
},
-/turf/closed/mineral/volcanic/lava_land_surface,
+/turf/closed/mineral/volcanic,
/area/lavaland/surface/outdoors)
"ah" = (
-/turf/closed/mineral/volcanic/lava_land_surface,
+/turf/closed/mineral/volcanic,
/area/lavaland/surface/outdoors)
"ai" = (
/obj/structure/stone_tile/surrounding_tile/cracked{
dir = 4
},
-/turf/closed/mineral/volcanic/lava_land_surface,
+/turf/closed/mineral/volcanic,
/area/lavaland/surface/outdoors)
"aj" = (
/obj/structure/stone_tile/slab,
-/turf/closed/mineral/volcanic/lava_land_surface,
+/turf/closed/mineral/volcanic,
/area/lavaland/surface/outdoors)
"ak" = (
/turf/closed/indestructible/riveted/boss,
@@ -64,7 +64,7 @@
/obj/structure/stone_tile/surrounding_tile{
dir = 1
},
-/turf/closed/mineral/volcanic/lava_land_surface,
+/turf/closed/mineral/volcanic,
/area/lavaland/surface/outdoors)
"am" = (
/obj/structure/stone_tile{
@@ -95,7 +95,10 @@
/obj/structure/stone_tile/block/cracked{
dir = 8
},
-/turf/closed/mineral/volcanic/lava_land_surface,
+/obj/structure/stone_tile/surrounding_tile/cracked{
+ dir = 1
+ },
+/turf/closed/mineral/volcanic,
/area/lavaland/surface/outdoors)
"ar" = (
/obj/structure/stone_tile/block/cracked{
@@ -104,7 +107,7 @@
/obj/structure/stone_tile{
dir = 4
},
-/turf/closed/mineral/volcanic/lava_land_surface,
+/turf/closed/mineral/volcanic,
/area/lavaland/surface/outdoors)
"as" = (
/turf/closed/wall/mineral/wood,
@@ -113,10 +116,10 @@
/obj/structure/stone_tile/block{
dir = 8
},
-/obj/structure/stone_tile{
- dir = 1
+/obj/structure/stone_tile/block{
+ dir = 4
},
-/turf/closed/mineral/volcanic/lava_land_surface,
+/turf/closed/mineral/volcanic,
/area/lavaland/surface/outdoors)
"au" = (
/obj/structure/stone_tile,
@@ -181,7 +184,7 @@
/obj/structure/stone_tile/block{
dir = 4
},
-/turf/closed/mineral/volcanic/lava_land_surface,
+/turf/closed/mineral/volcanic,
/area/lavaland/surface/outdoors)
"aA" = (
/obj/structure/stone_tile/cracked{
@@ -222,10 +225,7 @@
/obj/structure/stone_tile/block{
dir = 8
},
-/obj/structure/stone_tile/cracked{
- dir = 1
- },
-/turf/closed/mineral/volcanic/lava_land_surface,
+/turf/closed/mineral/volcanic,
/area/lavaland/surface/outdoors)
"aG" = (
/obj/structure/stone_tile/block/cracked{
@@ -297,7 +297,10 @@
/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
/area/ruin/unpowered/ash_walkers)
"aO" = (
-/obj/item/weapon/storage/box/rxglasses,
+/obj/structure/stone_tile/surrounding/cracked{
+ icon_state = "cracked_surrounding1";
+ dir = 1
+ },
/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
/area/ruin/unpowered/ash_walkers)
"aP" = (
@@ -316,8 +319,10 @@
/obj/structure/stone_tile/block{
dir = 8
},
-/obj/structure/stone_tile,
-/turf/closed/mineral/volcanic/lava_land_surface,
+/obj/structure/stone_tile/block/cracked{
+ dir = 4
+ },
+/turf/closed/mineral/volcanic,
/area/lavaland/surface/outdoors)
"aS" = (
/obj/structure/stone_tile/block{
@@ -465,13 +470,13 @@
/obj/structure/stone_tile{
dir = 8
},
-/turf/closed/mineral/volcanic/lava_land_surface,
+/turf/closed/mineral/volcanic,
/area/lavaland/surface/outdoors)
"bi" = (
-/obj/structure/stone_tile/cracked{
- dir = 4
+/obj/structure/stone_tile/block/cracked{
+ dir = 8
},
-/turf/closed/mineral/volcanic/lava_land_surface,
+/turf/closed/mineral/volcanic,
/area/lavaland/surface/outdoors)
"bj" = (
/obj/structure/stone_tile/block/cracked{
@@ -677,7 +682,7 @@
/obj/structure/stone_tile/block/cracked{
dir = 4
},
-/turf/closed/mineral/volcanic/lava_land_surface,
+/turf/closed/mineral/volcanic,
/area/lavaland/surface/outdoors)
"bD" = (
/obj/structure/stone_tile/block{
@@ -713,11 +718,11 @@
/area/ruin/unpowered/ash_walkers)
"bI" = (
/obj/structure/stone_tile/slab/cracked,
-/turf/closed/mineral/volcanic/lava_land_surface,
+/turf/closed/mineral/volcanic,
/area/lavaland/surface/outdoors)
"bJ" = (
/obj/structure/stone_tile/surrounding_tile,
-/turf/closed/mineral/volcanic/lava_land_surface,
+/turf/closed/mineral/volcanic,
/area/lavaland/surface/outdoors)
"bK" = (
/obj/structure/stone_tile{
@@ -908,10 +913,16 @@
"cj" = (
/obj/effect/mob_spawn/human/corpse/damaged,
/obj/effect/decal/cleanable/blood,
+/obj/structure/stone_tile/cracked{
+ dir = 1
+ },
/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
/area/lavaland/surface/outdoors)
"ck" = (
/obj/item/weapon/twohanded/spear,
+/obj/structure/stone_tile{
+ dir = 4
+ },
/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
/area/lavaland/surface/outdoors)
"cl" = (
@@ -931,19 +942,25 @@
/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
/area/lavaland/surface/outdoors)
"cn" = (
-/obj/structure/bonfire/dense,
+/obj/structure/stone_tile/block,
+/obj/structure/stone_tile/block/cracked{
+ dir = 1
+ },
/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
/area/lavaland/surface/outdoors)
"co" = (
-/obj/structure/stone_tile,
-/obj/structure/stone_tile/cracked{
+/obj/structure/stone_tile/block/cracked,
+/obj/structure/stone_tile/block{
dir = 1
},
/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
/area/lavaland/surface/outdoors)
"cp" = (
/obj/structure/stone_tile/cracked,
-/turf/closed/mineral/volcanic/lava_land_surface,
+/obj/structure/stone_tile/block{
+ dir = 1
+ },
+/turf/closed/mineral/volcanic,
/area/lavaland/surface/outdoors)
"cq" = (
/obj/structure/stone_tile/cracked{
@@ -1021,6 +1038,10 @@
/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
/area/ruin/unpowered/ash_walkers)
"cA" = (
+/obj/structure/stone_tile/slab/cracked{
+ icon_state = "cracked_slab1";
+ dir = 4
+ },
/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
/area/ruin/unpowered/ash_walkers)
"cB" = (
@@ -1070,18 +1091,26 @@
/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
/area/lavaland/surface/outdoors)
"cI" = (
+/obj/structure/stone_tile/cracked{
+ dir = 4
+ },
/obj/structure/stone_tile/cracked{
dir = 1
},
-/obj/effect/decal/cleanable/blood,
/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
/area/lavaland/surface/outdoors)
"cJ" = (
/obj/item/weapon/shovel,
+/obj/structure/stone_tile/cracked{
+ dir = 8
+ },
/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
/area/lavaland/surface/outdoors)
"cK" = (
-/obj/item/weapon/pickaxe,
+/obj/machinery/hydroponics/soil,
+/obj/structure/stone_tile/block/cracked{
+ dir = 1
+ },
/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
/area/lavaland/surface/outdoors)
"cL" = (
@@ -1132,21 +1161,19 @@
/obj/structure/stone_tile/surrounding_tile/cracked{
dir = 8
},
-/turf/closed/mineral/volcanic/lava_land_surface,
+/turf/closed/mineral/volcanic,
/area/lavaland/surface/outdoors)
"cP" = (
/obj/structure/stone_tile/block,
-/turf/closed/mineral/volcanic/lava_land_surface,
+/turf/closed/mineral/volcanic,
/area/lavaland/surface/outdoors)
"cQ" = (
-/obj/structure/stone_tile{
- dir = 8
- },
-/turf/closed/mineral/volcanic/lava_land_surface,
+/obj/structure/stone_tile/block/cracked,
+/turf/closed/mineral/volcanic,
/area/lavaland/surface/outdoors)
"cR" = (
/obj/structure/stone_tile/surrounding_tile/cracked,
-/turf/closed/mineral/volcanic/lava_land_surface,
+/turf/closed/mineral/volcanic,
/area/lavaland/surface/outdoors)
"cS" = (
/obj/effect/decal/cleanable/blood,
@@ -1190,15 +1217,15 @@ aa
(2,1,1) = {"
aa
ah
+ab
+cU
+cV
ah
ah
-ah
-aL
-ah
bi
-bu
-am
ah
+bi
+da
ah
ah
ah
@@ -1213,7 +1240,6 @@ aa
aa
aa
ah
-am
as
as
as
@@ -1221,12 +1247,13 @@ as
ak
as
as
+db
+ah
+ah
+bN
+bY
+dp
ah
-cp
-bX
-bL
-bM
-cC
ah
ah
aa
@@ -1235,29 +1262,28 @@ aa
aa
aa
ah
-an
ak
aA
aM
-aX
+cY
bj
bv
ak
-bK
-bM
-bM
+db
bN
-bM
-bY
-cG
+cg
+cl
+cq
+cq
+dv
+ah
ah
aa
"}
(5,1,1) = {"
aa
aa
-ah
-ah
+ac
as
aB
aN
@@ -1265,56 +1291,57 @@ aY
bk
bw
ak
-bX
-cS
-bM
-bM
-cw
-bM
+cb
+bZ
+ch
+cm
+cr
+bY
bL
+cb
ah
ah
"}
(6,1,1) = {"
aa
aa
-ah
-ao
+cT
ak
aC
+cX
aO
-aM
bl
bx
bD
+bS
+de
+bV
+dg
+cs
+cy
bY
-cg
-bM
-bO
-cx
-cw
-cH
+cq
ah
ah
"}
(7,1,1) = {"
aa
aa
-ah
-ap
+ae
as
-aD
+cW
aP
aZ
bm
by
ak
+bV
+cb
+ci
+bA
+ct
bN
-cg
-cl
-cq
-bM
-cw
+bL
cI
ah
ah
@@ -1322,8 +1349,7 @@ ah
(8,1,1) = {"
aa
aa
-ah
-ah
+ae
as
aE
aQ
@@ -1331,12 +1357,13 @@ ba
bn
bz
ak
+cb
+df
+bX
+dh
+bO
+dq
bZ
-ch
-cm
-cr
-bY
-bM
cJ
ah
ah
@@ -1345,7 +1372,6 @@ ah
aa
ah
ah
-ah
as
ak
as
@@ -1353,14 +1379,15 @@ as
as
ak
ak
-ca
-bV
+cg
+cb
+cg
cn
-cs
-cy
-cq
-bM
-ah
+bL
+dr
+dw
+dA
+dD
ah
"}
(10,1,1) = {"
@@ -1368,21 +1395,21 @@ aa
ai
aq
at
-aF
+cU
+aR
aR
-bb
bo
bA
-bE
-bO
+cZ
+dd
+cg
cb
-ci
-bA
-ct
-bN
-bM
+di
+dn
+ds
+dx
cK
-ah
+dE
ah
"}
(11,1,1) = {"
@@ -1397,14 +1424,14 @@ ak
ak
bF
bE
-cc
-bX
-co
-bO
-bM
-cg
-ah
-ah
+cb
+bL
+dh
+cb
+dt
+dy
+dB
+dC
aa
"}
(12,1,1) = {"
@@ -1421,11 +1448,11 @@ ak
bP
bL
bX
-bM
-bY
-bM
-ah
-ah
+dh
+do
+du
+dz
+dC
ah
aa
"}
@@ -1443,7 +1470,7 @@ ak
bQ
bM
cj
-bL
+dj
ah
ah
ah
@@ -1464,14 +1491,14 @@ ak
bG
bR
cd
-bM
-bM
+cg
+dk
cu
ah
-ah
-aq
-ah
-cO
+bi
+bi
+bi
+da
"}
(15,1,1) = {"
ac
@@ -1486,8 +1513,8 @@ bB
bH
bS
ce
-bM
-bN
+dn
+dl
ak
ak
as
@@ -1508,14 +1535,14 @@ ak
bG
bT
cd
-bM
-bY
+bX
+dj
as
cz
cD
cL
as
-cp
+ah
"}
(17,1,1) = {"
af
@@ -1551,7 +1578,7 @@ ak
ak
ak
bV
-bM
+bX
bN
ah
as
@@ -1559,7 +1586,7 @@ cB
cF
cN
ak
-cP
+db
"}
(19,1,1) = {"
ag
@@ -1599,9 +1626,9 @@ ah
ah
al
ah
-an
+ah
bC
-cp
+ah
ah
cR
"}
diff --git a/_maps/RandomRuins/LavaRuins/lavaland_surface_ash_walker1.dmm.rej b/_maps/RandomRuins/LavaRuins/lavaland_surface_ash_walker1.dmm.rej
new file mode 100644
index 0000000000..4fe35ae3e9
--- /dev/null
+++ b/_maps/RandomRuins/LavaRuins/lavaland_surface_ash_walker1.dmm.rej
@@ -0,0 +1,307 @@
+diff a/_maps/RandomRuins/LavaRuins/lavaland_surface_ash_walker1.dmm b/_maps/RandomRuins/LavaRuins/lavaland_surface_ash_walker1.dmm (rejected hunks)
+@@ -1161,6 +1188,293 @@
+ },
+ /turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+ /area/lavaland/surface/outdoors)
++"cT" = (
++/obj/structure/stone_tile,
++/obj/structure/stone_tile/block{
++ dir = 1
++ },
++/turf/closed/mineral/volcanic,
++/area/lavaland/surface/outdoors)
++"cU" = (
++/obj/structure/stone_tile/block{
++ dir = 8
++ },
++/turf/closed/mineral/volcanic,
++/area/lavaland/surface/outdoors)
++"cV" = (
++/obj/structure/stone_tile/cracked,
++/obj/structure/stone_tile/block{
++ dir = 8
++ },
++/turf/closed/mineral/volcanic,
++/area/lavaland/surface/outdoors)
++"cW" = (
++/obj/structure/table/optable,
++/obj/structure/stone_tile{
++ dir = 1
++ },
++/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
++/area/ruin/unpowered/ash_walkers)
++"cX" = (
++/obj/item/weapon/storage/box/rxglasses,
++/obj/structure/stone_tile{
++ dir = 1
++ },
++/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
++/area/ruin/unpowered/ash_walkers)
++"cY" = (
++/obj/item/seeds/glowshroom,
++/obj/item/seeds/glowshroom,
++/obj/structure/stone_tile/block{
++ dir = 4
++ },
++/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
++/area/ruin/unpowered/ash_walkers)
++"cZ" = (
++/obj/structure/stone_tile/surrounding_tile{
++ dir = 8
++ },
++/obj/structure/stone_tile/block{
++ dir = 4
++ },
++/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
++/area/lavaland/surface/outdoors)
++"da" = (
++/obj/structure/stone_tile/surrounding_tile/cracked{
++ dir = 8
++ },
++/turf/closed/mineral/volcanic,
++/area/lavaland/surface/outdoors)
++"db" = (
++/obj/structure/stone_tile/block,
++/turf/closed/mineral/volcanic,
++/area/lavaland/surface/outdoors)
++"dc" = (
++/obj/structure/stone_tile/block,
++/turf/closed/mineral/volcanic,
++/area/lavaland/surface/outdoors)
++"dd" = (
++/obj/structure/stone_tile/surrounding_tile/cracked,
++/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
++/area/lavaland/surface/outdoors)
++"de" = (
++/obj/structure/stone_tile/block/cracked{
++ dir = 4
++ },
++/obj/structure/stone_tile/block{
++ dir = 8
++ },
++/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
++/area/lavaland/surface/outdoors)
++"df" = (
++/obj/effect/decal/cleanable/blood,
++/obj/structure/stone_tile/cracked{
++ dir = 8
++ },
++/obj/structure/stone_tile/cracked{
++ dir = 4
++ },
++/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
++/area/lavaland/surface/outdoors)
++"dg" = (
++/obj/structure/bonfire/dense,
++/obj/structure/stone_tile/center,
++/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
++/area/lavaland/surface/outdoors)
++"dh" = (
++/obj/structure/stone_tile/block/cracked,
++/obj/structure/stone_tile/block{
++ dir = 1
++ },
++/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
++/area/lavaland/surface/outdoors)
++"di" = (
++/obj/effect/decal/cleanable/blood,
++/obj/structure/stone_tile/block,
++/obj/structure/stone_tile/cracked{
++ dir = 4
++ },
++/obj/structure/stone_tile/cracked{
++ dir = 1
++ },
++/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
++/area/lavaland/surface/outdoors)
++"dj" = (
++/obj/structure/stone_tile/block,
++/obj/structure/stone_tile/block{
++ dir = 1
++ },
++/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
++/area/lavaland/surface/outdoors)
++"dk" = (
++/obj/structure/stone_tile/block/cracked{
++ dir = 1
++ },
++/obj/structure/stone_tile/block,
++/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
++/area/lavaland/surface/outdoors)
++"dl" = (
++/obj/structure/stone_tile/block/cracked{
++ dir = 1
++ },
++/obj/structure/stone_tile/cracked,
++/obj/structure/stone_tile/cracked{
++ dir = 8
++ },
++/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
++/area/lavaland/surface/outdoors)
++"dm" = (
++/obj/structure/stone_tile/block,
++/obj/structure/stone_tile/block{
++ dir = 1
++ },
++/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
++/area/lavaland/surface/outdoors)
++"dn" = (
++/obj/structure/stone_tile/block{
++ dir = 4
++ },
++/obj/structure/stone_tile/block/cracked{
++ dir = 8
++ },
++/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
++/area/lavaland/surface/outdoors)
++"do" = (
++/obj/structure/stone_tile{
++ dir = 8
++ },
++/obj/structure/reagent_dispensers/watertank,
++/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
++/area/lavaland/surface/outdoors)
++"dp" = (
++/obj/item/weapon/pickaxe,
++/obj/structure/stone_tile/cracked{
++ dir = 1
++ },
++/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
++/area/lavaland/surface/outdoors)
++"dq" = (
++/obj/item/stack/sheet/mineral/wood,
++/obj/structure/stone_tile{
++ dir = 4
++ },
++/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
++/area/lavaland/surface/outdoors)
++"dr" = (
++/obj/structure/stone_tile/surrounding_tile/cracked,
++/obj/structure/stone_tile/surrounding_tile/cracked{
++ dir = 1
++ },
++/obj/structure/stone_tile/surrounding_tile{
++ dir = 8
++ },
++/obj/structure/stone_tile/center,
++/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
++/area/lavaland/surface/outdoors)
++"ds" = (
++/obj/structure/stone_tile/block,
++/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
++/area/lavaland/surface/outdoors)
++"dt" = (
++/obj/structure/stone_tile/surrounding_tile/cracked{
++ dir = 4
++ },
++/obj/structure/stone_tile/surrounding_tile/cracked,
++/obj/structure/stone_tile/surrounding_tile{
++ dir = 8
++ },
++/obj/structure/stone_tile/center,
++/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
++/area/lavaland/surface/outdoors)
++"du" = (
++/obj/structure/stone_tile/cracked{
++ dir = 1
++ },
++/turf/closed/mineral/volcanic,
++/area/lavaland/surface/outdoors)
++"dv" = (
++/obj/structure/stone_tile/cracked{
++ dir = 8
++ },
++/obj/effect/mob_spawn/human/corpse/damaged,
++/obj/effect/decal/cleanable/blood,
++/obj/structure/stone_tile/cracked{
++ dir = 1
++ },
++/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
++/area/lavaland/surface/outdoors)
++"dw" = (
++/obj/item/weapon/reagent_containers/glass/bucket,
++/obj/structure/stone_tile/block/cracked{
++ dir = 4
++ },
++/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
++/area/lavaland/surface/outdoors)
++"dx" = (
++/obj/item/device/flashlight/lantern,
++/obj/structure/stone_tile/center,
++/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
++/area/lavaland/surface/outdoors)
++"dy" = (
++/obj/machinery/hydroponics/soil,
++/obj/structure/stone_tile/block{
++ dir = 8
++ },
++/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
++/area/lavaland/surface/outdoors)
++"dz" = (
++/obj/structure/stone_tile/cracked{
++ dir = 1
++ },
++/obj/structure/stone_tile/cracked,
++/turf/closed/mineral/volcanic,
++/area/lavaland/surface/outdoors)
++"dA" = (
++/obj/machinery/hydroponics/soil,
++/obj/structure/stone_tile/surrounding_tile/cracked{
++ dir = 1
++ },
++/obj/structure/stone_tile/surrounding_tile,
++/obj/structure/stone_tile/surrounding_tile{
++ dir = 4
++ },
++/obj/structure/stone_tile/center,
++/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
++/area/lavaland/surface/outdoors)
++"dB" = (
++/obj/structure/stone_tile/surrounding_tile/cracked{
++ dir = 4
++ },
++/obj/structure/stone_tile/surrounding_tile/cracked{
++ dir = 1
++ },
++/obj/structure/stone_tile/surrounding_tile/cracked{
++ dir = 8
++ },
++/obj/structure/stone_tile/center/cracked,
++/turf/closed/mineral/volcanic,
++/area/lavaland/surface/outdoors)
++"dC" = (
++/obj/structure/stone_tile,
++/turf/closed/mineral/volcanic,
++/area/lavaland/surface/outdoors)
++"dD" = (
++/obj/structure/stone_tile/cracked{
++ dir = 8
++ },
++/turf/closed/mineral/volcanic,
++/area/lavaland/surface/outdoors)
++"dE" = (
++/obj/structure/stone_tile,
++/obj/structure/stone_tile/cracked{
++ dir = 8
++ },
++/turf/closed/mineral/volcanic,
++/area/lavaland/surface/outdoors)
++"dF" = (
++/obj/structure/stone_tile,
++/turf/closed/mineral/volcanic,
++/area/lavaland/surface/outdoors)
+
+ (1,1,1) = {"
+ aa
+@@ -1526,9 +1840,9 @@ bt
+ ak
+ ak
+ bU
+-bM
++cg
+ ck
+-cb
++bS
+ cv
+ cA
+ cE
From 39099f1bc9e09fad355f5746da0b1b3a977ca857 Mon Sep 17 00:00:00 2001
From: CitadelStationBot
Date: Sat, 29 Jul 2017 19:44:14 -0500
Subject: [PATCH 003/154] Stunbatons now properly appear on security belts when
active
---
icons/obj/clothing/belt_overlays.dmi | Bin 1278 -> 1279 bytes
1 file changed, 0 insertions(+), 0 deletions(-)
diff --git a/icons/obj/clothing/belt_overlays.dmi b/icons/obj/clothing/belt_overlays.dmi
index 07765f7d79c4965a70deb2753a943abe3f8cb608..bbd4df9bb00e86a632ed171988bcad57233e7306 100644
GIT binary patch
delta 1200
zcmV;h1W)_^3I7R@7Yd*V0{{R3yb+flks&4$Ut(}WNmoQfM46eH)sX-f9V?MyDt~Tn
zZpD5S>zg0R2?oiF1``nxn*adf3k92J0OFnnCL$ss4gf1ACOsSke*ge~RRAk1D;yjg
zM@L6(HxF7`T7OX$aBy(3izO~DE>%=iW@ctQ90Y3s0GR*)x&;M190oib1(IeOaBpuo
zAP+Yp5<49S9v&Vy7XYE5C-Cq%iGPVeQc_ZYfB;lfRLICDCMG67KR>|0z$;ge#sB~S
z0d!JMQvg8b*k%9#0S0kCq_-hYW_vA(;n
zt7tWww0L}|D}%N({Iv)SjHz6ldI+Wk*DdNwTMB8fsjCygfKzQehgbjMHS1OLv}$g0
z;L)|f-u)&2CM77g7n~tDudwg)f+CEXQg52WN`s(h32rZm3FbMhBLVk!7Cx3gOE@(=Zr@(-P-UK^@9`
zXS(sWj$xghRK=pMPQ>~De~w|CBOj#Cljd309=NZ5yjXIbB!iJNrGEeb008hmfoCrz
z2v@v%F_i>rZU3`DNbixlVgPv30*2=nYrAcp*i*Kxwh5F9jd-h8h1k4IK
z__ftF>Lq%8{eHazA3SW?pFtm6%mr>ddR*d7;$a0FoAeoMH=k4+s5Z%$=#8h(p0i>9
zCTKDN4xV`zEB)dnAAcqZDC5Nhub2R#7gPJda4Yoc#dN}sS1%^)Fe@bVa=7uO9smFU
z004mN2Y2ycbusbUJQQ!t!td;=-JNn>mjQcB;C|JCeI_ufI&cvy
zI51~$K==c51`o=0T?Q=T3=W3skPI~5HBfbh{+yl(Ah+0f*MBYU@AXL^?MD`)m;h)0
zmKmG#G2<@+hD;#gmlN1x0tx?)8JqJX#?Luy4W0daW^B$UjK2s_Od#X^!_8lH9{>OV
z0B#0j&)(+02Xg!m^bArT#lphz5fdQvQJj`;T4=!dBNI5PdIdlE4wRljHn4Du?Y^Vu
zJ1{L=LETk0SAQ%O25PIXiuyi-@)h(RSab$!vVz5L5*@2}8E5b_7kFG?Y7_XSNX1r{
zRN^gW0}Fo-#v{u>at5i7vb1QAM~TfXnwj8)nnCKL>^S>+wX$5nlOu8yr9R5C>{~&g
z-9_n`-XgJ2)9*#fst*7F001|TiO}bk^Zb}jf4cZn^M6oqJ~NLEX8!5)mxFJgo{H+TO03g8q8~^|S005{Fe*uWQXRd0aI*|YX
O002ovP6b4+LSTY-Ya40+
delta 1198
zcmV;f1X26{3H}L?7Ycv~0{{R3ySuwbI~@nWz`!>b0HJ@OC-Cq%iHSgffB?wICrh*4XaE2J
z0d!JMQvg8b*k%9#0QGuQSad{Xb7OL8aCB*JZU6vyoRyP7Zo?oDMc3vODA`6;-9+lD
zn<`P2MRNsfY$gU3Lp6+xdi#*nsaGv{$DsGn=Ofng_3(B)$^H9Ld?5wnoqUnIheuIG
zqga2ZVf!R1ji%T9GXw_4v|ODn1l@w`SE5peLfWfEbtV{aT5HeY(_g)Mx2c~u^(+S-
zT?_2pU-C?Lgi(=6@s_ZSMo^0cH-6wEp(O|*Yjh)XYPKQF$GNlLXswUMcwrFov4wnz
z6W3UvK3~Y4F1p^tmgS9vuG58BGoUgZ*iwJIEW$8aHtc==*k7{r?PlSh=GO9X+TT9s
z1w}3x=G^a}SO5S5yGcYrRCt{2m}`I1FcgQ=E+RwSCdzbpzkySBDPyI()H$h_Uq$`?
z-^S=(C~bDm2_YoY^YmT+P4jS)LODV(48t%CQz!B*fDpwiz7=4+2uex6Hj0e?Jye;KU9f*TvRJqxyB
z!8><5^gXCsV%HViym#N=A<VSBw4hUM0Pb-M@MlKlah@AnD@9v4cT_Be&
zL77G`xW5cRNoqA~_n=Gys-RYoQo*6xgF_%cP2VwHnSY$2HJC-_LA1gvr;NSH>z?jKF-F3
zS(M;W-HVUxV%KS)w4$FU&v}V{nIR%Gcc|`!}E@63+<_5FP0V?aD8RP?EUyV@`g8O=Db9;ev!{9{$dp)K5zzMM
z=y_5U#b=`#O~LweSf1x!7OBH948t%CgHsZ(`#PO|bD3X8p$-b_{?qAqclo7c1x@fb
zKOE-_bEWz96uQhACQzuq#NNoVz!l51EW=hTsjoA>2)ld?!!XYH3E2c*RYp+!%m4rY
M07*qoM6N<$f}nsLQUCw|
From 29f8f8eb451a4bf16dade8f2162ca120c390d286 Mon Sep 17 00:00:00 2001
From: LetterJay
Date: Mon, 31 Jul 2017 23:36:49 -0500
Subject: [PATCH 004/154] Update component.dm
---
code/datums/components/component.dm | 34 +++++++++++++++++++----------
1 file changed, 23 insertions(+), 11 deletions(-)
diff --git a/code/datums/components/component.dm b/code/datums/components/component.dm
index 1bbd785d22..6af3039217 100644
--- a/code/datums/components/component.dm
+++ b/code/datums/components/component.dm
@@ -51,24 +51,36 @@
procs[sig_type] = CALLBACK(src, proc_on_self)
+/datum/component/proc/ReceiveSignal(sigtype, ...)
+ var/list/sps = signal_procs
+ var/datum/callback/CB = LAZYACCESS(sps, sigtype)
+ if(!CB)
+ return FALSE
+ var/list/arguments = args.Copy()
+ arguments.Cut(1, 2)
+ return CB.InvokeAsync(arglist(arguments))
+
+/datum/component/proc/InheritComponent(datum/component/C, i_am_original)
+ return
+
+/datum/component/proc/OnTransfer(datum/new_parent)
+ return
+
/datum/var/list/datum_components //list of /datum/component
-// Send a signal to all other components in the container.
-/datum/proc/SendSignal(sigtype, list/sig_args, async = FALSE)
+/datum/proc/SendSignal(sigtype, ...)
var/list/comps = datum_components
. = FALSE
for(var/I in comps)
var/datum/component/C = I
if(!C.enabled)
continue
- var/list/sps = C.signal_procs
- var/datum/callback/CB = LAZYACCESS(sps, sigtype)
- if(!CB)
- continue
- if(!async)
- . |= CB.Invoke(sig_args)
- else
- . |= CB.InvokeAsync(sig_args)
+ if(C.ReceiveSignal(arglist(args)))
+ ComponentActivated(C)
+ . = TRUE
+
+/datum/proc/ComponentActivated(datum/component/C)
+ return
/datum/proc/GetComponent(c_type)
for(var/I in datum_components)
@@ -104,4 +116,4 @@
helicopter.SendSignal(COMSIG_COMPONENT_REMOVING, C)
C.OnTransfer(src)
C.parent = src
- SendSignal(COMSIG_COMPONENT_ADDED, C)
\ No newline at end of file
+ SendSignal(COMSIG_COMPONENT_ADDED, C)
From cccfeb479e23e674d39f61997f05fa93168f63ed Mon Sep 17 00:00:00 2001
From: LetterJay
Date: Mon, 31 Jul 2017 23:38:15 -0500
Subject: [PATCH 005/154] Update lavaland_surface_ash_walker1.dmm
---
.../lavaland_surface_ash_walker1.dmm | 304 +++++++++++++++++-
1 file changed, 294 insertions(+), 10 deletions(-)
diff --git a/_maps/RandomRuins/LavaRuins/lavaland_surface_ash_walker1.dmm b/_maps/RandomRuins/LavaRuins/lavaland_surface_ash_walker1.dmm
index 0fa2f0795c..aed9b30686 100644
--- a/_maps/RandomRuins/LavaRuins/lavaland_surface_ash_walker1.dmm
+++ b/_maps/RandomRuins/LavaRuins/lavaland_surface_ash_walker1.dmm
@@ -1,4 +1,4 @@
-//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
+//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
"aa" = (
/turf/template_noop,
/area/template_noop)
@@ -1069,6 +1069,11 @@
/obj/item/device/flashlight/lantern,
/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
/area/ruin/unpowered/ash_walkers)
+"cE" = (
+/obj/structure/stone_tile/surrounding/cracked,
+/obj/effect/baseturf_helper,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/ruin/unpowered/ash_walkers)
"cF" = (
/obj/structure/stone_tile/block{
dir = 8
@@ -1183,14 +1188,293 @@
},
/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
/area/lavaland/surface/outdoors)
+"cT" = (
+/obj/structure/stone_tile,
+/obj/structure/stone_tile/block{
+ dir = 1
+ },
+/turf/closed/mineral/volcanic,
+/area/lavaland/surface/outdoors)
"cU" = (
-/obj/effect/baseturf_helper,
-/turf/closed/indestructible/riveted/boss,
-/area/ruin/unpowered/ash_walkers)
-"kB" = (
-/obj/structure/stone_tile/surrounding/cracked,
+/obj/structure/stone_tile/block{
+ dir = 8
+ },
+/turf/closed/mineral/volcanic,
+/area/lavaland/surface/outdoors)
+"cV" = (
+/obj/structure/stone_tile/cracked,
+/obj/structure/stone_tile/block{
+ dir = 8
+ },
+/turf/closed/mineral/volcanic,
+/area/lavaland/surface/outdoors)
+"cW" = (
+/obj/structure/table/optable,
+/obj/structure/stone_tile{
+ dir = 1
+ },
/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
/area/ruin/unpowered/ash_walkers)
+"cX" = (
+/obj/item/weapon/storage/box/rxglasses,
+/obj/structure/stone_tile{
+ dir = 1
+ },
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/ruin/unpowered/ash_walkers)
+"cY" = (
+/obj/item/seeds/glowshroom,
+/obj/item/seeds/glowshroom,
+/obj/structure/stone_tile/block{
+ dir = 4
+ },
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/ruin/unpowered/ash_walkers)
+"cZ" = (
+/obj/structure/stone_tile/surrounding_tile{
+ dir = 8
+ },
+/obj/structure/stone_tile/block{
+ dir = 4
+ },
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/lavaland/surface/outdoors)
+"da" = (
+/obj/structure/stone_tile/surrounding_tile/cracked{
+ dir = 8
+ },
+/turf/closed/mineral/volcanic,
+/area/lavaland/surface/outdoors)
+"db" = (
+/obj/structure/stone_tile/block,
+/turf/closed/mineral/volcanic,
+/area/lavaland/surface/outdoors)
+"dc" = (
+/obj/structure/stone_tile/block,
+/turf/closed/mineral/volcanic,
+/area/lavaland/surface/outdoors)
+"dd" = (
+/obj/structure/stone_tile/surrounding_tile/cracked,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/lavaland/surface/outdoors)
+"de" = (
+/obj/structure/stone_tile/block/cracked{
+ dir = 4
+ },
+/obj/structure/stone_tile/block{
+ dir = 8
+ },
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/lavaland/surface/outdoors)
+"df" = (
+/obj/effect/decal/cleanable/blood,
+/obj/structure/stone_tile/cracked{
+ dir = 8
+ },
+/obj/structure/stone_tile/cracked{
+ dir = 4
+ },
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/lavaland/surface/outdoors)
+"dg" = (
+/obj/structure/bonfire/dense,
+/obj/structure/stone_tile/center,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/lavaland/surface/outdoors)
+"dh" = (
+/obj/structure/stone_tile/block/cracked,
+/obj/structure/stone_tile/block{
+ dir = 1
+ },
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/lavaland/surface/outdoors)
+"di" = (
+/obj/effect/decal/cleanable/blood,
+/obj/structure/stone_tile/block,
+/obj/structure/stone_tile/cracked{
+ dir = 4
+ },
+/obj/structure/stone_tile/cracked{
+ dir = 1
+ },
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/lavaland/surface/outdoors)
+"dj" = (
+/obj/structure/stone_tile/block,
+/obj/structure/stone_tile/block{
+ dir = 1
+ },
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/lavaland/surface/outdoors)
+"dk" = (
+/obj/structure/stone_tile/block/cracked{
+ dir = 1
+ },
+/obj/structure/stone_tile/block,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/lavaland/surface/outdoors)
+"dl" = (
+/obj/structure/stone_tile/block/cracked{
+ dir = 1
+ },
+/obj/structure/stone_tile/cracked,
+/obj/structure/stone_tile/cracked{
+ dir = 8
+ },
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/lavaland/surface/outdoors)
+"dm" = (
+/obj/structure/stone_tile/block,
+/obj/structure/stone_tile/block{
+ dir = 1
+ },
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/lavaland/surface/outdoors)
+"dn" = (
+/obj/structure/stone_tile/block{
+ dir = 4
+ },
+/obj/structure/stone_tile/block/cracked{
+ dir = 8
+ },
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/lavaland/surface/outdoors)
+"do" = (
+/obj/structure/stone_tile{
+ dir = 8
+ },
+/obj/structure/reagent_dispensers/watertank,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/lavaland/surface/outdoors)
+"dp" = (
+/obj/item/weapon/pickaxe,
+/obj/structure/stone_tile/cracked{
+ dir = 1
+ },
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/lavaland/surface/outdoors)
+"dq" = (
+/obj/item/stack/sheet/mineral/wood,
+/obj/structure/stone_tile{
+ dir = 4
+ },
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/lavaland/surface/outdoors)
+"dr" = (
+/obj/structure/stone_tile/surrounding_tile/cracked,
+/obj/structure/stone_tile/surrounding_tile/cracked{
+ dir = 1
+ },
+/obj/structure/stone_tile/surrounding_tile{
+ dir = 8
+ },
+/obj/structure/stone_tile/center,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/lavaland/surface/outdoors)
+"ds" = (
+/obj/structure/stone_tile/block,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/lavaland/surface/outdoors)
+"dt" = (
+/obj/structure/stone_tile/surrounding_tile/cracked{
+ dir = 4
+ },
+/obj/structure/stone_tile/surrounding_tile/cracked,
+/obj/structure/stone_tile/surrounding_tile{
+ dir = 8
+ },
+/obj/structure/stone_tile/center,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/lavaland/surface/outdoors)
+"du" = (
+/obj/structure/stone_tile/cracked{
+ dir = 1
+ },
+/turf/closed/mineral/volcanic,
+/area/lavaland/surface/outdoors)
+"dv" = (
+/obj/structure/stone_tile/cracked{
+ dir = 8
+ },
+/obj/effect/mob_spawn/human/corpse/damaged,
+/obj/effect/decal/cleanable/blood,
+/obj/structure/stone_tile/cracked{
+ dir = 1
+ },
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/lavaland/surface/outdoors)
+"dw" = (
+/obj/item/weapon/reagent_containers/glass/bucket,
+/obj/structure/stone_tile/block/cracked{
+ dir = 4
+ },
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/lavaland/surface/outdoors)
+"dx" = (
+/obj/item/device/flashlight/lantern,
+/obj/structure/stone_tile/center,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/lavaland/surface/outdoors)
+"dy" = (
+/obj/machinery/hydroponics/soil,
+/obj/structure/stone_tile/block{
+ dir = 8
+ },
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/lavaland/surface/outdoors)
+"dz" = (
+/obj/structure/stone_tile/cracked{
+ dir = 1
+ },
+/obj/structure/stone_tile/cracked,
+/turf/closed/mineral/volcanic,
+/area/lavaland/surface/outdoors)
+"dA" = (
+/obj/machinery/hydroponics/soil,
+/obj/structure/stone_tile/surrounding_tile/cracked{
+ dir = 1
+ },
+/obj/structure/stone_tile/surrounding_tile,
+/obj/structure/stone_tile/surrounding_tile{
+ dir = 4
+ },
+/obj/structure/stone_tile/center,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/lavaland/surface/outdoors)
+"dB" = (
+/obj/structure/stone_tile/surrounding_tile/cracked{
+ dir = 4
+ },
+/obj/structure/stone_tile/surrounding_tile/cracked{
+ dir = 1
+ },
+/obj/structure/stone_tile/surrounding_tile/cracked{
+ dir = 8
+ },
+/obj/structure/stone_tile/center/cracked,
+/turf/closed/mineral/volcanic,
+/area/lavaland/surface/outdoors)
+"dC" = (
+/obj/structure/stone_tile,
+/turf/closed/mineral/volcanic,
+/area/lavaland/surface/outdoors)
+"dD" = (
+/obj/structure/stone_tile/cracked{
+ dir = 8
+ },
+/turf/closed/mineral/volcanic,
+/area/lavaland/surface/outdoors)
+"dE" = (
+/obj/structure/stone_tile,
+/obj/structure/stone_tile/cracked{
+ dir = 8
+ },
+/turf/closed/mineral/volcanic,
+/area/lavaland/surface/outdoors)
+"dF" = (
+/obj/structure/stone_tile,
+/turf/closed/mineral/volcanic,
+/area/lavaland/surface/outdoors)
(1,1,1) = {"
aa
@@ -1443,7 +1727,7 @@ ak
ak
ak
ak
-cU
+ak
ak
bP
bL
@@ -1556,12 +1840,12 @@ bt
ak
ak
bU
-bM
+cg
ck
-cb
+bS
cv
cA
-kB
+cE
cM
as
ah
From d176fcf24c521e42fd0c73326827a18c2f00d192 Mon Sep 17 00:00:00 2001
From: CitadelStationBot
Date: Tue, 1 Aug 2017 07:48:16 -0500
Subject: [PATCH 006/154] Refactors pie throwing and fixes throwing not
finalizing in some cases
---
code/controllers/subsystem/throwing.dm | 13 ++++---
.../food_and_drinks/food/snacks_pie.dm | 39 +++++++++++--------
2 files changed, 29 insertions(+), 23 deletions(-)
diff --git a/code/controllers/subsystem/throwing.dm b/code/controllers/subsystem/throwing.dm
index 4ae31e98d6..d91d91de72 100644
--- a/code/controllers/subsystem/throwing.dm
+++ b/code/controllers/subsystem/throwing.dm
@@ -103,7 +103,7 @@ SUBSYSTEM_DEF(throwing)
finalize()
return
-/datum/thrownthing/proc/finalize(hit = FALSE)
+/datum/thrownthing/proc/finalize(hit = FALSE, target=null)
set waitfor = 0
SSthrowing.processing -= thrownthing
//done throwing, either because it hit something or it finished moving
@@ -120,13 +120,15 @@ SUBSYSTEM_DEF(throwing)
thrownthing.newtonian_move(init_dir)
else
thrownthing.newtonian_move(init_dir)
+
+ if(target)
+ thrownthing.throw_impact(target, src)
+
if (callback)
callback.Invoke()
/datum/thrownthing/proc/hit_atom(atom/A)
- thrownthing.throw_impact(A, src)
- thrownthing.newtonian_move(init_dir)
- finalize(TRUE)
+ finalize(hit=TRUE, target=A)
/datum/thrownthing/proc/hitcheck()
for (var/thing in get_turf(thrownthing))
@@ -134,6 +136,5 @@ SUBSYSTEM_DEF(throwing)
if (AM == thrownthing)
continue
if (AM.density && !(AM.pass_flags & LETPASSTHROW) && !(AM.flags & ON_BORDER))
- thrownthing.throwing = null
- thrownthing.throw_impact(AM, src)
+ finalize(hit=TRUE, target=AM)
return TRUE
diff --git a/code/modules/food_and_drinks/food/snacks_pie.dm b/code/modules/food_and_drinks/food/snacks_pie.dm
index 94c8e54f15..13f22851b1 100644
--- a/code/modules/food_and_drinks/food/snacks_pie.dm
+++ b/code/modules/food_and_drinks/food/snacks_pie.dm
@@ -26,24 +26,29 @@
tastes = list("pie" = 1)
/obj/item/weapon/reagent_containers/food/snacks/pie/cream/throw_impact(atom/hit_atom)
- if(!..()) //was it caught by a mob?
- var/turf/T = get_turf(hit_atom)
- new/obj/effect/decal/cleanable/pie_smudge(T)
- reagents.reaction(hit_atom, TOUCH)
+ . = ..()
+ if(!.) //if we're not being caught
+ splat(hit_atom)
- if(ishuman(hit_atom))
- var/mob/living/carbon/human/H = hit_atom
- var/mutable_appearance/creamoverlay = mutable_appearance('icons/effects/creampie.dmi')
- if(H.dna.species.id == "lizard")
- creamoverlay.icon_state = "creampie_lizard"
- else
- creamoverlay.icon_state = "creampie_human"
- H.Knockdown(20) //splat!
- H.adjust_blurriness(1)
- visible_message("[H] was creamed by [src]!!")
- H.add_overlay(creamoverlay)
-
- qdel(src)
+/obj/item/weapon/reagent_containers/food/snacks/pie/cream/proc/splat(atom/movable/hit_atom)
+ if(isliving(loc)) //someone caught us!
+ return
+ var/turf/T = get_turf(hit_atom)
+ new/obj/effect/decal/cleanable/pie_smudge(T)
+ reagents.reaction(hit_atom, TOUCH)
+ if(ishuman(hit_atom))
+ var/mob/living/carbon/human/H = hit_atom
+ var/mutable_appearance/creamoverlay = mutable_appearance('icons/effects/creampie.dmi')
+ if(H.dna.species.limbs_id == "lizard")
+ creamoverlay.icon_state = "creampie_lizard"
+ else
+ creamoverlay.icon_state = "creampie_human"
+ H.Knockdown(20) //splat!
+ H.adjust_blurriness(1)
+ H.visible_message("[H] is creamed by [src]!", "You've been creamed by [src]!")
+ playsound(H, "desceration", 50, TRUE)
+ H.add_overlay(creamoverlay)
+ qdel(src)
/obj/item/weapon/reagent_containers/food/snacks/pie/berryclafoutis
From 55f1de10a68eafb5adf7116ca6a221f4a1a28aee Mon Sep 17 00:00:00 2001
From: CitadelStationBot
Date: Tue, 1 Aug 2017 08:46:20 -0500
Subject: [PATCH 007/154] Spellchecking
---
.../lavaland_surface_animal_hospital.dmm | 2 +-
_maps/RandomZLevels/Cabin.dmm | 2 +-
_maps/RandomZLevels/research.dmm | 32 +--
_maps/RandomZLevels/snowdin.dmm | 8 +-
_maps/RandomZLevels/undergroundoutpost45.dmm | 2 +-
_maps/map_files/BoxStation/BoxStation.dmm | 2 +-
_maps/map_files/Mining/Lavaland.dmm | 2 +-
_maps/map_files/OmegaStation/OmegaStation.dmm | 4 +-
.../PubbyStation/PubbyStation.dmm.rej | 213 ++++++++++++++++++
_maps/map_files/generic/Centcomm.dmm | 2 +-
code/__HELPERS/sorts/__main.dm | 2 +-
code/__HELPERS/unsorted.dm | 2 +-
code/_globalvars/lists/objects.dm | 2 +-
code/_onclick/hud/screen_objects.dm | 2 +-
code/controllers/subsystem/garbage.dm | 4 +-
code/datums/datumvars.dm | 2 +-
code/datums/helper_datums/getrev.dm | 2 +-
code/game/area/areas.dm | 2 +-
code/game/gamemodes/game_mode.dm | 2 +-
.../miniantags/abduction/abduction.dm | 2 +-
.../miniantags/abduction/abduction_gear.dm | 2 +-
code/game/machinery/camera/camera_assembly.dm | 2 +-
code/game/objects/effects/contraband.dm | 2 +-
.../objects/items/weapons/tanks/watertank.dm | 4 +-
code/game/objects/structures/musician.dm | 2 +-
code/modules/admin/admin_ranks.dm | 4 +-
code/modules/admin/stickyban.dm | 2 +-
.../awaymissions/mission_code/snowdin.dm | 4 +-
code/modules/clothing/clothing.dm | 2 +-
code/modules/clothing/head/misc.dm | 4 +-
code/modules/clothing/shoes/miscellaneous.dm | 2 +-
.../modules/clothing/spacesuits/flightsuit.dm | 2 +-
.../clothing/spacesuits/flightsuit.dm.rej | 14 ++
.../clothing/spacesuits/miscellaneous.dm | 2 +-
code/modules/clothing/suits/armor.dm | 2 +-
code/modules/clothing/suits/miscellaneous.dm | 2 +-
code/modules/food_and_drinks/drinks/drinks.dm | 2 +-
.../drinks/drinks/drinkingglass.dm | 2 +-
.../modules/food_and_drinks/food/condiment.dm | 2 +-
code/modules/mining/aux_base_camera.dm | 4 +-
.../mining/lavaland/necropolis_chests.dm | 4 +-
code/modules/mining/machine_vending.dm | 2 +-
code/modules/mining/shelters.dm | 2 +-
.../mob/living/carbon/human/human_helpers.dm | 2 +-
code/modules/mob/living/living.dm | 4 +-
code/modules/mob/living/logout.dm | 2 +-
.../modules/mob/living/silicon/robot/robot.dm | 2 +-
.../mob/living/simple_animal/corpse.dm | 2 +-
code/modules/mob/say_readme.dm | 4 +-
code/modules/paperwork/filingcabinet.dm | 2 +-
code/modules/power/apc.dm | 4 +-
code/modules/power/supermatter/supermatter.dm | 2 +-
.../procedural_mapping/mapGeneratorReadme.dm | 4 +-
.../projectiles/guns/ballistic/automatic.dm | 2 +-
.../projectiles/guns/ballistic/revolver.dm | 2 +-
.../guns/energy/kinetic_accelerator.dm | 4 +-
code/modules/projectiles/guns/energy/laser.dm | 6 +-
.../chemistry/machinery/chem_master.dm | 2 +-
code/modules/research/designs.dm | 4 +-
code/modules/research/experimentor.dm | 2 +-
code/modules/research/research.dm | 6 +-
.../research/xenobiology/xenobiology.dm | 2 +-
code/modules/spells/spell_types/summonitem.dm | 2 +-
code/modules/station_goals/bsa.dm | 2 +-
code/modules/station_goals/dna_vault.dm | 2 +-
code/modules/stock_market/events.dm | 2 +-
.../modules/surgery/organ_manipulation.dm.rej | 10 +
code/modules/surgery/organs/augments_arms.dm | 4 +-
code/modules/surgery/organs/augments_chest.dm | 2 +-
.../modules/surgery/remove_embedded_object.dm | 2 +-
code/modules/zombie/organs.dm | 2 +-
71 files changed, 342 insertions(+), 105 deletions(-)
create mode 100644 _maps/map_files/PubbyStation/PubbyStation.dmm.rej
create mode 100644 code/modules/clothing/spacesuits/flightsuit.dm.rej
create mode 100644 code/modules/surgery/organ_manipulation.dm.rej
diff --git a/_maps/RandomRuins/LavaRuins/lavaland_surface_animal_hospital.dmm b/_maps/RandomRuins/LavaRuins/lavaland_surface_animal_hospital.dmm
index 937890e100..005ce22589 100644
--- a/_maps/RandomRuins/LavaRuins/lavaland_surface_animal_hospital.dmm
+++ b/_maps/RandomRuins/LavaRuins/lavaland_surface_animal_hospital.dmm
@@ -474,7 +474,7 @@
"bD" = (
/obj/structure/table/glass,
/obj/item/weapon/reagent_containers/glass/bottle/cyanide{
- desc = "A cocktail of chemotherpy drugs intended to treat bladder cancer.";
+ desc = "A cocktail of chemotherapy drugs intended to treat bladder cancer.";
name = "MVAC regimen"
},
/obj/item/weapon/reagent_containers/syringe,
diff --git a/_maps/RandomZLevels/Cabin.dmm b/_maps/RandomZLevels/Cabin.dmm
index 33f514c051..a03b3b148e 100644
--- a/_maps/RandomZLevels/Cabin.dmm
+++ b/_maps/RandomZLevels/Cabin.dmm
@@ -250,7 +250,7 @@
/area/awaymission/cabin)
"aQ" = (
/obj/machinery/door/airlock/wood{
- name = "maintence"
+ name = "maintenance"
},
/turf/open/floor/plating,
/area/awaymission/cabin)
diff --git a/_maps/RandomZLevels/research.dmm b/_maps/RandomZLevels/research.dmm
index 127813046e..7d313a0915 100644
--- a/_maps/RandomZLevels/research.dmm
+++ b/_maps/RandomZLevels/research.dmm
@@ -1060,7 +1060,7 @@
"dd" = (
/obj/structure/closet/crate,
/obj/item/weapon/disk/data{
- desc = "A specialized data disk for holding critical genetic backup data. Without proper passwords, infomation will turn up blank on most DNA machines.";
+ desc = "A specialized data disk for holding critical genetic backup data. Without proper passwords, information will turn up blank on most DNA machines.";
name = "encrypted genetic data disk";
read_only = 1
},
@@ -1081,7 +1081,7 @@
read_only = 1
},
/obj/item/weapon/disk/data{
- desc = "A specialized data disk for holding critical genetic backup data. Without proper passwords, infomation will turn up blank on most DNA machines.";
+ desc = "A specialized data disk for holding critical genetic backup data. Without proper passwords, information will turn up blank on most DNA machines.";
name = "encrypted genetic data disk";
read_only = 1
},
@@ -1143,7 +1143,7 @@
"dp" = (
/obj/structure/closet/crate,
/obj/item/weapon/disk/data{
- desc = "A specialized data disk for holding critical genetic backup data. Without proper passwords, infomation will turn up blank on most DNA machines.";
+ desc = "A specialized data disk for holding critical genetic backup data. Without proper passwords, information will turn up blank on most DNA machines.";
name = "encrypted genetic data disk";
read_only = 1
},
@@ -1289,12 +1289,12 @@
"dL" = (
/obj/structure/closet/crate,
/obj/item/weapon/disk/data{
- desc = "A data disk used to store cloning and genetic records. The name on the label appears to be scratched off with the words 'DO NOT CLONE' hastely written over it.";
+ desc = "A data disk used to store cloning and genetic records. The name on the label appears to be scratched off with the words 'DO NOT CLONE' hastily written over it.";
fields = list("label" = "Buffer1:George Melons", "UI" = "3c300f11b5421ca7014d8", "SE" = "430431205660551642142504334461413202111310233445620533134255", "UE" = "6893e6a0b0076a41897776b10cc2b324", "name" = "George Melons", "blood_type" = "B+");
name = "old genetics data disk"
},
/obj/item/weapon/disk/data{
- desc = "A specialized data disk for holding critical genetic backup data. Without proper passwords, infomation will turn up blank on most DNA machines.";
+ desc = "A specialized data disk for holding critical genetic backup data. Without proper passwords, information will turn up blank on most DNA machines.";
name = "encrypted genetic data disk";
read_only = 1
},
@@ -1306,12 +1306,12 @@
"dM" = (
/obj/structure/closet/crate,
/obj/item/weapon/disk/data{
- desc = "A specialized data disk for holding critical genetic backup data. Without proper passwords, infomation will turn up blank on most DNA machines.";
+ desc = "A specialized data disk for holding critical genetic backup data. Without proper passwords, information will turn up blank on most DNA machines.";
name = "encrypted genetic data disk";
read_only = 1
},
/obj/item/weapon/disk/data{
- desc = "A specialized data disk for holding critical genetic backup data. Without proper passwords, infomation will turn up blank on most DNA machines.";
+ desc = "A specialized data disk for holding critical genetic backup data. Without proper passwords, information will turn up blank on most DNA machines.";
name = "encrypted genetic data disk";
read_only = 1
},
@@ -2794,12 +2794,12 @@
"hS" = (
/obj/structure/closet/crate,
/obj/item/weapon/disk/data{
- desc = "A specialized data disk for holding critical genetic backup data. Without proper passwords, infomation will turn up blank on most DNA machines.";
+ desc = "A specialized data disk for holding critical genetic backup data. Without proper passwords, information will turn up blank on most DNA machines.";
name = "encrypted genetic data disk";
read_only = 1
},
/obj/item/weapon/disk/data{
- desc = "A specialized data disk for holding critical genetic backup data. Without proper passwords, infomation will turn up blank on most DNA machines. This one has the initials 'C.P' marked on the front. ";
+ desc = "A specialized data disk for holding critical genetic backup data. Without proper passwords, information will turn up blank on most DNA machines. This one has the initials 'C.P' marked on the front. ";
name = "encrypted genetic data disk";
read_only = 1
},
@@ -2812,12 +2812,12 @@
"hT" = (
/obj/structure/closet/crate,
/obj/item/weapon/disk/data{
- desc = "A specialized data disk for holding critical genetic backup data. Without proper passwords, infomation will turn up blank on most DNA machines.";
+ desc = "A specialized data disk for holding critical genetic backup data. Without proper passwords, information will turn up blank on most DNA machines.";
name = "encrypted genetic data disk";
read_only = 1
},
/obj/item/weapon/disk/data{
- desc = "A specialized data disk for holding critical genetic backup data. Without proper passwords, infomation will turn up blank on most DNA machines.";
+ desc = "A specialized data disk for holding critical genetic backup data. Without proper passwords, information will turn up blank on most DNA machines.";
name = "encrypted genetic data disk";
read_only = 1
},
@@ -2949,7 +2949,7 @@
"il" = (
/obj/structure/closet/crate,
/obj/item/weapon/disk/data{
- desc = "A specialized data disk for holding critical genetic backup data. Without proper passwords, infomation will turn up blank on most DNA machines.";
+ desc = "A specialized data disk for holding critical genetic backup data. Without proper passwords, information will turn up blank on most DNA machines.";
name = "encrypted genetic data disk";
read_only = 1
},
@@ -3336,7 +3336,7 @@
/area/awaymission/research/interior/dorm)
"jp" = (
/obj/structure/barricade/wooden{
- desc = "A wooden table hastely flipped over for cover.";
+ desc = "A wooden table hastily flipped over for cover.";
obj_integrity = 55;
icon = 'icons/obj/smooth_structures/wood_table.dmi';
icon_state = "wood_table";
@@ -3402,7 +3402,7 @@
/area/awaymission/research/interior/medbay)
"jy" = (
/obj/machinery/door/airlock/medical{
- name = "Medical Surgey"
+ name = "Medical Surgery"
},
/turf/open/floor/plasteel/whiteblue,
/area/awaymission/research/interior/medbay)
@@ -3446,7 +3446,7 @@
/area/awaymission/research/interior/dorm)
"jG" = (
/obj/structure/barricade/wooden{
- desc = "A wooden table hastely flipped over for cover.";
+ desc = "A wooden table hastily flipped over for cover.";
obj_integrity = 55;
icon = 'icons/obj/smooth_structures/wood_table.dmi';
icon_state = "wood_table";
@@ -3569,7 +3569,7 @@
/area/awaymission/research/interior/dorm)
"kb" = (
/obj/structure/barricade/wooden{
- desc = "A wooden table hastely flipped over for cover.";
+ desc = "A wooden table hastily flipped over for cover.";
obj_integrity = 55;
icon = 'icons/obj/smooth_structures/wood_table.dmi';
icon_state = "wood_table";
diff --git a/_maps/RandomZLevels/snowdin.dmm b/_maps/RandomZLevels/snowdin.dmm
index 0cb107f9e1..b390094018 100644
--- a/_maps/RandomZLevels/snowdin.dmm
+++ b/_maps/RandomZLevels/snowdin.dmm
@@ -635,10 +635,10 @@
/area/awaymission/snowdin/base)
"bC" = (
/obj/structure/showcase{
- desc = "A strange machine thats supposedly used to help pick up and decypth wave signals. ";
+ desc = "A strange machine thats supposedly used to help pick up and decrypt wave signals. ";
icon = 'icons/obj/machines/telecomms.dmi';
icon_state = "processor";
- name = "subsystem signal decrypher"
+ name = "subsystem signal decrypter"
},
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/snow
@@ -2504,10 +2504,10 @@
"gL" = (
/obj/machinery/light/small,
/obj/structure/showcase{
- desc = "A strange machine thats supposedly used to help pick up and decypth wave signals. ";
+ desc = "A strange machine thats supposedly used to help pick up and decrypt wave signals. ";
icon = 'icons/obj/machines/telecomms.dmi';
icon_state = "processor";
- name = "subsystem signal decrypher"
+ name = "subsystem signal decrypter"
},
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/snow
diff --git a/_maps/RandomZLevels/undergroundoutpost45.dmm b/_maps/RandomZLevels/undergroundoutpost45.dmm
index b985470bc1..fb82bb398a 100644
--- a/_maps/RandomZLevels/undergroundoutpost45.dmm
+++ b/_maps/RandomZLevels/undergroundoutpost45.dmm
@@ -9874,7 +9874,7 @@
dir = 8
},
/obj/machinery/button/door{
- desc = "A remote control-switch whichs locks the research division down in the event of a biohazard leak or contamination.";
+ desc = "A remote control-switch which locks the research division down in the event of a biohazard leak or contamination.";
id = "UO45_biohazard";
name = "Biohazard Door Control";
pixel_y = 8;
diff --git a/_maps/map_files/BoxStation/BoxStation.dmm b/_maps/map_files/BoxStation/BoxStation.dmm
index 14118443f6..26feb0fa1b 100644
--- a/_maps/map_files/BoxStation/BoxStation.dmm
+++ b/_maps/map_files/BoxStation/BoxStation.dmm
@@ -34356,7 +34356,7 @@
/area/janitor)
"bAV" = (
/obj/machinery/door/window/westleft{
- name = "Janitoral Delivery";
+ name = "Janitorial Delivery";
req_access_txt = "26"
},
/obj/effect/turf_decal/delivery,
diff --git a/_maps/map_files/Mining/Lavaland.dmm b/_maps/map_files/Mining/Lavaland.dmm
index f8bf06a40c..432d5ae341 100644
--- a/_maps/map_files/Mining/Lavaland.dmm
+++ b/_maps/map_files/Mining/Lavaland.dmm
@@ -2091,7 +2091,7 @@
/area/mine/living_quarters)
"ft" = (
/obj/machinery/camera{
- c_tag = "Dormatories";
+ c_tag = "Dormitories";
dir = 4;
network = list("MINE")
},
diff --git a/_maps/map_files/OmegaStation/OmegaStation.dmm b/_maps/map_files/OmegaStation/OmegaStation.dmm
index 66b8bd0708..8a7311fb5a 100644
--- a/_maps/map_files/OmegaStation/OmegaStation.dmm
+++ b/_maps/map_files/OmegaStation/OmegaStation.dmm
@@ -35023,7 +35023,7 @@
dir = 4
},
/obj/machinery/camera{
- c_tag = "Chaplen Quarters";
+ c_tag = "Chaplain's Quarters";
dir = 2;
network = list("SS13")
},
@@ -36017,7 +36017,7 @@
pixel_y = -32
},
/obj/machinery/camera{
- c_tag = "Xenobilogy Lab";
+ c_tag = "Xenobiology Lab";
dir = 4
},
/obj/effect/turf_decal/stripes/line{
diff --git a/_maps/map_files/PubbyStation/PubbyStation.dmm.rej b/_maps/map_files/PubbyStation/PubbyStation.dmm.rej
new file mode 100644
index 0000000000..80fa973d0a
--- /dev/null
+++ b/_maps/map_files/PubbyStation/PubbyStation.dmm.rej
@@ -0,0 +1,213 @@
+diff a/_maps/map_files/PubbyStation/PubbyStation.dmm b/_maps/map_files/PubbyStation/PubbyStation.dmm (rejected hunks)
+@@ -17662,7 +17662,7 @@
+ /obj/machinery/conveyor_switch/oneway{
+ convdir = 1;
+ id = "garbagestacked";
+- name = "disposal coveyor"
++ name = "disposal conveyor"
+ },
+ /obj/effect/turf_decal/stripes/line,
+ /turf/open/floor/plating{
+@@ -19866,7 +19866,7 @@
+ /obj/machinery/conveyor_switch/oneway{
+ convdir = -1;
+ id = "garbage";
+- name = "disposal coveyor"
++ name = "disposal conveyor"
+ },
+ /obj/effect/turf_decal/stripes/line{
+ dir = 1
+@@ -29076,7 +29076,7 @@
+ /area/science/explab)
+ "blV" = (
+ /obj/structure/sign/atmosplaque{
+- desc = "A guide to the drone shell dispenser, detailing the constructive and destructive applications of modern repair drones, as well as the development of the uncorruptable cyborg servants of tomorrow, available today.";
++ desc = "A guide to the drone shell dispenser, detailing the constructive and destructive applications of modern repair drones, as well as the development of the incorruptible cyborg servants of tomorrow, available today.";
+ icon_state = "kiddieplaque";
+ name = "\improper 'Perfect Drone' sign";
+ pixel_y = 32
+@@ -31843,7 +31843,7 @@
+ /area/science/xenobiology)
+ "brT" = (
+ /obj/machinery/computer/security/telescreen{
+- name = "Test Chamber Moniter";
++ name = "Test Chamber Monitor";
+ network = list("Xeno");
+ pixel_y = 2
+ },
+@@ -36758,7 +36758,7 @@
+ /obj/item/device/radio/intercom{
+ dir = 8;
+ freerange = 1;
+- name = "Station Intercom (Telecoms)";
++ name = "Station Intercom (Telecomms)";
+ pixel_x = 28;
+ pixel_y = 24
+ },
+@@ -42005,7 +42005,7 @@
+ /obj/item/device/radio/intercom{
+ dir = 8;
+ freerange = 1;
+- name = "Station Intercom (Telecoms)";
++ name = "Station Intercom (Telecomms)";
+ pixel_y = 26
+ },
+ /turf/open/floor/plasteel,
+@@ -49228,7 +49228,7 @@
+ /area/chapel/main/monastery)
+ "ccI" = (
+ /obj/machinery/door/airlock/centcom{
+- name = "Chape Access";
++ name = "Chapel Access";
+ opacity = 1
+ },
+ /turf/open/floor/plasteel/black,
+@@ -50408,7 +50408,7 @@
+ /area/engine/engineering)
+ "cfs" = (
+ /obj/machinery/camera{
+- c_tag = "Engineering Telecoms Access";
++ c_tag = "Engineering Telecomms Access";
+ dir = 8;
+ network = list("Labor")
+ },
+@@ -50416,11 +50416,11 @@
+ dir = 4
+ },
+ /obj/machinery/computer/security/telescreen{
+- desc = "Used for watching telecoms.";
++ desc = "Used for watching telecomms.";
+ dir = 8;
+ layer = 4;
+- name = "Telecoms Telescreen";
+- network = list("Telecoms");
++ name = "Telecomms Telescreen";
++ network = list("Telecomms");
+ pixel_x = 30
+ },
+ /turf/open/floor/plasteel,
+@@ -52887,9 +52887,9 @@
+ /area/space)
+ "clu" = (
+ /obj/machinery/camera{
+- c_tag = "Telecoms External Fore";
++ c_tag = "Telecomms External Fore";
+ dir = 1;
+- network = list("SS13, Telecoms");
++ network = list("SS13, Telecomms");
+ start_active = 1
+ },
+ /turf/open/space,
+@@ -53072,9 +53072,9 @@
+ /area/tcommsat/computer)
+ "clX" = (
+ /obj/machinery/camera/motion{
+- c_tag = "Telecoms External Access";
++ c_tag = "Telecomms External Access";
+ dir = 1;
+- network = list("SS13","Telecoms")
++ network = list("SS13","Telecomms")
+ },
+ /turf/open/floor/plasteel,
+ /area/tcommsat/computer)
+@@ -53136,9 +53136,9 @@
+ "cmg" = (
+ /obj/machinery/requests_console{
+ announcementConsole = 1;
+- department = "Telecoms Admin";
++ department = "Telecomms Admin";
+ departmentType = 5;
+- name = "Telecoms RC";
++ name = "Telecomms RC";
+ pixel_y = 30
+ },
+ /obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+@@ -53169,9 +53169,9 @@
+ pixel_y = 26
+ },
+ /obj/machinery/camera/motion{
+- c_tag = "Telecoms Monitoring";
++ c_tag = "Telecomms Monitoring";
+ dir = 2;
+- network = list("SS13","Telecoms")
++ network = list("SS13","Telecomms")
+ },
+ /turf/open/floor/plasteel/yellow/side{
+ dir = 1
+@@ -53197,7 +53197,7 @@
+ "cmk" = (
+ /obj/machinery/power/apc{
+ dir = 1;
+- name = "Telecoms Monitoring APC";
++ name = "Telecomms Monitoring APC";
+ pixel_y = 25
+ },
+ /obj/structure/cable{
+@@ -53282,9 +53282,9 @@
+ "cmt" = (
+ /obj/structure/lattice,
+ /obj/machinery/camera/motion{
+- c_tag = "Telecoms External Port";
++ c_tag = "Telecomms External Port";
+ dir = 8;
+- network = list("Telecoms")
++ network = list("Telecomms")
+ },
+ /turf/open/space,
+ /area/space)
+@@ -53342,9 +53342,9 @@
+ "cmz" = (
+ /obj/structure/lattice,
+ /obj/machinery/camera/motion{
+- c_tag = "Telecoms External Starboard";
++ c_tag = "Telecomms External Starboard";
+ dir = 4;
+- network = list("Telecoms")
++ network = list("Telecomms")
+ },
+ /turf/open/space,
+ /area/space)
+@@ -53430,7 +53430,7 @@
+ cell_type = 5000;
+ dir = 1;
+ layer = 4;
+- name = "Telecoms Server APC";
++ name = "Telecomms Server APC";
+ pixel_y = 24
+ },
+ /obj/structure/cable,
+@@ -53719,9 +53719,9 @@
+ /area/tcommsat/server)
+ "cnu" = (
+ /obj/machinery/camera/motion{
+- c_tag = "Telecoms Server Room";
++ c_tag = "Telecomms Server Room";
+ dir = 1;
+- network = list("SS13","Telecoms")
++ network = list("SS13","Telecomms")
+ },
+ /turf/open/floor/plasteel/black{
+ initial_gas_mix = "n2=100;TEMP=80"
+@@ -53758,18 +53758,18 @@
+ "cny" = (
+ /obj/structure/lattice,
+ /obj/machinery/camera/motion{
+- c_tag = "Telecoms External Port Aft";
++ c_tag = "Telecomms External Port Aft";
+ dir = 2;
+- network = list("Telecoms")
++ network = list("Telecomms")
+ },
+ /turf/open/space,
+ /area/space)
+ "cnz" = (
+ /obj/structure/lattice,
+ /obj/machinery/camera/motion{
+- c_tag = "Telecoms External Starboard Aft";
++ c_tag = "Telecomms External Starboard Aft";
+ dir = 2;
+- network = list("Telecoms")
++ network = list("Telecomms")
+ },
+ /turf/open/space,
+ /area/space)
diff --git a/_maps/map_files/generic/Centcomm.dmm b/_maps/map_files/generic/Centcomm.dmm
index 1840fb2d80..8e3d678469 100644
--- a/_maps/map_files/generic/Centcomm.dmm
+++ b/_maps/map_files/generic/Centcomm.dmm
@@ -10338,7 +10338,7 @@
base_state = "rightsecure";
dir = 2;
icon_state = "rightsecure";
- name = "Thunderdoom Booth";
+ name = "Thunderdome Booth";
req_access_txt = "109"
},
/obj/effect/turf_decal/bot,
diff --git a/code/__HELPERS/sorts/__main.dm b/code/__HELPERS/sorts/__main.dm
index 7da17da503..c7ccfa97d7 100644
--- a/code/__HELPERS/sorts/__main.dm
+++ b/code/__HELPERS/sorts/__main.dm
@@ -8,7 +8,7 @@
//When we get into galloping mode, we stay there until both runs win less often than MIN_GALLOP consecutive times.
#define MIN_GALLOP 7
- //This is a global instance to allow much of this code to be reused. The interfaces are kept seperately
+ //This is a global instance to allow much of this code to be reused. The interfaces are kept separately
GLOBAL_DATUM_INIT(sortInstance, /datum/sortInstance, new())
/datum/sortInstance
//The array being sorted.
diff --git a/code/__HELPERS/unsorted.dm b/code/__HELPERS/unsorted.dm
index b743907982..48787430a0 100644
--- a/code/__HELPERS/unsorted.dm
+++ b/code/__HELPERS/unsorted.dm
@@ -48,7 +48,7 @@ Location where the teleport begins, target that will teleport, distance to go, d
Random error in tile placement x, error in tile placement y, and block offset.
Block offset tells the proc how to place the box. Behind teleport location, relative to starting location, forward, etc.
Negative values for offset are accepted, think of it in relation to North, -x is west, -y is south. Error defaults to positive.
-Turf and target are seperate in case you want to teleport some distance from a turf the target is not standing on or something.
+Turf and target are separate in case you want to teleport some distance from a turf the target is not standing on or something.
*/
var/dirx = 0//Generic location finding variable.
diff --git a/code/_globalvars/lists/objects.dm b/code/_globalvars/lists/objects.dm
index 3f0d6cab80..9ad2d6c969 100644
--- a/code/_globalvars/lists/objects.dm
+++ b/code/_globalvars/lists/objects.dm
@@ -20,7 +20,7 @@ GLOBAL_LIST_EMPTY(tech_list) //list of all /datum/tech datums indexed by id.
GLOBAL_LIST_EMPTY(surgeries_list) //list of all surgeries by name, associated with their path.
GLOBAL_LIST_EMPTY(crafting_recipes) //list of all table craft recipes
GLOBAL_LIST_EMPTY(rcd_list) //list of Rapid Construction Devices.
-GLOBAL_LIST_EMPTY(apcs_list) //list of all Area Power Controller machines, seperate from machines for powernet speeeeeeed.
+GLOBAL_LIST_EMPTY(apcs_list) //list of all Area Power Controller machines, separate from machines for powernet speeeeeeed.
GLOBAL_LIST_EMPTY(tracked_implants) //list of all current implants that are tracked to work out what sort of trek everyone is on. Sadly not on lavaworld not implemented...
GLOBAL_LIST_EMPTY(tracked_chem_implants) //list of implants the prisoner console can track and send inject commands too
GLOBAL_LIST_EMPTY(poi_list) //list of points of interest for observe/follow
diff --git a/code/_onclick/hud/screen_objects.dm b/code/_onclick/hud/screen_objects.dm
index 401bde5cdb..14b7323ce3 100644
--- a/code/_onclick/hud/screen_objects.dm
+++ b/code/_onclick/hud/screen_objects.dm
@@ -281,7 +281,7 @@
to_chat(H, "You are now running on internals from the [H.r_store] in your right pocket.")
H.internal = H.r_store
- //Seperate so CO2 jetpacks are a little less cumbersome.
+ //Separate so CO2 jetpacks are a little less cumbersome.
if(!C.internal && istype(C.back, /obj/item/weapon/tank))
to_chat(C, "You are now running on internals from the [C.back] on your back.")
C.internal = C.back
diff --git a/code/controllers/subsystem/garbage.dm b/code/controllers/subsystem/garbage.dm
index 2cee9a192a..ac2b60c67e 100644
--- a/code/controllers/subsystem/garbage.dm
+++ b/code/controllers/subsystem/garbage.dm
@@ -18,7 +18,7 @@ SUBSYSTEM_DEF(garbage)
// refID's are associated with the time at which they time out and need to be manually del()
// we do this so we aren't constantly locating them and preventing them from being gc'd
- var/list/tobequeued = list() //We store the references of things to be added to the queue seperately so we can spread out GC overhead over a few ticks
+ var/list/tobequeued = list() //We store the references of things to be added to the queue separately so we can spread out GC overhead over a few ticks
var/list/didntgc = list() // list of all types that have failed to GC associated with the number of times that's happened.
// the types are stored as strings
@@ -144,7 +144,7 @@ SUBSYSTEM_DEF(garbage)
queue[refid] = gctime
-//this is purely to seperate things profile wise.
+//this is purely to separate things profile wise.
/datum/controller/subsystem/garbage/proc/HardDelete(datum/A)
var/time = world.timeofday
var/tick = world.tick_usage
diff --git a/code/datums/datumvars.dm b/code/datums/datumvars.dm
index be1ae8bfde..e519cf6af3 100644
--- a/code/datums/datumvars.dm
+++ b/code/datums/datumvars.dm
@@ -21,7 +21,7 @@
return debug_variable(var_name, vars[var_name], 0, src)
//please call . = ..() first and append to the result, that way parent items are always at the top and child items are further down
-//add seperaters by doing . += "---"
+//add separaters by doing . += "---"
/datum/proc/vv_get_dropdown()
. = list()
. += "---"
diff --git a/code/datums/helper_datums/getrev.dm b/code/datums/helper_datums/getrev.dm
index d5c0e74839..f6296bc0c9 100644
--- a/code/datums/helper_datums/getrev.dm
+++ b/code/datums/helper_datums/getrev.dm
@@ -96,7 +96,7 @@
to_chat(src, "[prefix][copytext(pc, 1, min(length(pc), 7))]")
else
to_chat(src, "Revision unknown")
- to_chat(src, "Current Infomational Settings:")
+ to_chat(src, "Current Informational Settings:")
to_chat(src, "Protect Authority Roles From Traitor: [config.protect_roles_from_antagonist]")
to_chat(src, "Protect Assistant Role From Traitor: [config.protect_assistant_from_antagonist]")
to_chat(src, "Enforce Human Authority: [config.enforce_human_authority]")
diff --git a/code/game/area/areas.dm b/code/game/area/areas.dm
index a0f268344e..2a139da456 100644
--- a/code/game/area/areas.dm
+++ b/code/game/area/areas.dm
@@ -429,7 +429,7 @@ GLOBAL_LIST_EMPTY(teleportlocs)
if(!L.ckey)
return
- // Ambience goes down here -- make sure to list each area seperately for ease of adding things in later, thanks! Note: areas adjacent to each other should have the same sounds to prevent cutoff when possible.- LastyScratch
+ // Ambience goes down here -- make sure to list each area separately for ease of adding things in later, thanks! Note: areas adjacent to each other should have the same sounds to prevent cutoff when possible.- LastyScratch
if(L.client && !L.client.ambience_playing && L.client.prefs.toggles & SOUND_SHIP_AMBIENCE)
L.client.ambience_playing = 1
L << sound('sound/ambience/shipambience.ogg', repeat = 1, wait = 0, volume = 35, channel = CHANNEL_BUZZ)
diff --git a/code/game/gamemodes/game_mode.dm b/code/game/gamemodes/game_mode.dm
index 742ed08cf4..057f9ee34a 100644
--- a/code/game/gamemodes/game_mode.dm
+++ b/code/game/gamemodes/game_mode.dm
@@ -369,7 +369,7 @@
if(candidates.len < recommended_enemies)
for(var/mob/dead/new_player/player in players)
if(player.client && player.ready == PLAYER_READY_TO_PLAY)
- if(!(role in player.client.prefs.be_special)) // We don't have enough people who want to be antagonist, make a seperate list of people who don't want to be one
+ if(!(role in player.client.prefs.be_special)) // We don't have enough people who want to be antagonist, make a separate list of people who don't want to be one
if(!jobban_isbanned(player, "Syndicate") && !jobban_isbanned(player, role)) //Nodrak/Carn: Antag Job-bans
drafted += player.mind
diff --git a/code/game/gamemodes/miniantags/abduction/abduction.dm b/code/game/gamemodes/miniantags/abduction/abduction.dm
index 8b18c3b1bb..ce0ab22373 100644
--- a/code/game/gamemodes/miniantags/abduction/abduction.dm
+++ b/code/game/gamemodes/miniantags/abduction/abduction.dm
@@ -200,7 +200,7 @@
to_chat(world, text)
//Landmarks
-// TODO: Split into seperate landmarks for prettier ships
+// TODO: Split into separate landmarks for prettier ships
/obj/effect/landmark/abductor
var/team = 1
diff --git a/code/game/gamemodes/miniantags/abduction/abduction_gear.dm b/code/game/gamemodes/miniantags/abduction/abduction_gear.dm
index 3f45f69cdd..d6265a8f75 100644
--- a/code/game/gamemodes/miniantags/abduction/abduction_gear.dm
+++ b/code/game/gamemodes/miniantags/abduction/abduction_gear.dm
@@ -469,7 +469,7 @@ Congratulations! You are now trained for invasive xenobiology research!"}
if(ishuman(L))
var/mob/living/carbon/human/H = L
- species = "[H.dna.species.name]"
+ species = "[H.dna.species.name]"
if(L.mind && L.mind.changeling)
species = "Changeling lifeform"
var/obj/item/organ/heart/gland/temp = locate() in H.internal_organs
diff --git a/code/game/machinery/camera/camera_assembly.dm b/code/game/machinery/camera/camera_assembly.dm
index 8639544e0a..8ca1a8632c 100644
--- a/code/game/machinery/camera/camera_assembly.dm
+++ b/code/game/machinery/camera/camera_assembly.dm
@@ -79,7 +79,7 @@
if(istype(W, /obj/item/weapon/screwdriver))
playsound(src.loc, W.usesound, 50, 1)
- var/input = stripped_input(user, "Which networks would you like to connect this camera to? Seperate networks with a comma. No Spaces!\nFor example: SS13,Security,Secret ", "Set Network", "SS13")
+ var/input = stripped_input(user, "Which networks would you like to connect this camera to? Separate networks with a comma. No Spaces!\nFor example: SS13,Security,Secret ", "Set Network", "SS13")
if(!input)
to_chat(user, "No input found, please hang up and try your call again!")
return
diff --git a/code/game/objects/effects/contraband.dm b/code/game/objects/effects/contraband.dm
index fb2b854ffb..663fed74fc 100644
--- a/code/game/objects/effects/contraband.dm
+++ b/code/game/objects/effects/contraband.dm
@@ -115,7 +115,7 @@
forceMove(P)
return P
-//seperated to reduce code duplication. Moved here for ease of reference and to unclutter r_wall/attackby()
+//separated to reduce code duplication. Moved here for ease of reference and to unclutter r_wall/attackby()
/turf/closed/wall/proc/place_poster(obj/item/weapon/poster/P, mob/user)
if(!P.poster_structure)
to_chat(user, "[P] has no poster... inside it? Inform a coder!")
diff --git a/code/game/objects/items/weapons/tanks/watertank.dm b/code/game/objects/items/weapons/tanks/watertank.dm
index 7b7f1d5423..807756b29e 100644
--- a/code/game/objects/items/weapons/tanks/watertank.dm
+++ b/code/game/objects/items/weapons/tanks/watertank.dm
@@ -182,7 +182,7 @@
/obj/item/weapon/watertank/atmos
name = "backpack firefighter tank"
- desc = "A refridgerated and pressurized backpack tank with extinguisher nozzle, intended to fight fires. Swaps between extinguisher, resin launcher and a smaller scale resin foamer."
+ desc = "A refrigerated and pressurized backpack tank with extinguisher nozzle, intended to fight fires. Swaps between extinguisher, resin launcher and a smaller scale resin foamer."
item_state = "waterbackpackatmos"
icon_state = "waterbackpackatmos"
volume = 200
@@ -215,7 +215,7 @@
precision = 1
cooling_power = 5
w_class = WEIGHT_CLASS_HUGE
- flags = NODROP //Necessary to ensure that the nozzle and tank never seperate
+ flags = NODROP //Necessary to ensure that the nozzle and tank never separate
var/obj/item/weapon/watertank/tank
var/nozzle_mode = 0
var/metal_synthesis_cooldown = 0
diff --git a/code/game/objects/structures/musician.dm b/code/game/objects/structures/musician.dm
index 1331a5aeea..2040f86607 100644
--- a/code/game/objects/structures/musician.dm
+++ b/code/game/objects/structures/musician.dm
@@ -174,7 +174,7 @@
if(help)
dat += "Hide Help
"
dat += {"
- Lines are a series of chords, separated by commas (,), each with notes seperated by hyphens (-).
+ Lines are a series of chords, separated by commas (,), each with notes separated by hyphens (-).
Every note in a chord will play together, with chord timed by the tempo.
Notes are played by the names of the note, and optionally, the accidental, and/or the octave number.
diff --git a/code/modules/admin/admin_ranks.dm b/code/modules/admin/admin_ranks.dm
index a9e75c6028..73c2d8067e 100644
--- a/code/modules/admin/admin_ranks.dm
+++ b/code/modules/admin/admin_ranks.dm
@@ -119,7 +119,7 @@ GLOBAL_PROTECT(admin_ranks)
if(config.admin_legacy_system)
var/previous_rights = 0
- //load text from file and process each line seperately
+ //load text from file and process each line separately
for(var/line in world.file2list("config/admin_ranks.txt"))
if(!line)
continue
@@ -195,7 +195,7 @@ GLOBAL_PROTECT(admin_ranks)
//load text from file
var/list/lines = world.file2list("config/admins.txt")
- //process each line seperately
+ //process each line separately
for(var/line in lines)
if(!length(line))
continue
diff --git a/code/modules/admin/stickyban.dm b/code/modules/admin/stickyban.dm
index fc64eb2cf8..9ac85e49fa 100644
--- a/code/modules/admin/stickyban.dm
+++ b/code/modules/admin/stickyban.dm
@@ -233,7 +233,7 @@
. -= "reverting"
//storing these can sometimes cause sticky bans to start matching everybody
- // and isn't even needed for sticky ban matching, as the hub tracks these seperately
+ // and isn't even needed for sticky ban matching, as the hub tracks these separately
. -= "IP"
. -= "computer_id"
diff --git a/code/modules/awaymissions/mission_code/snowdin.dm b/code/modules/awaymissions/mission_code/snowdin.dm
index b1dadcdf32..2bd1f4c13e 100644
--- a/code/modules/awaymissions/mission_code/snowdin.dm
+++ b/code/modules/awaymissions/mission_code/snowdin.dm
@@ -201,8 +201,8 @@
death = FALSE
faction = "syndicate"
outfit = /datum/outfit/snowsyndie
- flavour_text = {"You are a syndicate operative recently awoken from cyrostatis in an underground outpost. Monitor Nanotrasen communications and record infomation. All intruders should be
- disposed of swirfly to assure no gathered infomation is stolen or lost. Try not to wander too far from the outpost as the caves can be a deadly place even for a trained operative such as yourself."}
+ flavour_text = {"You are a syndicate operative recently awoken from cyrostatis in an underground outpost. Monitor Nanotrasen communications and record information. All intruders should be
+ disposed of swirfly to assure no gathered information is stolen or lost. Try not to wander too far from the outpost as the caves can be a deadly place even for a trained operative such as yourself."}
/datum/outfit/snowsyndie
name = "Syndicate Snow Operative"
diff --git a/code/modules/clothing/clothing.dm b/code/modules/clothing/clothing.dm
index af0a4a7518..3c32a49e7d 100644
--- a/code/modules/clothing/clothing.dm
+++ b/code/modules/clothing/clothing.dm
@@ -6,7 +6,7 @@
var/damaged_clothes = 0 //similar to machine's BROKEN stat and structure's broken var
var/flash_protect = 0 //What level of bright light protection item has. 1 = Flashers, Flashes, & Flashbangs | 2 = Welding | -1 = OH GOD WELDING BURNT OUT MY RETINAS
var/tint = 0 //Sets the item's level of visual impairment tint, normally set to the same as flash_protect
- var/up = 0 //but seperated to allow items to protect but not impair vision, like space helmets
+ var/up = 0 //but separated to allow items to protect but not impair vision, like space helmets
var/visor_flags = 0 //flags that are added/removed when an item is adjusted up/down
var/visor_flags_inv = 0 //same as visor_flags, but for flags_inv
var/visor_flags_cover = 0 //same as above, but for flags_cover
diff --git a/code/modules/clothing/head/misc.dm b/code/modules/clothing/head/misc.dm
index 1713830c6c..3eabbad438 100644
--- a/code/modules/clothing/head/misc.dm
+++ b/code/modules/clothing/head/misc.dm
@@ -246,7 +246,7 @@
/obj/item/clothing/head/jester
name = "jester hat"
- desc = "A hat with bells, to add some merryness to the suit."
+ desc = "A hat with bells, to add some merriness to the suit."
icon_state = "jester_hat"
/obj/item/clothing/head/rice_hat
@@ -296,5 +296,5 @@
/obj/item/clothing/head/jester/alt
name = "jester hat"
- desc = "A hat with bells, to add some merryness to the suit."
+ desc = "A hat with bells, to add some merriness to the suit."
icon_state = "jester_hat2"
\ No newline at end of file
diff --git a/code/modules/clothing/shoes/miscellaneous.dm b/code/modules/clothing/shoes/miscellaneous.dm
index 3be1bfbbf0..4ae20e1461 100644
--- a/code/modules/clothing/shoes/miscellaneous.dm
+++ b/code/modules/clothing/shoes/miscellaneous.dm
@@ -206,7 +206,7 @@
jumping = TRUE
playsound(src.loc, 'sound/effects/stealthoff.ogg', 50, 1, 1)
- usr.visible_message("[usr] dashes foward into the air!")
+ usr.visible_message("[usr] dashes forward into the air!")
usr.throw_at(target, jumpdistance, jumpspeed, spin=0, diagonals_first = 1, callback = CALLBACK(src, .proc/hop_end))
/obj/item/clothing/shoes/bhop/proc/hop_end()
diff --git a/code/modules/clothing/spacesuits/flightsuit.dm b/code/modules/clothing/spacesuits/flightsuit.dm
index dfe85c3092..c1c2733b71 100644
--- a/code/modules/clothing/spacesuits/flightsuit.dm
+++ b/code/modules/clothing/spacesuits/flightsuit.dm
@@ -1219,7 +1219,7 @@
//FLIGHT HELMET----------------------------------------------------------------------------------------------------------------------------------------------------
/obj/item/clothing/head/helmet/space/hardsuit/flightsuit
name = "flight helmet"
- desc = "A sealed helmet attached to a flight suit for EVA usage scenerios. Its visor contains an information uplink HUD."
+ desc = "A sealed helmet attached to a flight suit for EVA usage scenarios. Its visor contains an information uplink HUD."
icon_state = "flighthelmet"
item_state = "flighthelmet"
item_color = "flight"
diff --git a/code/modules/clothing/spacesuits/flightsuit.dm.rej b/code/modules/clothing/spacesuits/flightsuit.dm.rej
new file mode 100644
index 0000000000..a0b426974d
--- /dev/null
+++ b/code/modules/clothing/spacesuits/flightsuit.dm.rej
@@ -0,0 +1,14 @@
+diff a/code/modules/clothing/spacesuits/flightsuit.dm b/code/modules/clothing/spacesuits/flightsuit.dm (rejected hunks)
+@@ -1157,10 +1157,10 @@
+ maint_panel = TRUE
+ else
+ maint_panel = FALSE
+- usermessage("You [maint_panel? "open" : "close"] the maintainence panel.")
++ usermessage("You [maint_panel? "open" : "close"] the maintenance panel.")
+ return FALSE
+ else if(!maint_panel)
+- usermessage("The maintainence panel is closed!", "boldwarning")
++ usermessage("The maintenance panel is closed!", "boldwarning")
+ return FALSE
+ else if(istype(I, /obj/item/weapon/crowbar))
+ var/list/inputlist = list()
diff --git a/code/modules/clothing/spacesuits/miscellaneous.dm b/code/modules/clothing/spacesuits/miscellaneous.dm
index 48f3a16830..fea8665ead 100644
--- a/code/modules/clothing/spacesuits/miscellaneous.dm
+++ b/code/modules/clothing/spacesuits/miscellaneous.dm
@@ -242,7 +242,7 @@ Contains:
/obj/item/clothing/suit/space/freedom
name = "eagle suit"
- desc = "An advanced, light suit, fabricated from a mixture of synthetic feathers and space-resistant material. A gun holster appears to be intergrated into the suit and the wings appear to be stuck in 'freedom' mode."
+ desc = "An advanced, light suit, fabricated from a mixture of synthetic feathers and space-resistant material. A gun holster appears to be integrated into the suit and the wings appear to be stuck in 'freedom' mode."
icon_state = "freedom"
item_state = "freedom"
allowed = list(/obj/item/weapon/gun, /obj/item/ammo_box, /obj/item/ammo_casing, /obj/item/weapon/melee/baton, /obj/item/weapon/restraints/handcuffs, /obj/item/weapon/tank/internals)
diff --git a/code/modules/clothing/suits/armor.dm b/code/modules/clothing/suits/armor.dm
index 46e953f4d0..1172321a89 100644
--- a/code/modules/clothing/suits/armor.dm
+++ b/code/modules/clothing/suits/armor.dm
@@ -197,7 +197,7 @@
//When the wearer gets hit, this armor will teleport the user a short distance away (to safety or to more danger, no one knows. That's the fun of it!)
/obj/item/clothing/suit/armor/reactive/teleport
name = "reactive teleport armor"
- desc = "Someone seperated our Research Director from his own head!"
+ desc = "Someone separated our Research Director from his own head!"
var/tele_range = 6
var/rad_amount= 15
reactivearmor_cooldown_duration = 100
diff --git a/code/modules/clothing/suits/miscellaneous.dm b/code/modules/clothing/suits/miscellaneous.dm
index 71075142c6..d6c019c60a 100644
--- a/code/modules/clothing/suits/miscellaneous.dm
+++ b/code/modules/clothing/suits/miscellaneous.dm
@@ -210,7 +210,7 @@
/obj/item/clothing/suit/poncho/ponchoshame
name = "poncho of shame"
- desc = "Forced to live on your shameful acting as a fake Mexican, you and your poncho have grown inseperable. Literally."
+ desc = "Forced to live on your shameful acting as a fake Mexican, you and your poncho have grown inseparable. Literally."
icon_state = "ponchoshame"
item_state = "ponchoshame"
flags = NODROP
diff --git a/code/modules/food_and_drinks/drinks/drinks.dm b/code/modules/food_and_drinks/drinks/drinks.dm
index 30245589d4..012bfe588f 100644
--- a/code/modules/food_and_drinks/drinks/drinks.dm
+++ b/code/modules/food_and_drinks/drinks/drinks.dm
@@ -398,7 +398,7 @@
/obj/item/weapon/reagent_containers/food/drinks/soda_cans/thirteenloko
name = "Thirteen Loko"
- desc = "The CMO has advised crew members that consumption of Thirteen Loko may result in seizures, blindness, drunkeness, or even death. Please Drink Responsibly."
+ desc = "The CMO has advised crew members that consumption of Thirteen Loko may result in seizures, blindness, drunkenness, or even death. Please Drink Responsibly."
icon_state = "thirteen_loko"
list_reagents = list("thirteenloko" = 30)
diff --git a/code/modules/food_and_drinks/drinks/drinks/drinkingglass.dm b/code/modules/food_and_drinks/drinks/drinks/drinkingglass.dm
index b8feddfa79..2ca15f7b97 100644
--- a/code/modules/food_and_drinks/drinks/drinks/drinkingglass.dm
+++ b/code/modules/food_and_drinks/drinks/drinks/drinkingglass.dm
@@ -34,7 +34,7 @@
// The format for shots is the exact same as iconstates for the drinking glass, except you use a shot glass instead. //
// If it's a new drink, remember to add it to Chemistry-Reagents.dm and Chemistry-Recipes.dm as well. //
// You can only mix the ported-over drinks in shot glasses for now (they'll mix in a shaker, but the sprite won't change for glasses). //
-// This is on a case-by-case basis, and you can even make a seperate sprite for shot glasses if you want. //
+// This is on a case-by-case basis, and you can even make a separate sprite for shot glasses if you want. //
/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/shotglass
name = "shot glass"
diff --git a/code/modules/food_and_drinks/food/condiment.dm b/code/modules/food_and_drinks/food/condiment.dm
index baa804a4de..1b06edc350 100644
--- a/code/modules/food_and_drinks/food/condiment.dm
+++ b/code/modules/food_and_drinks/food/condiment.dm
@@ -115,7 +115,7 @@
desc = "Tasty spacey sugar!"
list_reagents = list("sugar" = 50)
-/obj/item/weapon/reagent_containers/food/condiment/saltshaker //Seperate from above since it's a small shaker rather then
+/obj/item/weapon/reagent_containers/food/condiment/saltshaker //Separate from above since it's a small shaker rather then
name = "salt shaker" // a large one.
desc = "Salt. From space oceans, presumably."
icon_state = "saltshakersmall"
diff --git a/code/modules/mining/aux_base_camera.dm b/code/modules/mining/aux_base_camera.dm
index 0f4d5915f4..d629be13ee 100644
--- a/code/modules/mining/aux_base_camera.dm
+++ b/code/modules/mining/aux_base_camera.dm
@@ -27,7 +27,7 @@
delay_mod = 0.5
/obj/machinery/computer/camera_advanced/base_construction
- name = "base contruction console"
+ name = "base construction console"
desc = "An industrial computer integrated with a camera-assisted rapid construction drone."
networks = list("SS13")
var/obj/item/weapon/construction/rcd/internal/RCD //Internal RCD. The computer passes user commands to this in order to avoid massive copypaste.
@@ -267,7 +267,7 @@ datum/action/innate/aux_base/install_turret/Activate()
var/turf/turret_turf = get_turf(remote_eye)
if(is_blocked_turf(turret_turf))
- to_chat(owner, "Location is obtructed by something. Please clear the location and try again.")
+ to_chat(owner, "Location is obstructed by something. Please clear the location and try again.")
return
var/obj/machinery/porta_turret/aux_base/T = new /obj/machinery/porta_turret/aux_base(turret_turf)
diff --git a/code/modules/mining/lavaland/necropolis_chests.dm b/code/modules/mining/lavaland/necropolis_chests.dm
index f9e2ee855a..c1cd1b937e 100644
--- a/code/modules/mining/lavaland/necropolis_chests.dm
+++ b/code/modules/mining/lavaland/necropolis_chests.dm
@@ -785,7 +785,7 @@
switch(random)
if(1)
- to_chat(user, "Your appearence morphs to that of a very small humanoid ash dragon! You get to look like a freak without the cool abilities.")
+ to_chat(user, "Your appearance morphs to that of a very small humanoid ash dragon! You get to look like a freak without the cool abilities.")
H.dna.features = list("mcolor" = "A02720", "tail_lizard" = "Dark Tiger", "tail_human" = "None", "snout" = "Sharp", "horns" = "Curled", "ears" = "None", "wings" = "None", "frills" = "None", "spines" = "Long", "body_markings" = "Dark Tiger Body", "legs" = "Digitigrade Legs")
H.eye_color = "fee5a3"
H.set_species(/datum/species/lizard)
@@ -814,7 +814,7 @@
severity = BIOHAZARD
visibility_flags = 0
stage1 = list("Your bones ache.")
- stage2 = list("Your skin feels scaley.")
+ stage2 = list("Your skin feels scaly.")
stage3 = list("You have an overwhelming urge to terrorize some peasants.", "Your teeth feel sharper.")
stage4 = list("Your blood burns.")
stage5 = list("You're a fucking dragon. However, any previous allegiances you held still apply. It'd be incredibly rude to eat your still human friends for no reason.")
diff --git a/code/modules/mining/machine_vending.dm b/code/modules/mining/machine_vending.dm
index 14021cc60c..875380aea8 100644
--- a/code/modules/mining/machine_vending.dm
+++ b/code/modules/mining/machine_vending.dm
@@ -143,7 +143,7 @@
SSblackbox.add_details("mining_equipment_bought",
"[src.type]|[prize.equipment_path]")
// Add src.type to keep track of free golem purchases
- // seperately.
+ // separately.
updateUsrDialog()
return
diff --git a/code/modules/mining/shelters.dm b/code/modules/mining/shelters.dm
index d902c34584..a8b4eab8d2 100644
--- a/code/modules/mining/shelters.dm
+++ b/code/modules/mining/shelters.dm
@@ -47,7 +47,7 @@
/datum/map_template/shelter/beta
name = "Shelter Beta"
shelter_id = "shelter_beta"
- description = "An extremly luxurious shelter, containing all \
+ description = "An extremely luxurious shelter, containing all \
the amenities of home, including carpeted floors, hot and cold \
running water, a gourmet three course meal, cooking facilities, \
and a deluxe companion to keep you from getting lonely during \
diff --git a/code/modules/mob/living/carbon/human/human_helpers.dm b/code/modules/mob/living/carbon/human/human_helpers.dm
index 29e82efe6b..69b581995b 100644
--- a/code/modules/mob/living/carbon/human/human_helpers.dm
+++ b/code/modules/mob/living/carbon/human/human_helpers.dm
@@ -35,7 +35,7 @@
return pda.owner
return if_no_id
-//repurposed proc. Now it combines get_id_name() and get_face_name() to determine a mob's name variable. Made into a seperate proc as it'll be useful elsewhere
+//repurposed proc. Now it combines get_id_name() and get_face_name() to determine a mob's name variable. Made into a separate proc as it'll be useful elsewhere
/mob/living/carbon/human/get_visible_name()
var/face_name = get_face_name("")
var/id_name = get_id_name("")
diff --git a/code/modules/mob/living/living.dm b/code/modules/mob/living/living.dm
index 6510b46bf3..6624e5740f 100644
--- a/code/modules/mob/living/living.dm
+++ b/code/modules/mob/living/living.dm
@@ -135,7 +135,7 @@
//the puller can always swap with its victim if on grab intent
if(M.pulledby == src && a_intent == INTENT_GRAB)
mob_swap = 1
- //restrained people act if they were on 'help' intent to prevent a person being pulled from being seperated from their puller
+ //restrained people act if they were on 'help' intent to prevent a person being pulled from being separated from their puller
else if((M.restrained() || M.a_intent == INTENT_HELP) && (restrained() || a_intent == INTENT_HELP))
mob_swap = 1
if(mob_swap)
@@ -412,7 +412,7 @@
if(client)
to_chat(src, "[src]'s Metainfo:
[client.prefs.metadata]")
else
- to_chat(src, "[src] does not have any stored infomation!")
+ to_chat(src, "[src] does not have any stored information!")
else
to_chat(src, "OOC Metadata is not supported by this server!")
diff --git a/code/modules/mob/living/logout.dm b/code/modules/mob/living/logout.dm
index bcd7c77f1d..a3479aac89 100644
--- a/code/modules/mob/living/logout.dm
+++ b/code/modules/mob/living/logout.dm
@@ -2,5 +2,5 @@
if(ranged_ability && client)
ranged_ability.remove_mousepointer(client)
..()
- if(!key && mind) //key and mind have become seperated.
+ if(!key && mind) //key and mind have become separated.
mind.active = 0 //This is to stop say, a mind.transfer_to call on a corpse causing a ghost to re-enter its body.
\ No newline at end of file
diff --git a/code/modules/mob/living/silicon/robot/robot.dm b/code/modules/mob/living/silicon/robot/robot.dm
index 7eb7840a59..f083f6c5f5 100644
--- a/code/modules/mob/living/silicon/robot/robot.dm
+++ b/code/modules/mob/living/silicon/robot/robot.dm
@@ -1055,7 +1055,7 @@
diag_hud_set_aishell()
/mob/living/silicon/robot/proc/deploy_init(var/mob/living/silicon/ai/AI)
- real_name = "[AI.real_name] shell [rand(100, 999)] - [designation]" //Randomizing the name so it shows up seperately in the shells list
+ real_name = "[AI.real_name] shell [rand(100, 999)] - [designation]" //Randomizing the name so it shows up separately in the shells list
name = real_name
if(camera)
camera.c_tag = real_name //update the camera name too
diff --git a/code/modules/mob/living/simple_animal/corpse.dm b/code/modules/mob/living/simple_animal/corpse.dm
index 45fb411876..2b897bfbcb 100644
--- a/code/modules/mob/living/simple_animal/corpse.dm
+++ b/code/modules/mob/living/simple_animal/corpse.dm
@@ -2,7 +2,7 @@
//If someone can do this in a neater way, be my guest-Kor
-//This has to be seperate from the Away Mission corpses, because New() doesn't work for those, and initialize() doesn't work for these.
+//This has to be separate from the Away Mission corpses, because New() doesn't work for those, and initialize() doesn't work for these.
//To do: Allow corpses to appear mangled, bloody, etc. Allow customizing the bodies appearance (they're all bald and white right now).
diff --git a/code/modules/mob/say_readme.dm b/code/modules/mob/say_readme.dm
index 87c198875a..0c64da1789 100644
--- a/code/modules/mob/say_readme.dm
+++ b/code/modules/mob/say_readme.dm
@@ -5,7 +5,7 @@
This is a basic explanation of how say() works. Read this if you don't understand something.
The basic "flow" of say() is that a speaker says a message, which is heard by hearers. What appears on screen
-is constructed by each hearer seperately, and not by the speaker.
+is constructed by each hearer separately, and not by the speaker.
This rewrite was needed, but is far from perfect. Report any bugs you come across and feel free to fix things up.
Radio code, while very much related to saycode, is not something I wanted to touch, so the code related to that may be messy.
@@ -122,7 +122,7 @@ global procs
Called right before handle_inherent_channels()
can_speak_vocal(message)
- Checks if the mob can vocalize their message. This is seperate so, for example, muzzles don't block
+ Checks if the mob can vocalize their message. This is separate so, for example, muzzles don't block
hivemind chat.
Called right after handle_inherent_channels()
diff --git a/code/modules/paperwork/filingcabinet.dm b/code/modules/paperwork/filingcabinet.dm
index 468a044bc0..ca77641a9b 100644
--- a/code/modules/paperwork/filingcabinet.dm
+++ b/code/modules/paperwork/filingcabinet.dm
@@ -27,7 +27,7 @@
desc = "A small cabinet with drawers. This one has wheels!"
anchored = FALSE
-/obj/structure/filingcabinet/filingcabinet //not changing the path to avoid unecessary map issues, but please don't name stuff like this in the future -Pete
+/obj/structure/filingcabinet/filingcabinet //not changing the path to avoid unnecessary map issues, but please don't name stuff like this in the future -Pete
icon_state = "tallcabinet"
diff --git a/code/modules/power/apc.dm b/code/modules/power/apc.dm
index 5db3d9c1c5..e36c639eb9 100644
--- a/code/modules/power/apc.dm
+++ b/code/modules/power/apc.dm
@@ -28,7 +28,7 @@
// the Area Power Controller (APC), formerly Power Distribution Unit (PDU)
-// one per area, needs wire conection to power network through a terminal
+// one per area, needs wire connection to power network through a terminal
// controls power to devices in that area
// may be opened to change power cell
@@ -256,7 +256,7 @@
O += "apco2-[environ]"
add_overlay(O)
- // And now, seperately for cleanness, the lighting changing
+ // And now, separately for cleanness, the lighting changing
if(update_state & UPSTATE_ALLGOOD)
switch(charging)
if(0)
diff --git a/code/modules/power/supermatter/supermatter.dm b/code/modules/power/supermatter/supermatter.dm
index e80b4cd9b6..816cd97874 100644
--- a/code/modules/power/supermatter/supermatter.dm
+++ b/code/modules/power/supermatter/supermatter.dm
@@ -582,7 +582,7 @@
L.show_message("As \the [src] slowly stops resonating, you find your skin covered in new radiation burns.", 1,\
"The unearthly ringing subsides and you notice you have new radiation burns.", 2)
else
- L.show_message("You hear an uneartly ringing and notice your skin is covered in fresh radiation burns.", 2)
+ L.show_message("You hear an unearthly ringing and notice your skin is covered in fresh radiation burns.", 2)
// When you wanna make a supermatter shard for the dramatic effect, but
// don't want it exploding suddenly
diff --git a/code/modules/procedural_mapping/mapGeneratorReadme.dm b/code/modules/procedural_mapping/mapGeneratorReadme.dm
index ae656b5b30..c4ced7674b 100644
--- a/code/modules/procedural_mapping/mapGeneratorReadme.dm
+++ b/code/modules/procedural_mapping/mapGeneratorReadme.dm
@@ -80,7 +80,7 @@ mapGeneratorModule
Simple Workflow:
1. Define a/some mapGeneratorModule(s) to your liking, choosing atoms and turfs to spawn
- #Note: I chose to split Turfs and Atoms off into seperate modules, but this is NOT required.
+ #Note: I chose to split Turfs and Atoms off into separate modules, but this is NOT required.
#Note: A mapGeneratorModule may have turfs AND atoms, so long as each is in it's appropriate list
2. Define a mapGenerator type who's modules list contains the typepath(s) of all the module(s) you wish to use
@@ -98,7 +98,7 @@ Simple Workflow:
Option Suggestions:
- * Have seperate modules for Turfs and Atoms, this is not enforced, but it is how I have structured my nature example.
+ * Have separate modules for Turfs and Atoms, this is not enforced, but it is how I have structured my nature example.
* If your map doesn't look quite to your liking, simply jiggle with the variables on your modules and the type probabilities
* You can mix and map premade areas with the procedural generation, for example mapping an entire flat land but having code generate just the grass tufts
diff --git a/code/modules/projectiles/guns/ballistic/automatic.dm b/code/modules/projectiles/guns/ballistic/automatic.dm
index e1c6e6fa6e..cdf5a4b817 100644
--- a/code/modules/projectiles/guns/ballistic/automatic.dm
+++ b/code/modules/projectiles/guns/ballistic/automatic.dm
@@ -374,7 +374,7 @@
/obj/item/weapon/gun/ballistic/automatic/sniper_rifle/syndicate
name = "syndicate sniper rifle"
- desc = "An illegally modified .50 cal sniper rifle with supression compatibility. Quickscoping still doesn't work."
+ desc = "An illegally modified .50 cal sniper rifle with suppression compatibility. Quickscoping still doesn't work."
pin = /obj/item/device/firing_pin/implant/pindicate
origin_tech = "combat=7;syndicate=6"
diff --git a/code/modules/projectiles/guns/ballistic/revolver.dm b/code/modules/projectiles/guns/ballistic/revolver.dm
index 6c5e4d935c..226652f6d5 100644
--- a/code/modules/projectiles/guns/ballistic/revolver.dm
+++ b/code/modules/projectiles/guns/ballistic/revolver.dm
@@ -247,7 +247,7 @@
if(!SS.transfer_soul("FORCE", user)) //Something went wrong
qdel(SS)
return
- user.visible_message("[user.name]'s soul is captured by \the [src]!", "You've lost the gamble! Your soul is forfiet!")
+ user.visible_message("[user.name]'s soul is captured by \the [src]!", "You've lost the gamble! Your soul is forfeit!")
/////////////////////////////
// DOUBLE BARRELED SHOTGUN //
diff --git a/code/modules/projectiles/guns/energy/kinetic_accelerator.dm b/code/modules/projectiles/guns/energy/kinetic_accelerator.dm
index 22b51064af..9c84378586 100644
--- a/code/modules/projectiles/guns/energy/kinetic_accelerator.dm
+++ b/code/modules/projectiles/guns/energy/kinetic_accelerator.dm
@@ -427,7 +427,7 @@
/obj/item/borg/upgrade/modkit/bounty
name = "death syphon"
- desc = "Killing or assisting in killing a creature permenantly increases your damage against that type of creature."
+ desc = "Killing or assisting in killing a creature permanently increases your damage against that type of creature."
denied_type = /obj/item/borg/upgrade/modkit/bounty
modifier = 1.25
cost = 30
@@ -534,7 +534,7 @@
/obj/item/borg/upgrade/modkit/tracer/adjustable
name = "adjustable tracer bolts"
- desc = "Causes kinetic accelerator bolts to have a adjustably-colored tracer trail and explosion. Use in-hand to change color."
+ desc = "Causes kinetic accelerator bolts to have a adjustable-colored tracer trail and explosion. Use in-hand to change color."
/obj/item/borg/upgrade/modkit/tracer/adjustable/attack_self(mob/user)
bolt_color = input(user,"Choose Color") as color
diff --git a/code/modules/projectiles/guns/energy/laser.dm b/code/modules/projectiles/guns/energy/laser.dm
index a38ba3773e..a0a328afb0 100644
--- a/code/modules/projectiles/guns/energy/laser.dm
+++ b/code/modules/projectiles/guns/energy/laser.dm
@@ -46,7 +46,7 @@
name = "scatter shot laser rifle"
icon_state = "lasercannon"
item_state = "laser"
- desc = "An industrial-grade heavy-duty laser rifle with a modified laser lense to scatter its shot into multiple smaller lasers. The inner-core can self-charge for theorically infinite use."
+ desc = "An industrial-grade heavy-duty laser rifle with a modified laser lens to scatter its shot into multiple smaller lasers. The inner-core can self-charge for theoretically infinite use."
origin_tech = "combat=5;materials=4;powerstorage=4"
ammo_type = list(/obj/item/ammo_casing/energy/laser/scatter, /obj/item/ammo_casing/energy/laser)
@@ -107,8 +107,8 @@
transform *= 1 + ((damage/7) * 0.2)//20% larger per tile
/obj/item/weapon/gun/energy/xray
- name = "xray laser gun"
- desc = "A high-power laser gun capable of expelling concentrated xray blasts that pass through multiple soft targets and heavier materials"
+ name = "x-ray laser gun"
+ desc = "A high-power laser gun capable of expelling concentrated x-ray blasts that pass through multiple soft targets and heavier materials"
icon_state = "xray"
item_state = null
origin_tech = "combat=6;materials=4;magnets=4;syndicate=1"
diff --git a/code/modules/reagents/chemistry/machinery/chem_master.dm b/code/modules/reagents/chemistry/machinery/chem_master.dm
index 57d374e3d9..d902ed7b13 100644
--- a/code/modules/reagents/chemistry/machinery/chem_master.dm
+++ b/code/modules/reagents/chemistry/machinery/chem_master.dm
@@ -1,6 +1,6 @@
/obj/machinery/chem_master
name = "ChemMaster 3000"
- desc = "Used to seperate chemicals and distribute them in a variety of forms."
+ desc = "Used to separate chemicals and distribute them in a variety of forms."
density = TRUE
anchored = TRUE
icon = 'icons/obj/chemical.dmi'
diff --git a/code/modules/research/designs.dm b/code/modules/research/designs.dm
index a94b3a80b3..7a078f1891 100644
--- a/code/modules/research/designs.dm
+++ b/code/modules/research/designs.dm
@@ -498,7 +498,7 @@ other types of metals and chemistry for reagents).
/datum/design/handdrill
name = "Hand Drill"
- desc = "A small electric hand drill with an interchangable screwdriver and bolt bit"
+ desc = "A small electric hand drill with an interchangeable screwdriver and bolt bit"
id = "handdrill"
req_tech = list("materials" = 4, "engineering" = 6)
build_type = PROTOLATHE
@@ -508,7 +508,7 @@ other types of metals and chemistry for reagents).
/datum/design/jawsoflife
name = "Jaws of Life"
- desc = "A small, compact Jaws of Life with an interchangable pry jaws and cutting jaws"
+ desc = "A small, compact Jaws of Life with an interchangeable pry jaws and cutting jaws"
id = "jawsoflife"
req_tech = list("materials" = 4, "engineering" = 6, "magnets" = 6) // added one more requirment since the Jaws of Life are a bit OP
build_path = /obj/item/weapon/crowbar/power
diff --git a/code/modules/research/experimentor.dm b/code/modules/research/experimentor.dm
index 23b9ad00c8..7e7b4c2b5b 100644
--- a/code/modules/research/experimentor.dm
+++ b/code/modules/research/experimentor.dm
@@ -653,7 +653,7 @@
warn_admins(user, "Flash")
/obj/item/weapon/relic/proc/petSpray(mob/user)
- var/message = "[src] begans to shake, and in the distance the sound of rampaging animals arises!"
+ var/message = "[src] begins to shake, and in the distance the sound of rampaging animals arises!"
visible_message(message)
to_chat(user, message)
var/animals = rand(1,25)
diff --git a/code/modules/research/research.dm b/code/modules/research/research.dm
index 827cce162f..49584ecb3c 100644
--- a/code/modules/research/research.dm
+++ b/code/modules/research/research.dm
@@ -219,13 +219,13 @@ research holder datum.
/datum/tech/plasmatech
name = "Plasma Research"
- desc = "Research into the mysterious substance colloqually known as \"plasma\"."
+ desc = "Research into the mysterious substance colloquially known as \"plasma\"."
id = "plasmatech"
rare = 3
/datum/tech/powerstorage
name = "Power Manipulation Technology"
- desc = "The various technologies behind the storage and generation of electicity."
+ desc = "The various technologies behind the storage and generation of electricity."
id = "powerstorage"
/datum/tech/bluespace
@@ -256,7 +256,7 @@ research holder datum.
/datum/tech/syndicate
name = "Illegal Technologies Research"
- desc = "The study of technologies that violate Nanotrassen regulations."
+ desc = "The study of technologies that violate Nanotrasen regulations."
id = "syndicate"
rare = 4
diff --git a/code/modules/research/xenobiology/xenobiology.dm b/code/modules/research/xenobiology/xenobiology.dm
index 93ac3324ac..9c826f5f5f 100644
--- a/code/modules/research/xenobiology/xenobiology.dm
+++ b/code/modules/research/xenobiology/xenobiology.dm
@@ -425,7 +425,7 @@
/obj/item/clothing/suit/golem
name = "adamantine shell"
- desc = "a golem's thick outter shell"
+ desc = "a golem's thick outer shell"
icon_state = "golem"
item_state = "golem"
w_class = WEIGHT_CLASS_BULKY
diff --git a/code/modules/spells/spell_types/summonitem.dm b/code/modules/spells/spell_types/summonitem.dm
index 74490fea28..61330265ab 100644
--- a/code/modules/spells/spell_types/summonitem.dm
+++ b/code/modules/spells/spell_types/summonitem.dm
@@ -80,7 +80,7 @@
var/obj/item/bodypart/part = X
if(item_to_retrieve in part.embedded_objects)
part.embedded_objects -= item_to_retrieve
- to_chat(C, "The [item_to_retrieve] that was embedded in your [L] has myseriously vanished. How fortunate!")
+ to_chat(C, "The [item_to_retrieve] that was embedded in your [L] has mysteriously vanished. How fortunate!")
if(!C.has_embedded_objects())
C.clear_alert("embeddedobject")
break
diff --git a/code/modules/station_goals/bsa.dm b/code/modules/station_goals/bsa.dm
index 074c206c1f..77a30b1884 100644
--- a/code/modules/station_goals/bsa.dm
+++ b/code/modules/station_goals/bsa.dm
@@ -64,7 +64,7 @@
/obj/machinery/bsa/middle
name = "Bluespace Artillery Fusor"
- desc = "Contents classifed by Nanotrasen Naval Command. Needs to be linked with the other BSA parts using multitool."
+ desc = "Contents classified by Nanotrasen Naval Command. Needs to be linked with the other BSA parts using multitool."
icon_state = "fuel_chamber"
var/obj/machinery/bsa/back/back
var/obj/machinery/bsa/front/front
diff --git a/code/modules/station_goals/dna_vault.dm b/code/modules/station_goals/dna_vault.dm
index 55ae1cc2b0..e7a529b2a0 100644
--- a/code/modules/station_goals/dna_vault.dm
+++ b/code/modules/station_goals/dna_vault.dm
@@ -85,7 +85,7 @@
if(!H.myseed)
return
if(!H.harvest)// So it's bit harder.
- to_chat(user, "Plant needs to be ready to harvest to perform full data scan.") //Because space dna is actually magic
+ to_chat(user, "Plant needs to be ready to harvest to perform full data scan.") //Because space dna is actually magic
return
if(plants[H.myseed.type])
to_chat(user, "Plant data already present in local storage.")
diff --git a/code/modules/stock_market/events.dm b/code/modules/stock_market/events.dm
index 17a92ea83f..a3d9023f7a 100644
--- a/code/modules/stock_market/events.dm
+++ b/code/modules/stock_market/events.dm
@@ -4,7 +4,7 @@
var/name = "event"
var/next_phase = 0
var/datum/stock/company = null
- var/current_title = "A company holding an pangalactic conference in the Seattle Conference Center, Seattle, Earth"
+ var/current_title = "A company holding a pangalactic conference in the Seattle Conference Center, Seattle, Earth"
var/current_desc = "We will continue to monitor their stocks as the situation unfolds."
var/phase_id = 0
var/hidden = 0
diff --git a/code/modules/surgery/organ_manipulation.dm.rej b/code/modules/surgery/organ_manipulation.dm.rej
new file mode 100644
index 0000000000..8a77b0aade
--- /dev/null
+++ b/code/modules/surgery/organ_manipulation.dm.rej
@@ -0,0 +1,10 @@
+diff a/code/modules/surgery/organ_manipulation.dm b/code/modules/surgery/organ_manipulation.dm (rejected hunks)
+@@ -78,7 +78,7 @@
+ current_type = "extract"
+ var/list/organs = target.getorganszone(target_zone)
+ if(!organs.len)
+- to_chat(user, "There are no removeable organs in [target]'s [parse_zone(target_zone)]!")
++ to_chat(user, "There are no removable organs in [target]'s [parse_zone(target_zone)]!")
+ return -1
+ else
+ for(var/obj/item/organ/O in organs)
diff --git a/code/modules/surgery/organs/augments_arms.dm b/code/modules/surgery/organs/augments_arms.dm
index 5c0e31456e..69cf8aa96b 100644
--- a/code/modules/surgery/organs/augments_arms.dm
+++ b/code/modules/surgery/organs/augments_arms.dm
@@ -174,7 +174,7 @@
/obj/item/organ/cyberimp/arm/toolset
name = "integrated toolset implant"
- desc = "A stripped-down version of engineering cyborg toolset, designed to be installed on subject's arm. Contains all neccessary tools."
+ desc = "A stripped-down version of engineering cyborg toolset, designed to be installed on subject's arm. Contains all necessary tools."
origin_tech = "materials=3;engineering=4;biotech=3;powerstorage=4"
contents = newlist(/obj/item/weapon/screwdriver/cyborg, /obj/item/weapon/wrench/cyborg, /obj/item/weapon/weldingtool/largetank/cyborg,
/obj/item/weapon/crowbar/cyborg, /obj/item/weapon/wirecutters/cyborg, /obj/item/device/multitool/cyborg)
@@ -191,7 +191,7 @@
/obj/item/organ/cyberimp/arm/esword
name = "arm-mounted energy blade"
- desc = "An illegal, and highly dangerous cybernetic implant that can project a deadly blade of concentrated enregy."
+ desc = "An illegal, and highly dangerous cybernetic implant that can project a deadly blade of concentrated energy."
contents = newlist(/obj/item/weapon/melee/transforming/energy/blade/hardlight)
origin_tech = "materials=4;combat=5;biotech=3;powerstorage=2;syndicate=5"
diff --git a/code/modules/surgery/organs/augments_chest.dm b/code/modules/surgery/organs/augments_chest.dm
index 3a2a3611db..a281249a12 100644
--- a/code/modules/surgery/organs/augments_chest.dm
+++ b/code/modules/surgery/organs/augments_chest.dm
@@ -117,7 +117,7 @@
/obj/item/organ/cyberimp/chest/thrusters
name = "implantable thrusters set"
desc = "An implantable set of thruster ports. They use the gas from environment or subject's internals for propulsion in zero-gravity areas. \
- Unlike regular jetpack, this device has no stablilzation system."
+ Unlike regular jetpack, this device has no stabilization system."
slot = "thrusters"
icon_state = "imp_jetpack"
origin_tech = "materials=4;magnets=4;biotech=4;engineering=5"
diff --git a/code/modules/surgery/remove_embedded_object.dm b/code/modules/surgery/remove_embedded_object.dm
index b791586e22..e116c23303 100644
--- a/code/modules/surgery/remove_embedded_object.dm
+++ b/code/modules/surgery/remove_embedded_object.dm
@@ -32,7 +32,7 @@
H.clear_alert("embeddedobject")
if(objects > 0)
- user.visible_message("[user] sucessfully removes [objects] objects from [H]'s [L]!", "You successfully remove [objects] objects from [H]'s [L.name].")
+ user.visible_message("[user] successfully removes [objects] objects from [H]'s [L]!", "You successfully remove [objects] objects from [H]'s [L.name].")
else
to_chat(user, "You find no objects embedded in [H]'s [L]!")
diff --git a/code/modules/zombie/organs.dm b/code/modules/zombie/organs.dm
index e977ac4600..d3c30ac285 100644
--- a/code/modules/zombie/organs.dm
+++ b/code/modules/zombie/organs.dm
@@ -1,6 +1,6 @@
/obj/item/organ/zombie_infection
name = "festering ooze"
- desc = "A black web of pus and vicera."
+ desc = "A black web of pus and viscera."
zone = "head"
slot = "zombie_infection"
icon_state = "blacktumor"
From d6fdd618e8467a1181fb06200f15a7fbe0e2cd94 Mon Sep 17 00:00:00 2001
From: CitadelStationBot
Date: Tue, 1 Aug 2017 08:46:27 -0500
Subject: [PATCH 008/154] Removes spaces to underline from add_details
---
code/controllers/subsystem/blackbox.dm | 1 -
1 file changed, 1 deletion(-)
diff --git a/code/controllers/subsystem/blackbox.dm b/code/controllers/subsystem/blackbox.dm
index 19e96f3fbf..afa77b0207 100644
--- a/code/controllers/subsystem/blackbox.dm
+++ b/code/controllers/subsystem/blackbox.dm
@@ -259,7 +259,6 @@ SUBSYSTEM_DEF(blackbox)
/datum/feedback_variable/proc/add_details(text)
if (istext(text))
- text = replacetext(text, " ", "_")
if (!details)
details = text
else
From e2c14f018bde937161236b8b9c492416754a116e Mon Sep 17 00:00:00 2001
From: CitadelStationBot
Date: Tue, 1 Aug 2017 17:06:59 -0500
Subject: [PATCH 009/154] Automatic changelog generation for PR #2215 [ci skip]
---
html/changelogs/AutoChangeLog-pr-2215.yml | 5 +++++
1 file changed, 5 insertions(+)
create mode 100644 html/changelogs/AutoChangeLog-pr-2215.yml
diff --git a/html/changelogs/AutoChangeLog-pr-2215.yml b/html/changelogs/AutoChangeLog-pr-2215.yml
new file mode 100644
index 0000000000..f02f2d33cf
--- /dev/null
+++ b/html/changelogs/AutoChangeLog-pr-2215.yml
@@ -0,0 +1,5 @@
+author: "Xhuis and oranges"
+delete-after: True
+changes:
+ - bugfix: "Banana cream pies no longer splat when they're caught by someone."
+ - soundadd: "Throwing a pie in someone's face now has a splat sound."
From 1e82ad9d3e52dd236915e36a595928f063920703 Mon Sep 17 00:00:00 2001
From: CitadelStationBot
Date: Tue, 1 Aug 2017 17:57:44 -0500
Subject: [PATCH 010/154] Fixes devil pitchforks being uninitialized
---
code/game/objects/items/weapons/twohanded.dm | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/code/game/objects/items/weapons/twohanded.dm b/code/game/objects/items/weapons/twohanded.dm
index 113f70825e..067339d6a3 100644
--- a/code/game/objects/items/weapons/twohanded.dm
+++ b/code/game/objects/items/weapons/twohanded.dm
@@ -578,6 +578,7 @@
force_wielded = 25
/obj/item/weapon/twohanded/pitchfork/demonic/Initialize()
+ . = ..()
set_light(3,6,LIGHT_COLOR_RED)
/obj/item/weapon/twohanded/pitchfork/demonic/greater
@@ -695,4 +696,4 @@
sharpness = IS_SHARP
/obj/item/weapon/twohanded/bonespear/update_icon()
- icon_state = "bone_spear[wielded]"
\ No newline at end of file
+ icon_state = "bone_spear[wielded]"
From 6cb94445886b88415d9862338e8449a162631ca0 Mon Sep 17 00:00:00 2001
From: CitadelStationBot
Date: Tue, 1 Aug 2017 18:10:59 -0500
Subject: [PATCH 011/154] Fixes silicons not returning an Initialize hint
---
code/modules/mob/living/silicon/silicon.dm | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/code/modules/mob/living/silicon/silicon.dm b/code/modules/mob/living/silicon/silicon.dm
index 6446debb80..bdc2338828 100644
--- a/code/modules/mob/living/silicon/silicon.dm
+++ b/code/modules/mob/living/silicon/silicon.dm
@@ -38,7 +38,7 @@
var/law_change_counter = 0
/mob/living/silicon/Initialize()
- ..()
+ . = ..()
GLOB.silicon_mobs += src
var/datum/atom_hud/data/diagnostic/diag_hud = GLOB.huds[DATA_HUD_DIAGNOSTIC]
diag_hud.add_to_hud(src)
From f19a9e855ad26374ec695aa9cefa3af994034b88 Mon Sep 17 00:00:00 2001
From: CitadelStationBot
Date: Tue, 1 Aug 2017 23:55:55 -0500
Subject: [PATCH 012/154] Automatic changelog generation for PR #2143 [ci skip]
---
html/changelogs/AutoChangeLog-pr-2143.yml | 4 ++++
1 file changed, 4 insertions(+)
create mode 100644 html/changelogs/AutoChangeLog-pr-2143.yml
diff --git a/html/changelogs/AutoChangeLog-pr-2143.yml b/html/changelogs/AutoChangeLog-pr-2143.yml
new file mode 100644
index 0000000000..ca4975e073
--- /dev/null
+++ b/html/changelogs/AutoChangeLog-pr-2143.yml
@@ -0,0 +1,4 @@
+author: "Joan"
+delete-after: True
+changes:
+ - tweak: "Lava rivers though the ash walker nest are now significantly less of a hassle for the ashwalkers."
From 76f7fcef9a307456fda965d1ed74861655f51b21 Mon Sep 17 00:00:00 2001
From: CitadelStationBot
Date: Wed, 2 Aug 2017 03:17:32 -0500
Subject: [PATCH 013/154] [MIRROR] Cleaned up paper varedits + tidied up paths
(#2156)
* Cleaned up paper varedits + tidied up paths
* work smarter, not harder
* citadel snowflake
* Update uplink_item_cit.dm
---
.../lavaland_surface_animal_hospital.dmm | 5 +-
.../LavaRuins/lavaland_surface_sloth.dmm | 5 +-
.../LavaRuins/lavaland_surface_ufo_crash.dmm | 2 +-
_maps/RandomRuins/SpaceRuins/DJstation.dmm | 2 +-
_maps/RandomRuins/SpaceRuins/TheDerelict.dmm | 16 +--
_maps/RandomRuins/SpaceRuins/asteroid4.dmm | 4 +-
_maps/RandomRuins/SpaceRuins/bigderelict1.dmm | 4 +-
.../SpaceRuins/crashedclownship.dmm | 4 +-
_maps/RandomRuins/SpaceRuins/crashedship.dmm | 15 +--
_maps/RandomRuins/SpaceRuins/deepstorage.dmm | 15 +--
.../SpaceRuins/listeningstation.dmm | 55 ++-------
_maps/RandomRuins/SpaceRuins/oldstation.dmm | 18 +--
.../SpaceRuins/originalcontent.dmm | 20 +---
_maps/RandomRuins/SpaceRuins/spacehotel.dmm | 30 +----
_maps/RandomZLevels/Academy.dmm | 37 ++----
_maps/RandomZLevels/caves.dmm | 45 ++-----
_maps/RandomZLevels/centcomAway.dmm | 8 +-
_maps/RandomZLevels/challenge.dmm | 7 +-
_maps/RandomZLevels/moonoutpost19.dmm | 88 ++++----------
_maps/RandomZLevels/research.dmm | 8 +-
_maps/RandomZLevels/snowdin.dmm | 29 ++---
_maps/RandomZLevels/undergroundoutpost45.dmm | 4 +-
_maps/RandomZLevels/wildwest.dmm | 22 +---
_maps/map_files/BoxStation/BoxStation.dmm | 25 ++--
_maps/map_files/Cerestation/cerestation.dmm | 79 +++---------
.../map_files/Deltastation/DeltaStation2.dmm | 12 +-
_maps/map_files/MetaStation/MetaStation.dmm | 37 ++----
_maps/map_files/Mining/Lavaland.dmm | 6 +-
_maps/map_files/OmegaStation/OmegaStation.dmm | 2 +-
_maps/map_files/PubbyStation/PubbyStation.dmm | 27 ++---
.../PubbyStation/PubbyStation.dmm.rej | 2 +-
_maps/map_files/generic/Centcomm.dmm | 45 ++++---
.../emergency_imfedupwiththisworld.dmm | 4 +-
.../miniantags/abduction/abduction_gear.dm | 6 +-
code/game/gamemodes/wizard/spellbook.dm | 2 +-
code/game/machinery/cloning.dm | 2 +-
code/game/machinery/quantum_pad.dm | 5 +
code/game/machinery/recycler.dm | 2 +-
code/game/objects/items/theft_tools.dm | 4 +-
.../items/weapons/storage/uplink_kits.dm | 4 +-
.../crates_lockers/closets/secure/security.dm | 2 +-
.../structures/crates_lockers/crates.dm | 2 +-
code/game/objects/structures/morgue.dm | 2 +-
code/modules/awaymissions/gateway.dm | 5 +
.../awaymissions/mission_code/Academy.dm | 30 +++++
.../awaymissions/mission_code/caves.dm | 31 +++++
.../awaymissions/mission_code/centcomAway.dm | 4 +-
.../mission_code/moonoutpost19.dm | 83 +++++++++++++
.../awaymissions/mission_code/research.dm | 5 +
.../awaymissions/mission_code/snowdin.dm | 38 +++---
.../mission_code/stationCollision.dm | 18 +--
.../awaymissions/mission_code/wildwest.dm | 22 ++++
code/modules/awaymissions/pamphlet.dm | 2 +
code/modules/cargo/exports/manifest.dm | 22 ++--
code/modules/cargo/order.dm | 12 +-
code/modules/cargo/packs.dm | 4 +-
code/modules/holodeck/items.dm | 6 +-
.../living/simple_animal/guardian/guardian.dm | 8 +-
code/modules/paperwork/paper.dm | 92 --------------
code/modules/paperwork/paper_premade.dm | 113 ++++++++++++++++++
code/modules/power/gravitygenerator.dm | 2 +-
code/modules/power/solar.dm | 2 +-
code/modules/recycling/conveyor2.dm | 2 +-
code/modules/ruins/lavalandruin_code/sloth.dm | 5 +
.../ruins/lavalandruin_code/surface.dm | 5 +
.../modules/ruins/spaceruin_code/DJstation.dm | 5 +
.../ruins/spaceruin_code/TheDerelict.dm | 13 ++
.../modules/ruins/spaceruin_code/asteroid4.dm | 4 +
.../ruins/spaceruin_code/crashedclownship.dm | 4 +
.../ruins/spaceruin_code/crashedship.dm | 15 +++
.../ruins/spaceruin_code/deepstorage.dm | 14 +++
.../ruins/spaceruin_code/listeningstation.dm | 45 +++++++
.../ruins/spaceruin_code/oldstation.dm | 49 ++++++++
.../ruins/spaceruin_code/originalcontent.dm | 4 +
.../ruins/spaceruin_code/spacehotel.dm | 12 ++
code/modules/uplink/uplink_item_cit.dm | 2 +-
tgstation.dme | 16 +++
77 files changed, 756 insertions(+), 651 deletions(-)
create mode 100644 code/modules/awaymissions/mission_code/caves.dm
create mode 100644 code/modules/awaymissions/mission_code/moonoutpost19.dm
create mode 100644 code/modules/awaymissions/mission_code/research.dm
create mode 100644 code/modules/paperwork/paper_premade.dm
create mode 100644 code/modules/ruins/lavalandruin_code/sloth.dm
create mode 100644 code/modules/ruins/lavalandruin_code/surface.dm
create mode 100644 code/modules/ruins/spaceruin_code/DJstation.dm
create mode 100644 code/modules/ruins/spaceruin_code/TheDerelict.dm
create mode 100644 code/modules/ruins/spaceruin_code/asteroid4.dm
create mode 100644 code/modules/ruins/spaceruin_code/crashedclownship.dm
create mode 100644 code/modules/ruins/spaceruin_code/crashedship.dm
create mode 100644 code/modules/ruins/spaceruin_code/deepstorage.dm
create mode 100644 code/modules/ruins/spaceruin_code/listeningstation.dm
create mode 100644 code/modules/ruins/spaceruin_code/oldstation.dm
create mode 100644 code/modules/ruins/spaceruin_code/originalcontent.dm
create mode 100644 code/modules/ruins/spaceruin_code/spacehotel.dm
diff --git a/_maps/RandomRuins/LavaRuins/lavaland_surface_animal_hospital.dmm b/_maps/RandomRuins/LavaRuins/lavaland_surface_animal_hospital.dmm
index 005ce22589..de78fed108 100644
--- a/_maps/RandomRuins/LavaRuins/lavaland_surface_animal_hospital.dmm
+++ b/_maps/RandomRuins/LavaRuins/lavaland_surface_animal_hospital.dmm
@@ -145,10 +145,7 @@
dir = 1;
pixel_y = -27
},
-/obj/item/weapon/paper{
- info = "Nothing of interest to report.";
- name = "Important Notice - Mrs. Henderson"
- },
+/obj/item/weapon/paper/fluff/stations/lavaland/surface/henderson_report,
/turf/open/floor/plasteel/cmo,
/area/ruin/powered/animal_hospital)
"aA" = (
diff --git a/_maps/RandomRuins/LavaRuins/lavaland_surface_sloth.dmm b/_maps/RandomRuins/LavaRuins/lavaland_surface_sloth.dmm
index a8514a4647..89a8b50c39 100644
--- a/_maps/RandomRuins/LavaRuins/lavaland_surface_sloth.dmm
+++ b/_maps/RandomRuins/LavaRuins/lavaland_surface_sloth.dmm
@@ -6,10 +6,7 @@
/turf/open/lava/smooth/lava_land_surface,
/area/ruin/unpowered)
"c" = (
-/obj/item/weapon/paper{
- desc = "have not gotten around to finishing my cursed item yet sorry - sloth";
- name = "note from sloth"
- },
+/obj/item/weapon/paper/fluff/stations/lavaland/sloth/note,
/turf/open/floor/sepia{
blocks_air = 0;
slowdown = 10
diff --git a/_maps/RandomRuins/LavaRuins/lavaland_surface_ufo_crash.dmm b/_maps/RandomRuins/LavaRuins/lavaland_surface_ufo_crash.dmm
index 6c18feaff8..22d341c7df 100644
--- a/_maps/RandomRuins/LavaRuins/lavaland_surface_ufo_crash.dmm
+++ b/_maps/RandomRuins/LavaRuins/lavaland_surface_ufo_crash.dmm
@@ -132,7 +132,7 @@
/area/ruin/unpowered)
"w" = (
/obj/item/weapon/retractor/alien,
-/obj/item/weapon/paper/abductor,
+/obj/item/weapon/paper/guides/antag/abductor,
/turf/open/floor/plating/abductor{
initial_gas_mix = "o2=16;n2=23;TEMP=300"
},
diff --git a/_maps/RandomRuins/SpaceRuins/DJstation.dmm b/_maps/RandomRuins/SpaceRuins/DJstation.dmm
index 3a1279237c..515878e931 100644
--- a/_maps/RandomRuins/SpaceRuins/DJstation.dmm
+++ b/_maps/RandomRuins/SpaceRuins/DJstation.dmm
@@ -249,7 +249,7 @@
/area/djstation)
"aR" = (
/obj/structure/table,
-/obj/item/weapon/paper/djstation,
+/obj/item/weapon/paper/fluff/ruins/djstation,
/turf/open/floor/plasteel/cafeteria,
/area/djstation)
"aS" = (
diff --git a/_maps/RandomRuins/SpaceRuins/TheDerelict.dmm b/_maps/RandomRuins/SpaceRuins/TheDerelict.dmm
index 52b8dcab89..768dd08e3f 100644
--- a/_maps/RandomRuins/SpaceRuins/TheDerelict.dmm
+++ b/_maps/RandomRuins/SpaceRuins/TheDerelict.dmm
@@ -1212,10 +1212,7 @@
dir = 8
},
/obj/structure/table,
-/obj/item/weapon/paper{
- info = "If the equipment breaks there should be enough spare parts in our engineering storage near the north east solar array.";
- name = "Equipment Inventory"
- },
+/obj/item/weapon/paper/fluff/ruins/thederelict/equipment,
/turf/open/floor/plasteel/airless,
/area/derelict/gravity_generator)
"dt" = (
@@ -1683,10 +1680,7 @@
/turf/open/floor/plasteel,
/area/derelict/bridge)
"eN" = (
-/obj/item/weapon/paper{
- info = "Objective #1: Destroy the station with a nuclear device.";
- name = "Objectives of a Nuclear Operative"
- },
+/obj/item/weapon/paper/fluff/ruins/thederelict/nukie_objectives,
/turf/open/floor/plasteel/airless{
icon_state = "damaged2"
},
@@ -4785,11 +4779,7 @@
/turf/open/floor/plating/airless,
/area/derelict/se_solar)
"oa" = (
-/obj/item/weapon/paper{
- desc = "";
- info = "The Syndicate have cunningly disguised a Syndicate Uplink as your PDA. Simply enter the code \"678 Bravo\" into the ringtone select to unlock its hidden features.
Objective #1. Kill the God damn AI in a fire blast that it rocks the station. Success!
Objective #2. Escape alive. Failed.";
- name = "Mission Objectives"
- },
+/obj/item/weapon/paper/fluff/ruins/thederelict/syndie_mission,
/turf/open/floor/plasteel/airless{
icon_state = "damaged2"
},
diff --git a/_maps/RandomRuins/SpaceRuins/asteroid4.dmm b/_maps/RandomRuins/SpaceRuins/asteroid4.dmm
index 03ecac3738..bbbd529e8a 100644
--- a/_maps/RandomRuins/SpaceRuins/asteroid4.dmm
+++ b/_maps/RandomRuins/SpaceRuins/asteroid4.dmm
@@ -49,9 +49,7 @@
brute_damage = 120;
oxy_damage = 75
},
-/obj/item/weapon/paper{
- info = "Extraction was successful! The disguise was perfect, the clowns never knew what hit 'em! Once I get back to base with the bananium samples I'll be rich, I tell you! RICH!"
- },
+/obj/item/weapon/paper/fluff/ruins/asteroid4/extraction,
/obj/item/stack/sheet/mineral/bananium{
amount = 15
},
diff --git a/_maps/RandomRuins/SpaceRuins/bigderelict1.dmm b/_maps/RandomRuins/SpaceRuins/bigderelict1.dmm
index 40efc634aa..a9232ea33a 100644
--- a/_maps/RandomRuins/SpaceRuins/bigderelict1.dmm
+++ b/_maps/RandomRuins/SpaceRuins/bigderelict1.dmm
@@ -259,7 +259,7 @@
name = "critter crate - mr.tiggles";
opened = 1
},
-/obj/item/weapon/paper/crumpled/snowdin{
+/obj/item/weapon/paper/crumpled/ruins/snowdin{
info = "A crumpled piece of manifest paper, out of the barely legible pen writing, you can see something about a warning involving whatever was originally in the crate."
},
/obj/structure/alien/weeds{
@@ -455,7 +455,7 @@
name = "Tradeport Officer";
random = 1
},
-/obj/item/weapon/paper/crumpled/snowdin{
+/obj/item/weapon/paper/crumpled/ruins/snowdin{
icon_state = "scrap_bloodied";
info = "If anyone finds this, please, don't let my kids know I died a coward.."
},
diff --git a/_maps/RandomRuins/SpaceRuins/crashedclownship.dmm b/_maps/RandomRuins/SpaceRuins/crashedclownship.dmm
index 4f9ce74170..618366df7c 100644
--- a/_maps/RandomRuins/SpaceRuins/crashedclownship.dmm
+++ b/_maps/RandomRuins/SpaceRuins/crashedclownship.dmm
@@ -103,9 +103,7 @@
/turf/open/floor/mineral/bananium/airless,
/area/ruin/unpowered)
"s" = (
-/obj/item/weapon/paper{
- info = "The call has gone out! Our ancestral home has been rediscovered! Not a small patch of land, but a true clown nation, a true Clown Planet! We're on our way home at last!"
- },
+/obj/item/weapon/paper/fluff/ruins/crashedclownship/true_nation,
/turf/open/floor/mineral/bananium/airless,
/area/ruin/unpowered)
"t" = (
diff --git a/_maps/RandomRuins/SpaceRuins/crashedship.dmm b/_maps/RandomRuins/SpaceRuins/crashedship.dmm
index 6dcae3923e..ecc3332dde 100644
--- a/_maps/RandomRuins/SpaceRuins/crashedship.dmm
+++ b/_maps/RandomRuins/SpaceRuins/crashedship.dmm
@@ -653,10 +653,7 @@
/obj/structure/table,
/obj/item/weapon/screwdriver,
/obj/item/weapon/screwdriver,
-/obj/item/weapon/paper{
- info = "The next person who takes one of my screwdrivers gets stabbed with one. They are MINE. - Love, Madsen";
- name = "scribbled note"
- },
+/obj/item/weapon/paper/fluff/ruins/crashedship/scribbled,
/obj/item/weapon/screwdriver,
/turf/open/floor/plasteel/bar,
/area/awaymission/BMPship/Midship)
@@ -954,10 +951,7 @@
/area/awaymission/BMPship/Aft)
"cY" = (
/obj/structure/table,
-/obj/item/weapon/paper{
- info = "I'm no scientist, but judging from the design and components, it seems to be some kind of teleporter. This thing is gonna be worth a lot of cash to the right man. The boys are excited, as they have every right to be, and I've let them crack into that case of beer we got. I normally wouldn't allow such a thing, but this is a time for celebration! It's not like a couple drinks will hurt anything.";
- name = "Captain's log entry"
- },
+/obj/item/weapon/paper/fluff/ruins/crashedship/captains_log,
/turf/open/floor/carpet,
/area/awaymission/BMPship/Fore)
"cZ" = (
@@ -2167,10 +2161,7 @@
/area/awaymission/BMPship/Aft)
"gh" = (
/obj/structure/table,
-/obj/item/weapon/paper{
- info = "DEAR DAIRY: So we was doing our typpical route when the captain says we've been picking up weird signals on some backwatter planet. Madsen wanted to stay on course but he ain't the captain, so we went out of the way to check it out. There was lots of rocks on the way, but we got to the planet fine. Found a big fancy camp with nobody around and this big metal donut thing with NT stamps all over it right in the middle. Case of beer too. Captain reckons we can pass it off to some buyer in the Syndicate. Ingram says it's bad luck and that someone is going to come look for it but it sounds like better money than selling bad meat to jerky companies.";
- name = "Old Diary"
- },
+/obj/item/weapon/paper/fluff/ruins/crashedship/old_diary,
/turf/open/floor/plasteel,
/area/awaymission/BMPship/Aft)
"gi" = (
diff --git a/_maps/RandomRuins/SpaceRuins/deepstorage.dmm b/_maps/RandomRuins/SpaceRuins/deepstorage.dmm
index 803f078057..ce223b03b8 100644
--- a/_maps/RandomRuins/SpaceRuins/deepstorage.dmm
+++ b/_maps/RandomRuins/SpaceRuins/deepstorage.dmm
@@ -1129,18 +1129,9 @@
/obj/structure/noticeboard{
pixel_y = 32
},
-/obj/item/weapon/paper{
- info = "To whoever keeps it up with the long, hot showers: you're going on the next ice-mining trip. If you feel the need to use up all the damn water during your 'relaxation' time, you sure as hell are gonna work for all that water!";
- name = "water concerns"
- },
-/obj/item/weapon/paper{
- info = "Hydroponics is our life and blood here, if it dies then so do we. Keep the damn plants watered!";
- name = "hydroponics notice"
- },
-/obj/item/weapon/paper{
- info = "Please make sure to throw all excess waste into the crusher in the back! It's amazing what you can get out of what others consider 'garbage' if you run it through a giant crusher enough times.";
- name = "recycling notice"
- },
+/obj/item/weapon/paper/fluff/ruins/deepstorage/water_concern,
+/obj/item/weapon/paper/fluff/ruins/deepstorage/hydro_notice,
+/obj/item/weapon/paper/fluff/ruins/deepstorage/recycling_notice,
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
diff --git a/_maps/RandomRuins/SpaceRuins/listeningstation.dmm b/_maps/RandomRuins/SpaceRuins/listeningstation.dmm
index 4c351f0593..52b25cdffd 100644
--- a/_maps/RandomRuins/SpaceRuins/listeningstation.dmm
+++ b/_maps/RandomRuins/SpaceRuins/listeningstation.dmm
@@ -69,10 +69,7 @@
/area/awaymission/listeningpost)
"o" = (
/obj/structure/table,
-/obj/item/weapon/paper{
- info = "Nothing of interest to report.";
- name = "november report"
- },
+/obj/item/weapon/paper/fluff/ruins/listeningstation/reports/november,
/obj/item/weapon/pen,
/turf/open/floor/plasteel,
/area/awaymission/listeningpost)
@@ -98,10 +95,7 @@
"r" = (
/obj/machinery/door/airlock,
/obj/structure/safe/floor,
-/obj/item/weapon/paper{
- info = "I wonder how much longer they will accept my empty reports. They will cancel the case soon without results. When the pickup comes, I will tell them I have lost faith in our cause, and beg them to consider a diplomatic solution. How many nuclear teams have been dispatched with those nukes? I must try and prevent more from ever being sent. If they will not listen to reason, I will detonate the warehouse myself. Maybe some day in the immediate future, space will be peaceful, though I don't intend to live to see it. And that is why I write this down- it is my sacrifice that stabilised your worlds, traveller. Spare a thought for me, and please attempt to prevent nuclear proliferation, should it ever rear it's ugly head again. -Donk Co. Operative #451";
- name = "odd report"
- },
+/obj/item/weapon/paper/fluff/ruins/listeningstation/odd_report,
/obj/item/weapon/gun/ballistic/automatic/pistol,
/turf/open/floor/plasteel,
/area/awaymission/listeningpost)
@@ -156,46 +150,19 @@
/area/awaymission/listeningpost)
"B" = (
/obj/structure/filingcabinet,
-/obj/item/weapon/paper{
- info = "A good start to the operation: intercepted Nanotrasen military communications. A convoy is scheduled to transfer nuclear warheads to a new military base. This is as good a chance as any to get our hands on some heavy weaponry, I suggest we take it.";
- name = "april report"
- },
-/obj/item/weapon/paper{
- info = "Nothing of real interest to report this month. I have intercepted faint transmissions from what appears to be some sort of pirate radio station. They do not appear to be relevant to my assignment.";
- name = "may report"
- },
-/obj/item/weapon/paper{
- info = "Nanotrasen communications have been noticably less frequent recently. The pirate radio station I found last month has been transmitting pro-Nanotrasen propaganda. I will continue to monitor it.";
- name = "june report"
- },
-/obj/item/weapon/paper{
- info = "Nothing of interest to report.";
- name = "july report"
- },
-/obj/item/weapon/paper{
- info = "Nothing of interest to report.";
- name = "august report"
- },
-/obj/item/weapon/paper{
- info = "Nothing of interest to report.";
- name = "september report"
- },
-/obj/item/weapon/paper{
- info = "Nothing of interest to report.";
- name = "october report"
- },
-/obj/item/weapon/paper{
- info = "1 x Stechtkin pistol - $600
1 x silencer - $200
shipping charge - $4360
total - $5160";
- name = "receipt"
- },
+/obj/item/weapon/paper/fluff/ruins/listeningstation/reports/april,
+/obj/item/weapon/paper/fluff/ruins/listeningstation/reports/may,
+/obj/item/weapon/paper/fluff/ruins/listeningstation/reports/june,
+/obj/item/weapon/paper/fluff/ruins/listeningstation/reports/july,
+/obj/item/weapon/paper/fluff/ruins/listeningstation/reports/august,
+/obj/item/weapon/paper/fluff/ruins/listeningstation/reports/september,
+/obj/item/weapon/paper/fluff/ruins/listeningstation/reports/october,
+/obj/item/weapon/paper/fluff/ruins/listeningstation/receipt,
/turf/open/floor/plasteel,
/area/awaymission/listeningpost)
"C" = (
/obj/structure/table,
-/obj/item/weapon/paper{
- info = "Mission Details: You have been assigned to a newly constructed listening post constructed within an asteroid in Nanotrasen space to monitor their plasma mining operations. Accurate intel is crucial to the success of our operatives onboard, do not fail us.";
- name = "mission briefing"
- },
+/obj/item/weapon/paper/fluff/ruins/listeningstation/briefing,
/turf/open/floor/plasteel,
/area/awaymission/listeningpost)
"D" = (
diff --git a/_maps/RandomRuins/SpaceRuins/oldstation.dmm b/_maps/RandomRuins/SpaceRuins/oldstation.dmm
index 30d9a85e7d..0f6ffcde39 100644
--- a/_maps/RandomRuins/SpaceRuins/oldstation.dmm
+++ b/_maps/RandomRuins/SpaceRuins/oldstation.dmm
@@ -135,7 +135,7 @@
desc = "A computer long since rendered non-functional due to lack of maintenance. Spitting out error messages.";
name = "Broken Computer"
},
-/obj/item/weapon/paper/oldstat/damagereport,
+/obj/item/weapon/paper/fluff/ruins/oldstation/damagereport,
/turf/open/floor/plasteel/floorgrime,
/area/ruin/ancientstation/comm)
"aw" = (
@@ -144,7 +144,7 @@
desc = "A computer long since rendered non-functional due to lack of maintenance. Spitting out error messages.";
name = "Broken Computer"
},
-/obj/item/weapon/paper/oldstat/report,
+/obj/item/weapon/paper/fluff/ruins/oldstation/report,
/turf/open/floor/plasteel/floorgrime,
/area/ruin/ancientstation/comm)
"ax" = (
@@ -3494,7 +3494,7 @@
/obj/machinery/power/solar_control{
name = "Station Solar Control Computer"
},
-/obj/item/weapon/paper/solar,
+/obj/item/weapon/paper/guides/jobs/engi/solars,
/obj/structure/cable,
/turf/open/floor/plasteel/yellow/side{
dir = 10
@@ -4534,7 +4534,7 @@
dir = 8
},
/obj/structure/table/reinforced,
-/obj/item/weapon/paper/oldstat/protosuit,
+/obj/item/weapon/paper/fluff/ruins/oldstation/protosuit,
/turf/open/floor/plasteel/white,
/area/ruin/ancientstation/proto)
"ku" = (
@@ -4579,7 +4579,7 @@
dir = 4
},
/obj/structure/table/reinforced,
-/obj/item/weapon/paper/oldstat/protosing,
+/obj/item/weapon/paper/fluff/ruins/oldstation/protosing,
/turf/open/floor/plasteel/white,
/area/ruin/ancientstation/proto)
"kA" = (
@@ -4716,7 +4716,7 @@
/obj/machinery/light/small{
dir = 4
},
-/obj/item/weapon/paper/oldstat,
+/obj/item/weapon/paper/fluff/ruins/oldstation,
/turf/open/floor/plasteel/floorgrime,
/area/ruin/ancientstation)
"kR" = (
@@ -4724,7 +4724,7 @@
dir = 8
},
/obj/structure/table/reinforced,
-/obj/item/weapon/paper/oldstat/protohealth,
+/obj/item/weapon/paper/fluff/ruins/oldstation/protohealth,
/turf/open/floor/plasteel/white,
/area/ruin/ancientstation/proto)
"kS" = (
@@ -4742,7 +4742,7 @@
/obj/machinery/atmospherics/components/unary/vent_pump/on{
dir = 1
},
-/obj/item/weapon/paper/oldstat/protoinv,
+/obj/item/weapon/paper/fluff/ruins/oldstation/protoinv,
/turf/open/floor/plasteel/white,
/area/ruin/ancientstation/proto)
"kU" = (
@@ -4750,7 +4750,7 @@
dir = 4
},
/obj/structure/table/reinforced,
-/obj/item/weapon/paper/oldstat/protogun,
+/obj/item/weapon/paper/fluff/ruins/oldstation/protogun,
/turf/open/floor/plasteel/white,
/area/ruin/ancientstation/proto)
"kV" = (
diff --git a/_maps/RandomRuins/SpaceRuins/originalcontent.dmm b/_maps/RandomRuins/SpaceRuins/originalcontent.dmm
index 5401836144..6388f49c50 100644
--- a/_maps/RandomRuins/SpaceRuins/originalcontent.dmm
+++ b/_maps/RandomRuins/SpaceRuins/originalcontent.dmm
@@ -106,9 +106,7 @@
/turf/open/indestructible/paper,
/area/ruin/powered)
"as" = (
-/obj/item/weapon/paper/crumpled{
- desc = "Various scrawled out drawings and sketches reside on the paper, apparently he didn't much care for these drawings."
- },
+/obj/item/weapon/paper/crumpled/ruins/originalcontent,
/turf/open/indestructible/paper,
/area/ruin/powered)
"at" = (
@@ -598,15 +596,9 @@
dir = 9
},
/obj/structure/closet/crate/bin,
-/obj/item/weapon/paper/crumpled{
- desc = "Various scrawled out drawings and sketches reside on the paper, apparently he didn't much care for these drawings."
- },
-/obj/item/weapon/paper/crumpled{
- desc = "Various scrawled out drawings and sketches reside on the paper, apparently he didn't much care for these drawings."
- },
-/obj/item/weapon/paper/crumpled{
- desc = "Various scrawled out drawings and sketches reside on the paper, apparently he didn't much care for these drawings."
- },
+/obj/item/weapon/paper/crumpled/ruins/originalcontent,
+/obj/item/weapon/paper/crumpled/ruins/originalcontent,
+/obj/item/weapon/paper/crumpled/ruins/originalcontent,
/obj/item/device/gps{
gpstag = "Pulpy Signal"
},
@@ -802,9 +794,7 @@
/area/ruin/powered)
"ch" = (
/obj/structure/fluff/paper,
-/obj/item/weapon/paper/crumpled{
- desc = "Various scrawled out drawings and sketches reside on the paper, apparently he didn't much care for these drawings."
- },
+/obj/item/weapon/paper/crumpled/ruins/originalcontent,
/turf/open/indestructible/paper,
/area/ruin/powered)
"ci" = (
diff --git a/_maps/RandomRuins/SpaceRuins/spacehotel.dmm b/_maps/RandomRuins/SpaceRuins/spacehotel.dmm
index d87ee0b65d..a99838b8fd 100644
--- a/_maps/RandomRuins/SpaceRuins/spacehotel.dmm
+++ b/_maps/RandomRuins/SpaceRuins/spacehotel.dmm
@@ -2585,10 +2585,7 @@
/obj/structure/noticeboard{
pixel_y = 32
},
-/obj/item/weapon/paper{
- info = "!NOTICE!
We are expecting arriving guests soon from a nearby station! Stay sharp and make sure guests enjoy their time spent here. Don't think you can sneak off while they're here, either.";
- name = "!NOTICE!"
- },
+/obj/item/weapon/paper/fluff/ruins/spacehotel/notice,
/turf/open/floor/plasteel/black,
/area/ruin/hotel/workroom)
"gJ" = (
@@ -2705,26 +2702,11 @@
/obj/structure/window/reinforced{
dir = 4
},
-/obj/item/weapon/paper/pamphlet{
- info = "The Twin Nexus Hotel
A place of Sanctuary
Welcome to The Twin-Nexus Hotel, \[insert name here]! The loyal staff stride to their best effort to cater for the best possible experience for all space(wo)men! If you have any questions or comments, please ask one of our on-board staff for more infomation.";
- name = "hotel pamphlet"
- },
-/obj/item/weapon/paper/pamphlet{
- info = "The Twin Nexus Hotel
A place of Sanctuary
Welcome to The Twin-Nexus Hotel, \[insert name here]! The loyal staff stride to their best effort to cater for the best possible experience for all space(wo)men! If you have any questions or comments, please ask one of our on-board staff for more infomation.";
- name = "hotel pamphlet"
- },
-/obj/item/weapon/paper/pamphlet{
- info = "The Twin Nexus Hotel
A place of Sanctuary
Welcome to The Twin-Nexus Hotel, \[insert name here]! The loyal staff stride to their best effort to cater for the best possible experience for all space(wo)men! If you have any questions or comments, please ask one of our on-board staff for more infomation.";
- name = "hotel pamphlet"
- },
-/obj/item/weapon/paper/pamphlet{
- info = "The Twin Nexus Hotel
A place of Sanctuary
Welcome to The Twin-Nexus Hotel, \[insert name here]! The loyal staff stride to their best effort to cater for the best possible experience for all space(wo)men! If you have any questions or comments, please ask one of our on-board staff for more infomation.";
- name = "hotel pamphlet"
- },
-/obj/item/weapon/paper/pamphlet{
- info = "The Twin Nexus Hotel
A place of Sanctuary
Welcome to The Twin-Nexus Hotel, \[insert name here]! The loyal staff stride to their best effort to cater for the best possible experience for all space(wo)men! If you have any questions or comments, please ask one of our on-board staff for more infomation.";
- name = "hotel pamphlet"
- },
+/obj/item/weapon/paper/pamphlet/ruin/spacehotel,
+/obj/item/weapon/paper/pamphlet/ruin/spacehotel,
+/obj/item/weapon/paper/pamphlet/ruin/spacehotel,
+/obj/item/weapon/paper/pamphlet/ruin/spacehotel,
+/obj/item/weapon/paper/pamphlet/ruin/spacehotel,
/turf/open/floor/plasteel/grimy,
/area/ruin/hotel/dock)
"hd" = (
diff --git a/_maps/RandomZLevels/Academy.dmm b/_maps/RandomZLevels/Academy.dmm
index 41b3223131..0fe71c9faf 100644
--- a/_maps/RandomZLevels/Academy.dmm
+++ b/_maps/RandomZLevels/Academy.dmm
@@ -108,10 +108,7 @@
/area/awaymission/academy/headmaster)
"ar" = (
/obj/structure/table/reinforced,
-/obj/item/weapon/paper{
- info = "We're upgrading to the latest mainframes for our consoles, the shipment should be in before spring break is over!";
- name = "Console Maintenance"
- },
+/obj/item/weapon/paper/fluff/awaymissions/academy/console_maint,
/turf/open/floor/carpet,
/area/awaymission/academy/headmaster)
"as" = (
@@ -1287,9 +1284,7 @@
/obj/structure/noticeboard{
pixel_y = 32
},
-/obj/item/weapon/paper{
- name = "Automotive Repair 101"
- },
+/obj/item/weapon/paper/fluff/awaymissions/academy/class/automotive,
/turf/open/floor/plasteel/grimy,
/area/awaymission/academy/classrooms)
"eh" = (
@@ -1302,9 +1297,7 @@
/obj/structure/noticeboard{
pixel_y = 32
},
-/obj/item/weapon/paper{
- name = "Pyromancy 250"
- },
+/obj/item/weapon/paper/fluff/awaymissions/academy/class/pyromancy,
/turf/open/floor/plasteel/grimy,
/area/awaymission/academy/classrooms)
"ej" = (
@@ -1779,9 +1772,7 @@
/obj/structure/noticeboard{
pixel_y = -32
},
-/obj/item/weapon/paper{
- name = "Biology Lab"
- },
+/obj/item/weapon/paper/fluff/awaymissions/academy/class/biology,
/turf/open/floor/plasteel/grimy,
/area/awaymission/academy/classrooms)
"fz" = (
@@ -2205,10 +2196,7 @@
/area/awaymission/academy/academyaft)
"gH" = (
/obj/structure/table,
-/obj/item/weapon/paper{
- info = "Grade: A+ Educator's Notes: Excellent form.";
- name = "Summoning Midterm Exam"
- },
+/obj/item/weapon/paper/fluff/awaymissions/academy/grade/aplus,
/obj/item/weapon/gun/ballistic/shotgun/automatic/combat,
/turf/open/floor/plasteel/vault{
dir = 5
@@ -2217,10 +2205,7 @@
"gI" = (
/obj/structure/table,
/obj/item/weapon/gun/ballistic/revolver/russian,
-/obj/item/weapon/paper{
- info = "Grade: B- Educator's Notes: Keep applying yourself, you're showing improvement.";
- name = "Summoning Midterm Exam"
- },
+/obj/item/weapon/paper/fluff/awaymissions/academy/grade/bminus,
/turf/open/floor/plasteel/vault{
dir = 5
},
@@ -2319,10 +2304,7 @@
"gW" = (
/obj/structure/table,
/obj/item/weapon/gun/energy/floragun,
-/obj/item/weapon/paper{
- info = "Grade: D- Educator's Notes: SEE ME AFTER CLASS.";
- name = "Summoning Midterm Exam"
- },
+/obj/item/weapon/paper/fluff/awaymissions/academy/grade/dminus,
/turf/open/floor/plasteel/vault{
dir = 5
},
@@ -2772,10 +2754,7 @@
/obj/structure/closet,
/obj/item/weapon/storage/box/snappops,
/obj/item/weapon/storage/backpack,
-/obj/item/weapon/paper{
- info = "Current Grade: F. Educator's Notes: No improvement shown despite multiple private lessons. Suggest additional tutilage.";
- name = "Pyromancy Evaluation"
- },
+/obj/item/weapon/paper/fluff/awaymissions/academy/grade/failure,
/turf/open/floor/plasteel,
/area/awaymission/academy/academyaft)
"id" = (
diff --git a/_maps/RandomZLevels/caves.dmm b/_maps/RandomZLevels/caves.dmm
index 57740d7fba..c1df4a8090 100644
--- a/_maps/RandomZLevels/caves.dmm
+++ b/_maps/RandomZLevels/caves.dmm
@@ -942,9 +942,7 @@
})
"bX" = (
/obj/structure/table,
-/obj/item/weapon/paper/crumpled{
- info = "WARNING
Majority of this area is consitered 'unsafe' past this point. Theres an outpost directly south of here where you can get your bearing and travel further down if needed. Traveling in groups is HIGHLY advised, the shit out there can be extremely deadly if you're alone."
- },
+/obj/item/weapon/paper/crumpled/awaymissions/caves/unsafe_area,
/turf/open/floor/plating/asteroid/basalt{
initial_gas_mix = "n2=23;o2=14"
},
@@ -1091,10 +1089,7 @@
dir = 1
},
/obj/structure/filingcabinet,
-/obj/item/weapon/paper{
- info = "Testing Notes
Subject appears unresponsive to most interactions, refusing to move away from the corners or face any scientists. Subject appears to move between the two back corners every observation. A strange humming can be heard from inside the cell, appears to be originating from the subject itself, further testing is necessary to confirm or deny this.";
- name = "Subject Omega Notes"
- },
+/obj/item/weapon/paper/fluff/awaymissions/caves/omega,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/basalt;
initial_gas_mix = "n2=23;o2=14"
@@ -1487,9 +1482,7 @@
})
"di" = (
/obj/structure/table,
-/obj/item/weapon/paper{
- info = " Mining is hell down here, you can feel the heat of the magma no matter how thick the suit is. Conditions are barely managble as is, restless nights and horrid work conditions. The ore maybe rich down here, but we've already lost a few men to the faults shifting, god knows how much longer till it all just collapses down and consumes everyone with it."
- },
+/obj/item/weapon/paper/fluff/awaymissions/caves/magma,
/obj/item/weapon/pen,
/obj/effect/decal/cleanable/cobweb,
/turf/open/floor/plasteel{
@@ -2020,10 +2013,7 @@
/area/awaymission/BMPship)
"eA" = (
/obj/structure/table,
-/obj/item/weapon/paper{
- info = "Survival Info For Miners
The caves are an unforgiving place, the only thing you'll have to traverse is the supplies in your locker and your own wit. Travel in packs when mining and try to shut down the monster dens before they overwhelm you. The job is dangerous but the haul is good, so remember this infomation and hopefully we'll all go home alive.";
- name = "work notice"
- },
+/obj/item/weapon/paper/fluff/awaymissions/caves/work_notice,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/basalt
},
@@ -2196,7 +2186,7 @@
/area/awaymission/listeningpost)
"eX" = (
/obj/structure/table,
-/obj/item/weapon/paper/pamphlet,
+/obj/item/weapon/paper/pamphlet/gateway,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/basalt
},
@@ -2219,14 +2209,8 @@
/obj/structure/noticeboard{
pixel_y = 32
},
-/obj/item/weapon/paper{
- info = "We were suppose to get a shipment of these special laser rifles and a couple 'nades to help combat the wildlife down here, but its been weeks since we last heard from the caravan carrying the shit down here. At this point we can only assume they fell victim to one of the monster nests or the dumbasses managed to trip into the lava. So much for that shipment, I guess.";
- name = "shipment notice"
- },
-/obj/item/weapon/paper{
- info = "Some of the miners have gone to laying some mine traps among the lower levels of the mine to keep the monsters at bay. This probably isn't the smartest idea in a cavern like this but the boys seem to get a chuckle out of every distant blast they hear go off, so I guess it works ";
- name = "safety notice"
- },
+/obj/item/weapon/paper/fluff/awaymissions/caves/shipment_notice,
+/obj/item/weapon/paper/fluff/awaymissions/caves/saftey_notice,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/basalt
},
@@ -2241,10 +2225,7 @@
})
"fc" = (
/obj/structure/closet/crate,
-/obj/item/weapon/paper{
- info = "CARAVAN SERVICES
Quality service since 2205
SHIPMENT CONTENTS:
4 scattershot rifles
6 grenades
1 laser rifle
1 blowup doll";
- name = "Shipment Receipt"
- },
+/obj/item/weapon/paper/fluff/awaymissions/caves/shipment_receipt,
/obj/item/weapon/gun/energy/laser/captain/scattershot,
/obj/item/weapon/gun/energy/laser/captain/scattershot,
/obj/item/weapon/gun/energy/laser,
@@ -2338,10 +2319,7 @@
icon_state = "crateopen";
opened = 1
},
-/obj/item/weapon/paper{
- info = "CARAVAN SERVICES
Quality service since 2205
SHIPMENT CONTENTS:
4 scattershot rifles
6 grenades
1 laser rifle
1 blowup doll";
- name = "Shipment Receipt"
- },
+/obj/item/weapon/paper/fluff/awaymissions/caves/shipment_receipt,
/obj/item/organ/eyes/robotic/thermals,
/obj/item/weapon/gun/energy/laser/captain/scattershot,
/obj/item/slimepotion/fireproof,
@@ -2891,10 +2869,7 @@
"gH" = (
/obj/structure/table,
/obj/item/mecha_parts/mecha_equipment/drill/diamonddrill,
-/obj/item/weapon/paper{
- info = "NOTICE!!
Although you may seem indestructible in a mech, remember, THIS SHIT ISN'T LAVA PROOF!! The boys have already had to deal with loosing the last two to salvage because the dumbass thought he could just wade through the lower lakes like it was nothing. The fact he even managed to get back without being fused with what was left of the mech is a miracle in itself. They're built to be resistant against extreme heat, not heat PROOF!
Robotics Team";
- name = "NOTICE!! paper"
- },
+/obj/item/weapon/paper/fluff/awaymissions/caves/mech_notice,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/basalt
},
diff --git a/_maps/RandomZLevels/centcomAway.dmm b/_maps/RandomZLevels/centcomAway.dmm
index 1149da1290..7b182a91c3 100644
--- a/_maps/RandomZLevels/centcomAway.dmm
+++ b/_maps/RandomZLevels/centcomAway.dmm
@@ -1988,7 +1988,7 @@
/area/awaymission/centcomAway/general)
"gt" = (
/obj/machinery/photocopier,
-/obj/item/weapon/paper/ccaMemo,
+/obj/item/weapon/paper/fluff/awaymissions/centcom/gateway_memo,
/turf/open/floor/plasteel{
icon_state = "floor"
},
@@ -2151,7 +2151,7 @@
/area/awaymission/centcomAway/hangar)
"gU" = (
/obj/structure/table,
-/obj/item/weapon/paper/ccaMemo,
+/obj/item/weapon/paper/fluff/awaymissions/centcom/gateway_memo,
/turf/open/floor/plating,
/area/awaymission/centcomAway/hangar)
"gV" = (
@@ -3131,7 +3131,7 @@
/area/awaymission/centcomAway/general)
"jQ" = (
/obj/structure/table,
-/obj/item/weapon/paper/pamphlet/ccaInfo,
+/obj/item/weapon/paper/pamphlet/centcom/visitor_info,
/turf/open/floor/plasteel{
icon_state = "floor"
},
@@ -3328,7 +3328,7 @@
/area/awaymission/centcomAway/hangar)
"kq" = (
/obj/structure/table/reinforced,
-/obj/item/weapon/paper/pamphlet/ccaInfo,
+/obj/item/weapon/paper/pamphlet/centcom/visitor_info,
/turf/open/floor/plasteel/vault{
dir = 4
},
diff --git a/_maps/RandomZLevels/challenge.dmm b/_maps/RandomZLevels/challenge.dmm
index faeb6ff724..71edc1e99e 100644
--- a/_maps/RandomZLevels/challenge.dmm
+++ b/_maps/RandomZLevels/challenge.dmm
@@ -899,10 +899,7 @@
/area/awaymission/challenge/end)
"cr" = (
/obj/structure/table/wood,
-/obj/item/weapon/paper{
- info = "Congratulations,
Your station has been selected to carry out the Gateway Project.
The equipment will be shipped to you at the start of the next quarter.
You are to prepare a secure location to house the equipment as outlined in the attached documents.
--Nanotrasen Blue Space Research";
- name = "Confidential Correspondence, Pg 1"
- },
+/obj/item/weapon/paper/fluff/gateway,
/obj/item/weapon/folder/blue,
/turf/open/floor/carpet,
/area/awaymission/challenge/end)
@@ -1193,7 +1190,7 @@
/area/awaymission/challenge/end)
"df" = (
/obj/structure/table,
-/obj/item/weapon/paper/pamphlet,
+/obj/item/weapon/paper/pamphlet/gateway,
/turf/open/floor/plasteel/black,
/area/awaymission/challenge/end)
"dg" = (
diff --git a/_maps/RandomZLevels/moonoutpost19.dmm b/_maps/RandomZLevels/moonoutpost19.dmm
index c6805c74e0..f387d2dbc3 100644
--- a/_maps/RandomZLevels/moonoutpost19.dmm
+++ b/_maps/RandomZLevels/moonoutpost19.dmm
@@ -974,10 +974,7 @@
pixel_y = 9
},
/obj/item/weapon/pen,
-/obj/item/weapon/paper{
- info = "Log 1:
We got our promised supply drop today. We were only meant to get it, what, a week ago? This bloody gateway keeps desyncing itself, and that means subsisting off recycled water and carb packs. No clue where the damn thing connects to on its off days, and HQ say we are 'not to touch it if it isn't linking to command.' We dumped off the assload of crates Jim filled, got our boxes of oxygen, food and drink, and closed the portal.
Log 2:
Damn thing is acting up again. Three days no contact this time. I thought I heard clanking noises from it yesterday. Jim is going on about the NT base or some shit. We've been over this before - They don't know we're here, that engineer was too drunk to recognise his suit, especially since I had it painted orange. He's starting to get annoying. We're safe.
Log 3:
Gateway synced itself up automatically today. I opened it for an instant to spy through it, got a glimpse of the inside of a transport container. Either HQ's redecorating or something, or there's more than two of these things.";
- name = "Personal Log"
- },
+/obj/item/weapon/paper/fluff/awaymissions/moonoutpost19/log/personal,
/obj/effect/turf_decal/stripes/line{
dir = 6
},
@@ -1585,10 +1582,7 @@
dir = 8
},
/obj/item/weapon/stock_parts/cell/high,
-/obj/item/weapon/paper{
- info = "Alright, listen up. If you're reading this, I'm either taking a shit or I've been recalled back to Command. Either way, you'll need to know how to restore power. We've stolen this stuff from Nanotrasen, so all the equipment is jury-rigged. We have generators that work on both plasma and uranium, about 50 sheets should power the outpost for quite a while. If the generators aren't working, which is very likely, take the power cell on the desk and put it into the APC in the hallway. That should get the place running, at least for a little while.";
- name = "Engineering Instructions"
- },
+/obj/item/weapon/paper/fluff/awaymissions/moonoutpost19/engineering,
/obj/effect/turf_decal/stripes/line{
dir = 8
},
@@ -2463,10 +2457,7 @@
"dq" = (
/obj/structure/table/wood,
/obj/item/weapon/pen,
-/obj/item/weapon/paper{
- info = "Log 1:
While mining today I noticed the NT station was finished with its renovations. They placed some huge reinforced tumor on the station, looks so ugly. I wouldn't be surprised if those pigs decided to turn that little astronomy outpost into a prison with that thing, it'd be pretty typical of them.
Log 2:
Really dumb of me but I just waved at an engineer in the outpost, and he waved back. I hope to god he was too dumb or drunk to recognize the suit, because if he isn't then we might have to pull out before they come looking for us.
Log 3:
That huge reinforced tumor in their science section has been making a lot of noise lately. I've been hearing some banging and scratching from the other side and I'm kind of glad now that they reinforced this thing so much. I'll be sleeping with my gun under my pillow from now on.";
- name = "Personal Log"
- },
+/obj/item/weapon/paper/fluff/awaymissions/moonoutpost19/log/personal_2,
/obj/structure/sign/poster/contraband/c20r{
pixel_y = -32
},
@@ -4384,10 +4375,7 @@
})
"fS" = (
/obj/structure/filingcabinet,
-/obj/item/weapon/paper{
- info = "Entry One - 27/05/2554:
I just arrived, and already I hate my job. I'm stuck on this shithole of an outpost, trying to avoid these damn eggheads running all over the place preparing for god knows what. There's no crimes to stop, no syndies to kill, and I'm not even allowed to beat the fuckin' assistant senseless! They said I was transferred from Space Station 13 for 'good behavior', but this feels more like a punishment than a reward. All I know is that if I don't get some action soon, I'm going to go insane.
Entry Two - 03/06/2554:
Okay, so get this: we got a fuckin' deathsquad coming in today! I thought the day I saw one of them would be the day my employment was 'terminated', if you get my drift. They're escorting some sort of weird alien creature for the eggheads to study. I heard one of the docs telling the chef that this thing killed a whole security force before it was captured. I sure as hell hope that I don't have to fight it.
Entry Three - 08/06/2554:
My first real bit of 'action' today, if you could call it that. Crazy Ivan got in a fight with Kuester today about his Booze-O-Mat. Apparently one of the crewmembers had stolen a couple bottles of booze from the machine after Ivan disabled the ID lock. Tell you the truth, I don't blame the thief. Everyone is going a little stir-crazy in here, and the bartender is being damn stingy with the alcohol. Either way, once they started to pick a fight, I had to take them down. It's a damn shame that we don't have a brig, though. I had to lock Ivan in a fuckin' freezer, for god's sake. Let's hope that we can keep our sanity together, at least for a while.
Entry Four - 10/06/2554:
Jesus fucking Christ riding on a motorbike. These things the scientists are studying are terrifying! Fucking great huge purple bug things as tall as the ceiling, with blades for arms and drooling at the mouth. I don't think my taser will do jack shit against these damn things, but the eggheads say that they're safely contained. If they do, I have a feeling that it's only a matter of time before we're all screwed. These bastards look like walking death.
Entry Five - 18/06/2554:
Finally caught who stole the booze from Kuester. It was that fuckin' loser assistant Steve! He was in the dorms, chugging his worries away. I took one of the bottles back to the barkeep, but no one has to know about this second one. I think I'm gonna enjoy this while watching tomorrow's Thunderdome match.
Entry Six - 19/06/2554:
Oh, great. The chef is still sleeping, so we get Ivan's gruel for breakfast today. I overheard Sano and Douglas saying something about the aliens being restless, so we might get some action today. As long as it happens after the big game, I'm fine with it. I still got one beer to drink before I'm ready to die.";
- name = "Personal Log - Kenneth Cunningham"
- },
+/obj/item/weapon/paper/fluff/awaymissions/moonoutpost19/log/kenneth,
/turf/open/floor/plasteel/red/side{
dir = 9;
heat_capacity = 1e+006
@@ -4824,10 +4812,7 @@
})
"gx" = (
/obj/structure/table,
-/obj/item/weapon/paper{
- info = "Ivan Volodin Stories:
Entry Won - 28/05/2554:
Hello. I am Crazy Ivan. Boss say I must write. I do good job fixing outpost. Is very good job. Much better than mines. Many nice people. I cause no trouble.
Entry Too - 05/06/2554:
I am finding problem with Booze-O-Mat. Is not problem. I solve very easy. Use yellow tool to make purple light go off. I am good engineer! Bartender will be very happy.
Entry Tree - 08/06/2554:
Bartender is not happy. Security man is not happy. Cannot feel legs, is very cold in freezer. Is not good. Table is jammed into door, have no tools. Is very not good. But, on bright side, found meat! Shall chew to keep spirits up.
Entry Fore - 12/06/2554:
Big nasty purple bug looked at me today. Make nervous. Blue wall wire can be broken, then bad thing happens. Very very bad thing. Man in orange spacesuit wave at me today too. He seem nice. Wonder who was?
Entry Fiv - 15/06/2554:
I eat cornflakes today. Is good day. Sun shine for a while. Was nice. I also take ride on disposals chute. Was fun, but tiny. Get clog out of pipes, was vodka bottle. Is empty. This make many sads.
Entry Sex: 19/06/2554:
Purple bugs jumpy today. When waved, get hiss. Maybe very bad. Maybe just ill. Do not know. Is science problem, is not engineer problem. I eat sandwich. Is glorious job. Wish to never end.";
- name = "Personal Log - Ivan Volodin"
- },
+/obj/item/weapon/paper/fluff/awaymissions/moonoutpost19/log/ivan,
/turf/open/floor/plating{
broken = 1;
heat_capacity = 1e+006;
@@ -4991,26 +4976,11 @@
icon_state = "bulb-broken";
status = 2
},
-/obj/item/weapon/paper{
- info = "Researcher: Dr. Sakuma Sano
Date: 04/06/2554
Report:
As expected, all that is left of the monkeys we sent in earlier is a group of xenomorph larvae. It is quite clear that the facehuggers are not selective in their hosts, and so far the gestation process has been shown to have a 100% success rate.
The larvae themselves have been behaving very differently from the lone larva we first observed, and despite shying away from humans they are clearly comfortable with others of their kind. Our previous suspicions on larvae have been confirmed with their demonstration of playfulness: they are not nearly as aggressive or violent when young, before molting to adulthood.
The majority of the play we observed involved a sort of hide-and-seek, and occasionally wrestling by tangling themselves and struggling out of it. While normally we would write these off as instinctual play for honing their skills when they molt, their growth period is so incredibly fast and they are still such adept killers that it would serve no practical purpose. The only explanation for this is perhaps to create bonds and friendships with each other, if that is even possible for such an incredibly hostile race. It may be that they are much more reasonable with each other than other life forms.
It had become clear that now was the best time to extract a xenomorph for dissecting, as these were all still larvae and the queen was still attached to its ovipositor and would be immobile. With the approval of the research director, we sent in our medical robot that had been dubbed 'Head Surgeon' into the containment pen, dropping the shields for only a fraction of a second to allow it entry. The larvae were cautious, but the curiosity of one had him within grabbing range of our robot. It was brought out and quickly euthanized through lethal injection, courtesy of our mechanical doctor.";
- name = "Larva Xenomorph Social Interactions & Capturing Procedure"
- },
-/obj/item/weapon/paper{
- info = "Researcher: Dr. Sakuma Sano
Date: 04/06/2554
Report:
I have studied many interesting and diverse life-forms as a xenobiologist ranging from creatures as large as cows, to specimens too small see with the naked eye. This is by far the largest alien I have ever seen. The alien we were previously studying has molted and has become an absolutely enormous creature. Standing at over 15 feet tall and weighing in at likely two tons or more, the xenomorph queen is an absolutely breathtakingly large and cruel monster. Its behavior has changed drastically from when it was a drone, having become far more comfortable with sitting and staring at us, rather than smashing at the windows.
The queen, physiologically speaking, is fairly similar to the other xenomorphs, with a few key differences. Its enormous size demands large legs, while the back seems to be always hunched forward. The dorsal tubes on the back have changed to several large spikes, and we observed the alien now sports a second pair of smaller arms on its chest. The purpose of these secondary arms is still unknown. Finally, the queen's crown has become incredibly large, with what seems to be a retractable slot to hide its head in. The dome appears to be extremely thick near the front, and will likely be able to resist a lot of trauma. Despite the enormous size it has grown to, it is not that much slower than it used to be.
After two hours of doing relatively nothing but staring, the queen began to produce an unusually large amount of resin and weeds, quickly shaping up a large nest that it then hid behind. It then proceeded to smash out all the lights, leaving us with very little to see with our cameras. When we looked through the back cameras, we had discovered that it had grown a large ovipositor, and was releasing large eggs onto the ground. This had us all in agreement that this stage of the life cycle was the queen.
Over the next few hours, the eggs grew to their full sizes, and we provided the subject with new monkey hosts. When they approached the eggs, they opened to release more facehuggers. It seems that we have observed the full cycle of reproduction for this species. We can expect more larvae in the next few hours.";
- name = "Queen Xenomorph Physiology & Behavior Observation"
- },
-/obj/item/weapon/paper{
- info = "Researcher: Dr. Sakuma Sano
Date: 03/06/2554
Report:
The other scientists and I can hardly believe our eyes. The snake-like larva has molted into a 7 foot tall insectoid nightmare in just a few hours. It's obvious now as to why such heavy duty containment was needed. It immediately tried to escape however by flinging itself at the window in a flurry of swipes and stabs. It seems its behavior has returned to a state that is very similar to the facehugger, though I doubt with the same intent! Thankfully, our glass and shields have shown to be more than sturdy enough for such a violent creature, and so far, any attempts at the creature escaping have been in vain.
As for its physiology, the creature has an elongated head with what appears to be have an exoskeleton resembling an external rib-cage on the torso. The alien is also fairly skinny with a lean body. The little amount of meat on the alien appears to be entirely muscle. We assume this makes it deceptively strong, while remaining agile at the same time. One of the most interesting things we have seen is its pharyngeal jaw. It has some what of an inner mouth capable of being fired externally at extremely high speeds. It has already caused many dents in the walls and a few small cracks in the window with it. The alien also has a couple of dorsal tubes on its back, their purpose unknown. Finally, this monster sports a long ridged tail, complete with a large and extremely sharp blade at the tip.
Normally I would be absolutely terrified of something like this, but I'm putting my trust in Nanotrasen with the containment. After all, they wouldn't build a cell that could fail to contain its subject, would they?";
- name = "Adult Xenomorph Physiology & Behavior Observation"
- },
-/obj/item/weapon/paper{
- info = "Researcher: Dr. Sakuma Sano
Date: 03/06/2554
Report:
When the larva first emerged from the chest of the monkey, it seemed very curious. It would wander around aimlessly for awhile and then sit still. We are unable to determine the gender of the larva, or even determine if it has a gender. After some time had passed, it seemed to lose interest in its surroundings and sat mostly still while occasionally wagging its tail. We decided to throw in a live mouse to see if it would consume it. The larva quickly attacked and ate the mouse and seemed to get larger very suddenly, this suggests that the larvae are capable of metabolizing and directing all the energy towards growth at previously thought impossible speeds. It is a shame that we cannot observe the process more closely, as we do not currently know how dangerous or violent this creature is or will become as it matures fully.
It is tempting to imagine the possibilities of utilizing such a mechanism. The capability of skipping years of growth time for children, repairing bodily damage in a matter of moments, even its usage in existing cloning technology.";
- name = "Larva Xenomorph Physiology & Behavior Observation"
- },
-/obj/item/weapon/paper{
- info = "Researcher: Dr. Sakuma Sano
Date: 03/06/2554
Report:
The test subject we were provided with truly is alien. It is a small spider-like creature with bony legs leading to a smooth body. It has a long tail connected to it, and it has shown extremely aggressive behavior by flinging its entire body at the glass and shields to no avail. While doing so, we noticed there was a small pink hole in the middle of the body.
When we sent in a monkey through the crude but effective disposal tube, the alien immediately jumped at its face and latched on. The monkey was quickly suffocated by its constricting tail, unable to pry off the fingers. The monkey at first seemed to be dead, but was observed to be breathing. The recently named alien 'facehugger' fell off dead and curled its legs up like a spider moments after it had finished with the monkey's body.
While the monkey appeared to be unharmed, we kept it in the cell for a couple more hours until we were horrified to discover it screaming out in pain as a snake-like creature erupted from the monkey's chest! It appears that the 'facehugger' is only the start of this life cycle. The impregnation cycle involving the creatures growing inside the chests of their hosts seems to only be the beginning.";
- name = "'Facehugger' Xenomorph Physiology & Behavior Observation"
- },
+/obj/item/weapon/paper/fluff/awaymissions/moonoutpost19/research/larva_social,
+/obj/item/weapon/paper/fluff/awaymissions/moonoutpost19/research/xeno_queen,
+/obj/item/weapon/paper/fluff/awaymissions/moonoutpost19/research/xeno_adult,
+/obj/item/weapon/paper/fluff/awaymissions/moonoutpost19/research/larva_psych,
+/obj/item/weapon/paper/fluff/awaymissions/moonoutpost19/research/facehugger,
/obj/structure/alien/weeds,
/turf/open/floor/plasteel/white,
/area/awaycontent/a2{
@@ -5196,19 +5166,19 @@
})
"gW" = (
/obj/structure/filingcabinet/filingcabinet,
-/obj/item/weapon/paper{
+/obj/item/weapon/paper/fluff/awaymissions/moonoutpost19/research/xeno_hivemind{
info = "Researcher: Dr. Mark Douglas
Date: 17/06/2554
Report:
Earlier today we have observed a new phenomenon with our subjects. While feeding them our last monkey subject and throwing out the box, the aliens merely looked at us instead of infecting the monkey right away. They looked to be collectively distressed as they would no longer be given hosts, where instead we would move to the next phase of the experiment. When I glanced at the gas tanks and piping leading to their cell, I looked back to see all of them were up against the glass, even the queen! It was as if they all understood what was going to happen, even though we knew only the queen had the cognitive capability to do so.
The only explanation for this is a form of communication between the aliens, but we have seen no such action take place anywhere in the cell until now. We also know that regular drone and hunter xenomorphs have no personality or instinct to survive by themselves. Perhaps the queen has a direct link to them? A form of a commander or overseer that controls their every move? A hivemind?";
name = "The Hivemind Hypothesis"
},
-/obj/item/weapon/paper{
+/obj/item/weapon/paper/fluff/awaymissions/moonoutpost19/research/xeno_behavior{
info = "Researcher: Dr. Sakuma Sano
Date: 08/06/2554
Report:
The xenomorphs we have come to study here are a remarkable species. They are almost universally aggressive across all castes, showing no remorse or guilt or pause before or after acts of violence. They appear to be a species entirely designed to kill. Oddly enough, even their method of reproduction is a brutal two-for-one method of birthing a new xenomorph and killing its host.
The lone xenomorph we studied only five days ago showed little sign of intelligence. Only a simple drone that flung itself at the safety glass and shields repeatedly and thankfully without success. Once the drone molted into a queen, it became much more calm and calculating, merely looking at us and waiting while building its nest. As the hive grew in size and in numbers, so too did the intelligence of the common hunter and drone. We are still researching how they can communicate with one another and the relationship between the different castes and the queen. We will continue to update our research as we learn more about the species.";
name = "A Preliminary Study of Alien Behavior"
},
-/obj/item/weapon/paper{
+/obj/item/weapon/paper/fluff/awaymissions/moonoutpost19/research/xeno_castes{
info = "Researcher: Dr. Mark Douglas
Date: 06/06/2554
Report:
While observing the growing number of aliens in the containment cell, we began to notice subtle differences that were consistently repeating. Like ants, these creatures clearly have different specialized variations that determine their roles in the hive. We have dubbed the three currently observed castes as Hunters, Drones, and Sentinels.
Hunters have been observed to be by far the most aggressive and agile of the three, constantly running on every surface and frequently swiping at the windows. They are also remarkably good at camouflaging themselves in darkness and on their resin structures, appearing almost invisible to the unwary observer. They are always the first to reach the monkeys we send in leading us to believe that this caste is primarily used for finding and retrieving hosts.
Drones on the other hand are much more docile and seem more shy by comparison, though not any less aggressive than the other castes. They have been observed to have a much wider head and lack dorsal tubes. They have shown to be less agile and visibly more fragile than any other caste. The drone however has never been observed to interact with the monkeys directly and instead preferring maintenance of the hive by building walls of resin and moving eggs around the nest. As far as we know, we have only ever observed a drone become a queen, and we have no way of knowing if the other castes have that capability.
Lastly, we have the Sentinels, which appear at first glance to be the guards of the hive. They have so far been only observed to remain near the queen and the eggs, frequently curled up against the walls. We have only observed one instance where they have interacted with a monkey who strayed too closely to the queen, and was pounced and held down immediately until it was applied with a facehugger. Their lack of movement makes it difficult to determine their exact purpose as guards, sentries, or other role.";
name = "The Xenomorph 'Castes'"
},
-/obj/item/weapon/paper{
+/obj/item/weapon/paper/fluff/awaymissions/moonoutpost19/research/larva_autopsy{
info = "Researcher: Dr. Mark Douglas
Date: 04/06/2554
Report:
After an extremely dangerous, time consuming and costly dissection, we have managed to record and identify several of the organs inside of the first stage of the xenomorph cycle: the larva. This procedure took an extensive amount of time because these creatures have incredibly, almost-comically acidic blood that can melt through almost anything in a few moments. We had to use over a dozen scalpels and retractors to complete the autopsy.
The larva seems to possess far fewer and quite different organs than that of a human. There is a stomach, with no digestive tract, a heart, which seems to lack any blood-oxygen circulation purpose, and an elongated brain, even though its as dumb as any large cat. It also lacks any liver, kidneys, or other basic organs.
We can't determine the exact nature of how these creatures grow, nor if they gain organs as they become adults. The larger breeds of xenomorph are too dangerous to kill and capture to give us an accurate answer to these questions. All that we can conclude is that being able to function with so little and yet be so deadly means that these creatures are highly evolved and likely to be extremely durable to various hazards that would otherwise be lethal to humans.";
name = "Larva Xenomorph Autopsy Report"
},
@@ -5527,10 +5497,7 @@
pixel_y = 23;
req_access = null
},
-/obj/item/weapon/paper{
- info = "Personal Log for Research Director Gerald Rosswell
Entry One - 17/05/2554:
You know, I can't believe I took this position so suddenly. I saw that corporate needed a research director for one of it's outposts and thought it would be a cakewalk, there isn't going to be a lot of research to be done on a tiny outpost. Mainly just running scans on the gas giant we are orbiting or some basic RnD. However, they conveniently forgot to tell me that me and my science staff would have to pull double duty as medical staff and that there is no one higher up on the chain of command here, so I get to pull triple duty as acting captain as well! This shit is probably allowed in some 3 point fine print buried underneath the literally thousands of pages of contracts. Well, at least the research will be easy work.
Entry Two - 25/05/2554:
Well, we all expected it at the outpost, CentComm has decided to completely change what research we are doing. They've decided that we should be research the species known as 'xenomporphs'. They announced this change 4 days ago and along with it, sadly, the termination of our current science staff barring me. Not to mention the constant noise made by the construction detail they sent to staple on an xenobiology lab ensuring no one has been able to sleep decently ever since they announced the shift. To make matters worse our current security guard actually died of a heart attack today. Just goes to show that 75 year old men shouldn't be security guards. Still can't believe that they decided to do this major change less than a month after the outpost was established.
Entry Three - 27/05/2554:
The new security guard arrived today. Apparently transferred here from the research station that also is orbiting the gas giant. He seems to be rather angry about his transfer. Considering the rumors I've heard about the research station he's probably caught off guard by the fact that Steve hasn't tried to force an IED down his throat.
Entry Four - 06/06/2554:
My requests for additional security and containment measures for the 'xenomorph' has been denied. Does Central Command not notice how dangerous these creatures are? The only thing keeping them in is a force field, a minor problem with the power grid and the entire hive is loose. What would stop them then, the lone security guard with a dinky little taser? Kenneth can barely handle a short-tempered engineer. We are under equipped and under staffed, we are inevitably going to be destroyed unless we get the equipment and staff we need.
Entry Five - 10/06/2554:
Cunningham got a good look at the xenomorph in containment. He was frightened for the rest of the day, rather amusing if it wasn't for the fact that we are all trapped on this scrap heap with naught but a force field keeping those xenomorphs in.
Entry Six - 17/06/2554:
The reactions from the specimens today has shown that they possess strange mental properties. Mark hypothesizes that they possibly have a sort of hive mind, while nothing is certain this would explain how xenomorphs seem to have vastly increased intellect when a 'queen' is present. Of course, to test this hypothesis would require many complicated procedures which we will not be able to undertake. But we do not know the full extend of the xenomorph mind, it may or may not be able to find a way to circumvent our containment system. I will resend my request for additional security measures along with this new found information.";
- name = "Personal Log - Gerald Rosswell"
- },
+/obj/item/weapon/paper/fluff/awaymissions/moonoutpost19/log/gerald,
/turf/open/floor/plasteel/cafeteria{
dir = 5
},
@@ -5695,10 +5662,7 @@
icon_state = "bulb-broken";
status = 2
},
-/obj/item/weapon/paper{
- info = "In The Event of Xenobiology Breach: Evacuate staff, Lock down Xenobiology, Notify on-site superiors and/or Central Command immediatly.
Current Xenobiology Containment Level:Secure RUN
";
- name = "Evacuation Procedure"
- },
+/obj/item/weapon/paper/fluff/awaymissions/moonoutpost19/research/evacuation,
/obj/machinery/camera{
c_tag = "Research Division";
dir = 1;
@@ -6241,10 +6205,7 @@
},
/obj/effect/decal/cleanable/blood/splatter,
/obj/item/weapon/pen,
-/obj/item/weapon/paper/crumpled{
- info = "19 06 2554
I fucking knew it. There was a major breach, that idiotic force field failed and the xenomorphs rushed out and took out the scientists. I've managed to make it to my office and closed the blast doors. I can hear them trying to pry open the doors. Probably don't have long. I have no clue what has happened to the rest of the crew, for all I know they've been killed to produce more of the fucks.";
- name = "Hastily Written Note"
- },
+/obj/item/weapon/paper/crumpled/awaymissions/moonoutpost19/hastey_note,
/obj/effect/turf_decal/stripes/line{
dir = 4
},
@@ -7092,10 +7053,7 @@
/obj/structure/noticeboard{
pixel_y = 32
},
-/obj/item/weapon/paper{
- info = "I Can't Believe It's Not Pasta: Half off on Wednesdays
Burger night every Friday 6PM-10PM, free drinks with purchase of meal!
Premiering Tonight: The comedy stylings of Shoe Snatching Willy! 11AM-7PM
";
- name = "Specials This Week"
- },
+/obj/item/weapon/paper/fluff/awaymissions/moonoutpost19/food_specials,
/turf/open/floor/plasteel{
burnt = 1;
dir = 8;
@@ -9039,10 +8997,7 @@
dir = 8;
pixel_x = 32
},
-/obj/item/weapon/paper{
- info = "Welcome to Moon Outpost 19! Property of Nanotrasen Inc.
Staff Roster:
-Dr. Gerald Rosswell: Research Director & Acting Captain
-Dr. Sakuma Sano: Xenobiologist
-Dr. Mark Douglas: Xenobiologist
-Kenneth Cunningham: Security Officer-Ivan Volodin: Engineer
-Mathias Kuester: Bartender
-Sven Edling: Chef
-Steve: Assistant
Please enjoy your stay, and report any abnormalities to an officer.";
- name = "Welcome Notice"
- },
+/obj/item/weapon/paper/fluff/awaymissions/moonoutpost19/welcome,
/obj/machinery/camera{
c_tag = "Arrivals South";
dir = 8;
@@ -9686,10 +9641,7 @@
})
"nI" = (
/obj/structure/dresser,
-/obj/item/weapon/paper{
- info = "Bugs break out. I run to here and lock door. I hear door next to me break open and screams. All nice people here dead now. I no want to be eaten, and bottle always said to be coward way out, but person who say that is stupid. Mira, there is no escape for me, tell Alexis and Elena that father will never come home, and that I love you all.";
- name = "Note"
- },
+/obj/item/weapon/paper/fluff/awaymissions/moonoutpost19/goodbye_note,
/turf/open/floor/carpet{
heat_capacity = 1e+006
},
diff --git a/_maps/RandomZLevels/research.dmm b/_maps/RandomZLevels/research.dmm
index 7d313a0915..1702e83e3a 100644
--- a/_maps/RandomZLevels/research.dmm
+++ b/_maps/RandomZLevels/research.dmm
@@ -896,8 +896,8 @@
icon_state = "1-8"
},
/obj/structure/table,
-/obj/item/weapon/paper/pamphlet,
-/obj/item/weapon/paper/pamphlet,
+/obj/item/weapon/paper/pamphlet/gateway,
+/obj/item/weapon/paper/pamphlet/gateway,
/turf/open/floor/plasteel/black,
/area/awaymission/research/interior/gateway)
"cG" = (
@@ -1691,9 +1691,7 @@
/turf/open/floor/plasteel/black,
/area/awaymission/research/interior/secure)
"eU" = (
-/obj/item/weapon/paper/crumpled{
- info = "Theres a lot of sensitive info on these disks, try and keep them secure! If these backup copies get into the wrong hands, god knows what they could do with the genetic research on these disk.."
- },
+/obj/item/weapon/paper/crumpled/awaymissions/research/sensitive_info,
/turf/open/floor/plasteel/black,
/area/awaymission/research/interior/secure)
"eV" = (
diff --git a/_maps/RandomZLevels/snowdin.dmm b/_maps/RandomZLevels/snowdin.dmm
index b390094018..2391a827cb 100644
--- a/_maps/RandomZLevels/snowdin.dmm
+++ b/_maps/RandomZLevels/snowdin.dmm
@@ -95,7 +95,7 @@
"aq" = (
/obj/structure/table/reinforced,
/obj/machinery/door/window/westright,
-/obj/item/weapon/paper/crumpled/snowdin/keys,
+/obj/item/weapon/paper/crumpled/ruins/snowdin/keys,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/snow;
wet = 0
@@ -123,7 +123,7 @@
/area/awaymission/snowdin/base)
"at" = (
/obj/structure/filingcabinet,
-/obj/item/weapon/paper/snowdin/secnotice,
+/obj/item/weapon/paper/fluff/awaymissions/snowdin/secnotice,
/turf/open/floor/plasteel/darkred{
baseturf = /turf/open/floor/plating/asteroid/snow
},
@@ -547,7 +547,7 @@
"bt" = (
/obj/structure/table,
/obj/item/weapon/shovel,
-/obj/item/weapon/paper/crumpled/snowdin/shovel,
+/obj/item/weapon/paper/crumpled/ruins/snowdin/shovel,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/snow
},
@@ -982,7 +982,7 @@
/area/awaymission/snowdin/base)
"cv" = (
/obj/structure/table/wood,
-/obj/item/weapon/paper/crumpled/snowdin/snowdingatewaynotice,
+/obj/item/weapon/paper/crumpled/ruins/snowdin/snowdingatewaynotice,
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/snow
},
@@ -1067,7 +1067,7 @@
dir = 8
},
/obj/structure/filingcabinet,
-/obj/item/weapon/paper/snowdin/snowdinlog,
+/obj/item/weapon/paper/fluff/awaymissions/snowdin/log,
/turf/open/floor/plasteel/darkbrown{
baseturf = /turf/open/floor/plating/asteroid/snow
},
@@ -1311,7 +1311,7 @@
},
/area/awaymission/snowdin/post)
"dt" = (
-/obj/item/weapon/paper/crumpled/snowdin/lootstructures,
+/obj/item/weapon/paper/crumpled/ruins/snowdin/lootstructures,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/snow;
icon = 'icons/turf/snow.dmi';
@@ -1555,7 +1555,7 @@
/area/awaymission/snowdin/post)
"dZ" = (
/obj/structure/table,
-/obj/item/weapon/paper/crumpled/snowdin/syndielava,
+/obj/item/weapon/paper/crumpled/ruins/snowdin/syndielava,
/obj/machinery/light/small{
active_power_usage = 0;
dir = 4;
@@ -2721,7 +2721,7 @@
/area/awaymission/snowdin/post)
"hn" = (
/obj/structure/filingcabinet,
-/obj/item/weapon/paper/snowdin/secnotice,
+/obj/item/weapon/paper/fluff/awaymissions/snowdin/secnotice,
/turf/open/floor/plasteel/darkred{
baseturf = /turf/open/floor/plating/asteroid/snow
},
@@ -3670,7 +3670,7 @@
/area/awaymission/snowdin)
"jV" = (
/obj/structure/table,
-/obj/item/weapon/paper/crumpled/snowdin/misc1,
+/obj/item/weapon/paper/crumpled/ruins/snowdin/misc1,
/turf/open/floor/mineral/plastitanium/brig{
baseturf = /turf/open/floor/plating/asteroid/snow
},
@@ -3893,10 +3893,7 @@
dir = 4
},
/obj/item/weapon/reagent_containers/food/drinks/bottle/vodka/badminka,
-/obj/item/weapon/paper{
- info = "YOU SEEN IVAN, WHEN YOU HOLD SAAW LIKE PEESTOL, YOU STRONGER THAN RECOIL FOR FEAR OF HITTING FACE!";
- name = "SAW Usage"
- },
+/obj/item/weapon/paper/fluff/awaymissions/snowdin/saw_usage,
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/snow
},
@@ -3950,7 +3947,7 @@
/area/awaymission/snowdin/sekret)
"kE" = (
/obj/structure/table/wood,
-/obj/item/weapon/paper/snowdin/syndienotice,
+/obj/item/weapon/paper/fluff/awaymissions/snowdin/syndienotice,
/turf/open/floor/carpet{
baseturf = /turf/open/floor/plating/asteroid/snow
},
@@ -4970,7 +4967,7 @@
/area/awaymission/snowdin)
"nc" = (
/obj/structure/table,
-/obj/item/weapon/paper/crumpled/snowdin/shovel,
+/obj/item/weapon/paper/crumpled/ruins/snowdin/shovel,
/turf/open/floor/plasteel/darkbrown{
baseturf = /turf/open/floor/plating/asteroid/snow
},
@@ -5175,7 +5172,7 @@
dir = 8
},
/obj/structure/filingcabinet,
-/obj/item/weapon/paper/snowdin/snowdinlog2,
+/obj/item/weapon/paper/fluff/awaymissions/snowdin/log2,
/turf/open/floor/plasteel/darkbrown{
baseturf = /turf/open/floor/plating/asteroid/snow
},
diff --git a/_maps/RandomZLevels/undergroundoutpost45.dmm b/_maps/RandomZLevels/undergroundoutpost45.dmm
index fb82bb398a..02ab07915f 100644
--- a/_maps/RandomZLevels/undergroundoutpost45.dmm
+++ b/_maps/RandomZLevels/undergroundoutpost45.dmm
@@ -2824,7 +2824,7 @@
"eE" = (
/obj/structure/table,
/obj/item/weapon/book/manual/hydroponics_pod_people,
-/obj/item/weapon/paper/hydroponics,
+/obj/item/weapon/paper/guides/jobs/hydroponics,
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel/vault{
dir = 1;
@@ -5557,7 +5557,7 @@
dir = 4
},
/obj/structure/table,
-/obj/item/weapon/paper/pamphlet,
+/obj/item/weapon/paper/pamphlet/gateway,
/turf/open/floor/plasteel/floorgrime{
dir = 8;
heat_capacity = 1e+006
diff --git a/_maps/RandomZLevels/wildwest.dmm b/_maps/RandomZLevels/wildwest.dmm
index 386f79ab87..243f74b6d2 100644
--- a/_maps/RandomZLevels/wildwest.dmm
+++ b/_maps/RandomZLevels/wildwest.dmm
@@ -171,7 +171,7 @@
/turf/open/floor/engine/cult,
/area/awaymission/wwvault)
"aL" = (
-/obj/item/weapon/paper{
+/obj/item/weapon/paper/fluff/awaymissions/wildwest/grinder{
info = "meat grinder requires sacri"
},
/turf/open/floor/plasteel/cult{
@@ -607,10 +607,7 @@
/area/awaymission/wwgov)
"cg" = (
/obj/structure/table/wood,
-/obj/item/weapon/paper{
- info = " The miners in the town have become sick and almost all production has stopped. They, in a fit of delusion, tossed all of their mining equipment into the furnaces. They all claimed the same thing. A voice beckoning them to lay down their arms. Stupid miners.";
- name = "Planer Saul's Journal: Page 4"
- },
+/obj/item/weapon/paper/fluff/awaymissions/wildwest/journal/page4,
/turf/open/floor/plasteel/cafeteria{
dir = 5
},
@@ -830,10 +827,7 @@
/turf/open/floor/plating,
/area/awaymission/wwrefine)
"cU" = (
-/obj/item/weapon/paper{
- info = "We've discovered something floating in space. We can't really tell how old it is, but it is scraped and bent to hell. There object is the size of about a room with double doors that we have yet to break into. It is a lot sturdier than we could have imagined. We have decided to call it 'The Vault' ";
- name = "Planer Saul's Journal: Page 1"
- },
+/obj/item/weapon/paper/fluff/awaymissions/wildwest/journal/page1,
/turf/open/floor/carpet,
/area/awaymission/wwgov)
"cV" = (
@@ -1884,10 +1878,7 @@
/turf/open/floor/wood,
/area/awaymission/wwmines)
"fZ" = (
-/obj/item/weapon/paper{
- info = "The Vault...it just keeps growing and growing. I went on my daily walk through the garden and now its just right outside the mansion... a few days ago it was only barely visible. But whatever is inside...its calling to me.";
- name = "Planer Sauls' Journal: Page 7"
- },
+/obj/item/weapon/paper/fluff/awaymissions/wildwest/journal/page7,
/turf/open/floor/wood,
/area/awaymission/wwmines)
"ga" = (
@@ -2192,10 +2183,7 @@
/turf/open/floor/mineral/titanium/yellow,
/area/awaymission/wwrefine)
"gY" = (
-/obj/item/weapon/paper{
- info = "The syndicate have invaded. Their ships appeared out of nowhere and now they likely intend to kill us all and take everything. On the off-chance that the Vault may grant us sanctuary, many of us have decided to force our way inside and bolt the door, taking as many provisions with us as we can carry. In case you find this, send for help immediately and open the Vault. Find us inside.";
- name = "Planer Saul's Journal: Page 8"
- },
+/obj/item/weapon/paper/fluff/awaymissions/wildwest/journal/page8,
/turf/open/floor/plating/ironsand{
icon_state = "ironsand1"
},
diff --git a/_maps/map_files/BoxStation/BoxStation.dmm b/_maps/map_files/BoxStation/BoxStation.dmm
index 26feb0fa1b..fa2c78e010 100644
--- a/_maps/map_files/BoxStation/BoxStation.dmm
+++ b/_maps/map_files/BoxStation/BoxStation.dmm
@@ -7240,10 +7240,7 @@
/turf/open/space,
/area/space/nearstation)
"apR" = (
-/obj/item/weapon/paper{
- info = "01001001 00100000 01101000 01101111 01110000 01100101 00100000 01111001 01101111 01110101 00100000 01110011 01110100 01100001 01111001 00100000 01110011 01100001 01100110 01100101 00101110 00100000 01001100 01101111 01110110 01100101 00101100 00100000 01101101 01101111 01101101 00101110";
- name = "Note from Beepsky's Mom"
- },
+/obj/item/weapon/paper/fluff/jobs/security/beepsky_mom,
/turf/open/floor/plating,
/area/security/processing)
"apS" = (
@@ -10002,11 +9999,7 @@
/area/crew_quarters/fitness)
"awC" = (
/obj/structure/table,
-/obj/item/weapon/paper{
- desc = "";
- info = "Brusies sustained in the holodeck can be healed simply by sleeping.";
- name = "Holodeck Disclaimer"
- },
+/obj/item/weapon/paper/fluff/holodeck/disclaimer,
/turf/open/floor/plasteel,
/area/crew_quarters/fitness)
"awD" = (
@@ -13672,7 +13665,7 @@
/area/ai_monitored/nuke_storage)
"aEQ" = (
/obj/structure/table,
-/obj/item/weapon/paper/pamphlet,
+/obj/item/weapon/paper/pamphlet/gateway,
/turf/open/floor/plasteel,
/area/gateway)
"aER" = (
@@ -15921,7 +15914,7 @@
"aJN" = (
/obj/structure/table,
/obj/item/weapon/book/manual/hydroponics_pod_people,
-/obj/item/weapon/paper/hydroponics,
+/obj/item/weapon/paper/guides/jobs/hydroponics,
/turf/open/floor/plasteel/hydrofloor,
/area/hydroponics)
"aJO" = (
@@ -27793,7 +27786,7 @@
/area/quartermaster/office)
"bmR" = (
/obj/structure/table,
-/obj/item/weapon/paper/morguereminder{
+/obj/item/weapon/paper/guides/jobs/medical/morgue{
pixel_x = 5;
pixel_y = 4
},
@@ -29518,7 +29511,7 @@
pixel_y = 1
},
/obj/structure/table,
-/obj/item/weapon/paper/gravity_gen{
+/obj/item/weapon/paper/guides/jobs/engi/gravity_gen{
layer = 3
},
/obj/item/weapon/pen/blue,
@@ -44598,7 +44591,7 @@
/obj/machinery/recharger{
pixel_y = 4
},
-/obj/item/weapon/paper/range,
+/obj/item/weapon/paper/guides/jobs/security/range,
/obj/effect/turf_decal/stripes/line{
dir = 6
},
@@ -50694,7 +50687,7 @@
/obj/item/solar_assembly,
/obj/item/weapon/circuitboard/computer/solar_control,
/obj/item/weapon/electronics/tracker,
-/obj/item/weapon/paper/solar,
+/obj/item/weapon/paper/guides/jobs/engi/solars,
/obj/effect/turf_decal/bot{
dir = 1
},
@@ -50734,7 +50727,7 @@
/obj/item/solar_assembly,
/obj/item/weapon/circuitboard/computer/solar_control,
/obj/item/weapon/electronics/tracker,
-/obj/item/weapon/paper/solar,
+/obj/item/weapon/paper/guides/jobs/engi/solars,
/turf/open/floor/plasteel,
/area/engine/engineering)
"ckK" = (
diff --git a/_maps/map_files/Cerestation/cerestation.dmm b/_maps/map_files/Cerestation/cerestation.dmm
index a679b2a111..e7d08fb1ed 100644
--- a/_maps/map_files/Cerestation/cerestation.dmm
+++ b/_maps/map_files/Cerestation/cerestation.dmm
@@ -19595,10 +19595,7 @@
dir = 8;
pixel_x = 32
},
-/obj/item/weapon/paper{
- info = "Dummies Guide To Quantum Pads
Do you hate the concept of having to use your legs, let alone walk to places? Well, with the Quantum Pad (tm), never again will the fear of cardio keep you from going places!
How to set up your Quantum Pad(tm)
1.Unscrew the Quantum Pad(tm) you wish to link.
2. Use your multi-tool to cache the buffer of the Quantum Pad(tm) you wish to link.
3. Apply the multi-tool to the secondary Quantum Pad(tm) you wish to link to the first Quantum Pad(tm)
If you followed these instructions carefully, your Quantum Pad(tm) should now be properly linked together for near-instant movement across the station! Bear in mind that this is technically a one-way teleport, so you'll need to do the same process with the secondary pad to the first one if you wish to travel between both.";
- name = "Quantum Pad For Dummies"
- },
+/obj/item/weapon/paper/guides/quantumpad,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -23414,10 +23411,7 @@
dir = 8;
pixel_x = 27
},
-/obj/item/weapon/paper{
- info = "Dummies Guide To Quantum Pads
Do you hate the concept of having to use your legs, let alone walk to places? Well, with the Quantum Pad (tm), never again will the fear of cardio keep you from going places!
How to set up your Quantum Pad(tm)
1.Unscrew the Quantum Pad(tm) you wish to link.
2. Use your multi-tool to cache the buffer of the Quantum Pad(tm) you wish to link.
3. Apply the multi-tool to the secondary Quantum Pad(tm) you wish to link to the first Quantum Pad(tm)
If you followed these instructions carefully, your Quantum Pad(tm) should now be properly linked together for near-instant movement across the station! Bear in mind that this is technically a one-way teleport, so you'll need to do the same process with the secondary pad to the first one if you wish to travel between both.";
- name = "Quantum Pad For Dummies"
- },
+/obj/item/weapon/paper/guides/quantumpad,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/vault{
baseturf = /turf/open/floor/plating/asteroid/airless;
@@ -23554,10 +23548,7 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
-/obj/item/weapon/paper{
- info = "You got a big job ahead of you, pal. This is a big station, lots of floors and assholes to dirty said floors without any thought for you. It might not be a bad idea to check on the external waste belts every now and again to make sure some foriegn object hasn't clogged the disposal loop, either.";
- name = "Janitor Notice"
- },
+/obj/item/weapon/paper/fluff/stations/cere/janitor,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
@@ -38752,10 +38743,7 @@
},
/area/awaymission/research/interior/gateway)
"bur" = (
-/obj/item/weapon/paper{
- info = "Nanotrasen Exploration and Colonization Program
Due to recent shutdowns of the Exploration and Colonization department shortly after this gateway was delivered on-site during station construction, this room has been condemmed and an engineering team will be on-site within the next few months to recollect the gate. Thank you for your cooperation.";
- name = "NOTICE - GATEWAY STATUS"
- },
+/obj/item/weapon/paper/fluff/stations/cere/gateway,
/obj/effect/turf_decal/stripes/asteroid/line{
icon_state = "ast_warn";
dir = 8
@@ -40335,7 +40323,7 @@
d2 = 8;
icon_state = "1-8"
},
-/obj/item/weapon/paper/pamphlet,
+/obj/item/weapon/paper/pamphlet/gateway,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
@@ -40908,7 +40896,7 @@
/area/awaymission/research/interior/gateway)
"byg" = (
/obj/structure/table,
-/obj/item/weapon/paper/pamphlet,
+/obj/item/weapon/paper/pamphlet/gateway,
/obj/item/weapon/coin/silver,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -44035,7 +44023,7 @@
"bDQ" = (
/obj/structure/table,
/obj/item/weapon/book/manual/hydroponics_pod_people,
-/obj/item/weapon/paper/hydroponics,
+/obj/item/weapon/paper/guides/jobs/hydroponics,
/obj/item/stack/packageWrap,
/obj/item/device/destTagger,
/turf/open/floor/plasteel/hydrofloor{
@@ -54826,11 +54814,7 @@
})
"bYp" = (
/obj/structure/table,
-/obj/item/weapon/paper{
- desc = "";
- info = "Bruises sustained in the holodeck can be healed simply by sleeping.";
- name = "Holodeck Disclaimer"
- },
+/obj/item/weapon/paper/fluff/holodeck/disclaimer,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
@@ -57418,7 +57402,7 @@
/obj/item/solar_assembly,
/obj/item/solar_assembly,
/obj/item/weapon/electronics/tracker,
-/obj/item/weapon/paper/solar,
+/obj/item/weapon/paper/guides/jobs/engi/solars,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
@@ -58731,10 +58715,7 @@
"cgi" = (
/obj/structure/table,
/obj/item/clothing/glasses/meson,
-/obj/item/weapon/paper{
- info = "This station needs cleared out within the next few weeks, as construction is almost complete and NT expects most of the equipment off-site before then. Throw most of the shit in here for now and we'll come back later with a pod to haul the heavier stuff. Shouldn't be too big of an issue.";
- name = "Disclaimer Notice"
- },
+/obj/item/weapon/paper/fluff/stations/cere/abandoned_dock,
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
@@ -61247,10 +61228,7 @@
dir = 4;
pixel_x = -32
},
-/obj/item/weapon/paper{
- info = "Dummies Guide To Quantum Pads
Do you hate the concept of having to use your legs, let alone walk to places? Well, with the Quantum Pad (tm), never again will the fear of cardio keep you from going places!
How to set up your Quantum Pad(tm)
1.Unscrew the Quantum Pad(tm) you wish to link.
2. Use your multi-tool to cache the buffer of the Quantum Pad(tm) you wish to link.
3. Apply the multi-tool to the secondary Quantum Pad(tm) you wish to link to the first Quantum Pad(tm)
If you followed these instructions carefully, your Quantum Pad(tm) should now be properly linked together for near-instant movement across the station! Bear in mind that this is technically a one-way teleport, so you'll need to do the same process with the secondary pad to the first one if you wish to travel between both.";
- name = "Quantum Pad For Dummies"
- },
+/obj/item/weapon/paper/guides/quantumpad,
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
@@ -61316,10 +61294,7 @@
dir = 8;
pixel_x = 32
},
-/obj/item/weapon/paper{
- info = "Dummies Guide To Quantum Pads
Do you hate the concept of having to use your legs, let alone walk to places? Well, with the Quantum Pad (tm), never again will the fear of cardio keep you from going places!
How to set up your Quantum Pad(tm)
1.Unscrew the Quantum Pad(tm) you wish to link.
2. Use your multi-tool to cache the buffer of the Quantum Pad(tm) you wish to link.
3. Apply the multi-tool to the secondary Quantum Pad(tm) you wish to link to the first Quantum Pad(tm)
If you followed these instructions carefully, your Quantum Pad(tm) should now be properly linked together for near-instant movement across the station! Bear in mind that this is technically a one-way teleport, so you'll need to do the same process with the secondary pad to the first one if you wish to travel between both.";
- name = "Quantum Pad For Dummies"
- },
+/obj/item/weapon/paper/guides/quantumpad,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -79710,15 +79685,9 @@
pixel_x = 32
},
/obj/structure/closet/crate/bin,
-/obj/item/weapon/paper/crumpled{
- info = "...SOMETHING IN THE ROCKS, IT WATCHES US ALL..."
- },
-/obj/item/weapon/paper/crumpled{
- info = "...THEY SENT US HERE FOR A REASON...TERRIBLE..."
- },
-/obj/item/weapon/paper/crumpled{
- info = "...EMPTY HALLS...USELESS SPACE..."
- },
+/obj/item/weapon/paper/crumpled/stations/cere/rocks1,
+/obj/item/weapon/paper/crumpled/stations/cere/rocks2,
+/obj/item/weapon/paper/crumpled/stations/cere/rocks3,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
@@ -79732,17 +79701,9 @@
})
"cTH" = (
/obj/structure/filingcabinet/chestdrawer,
-/obj/item/weapon/paper/crumpled{
- info = "I can't be here for much longer, this station is too empty for its own good. Something is wrong..."
- },
-/obj/item/weapon/paper{
- info = "2XXX - 2nd Trimestor
I hide in here, away from the masses, not like it matters much considering how fucking huge this place is. ";
- name = "Journal Log"
- },
-/obj/item/weapon/paper{
- info = "2XXX - 3rd Trimestor
I hear strange whispers from the halls, longing for blood. Something isn't right here. Why did they transfer us here to work in the first place? ";
- name = "Journal Log 2"
- },
+/obj/item/weapon/paper/crumpled/stations/cere/empty_station,
+/obj/item/weapon/paper/fluff/stations/cere/journal/journal,
+/obj/item/weapon/paper/fluff/stations/cere/journal/journal_2,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
@@ -79750,9 +79711,7 @@
valid_territory = 0
})
"cTI" = (
-/obj/item/weapon/paper/crumpled/bloody{
- info = "...THE HOPLINE CALLS...IT THIRSTS FOR BLOOD...I MUST GO..."
- },
+/obj/item/weapon/paper/crumpled/bloody/hop,
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
diff --git a/_maps/map_files/Deltastation/DeltaStation2.dmm b/_maps/map_files/Deltastation/DeltaStation2.dmm
index 574dcbb095..96c7f5a8ab 100644
--- a/_maps/map_files/Deltastation/DeltaStation2.dmm
+++ b/_maps/map_files/Deltastation/DeltaStation2.dmm
@@ -65684,9 +65684,9 @@
icon_state = "4-8"
},
/obj/item/weapon/clipboard,
-/obj/item/weapon/paper/pamphlet,
-/obj/item/weapon/paper/pamphlet,
-/obj/item/weapon/paper/pamphlet,
+/obj/item/weapon/paper/pamphlet/gateway,
+/obj/item/weapon/paper/pamphlet/gateway,
+/obj/item/weapon/paper/pamphlet/gateway,
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
@@ -72299,11 +72299,7 @@
/obj/structure/table/reinforced,
/obj/item/weapon/clipboard,
/obj/item/weapon/folder,
-/obj/item/weapon/paper{
- desc = "";
- info = "Brusies sustained in the holodeck can be healed simply by sleeping.";
- name = "Holodeck Disclaimer"
- },
+/obj/item/weapon/paper/fluff/holodeck/disclaimer,
/turf/open/floor/plasteel/neutral/side{
dir = 4
},
diff --git a/_maps/map_files/MetaStation/MetaStation.dmm b/_maps/map_files/MetaStation/MetaStation.dmm
index a7db1e0909..4c863df3c9 100644
--- a/_maps/map_files/MetaStation/MetaStation.dmm
+++ b/_maps/map_files/MetaStation/MetaStation.dmm
@@ -522,7 +522,7 @@
"abk" = (
/obj/structure/table,
/obj/item/weapon/folder,
-/obj/item/weapon/paper/hydroponics,
+/obj/item/weapon/paper/guides/jobs/hydroponics,
/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
@@ -5130,11 +5130,7 @@
/area/crew_quarters/fitness/recreation)
"ajX" = (
/obj/structure/table,
-/obj/item/weapon/paper{
- desc = "";
- info = "Brusies sustained in the holodeck can be healed simply by sleeping.";
- name = "Holodeck Disclaimer"
- },
+/obj/item/weapon/paper/fluff/holodeck/disclaimer,
/obj/item/weapon/storage/firstaid/regular{
pixel_x = 3;
pixel_y = -3
@@ -9493,11 +9489,7 @@
/obj/item/weapon/razor{
pixel_x = -6
},
-/obj/item/weapon/paper{
- desc = "";
- info = "Labor Camp Facility Operation Guide
Hello there, proud operator of an NT-Sec Prisoner Rehabilitation Center. A solution to rising crime rates and falling productivity, these facilities are specifically designed for the safe, productive imprisonment of your most dangerous criminals.
To press a long-term prisoner into the service of the station, replace his equipment with prisoners' garb at one of the prison lockers, as per normal operating procedure. Before assigning a prisoner his ID, insert the ID into a prisoner management console and assign the prisoner a quota, based on the severity of his crime.
A single sheet of most materials produces five points for the prisoner, and points can be expected to be produced at a rate of about 100 per minute, though punishments as severe as forced labor should be reserved for serious crimes of sentences not less than five minutes long.
Once you have prepared the prisoner, place him in the secure northern half of the labor shuttle, and send him to the station. Once he meets his quota by feeding sheets to the stacker, he will be allowed to return to the station, and will be able to open the secure door to the prisoner release area.
In the case of dangerous prisoners, surveilance may be needed. To that end, there is a prisoner monitoring room on the mining station, equipped with a remote flasher and a lockdown button. The mine itself is patrolled by a securibot, so the nearby security records console can also be used to secure hostile prisoners on the mine.";
- name = "Labor Camp Operating Guide"
- },
+/obj/item/weapon/paper/guides/jobs/security/labor_camp,
/obj/item/weapon/pen,
/turf/open/floor/plasteel/black,
/area/security/brig)
@@ -10079,7 +10071,7 @@
icon_state = "1-8"
},
/obj/structure/table,
-/obj/item/weapon/paper/gravity_gen{
+/obj/item/weapon/paper/guides/jobs/engi/gravity_gen{
layer = 3
},
/obj/item/weapon/pen/blue,
@@ -17557,7 +17549,7 @@
/obj/item/solar_assembly,
/obj/item/weapon/circuitboard/computer/solar_control,
/obj/item/weapon/electronics/tracker,
-/obj/item/weapon/paper/solar,
+/obj/item/weapon/paper/guides/jobs/engi/solars,
/obj/effect/turf_decal/bot{
dir = 1
},
@@ -23052,7 +23044,7 @@
/obj/structure/extinguisher_cabinet{
pixel_x = -27
},
-/obj/item/weapon/paper/hydroponics,
+/obj/item/weapon/paper/guides/jobs/hydroponics,
/obj/item/weapon/coin/silver,
/obj/effect/turf_decal/stripes/line{
dir = 1
@@ -36470,10 +36462,7 @@
/obj/machinery/light/small{
dir = 8
},
-/obj/item/weapon/paper{
- info = "Congratulations,
Your station has been selected to carry out the Gateway Project.
The equipment will be shipped to you at the start of the next quarter.
You are to prepare a secure location to house the equipment as outlined in the attached documents.
--Nanotrasen Blue Space Research";
- name = "Confidential Correspondence, Pg 1"
- },
+/obj/item/weapon/paper/fluff/gateway,
/obj/item/weapon/coin/plasma,
/obj/item/weapon/melee/chainofcommand,
/turf/open/floor/wood,
@@ -47189,7 +47178,7 @@
/area/gateway)
"bLB" = (
/obj/structure/table,
-/obj/item/weapon/paper/pamphlet,
+/obj/item/weapon/paper/pamphlet/gateway,
/obj/effect/turf_decal/bot{
dir = 1
},
@@ -53746,7 +53735,7 @@
network = list("SS13")
},
/obj/item/weapon/book/manual/hydroponics_pod_people,
-/obj/item/weapon/paper/hydroponics,
+/obj/item/weapon/paper/guides/jobs/hydroponics,
/obj/machinery/requests_console{
department = "Hydroponics";
departmentType = 2;
@@ -54884,7 +54873,7 @@
/area/science/research)
"cau" = (
/obj/structure/table,
-/obj/item/weapon/paper/pamphlet,
+/obj/item/weapon/paper/pamphlet/gateway,
/turf/open/floor/plasteel/whitepurple/side{
dir = 1
},
@@ -56007,7 +55996,7 @@
/obj/structure/table,
/obj/item/weapon/book/manual/hydroponics_pod_people,
/obj/machinery/light,
-/obj/item/weapon/paper/hydroponics,
+/obj/item/weapon/paper/guides/jobs/hydroponics,
/obj/machinery/camera{
c_tag = "Hydroponics - Foyer";
dir = 1;
@@ -68090,7 +68079,7 @@
pixel_x = 4;
pixel_y = -3
},
-/obj/item/weapon/paper/range{
+/obj/item/weapon/paper/guides/jobs/security/range{
pixel_x = 2;
pixel_y = 2
},
@@ -69620,7 +69609,7 @@
pixel_x = 6;
pixel_y = 4
},
-/obj/item/weapon/paper/morguereminder{
+/obj/item/weapon/paper/guides/jobs/medical/morgue{
pixel_x = -4
},
/obj/effect/landmark/revenantspawn,
diff --git a/_maps/map_files/Mining/Lavaland.dmm b/_maps/map_files/Mining/Lavaland.dmm
index 432d5ae341..4c00524717 100644
--- a/_maps/map_files/Mining/Lavaland.dmm
+++ b/_maps/map_files/Mining/Lavaland.dmm
@@ -1099,11 +1099,7 @@
pixel_y = 30
},
/obj/structure/table,
-/obj/item/weapon/paper{
- anchored = 0;
- info = "A hastily written note has been scribbled here...
Please use the ore redemption machine in the cargo office for smelting. PLEASE!
--The Research Staff";
- name = "URGENT!"
- },
+/obj/item/weapon/paper/fluff/stations/lavaland/orm_notice,
/turf/open/floor/plasteel,
/area/mine/production)
"de" = (
diff --git a/_maps/map_files/OmegaStation/OmegaStation.dmm b/_maps/map_files/OmegaStation/OmegaStation.dmm
index 8a7311fb5a..d0952a4385 100644
--- a/_maps/map_files/OmegaStation/OmegaStation.dmm
+++ b/_maps/map_files/OmegaStation/OmegaStation.dmm
@@ -23651,7 +23651,7 @@
},
/obj/item/weapon/book/manual/hydroponics_pod_people,
/obj/item/weapon/storage/box/syringes,
-/obj/item/weapon/paper/hydroponics,
+/obj/item/weapon/paper/guides/jobs/hydroponics,
/obj/item/toy/figure/botanist,
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/bot,
diff --git a/_maps/map_files/PubbyStation/PubbyStation.dmm b/_maps/map_files/PubbyStation/PubbyStation.dmm
index 9d5192484f..be4b4d2c66 100644
--- a/_maps/map_files/PubbyStation/PubbyStation.dmm
+++ b/_maps/map_files/PubbyStation/PubbyStation.dmm
@@ -2154,9 +2154,7 @@
/area/security/prison)
"aff" = (
/obj/structure/table,
-/obj/item/weapon/paper{
- layer = 2.9
- },
+/obj/item/weapon/paper,
/obj/item/weapon/pen,
/turf/open/floor/plasteel/floorgrime,
/area/security/prison)
@@ -5673,11 +5671,7 @@
/obj/item/weapon/razor{
pixel_x = -6
},
-/obj/item/weapon/paper{
- desc = "";
- info = "Labor Camp Facility Operation Guide
Hello there, proud operator of an NT-Sec Prisoner Rehabilitation Center. A solution to rising crime rates and falling productivity, these facilities are specifically designed for the safe, productive imprisonment of your most dangerous criminals.
To press a long-term prisoner into the service of the station, replace his equipment with prisoners' garb at one of the prison lockers, as per normal operating procedure. Before assigning a prisoner his ID, insert the ID into a prisoner management console and assign the prisoner a quota, based on the severity of his crime.
A single sheet of most materials produces five points for the prisoner, and points can be expected to be produced at a rate of about 100 per minute, though punishments as severe as forced labor should be reserved for serious crimes of sentences not less than five minutes long.
Once you have prepared the prisoner, place him in the secure northern half of the labor shuttle, and send him to the station. Once he meets his quota by feeding sheets to the stacker, he will be allowed to return to the station, and will be able to open the secure door to the prisoner release area.
In the case of dangerous prisoners, surveilance may be needed. To that end, there is a prisoner monitoring room on the mining station, equipped with a remote flasher and a lockdown button. The mine itself is patrolled by a securibot, so the nearby security records console can also be used to secure hostile prisoners on the mine.";
- name = "Labor Camp Operating Guide"
- },
+/obj/item/weapon/paper/guides/jobs/security/labor_camp,
/obj/item/weapon/pen,
/turf/open/floor/plasteel/black,
/area/security/brig)
@@ -10101,11 +10095,7 @@
/area/crew_quarters/fitness/recreation)
"awd" = (
/obj/structure/table,
-/obj/item/weapon/paper{
- desc = "";
- info = "Brusies sustained in the holodeck can be healed simply by sleeping.";
- name = "Holodeck Disclaimer"
- },
+/obj/item/weapon/paper/fluff/holodeck/disclaimer,
/turf/open/floor/plasteel,
/area/crew_quarters/fitness/recreation)
"awe" = (
@@ -10305,10 +10295,7 @@
/obj/item/weapon/stock_parts/cell/potato{
name = "\improper Beepsky's emergency battery"
},
-/obj/item/weapon/paper{
- info = "01001001 00100000 01101000 01101111 01110000 01100101 00100000 01111001 01101111 01110101 00100000 01110011 01110100 01100001 01111001 00100000 01110011 01100001 01100110 01100101 00101110 00100000 01001100 01101111 01110110 01100101 00101100 00100000 01101101 01101111 01101101 00101110";
- name = "Note from Beepsky's Mom"
- },
+/obj/item/weapon/paper/fluff/jobs/security/beepsky_mom,
/turf/open/floor/plating,
/area/maintenance/department/security/brig)
"awy" = (
@@ -18272,7 +18259,7 @@
"aNO" = (
/obj/structure/table,
/obj/item/weapon/book/manual/hydroponics_pod_people,
-/obj/item/weapon/paper/hydroponics,
+/obj/item/weapon/paper/guides/jobs/hydroponics,
/obj/item/weapon/reagent_containers/dropper,
/obj/item/weapon/reagent_containers/glass/bottle/mutagen,
/obj/item/weapon/reagent_containers/dropper,
@@ -40231,7 +40218,7 @@
pixel_y = 1
},
/obj/structure/table,
-/obj/item/weapon/paper/gravity_gen{
+/obj/item/weapon/paper/guides/jobs/engi/gravity_gen{
layer = 3
},
/obj/item/weapon/pen/blue,
@@ -40355,7 +40342,7 @@
/obj/item/solar_assembly,
/obj/item/weapon/circuitboard/computer/solar_control,
/obj/item/weapon/electronics/tracker,
-/obj/item/weapon/paper/solar,
+/obj/item/weapon/paper/guides/jobs/engi/solars,
/obj/machinery/power/apc{
dir = 2;
name = "Tech Storage APC";
diff --git a/_maps/map_files/PubbyStation/PubbyStation.dmm.rej b/_maps/map_files/PubbyStation/PubbyStation.dmm.rej
index 80fa973d0a..e4945f57e3 100644
--- a/_maps/map_files/PubbyStation/PubbyStation.dmm.rej
+++ b/_maps/map_files/PubbyStation/PubbyStation.dmm.rej
@@ -210,4 +210,4 @@ diff a/_maps/map_files/PubbyStation/PubbyStation.dmm b/_maps/map_files/PubbyStat
+ network = list("Telecomms")
},
/turf/open/space,
- /area/space)
+ /area/space)
\ No newline at end of file
diff --git a/_maps/map_files/generic/Centcomm.dmm b/_maps/map_files/generic/Centcomm.dmm
index 8e3d678469..fe6fcad6e2 100644
--- a/_maps/map_files/generic/Centcomm.dmm
+++ b/_maps/map_files/generic/Centcomm.dmm
@@ -1397,7 +1397,7 @@
icon = 'icons/obj/machines/particle_accelerator.dmi';
icon_state = "control_boxp";
name = "Kobayashi Maru control computer";
- prizes = list(/obj/item/weapon/paper/trek_diploma = 1);
+ prizes = list(/obj/item/weapon/paper/fluff/holodeck/trek_diploma = 1);
settlers = list("Kirk","Worf","Gene")
},
/turf/open/floor/holofloor/plating,
@@ -1423,7 +1423,7 @@
icon = 'icons/obj/machines/particle_accelerator.dmi';
icon_state = "control_boxp";
name = "Kobayashi Maru control computer";
- prizes = list(/obj/item/weapon/paper/trek_diploma = 1);
+ prizes = list(/obj/item/weapon/paper/fluff/holodeck/trek_diploma = 1);
settlers = list("Kirk","Worf","Gene")
},
/turf/open/floor/holofloor/plating,
@@ -1438,7 +1438,7 @@
icon = 'icons/obj/machines/particle_accelerator.dmi';
icon_state = "control_boxp";
name = "Kobayashi Maru control computer";
- prizes = list(/obj/item/weapon/paper/trek_diploma = 1);
+ prizes = list(/obj/item/weapon/paper/fluff/holodeck/trek_diploma = 1);
settlers = list("Kirk","Worf","Gene")
},
/turf/open/floor/holofloor/plating,
@@ -1918,7 +1918,7 @@
},
/area/holodeck/rec_center/firingrange)
"ft" = (
-/obj/item/weapon/paper/range,
+/obj/item/weapon/paper/guides/jobs/security/range,
/turf/open/floor/holofloor,
/area/holodeck/rec_center/firingrange)
"fu" = (
@@ -4669,9 +4669,9 @@
},
/area/centcom/control)
"mQ" = (
-/obj/item/weapon/paper/pamphlet/ccaInfo,
-/obj/item/weapon/paper/pamphlet/ccaInfo,
-/obj/item/weapon/paper/pamphlet/ccaInfo,
+/obj/item/weapon/paper/pamphlet/centcom/visitor_info,
+/obj/item/weapon/paper/pamphlet/centcom/visitor_info,
+/obj/item/weapon/paper/pamphlet/centcom/visitor_info,
/obj/structure/table/wood,
/turf/open/floor/plasteel/vault{
dir = 8
@@ -4946,9 +4946,9 @@
/area/centcom/control)
"ny" = (
/obj/structure/table,
-/obj/item/weapon/paper/pamphlet/ccaInfo,
-/obj/item/weapon/paper/pamphlet/ccaInfo,
-/obj/item/weapon/paper/pamphlet/ccaInfo,
+/obj/item/weapon/paper/pamphlet/centcom/visitor_info,
+/obj/item/weapon/paper/pamphlet/centcom/visitor_info,
+/obj/item/weapon/paper/pamphlet/centcom/visitor_info,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
/area/centcom/control)
@@ -5809,10 +5809,7 @@
/turf/open/floor/engine/cult,
/area/wizard_station)
"pz" = (
-/obj/item/weapon/paper{
- info = "GET DAT FUKKEN DISK";
- name = "memo"
- },
+/obj/item/weapon/paper/fluff/stations/centcom/disk_memo,
/obj/structure/noticeboard{
pixel_x = -32
},
@@ -7600,9 +7597,9 @@
/area/centcom/control)
"tD" = (
/obj/structure/table,
-/obj/item/weapon/paper/pamphlet/ccaInfo,
-/obj/item/weapon/paper/pamphlet/ccaInfo,
-/obj/item/weapon/paper/pamphlet/ccaInfo,
+/obj/item/weapon/paper/pamphlet/centcom/visitor_info,
+/obj/item/weapon/paper/pamphlet/centcom/visitor_info,
+/obj/item/weapon/paper/pamphlet/centcom/visitor_info,
/obj/machinery/light{
dir = 8
},
@@ -9495,9 +9492,9 @@
/area/centcom/control)
"yy" = (
/obj/structure/table,
-/obj/item/weapon/paper/pamphlet/ccaInfo,
-/obj/item/weapon/paper/pamphlet/ccaInfo,
-/obj/item/weapon/paper/pamphlet/ccaInfo,
+/obj/item/weapon/paper/pamphlet/centcom/visitor_info,
+/obj/item/weapon/paper/pamphlet/centcom/visitor_info,
+/obj/item/weapon/paper/pamphlet/centcom/visitor_info,
/obj/machinery/light{
dir = 1
},
@@ -10150,7 +10147,7 @@
"Af" = (
/obj/structure/table/reinforced,
/obj/machinery/door/firedoor,
-/obj/item/weapon/paper/pamphlet/ccaInfo,
+/obj/item/weapon/paper/pamphlet/centcom/visitor_info,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
/area/tdome/tdomeobserve)
@@ -12152,9 +12149,7 @@
/area/shuttle/escape)
"Fp" = (
/obj/structure/table/wood,
-/obj/item/weapon/paper{
- info = "Due to circumstances beyond our control, your Emergency Evacuation Shuttle is out of service.
We apologise for the inconvinience this may cause you.
Please enjoy the use of this complementary book.
Sincerely,
Centcom Operations Demolitions Examination Retribution Bugfixing Underlining Services"
- },
+/obj/item/weapon/paper/fluff/stations/centcom/broken_evac,
/turf/open/floor/mineral/titanium,
/area/shuttle/escape)
"Fq" = (
@@ -12656,7 +12651,7 @@
/area/abductor_ship)
"GS" = (
/obj/item/weapon/surgical_drapes,
-/obj/item/weapon/paper/abductor,
+/obj/item/weapon/paper/guides/antag/abductor,
/obj/item/weapon/scalpel/alien,
/obj/structure/table/abductor,
/obj/item/weapon/cautery/alien,
diff --git a/_maps/shuttles/emergency_imfedupwiththisworld.dmm b/_maps/shuttles/emergency_imfedupwiththisworld.dmm
index bc3f87c187..3aaa1e5de3 100644
--- a/_maps/shuttles/emergency_imfedupwiththisworld.dmm
+++ b/_maps/shuttles/emergency_imfedupwiththisworld.dmm
@@ -126,9 +126,7 @@
"x" = (
/obj/structure/bed,
/obj/item/weapon/bedsheet/red,
-/obj/item/weapon/paper{
- info = "i love daniel
daniel is my best friend
you are tearing me apart elise"
- },
+/obj/item/weapon/paper/fluff/shuttles/daniel,
/turf/open/floor/carpet,
/area/shuttle/escape)
"y" = (
diff --git a/code/game/gamemodes/miniantags/abduction/abduction_gear.dm b/code/game/gamemodes/miniantags/abduction/abduction_gear.dm
index d6265a8f75..e84eedf91a 100644
--- a/code/game/gamemodes/miniantags/abduction/abduction_gear.dm
+++ b/code/game/gamemodes/miniantags/abduction/abduction_gear.dm
@@ -298,7 +298,7 @@
origin_tech = "combat=4;magnets=7;powerstorage=3;abductor=3"
trigger_guard = TRIGGER_GUARD_ALLOW_ALL
-/obj/item/weapon/paper/abductor
+/obj/item/weapon/paper/guides/antag/abductor
name = "Dissection Guide"
icon_state = "alienpaper_words"
info = {"Dissection for Dummies
@@ -320,10 +320,10 @@
Congratulations! You are now trained for invasive xenobiology research!"}
-/obj/item/weapon/paper/abductor/update_icon()
+/obj/item/weapon/paper/guides/antag/abductor/update_icon()
return
-/obj/item/weapon/paper/abductor/AltClick()
+/obj/item/weapon/paper/guides/antag/abductor/AltClick()
return
#define BATON_STUN 0
diff --git a/code/game/gamemodes/wizard/spellbook.dm b/code/game/gamemodes/wizard/spellbook.dm
index d98878b352..69c26cdb43 100644
--- a/code/game/gamemodes/wizard/spellbook.dm
+++ b/code/game/gamemodes/wizard/spellbook.dm
@@ -376,7 +376,7 @@
/datum/spellbook_entry/item/guardian/Buy(mob/living/carbon/human/user,obj/item/weapon/spellbook/book)
. = ..()
if(.)
- new /obj/item/weapon/paper/guardian/wizard(get_turf(user))
+ new /obj/item/weapon/paper/guides/antag/guardian/wizard(get_turf(user))
/datum/spellbook_entry/item/bloodbottle
name = "Bottle of Blood"
diff --git a/code/game/machinery/cloning.dm b/code/game/machinery/cloning.dm
index 811e90603e..06c4cce2bc 100644
--- a/code/game/machinery/cloning.dm
+++ b/code/game/machinery/cloning.dm
@@ -483,7 +483,7 @@
* Manual -- A big ol' manual.
*/
-/obj/item/weapon/paper/Cloning
+/obj/item/weapon/paper/guides/jobs/medical/cloning
name = "paper - 'H-87 Cloning Apparatus Manual"
info = {"Getting Started
Congratulations, your station has purchased the H-87 industrial cloning device!
diff --git a/code/game/machinery/quantum_pad.dm b/code/game/machinery/quantum_pad.dm
index 5b1eb0548c..b05ecdea70 100644
--- a/code/game/machinery/quantum_pad.dm
+++ b/code/game/machinery/quantum_pad.dm
@@ -150,3 +150,8 @@
else if(!isobserver(ROI))
continue
do_teleport(ROI, get_turf(linked_pad))
+
+
+/obj/item/weapon/paper/guides/quantumpad
+ name = "Quantum Pad For Dummies"
+ info = "Dummies Guide To Quantum Pads
Do you hate the concept of having to use your legs, let alone walk to places? Well, with the Quantum Pad (tm), never again will the fear of cardio keep you from going places!
How to set up your Quantum Pad(tm)
1.Unscrew the Quantum Pad(tm) you wish to link.
2. Use your multi-tool to cache the buffer of the Quantum Pad(tm) you wish to link.
3. Apply the multi-tool to the secondary Quantum Pad(tm) you wish to link to the first Quantum Pad(tm)
If you followed these instructions carefully, your Quantum Pad(tm) should now be properly linked together for near-instant movement across the station! Bear in mind that this is technically a one-way teleport, so you'll need to do the same process with the secondary pad to the first one if you wish to travel between both."
diff --git a/code/game/machinery/recycler.dm b/code/game/machinery/recycler.dm
index 1c3ba36028..f853407df8 100644
--- a/code/game/machinery/recycler.dm
+++ b/code/game/machinery/recycler.dm
@@ -198,7 +198,7 @@
crush_damage = 120
flags = NODECONSTRUCT
-/obj/item/weapon/paper/recycler
+/obj/item/weapon/paper/guides/recycler
name = "paper - 'garbage duty instructions'"
info = "New Assignment
You have been assigned to collect garbage from trash bins, located around the station. The crewmembers will put their trash into it and you will collect the said trash.
There is a recycling machine near your closet, inside maintenance; use it to recycle the trash for a small chance to get useful minerals. Then deliver these minerals to cargo or engineering. You are our last hope for a clean station, do not screw this up!"
diff --git a/code/game/objects/items/theft_tools.dm b/code/game/objects/items/theft_tools.dm
index a51dd403a0..9705dadb1c 100644
--- a/code/game/objects/items/theft_tools.dm
+++ b/code/game/objects/items/theft_tools.dm
@@ -86,7 +86,7 @@
toolspeed = 0.5
random_color = FALSE
-/obj/item/weapon/paper/nuke_instructions
+/obj/item/weapon/paper/guides/antag/nuke_instructions
info = "How to break into a Nanotrasen self-destruct terminal and remove its plutonium core:
\
\
- Use a screwdriver with a very thin tip (provided) to unscrew the terminal's front panel
\
@@ -99,7 +99,7 @@
// STEALING SUPERMATTER
-/obj/item/weapon/paper/supermatter_sliver_instructions
+/obj/item/weapon/paper/guides/antag/supermatter_sliver
info = "How to safely extract a supermatter sliver:
\
\
- Approach an active supermatter crystal with proper protective gear. DO NOT MAKE PHYSICAL CONTACT.
\
diff --git a/code/game/objects/items/weapons/storage/uplink_kits.dm b/code/game/objects/items/weapons/storage/uplink_kits.dm
index 63afdce472..38769e7ce6 100644
--- a/code/game/objects/items/weapons/storage/uplink_kits.dm
+++ b/code/game/objects/items/weapons/storage/uplink_kits.dm
@@ -236,7 +236,7 @@
/obj/item/weapon/storage/box/syndie_kit/nuke/PopulateContents()
new /obj/item/weapon/screwdriver/nuke(src)
new /obj/item/nuke_core_container(src)
- new /obj/item/weapon/paper/nuke_instructions(src)
+ new /obj/item/weapon/paper/guides/antag/nuke_instructions(src)
/obj/item/weapon/storage/box/syndie_kit/supermatter
name = "box"
@@ -245,7 +245,7 @@
new /obj/item/weapon/scalpel/supermatter(src)
new /obj/item/weapon/hemostat/supermatter(src)
new /obj/item/nuke_core_container/supermatter(src)
- new /obj/item/weapon/paper/supermatter_sliver_instructions(src)
+ new /obj/item/weapon/paper/guides/antag/supermatter_sliver(src)
/obj/item/weapon/storage/box/syndie_kit/tuberculosisgrenade
name = "boxed virus grenade kit"
diff --git a/code/game/objects/structures/crates_lockers/closets/secure/security.dm b/code/game/objects/structures/crates_lockers/closets/secure/security.dm
index 7edaf5ebe3..1aa8dffea2 100644
--- a/code/game/objects/structures/crates_lockers/closets/secure/security.dm
+++ b/code/game/objects/structures/crates_lockers/closets/secure/security.dm
@@ -218,7 +218,7 @@
..()
new /obj/item/clothing/shoes/sneakers/brown(src)
for(var/i in 1 to 3)
- new /obj/item/weapon/paper/Court (src)
+ new /obj/item/weapon/paper/fluff/jobs/security/court_judgement (src)
new /obj/item/weapon/pen (src)
new /obj/item/clothing/suit/judgerobe (src)
new /obj/item/clothing/head/powdered_wig (src)
diff --git a/code/game/objects/structures/crates_lockers/crates.dm b/code/game/objects/structures/crates_lockers/crates.dm
index d5626bdcea..15f925523f 100644
--- a/code/game/objects/structures/crates_lockers/crates.dm
+++ b/code/game/objects/structures/crates_lockers/crates.dm
@@ -13,7 +13,7 @@
climb_time = 10 //real fast, because let's be honest stepping into or onto a crate is easy
climb_stun = 0 //climbing onto crates isn't hard, guys
delivery_icon = "deliverycrate"
- var/obj/item/weapon/paper/manifest/manifest
+ var/obj/item/weapon/paper/fluff/jobs/cargo/manifest/manifest
/obj/structure/closet/crate/New()
..()
diff --git a/code/game/objects/structures/morgue.dm b/code/game/objects/structures/morgue.dm
index 8e1574019f..3736fe5589 100644
--- a/code/game/objects/structures/morgue.dm
+++ b/code/game/objects/structures/morgue.dm
@@ -138,7 +138,7 @@
icon_state = "morgue4" // Cloneable
break
-/obj/item/weapon/paper/morguereminder
+/obj/item/weapon/paper/guides/jobs/medical/morgue
name = "morgue memo"
info = "Since this station's medbay never seems to fail to be staffed by the mindless monkeys meant for genetics experiments, I'm leaving a reminder here for anyone handling the pile of cadavers the quacks are sure to leave.
Red lights mean there's a plain ol' dead body inside.
Yellow lights mean there's non-body objects inside.
Probably stuff pried off a corpse someone grabbed, or if you're lucky it's stashed booze.
Green lights mean the morgue system detects the body may be able to be cloned.
I don't know how that works, but keep it away from the kitchen and go yell at the geneticists.
- Centcom medical inspector"
diff --git a/code/modules/awaymissions/gateway.dm b/code/modules/awaymissions/gateway.dm
index 3627f034df..e533d625cc 100644
--- a/code/modules/awaymissions/gateway.dm
+++ b/code/modules/awaymissions/gateway.dm
@@ -238,3 +238,8 @@ GLOBAL_DATUM(the_gateway, /obj/machinery/gateway/centerstation)
var/mob/M = AM
if (M.client)
M.client.move_delay = max(world.time + 5, M.client.move_delay)
+
+
+/obj/item/weapon/paper/fluff/gateway
+ info = "Congratulations,
Your station has been selected to carry out the Gateway Project.
The equipment will be shipped to you at the start of the next quarter.
You are to prepare a secure location to house the equipment as outlined in the attached documents.
--Nanotrasen Blue Space Research"
+ name = "Confidential Correspondence, Pg 1"
\ No newline at end of file
diff --git a/code/modules/awaymissions/mission_code/Academy.dm b/code/modules/awaymissions/mission_code/Academy.dm
index 0dc7eea3c6..27208a1a4b 100644
--- a/code/modules/awaymissions/mission_code/Academy.dm
+++ b/code/modules/awaymissions/mission_code/Academy.dm
@@ -1,6 +1,36 @@
//Academy Items
+/obj/item/weapon/paper/fluff/awaymissions/academy/console_maint
+ name = "Console Maintenance"
+ info = "We're upgrading to the latest mainframes for our consoles, the shipment should be in before spring break is over!"
+
+/obj/item/weapon/paper/fluff/awaymissions/academy/class/automotive
+ name = "Automotive Repair 101"
+
+/obj/item/weapon/paper/fluff/awaymissions/academy/class/pyromancy
+ name = "Pyromancy 250"
+
+/obj/item/weapon/paper/fluff/awaymissions/academy/class/biology
+ name = "Biology Lab"
+
+/obj/item/weapon/paper/fluff/awaymissions/academy/grade/aplus
+ name = "Summoning Midterm Exam"
+ info = "Grade: A+ Educator's Notes: Excellent form."
+
+/obj/item/weapon/paper/fluff/awaymissions/academy/grade/bminus
+ name = "Summoning Midterm Exam"
+ info = "Grade: B- Educator's Notes: Keep applying yourself, you're showing improvement."
+
+/obj/item/weapon/paper/fluff/awaymissions/academy/grade/dminus
+ name = "Summoning Midterm Exam"
+ info = "Grade: D- Educator's Notes: SEE ME AFTER CLASS."
+
+/obj/item/weapon/paper/fluff/awaymissions/academy/grade/failure
+ name = "Pyromancy Evaluation"
+ info = "Current Grade: F. Educator's Notes: No improvement shown despite multiple private lessons. Suggest additional tutilage."
+
+
/obj/singularity/academy
dissipate = 0
move_self = 0
diff --git a/code/modules/awaymissions/mission_code/caves.dm b/code/modules/awaymissions/mission_code/caves.dm
new file mode 100644
index 0000000000..0965851056
--- /dev/null
+++ b/code/modules/awaymissions/mission_code/caves.dm
@@ -0,0 +1,31 @@
+//caves papers
+
+/obj/item/weapon/paper/crumpled/awaymissions/caves/unsafe_area
+ info = "WARNING
Majority of this area is consitered 'unsafe' past this point. Theres an outpost directly south of here where you can get your bearing and travel further down if needed. Traveling in groups is HIGHLY advised, the shit out there can be extremely deadly if you're alone."
+
+/obj/item/weapon/paper/fluff/awaymissions/caves/omega
+ name = "Subject Omega Notes"
+ info = "Testing Notes
Subject appears unresponsive to most interactions, refusing to move away from the corners or face any scientists. Subject appears to move between the two back corners every observation. A strange humming can be heard from inside the cell, appears to be originating from the subject itself, further testing is necessary to confirm or deny this."
+
+/obj/item/weapon/paper/fluff/awaymissions/caves/magma
+ info = " Mining is hell down here, you can feel the heat of the magma no matter how thick the suit is. Conditions are barely managble as is, restless nights and horrid work conditions. The ore maybe rich down here, but we've already lost a few men to the faults shifting, god knows how much longer till it all just collapses down and consumes everyone with it."
+
+/obj/item/weapon/paper/fluff/awaymissions/caves/work_notice
+ name = "work notice"
+ info = "Survival Info For Miners
The caves are an unforgiving place, the only thing you'll have to traverse is the supplies in your locker and your own wit. Travel in packs when mining and try to shut down the monster dens before they overwhelm you. The job is dangerous but the haul is good, so remember this infomation and hopefully we'll all go home alive."
+
+/obj/item/weapon/paper/fluff/awaymissions/caves/shipment_notice
+ name = "shipment notice"
+ info = "We were suppose to get a shipment of these special laser rifles and a couple 'nades to help combat the wildlife down here, but its been weeks since we last heard from the caravan carrying the shit down here. At this point we can only assume they fell victim to one of the monster nests or the dumbasses managed to trip into the lava. So much for that shipment, I guess."
+
+/obj/item/weapon/paper/fluff/awaymissions/caves/saftey_notice
+ name = "safety notice"
+ info = "Some of the miners have gone to laying some mine traps among the lower levels of the mine to keep the monsters at bay. This probably isn't the smartest idea in a cavern like this but the boys seem to get a chuckle out of every distant blast they hear go off, so I guess it works "
+
+/obj/item/weapon/paper/fluff/awaymissions/caves/shipment_receipt
+ name = "Shipment Receipt"
+ info = "CARAVAN SERVICES
Quality service since 2205
SHIPMENT CONTENTS:
4 scattershot rifles
6 grenades
1 laser rifle
1 blowup doll"
+
+/obj/item/weapon/paper/fluff/awaymissions/caves/mech_notice
+ name = "NOTICE!! paper"
+ info = "NOTICE!!
Although you may seem indestructible in a mech, remember, THIS SHIT ISN'T LAVA PROOF!! The boys have already had to deal with loosing the last two to salvage because the dumbass thought he could just wade through the lower lakes like it was nothing. The fact he even managed to get back without being fused with what was left of the mech is a miracle in itself. They're built to be resistant against extreme heat, not heat PROOF!
Robotics Team"
diff --git a/code/modules/awaymissions/mission_code/centcomAway.dm b/code/modules/awaymissions/mission_code/centcomAway.dm
index 2508283cc3..b5107ecd67 100644
--- a/code/modules/awaymissions/mission_code/centcomAway.dm
+++ b/code/modules/awaymissions/mission_code/centcomAway.dm
@@ -2,7 +2,7 @@
//centcomAway items
-/obj/item/weapon/paper/pamphlet/ccaInfo
+/obj/item/weapon/paper/pamphlet/centcom/visitor_info
name = "Visitor Info Pamphlet"
info = " XCC-P5831 Visitor Information
\
Greetings, visitor, to XCC-P5831! As you may know, this outpost was once \
@@ -14,7 +14,7 @@
and the thrilling pay-per-view broadcasts of PLASTEEL CHEF and THUNDERDOME LIVE.
\
We hope you enjoy your stay!"
-/obj/item/weapon/paper/ccaMemo
+/obj/item/weapon/paper/fluff/awaymissions/centcom/gateway_memo
name = "Memo to XCC-P5831 QM"
info = "From: XCC-P5831 Management Office
\
To: Rolf Ingram, XCC-P5831 Quartermaster
\
diff --git a/code/modules/awaymissions/mission_code/moonoutpost19.dm b/code/modules/awaymissions/mission_code/moonoutpost19.dm
new file mode 100644
index 0000000000..0f30a5e202
--- /dev/null
+++ b/code/modules/awaymissions/mission_code/moonoutpost19.dm
@@ -0,0 +1,83 @@
+/////////// moonoutpost19 papers
+
+/obj/item/weapon/paper/crumpled/awaymissions/moonoutpost19/hastey_note
+ name = "Hastily Written Note"
+ info = "19 06 2554
I fucking knew it. There was a major breach, that idiotic force field failed and the xenomorphs rushed out and took out the scientists. I've managed to make it to my office and closed the blast doors. I can hear them trying to pry open the doors. Probably don't have long. I have no clue what has happened to the rest of the crew, for all I know they've been killed to produce more of the fucks."
+
+/obj/item/weapon/paper/fluff/awaymissions/moonoutpost19/research/larva_social
+ name = "Larva Xenomorph Social Interactions & Capturing Procedure"
+ info = "Researcher: Dr. Sakuma Sano
Date: 04/06/2554
Report:
As expected, all that is left of the monkeys we sent in earlier is a group of xenomorph larvae. It is quite clear that the facehuggers are not selective in their hosts, and so far the gestation process has been shown to have a 100% success rate.
The larvae themselves have been behaving very differently from the lone larva we first observed, and despite shying away from humans they are clearly comfortable with others of their kind. Our previous suspicions on larvae have been confirmed with their demonstration of playfulness: they are not nearly as aggressive or violent when young, before molting to adulthood.
The majority of the play we observed involved a sort of hide-and-seek, and occasionally wrestling by tangling themselves and struggling out of it. While normally we would write these off as instinctual play for honing their skills when they molt, their growth period is so incredibly fast and they are still such adept killers that it would serve no practical purpose. The only explanation for this is perhaps to create bonds and friendships with each other, if that is even possible for such an incredibly hostile race. It may be that they are much more reasonable with each other than other life forms.
It had become clear that now was the best time to extract a xenomorph for dissecting, as these were all still larvae and the queen was still attached to its ovipositor and would be immobile. With the approval of the research director, we sent in our medical robot that had been dubbed 'Head Surgeon' into the containment pen, dropping the shields for only a fraction of a second to allow it entry. The larvae were cautious, but the curiosity of one had him within grabbing range of our robot. It was brought out and quickly euthanized through lethal injection, courtesy of our mechanical doctor."
+
+/obj/item/weapon/paper/fluff/awaymissions/moonoutpost19/research/xeno_queen
+ name = "Queen Xenomorph Physiology & Behavior Observation"
+ info = "Researcher: Dr. Sakuma Sano
Date: 04/06/2554
Report:
I have studied many interesting and diverse life-forms as a xenobiologist ranging from creatures as large as cows, to specimens too small see with the naked eye. This is by far the largest alien I have ever seen. The alien we were previously studying has molted and has become an absolutely enormous creature. Standing at over 15 feet tall and weighing in at likely two tons or more, the xenomorph queen is an absolutely breathtakingly large and cruel monster. Its behavior has changed drastically from when it was a drone, having become far more comfortable with sitting and staring at us, rather than smashing at the windows.
The queen, physiologically speaking, is fairly similar to the other xenomorphs, with a few key differences. Its enormous size demands large legs, while the back seems to be always hunched forward. The dorsal tubes on the back have changed to several large spikes, and we observed the alien now sports a second pair of smaller arms on its chest. The purpose of these secondary arms is still unknown. Finally, the queen's crown has become incredibly large, with what seems to be a retractable slot to hide its head in. The dome appears to be extremely thick near the front, and will likely be able to resist a lot of trauma. Despite the enormous size it has grown to, it is not that much slower than it used to be.
After two hours of doing relatively nothing but staring, the queen began to produce an unusually large amount of resin and weeds, quickly shaping up a large nest that it then hid behind. It then proceeded to smash out all the lights, leaving us with very little to see with our cameras. When we looked through the back cameras, we had discovered that it had grown a large ovipositor, and was releasing large eggs onto the ground. This had us all in agreement that this stage of the life cycle was the queen.
Over the next few hours, the eggs grew to their full sizes, and we provided the subject with new monkey hosts. When they approached the eggs, they opened to release more facehuggers. It seems that we have observed the full cycle of reproduction for this species. We can expect more larvae in the next few hours."
+
+/obj/item/weapon/paper/fluff/awaymissions/moonoutpost19/research/xeno_adult
+ name = "Adult Xenomorph Physiology & Behavior Observation"
+ info = "Researcher: Dr. Sakuma Sano
Date: 03/06/2554
Report:
The other scientists and I can hardly believe our eyes. The snake-like larva has molted into a 7 foot tall insectoid nightmare in just a few hours. It's obvious now as to why such heavy duty containment was needed. It immediately tried to escape however by flinging itself at the window in a flurry of swipes and stabs. It seems its behavior has returned to a state that is very similar to the facehugger, though I doubt with the same intent! Thankfully, our glass and shields have shown to be more than sturdy enough for such a violent creature, and so far, any attempts at the creature escaping have been in vain.
As for its physiology, the creature has an elongated head with what appears to be have an exoskeleton resembling an external rib-cage on the torso. The alien is also fairly skinny with a lean body. The little amount of meat on the alien appears to be entirely muscle. We assume this makes it deceptively strong, while remaining agile at the same time. One of the most interesting things we have seen is its pharyngeal jaw. It has some what of an inner mouth capable of being fired externally at extremely high speeds. It has already caused many dents in the walls and a few small cracks in the window with it. The alien also has a couple of dorsal tubes on its back, their purpose unknown. Finally, this monster sports a long ridged tail, complete with a large and extremely sharp blade at the tip.
Normally I would be absolutely terrified of something like this, but I'm putting my trust in Nanotrasen with the containment. After all, they wouldn't build a cell that could fail to contain its subject, would they?"
+
+/obj/item/weapon/paper/fluff/awaymissions/moonoutpost19/research/larva_psych
+ name = "Larva Xenomorph Physiology & Behavior Observation"
+ info = "Researcher: Dr. Sakuma Sano
Date: 03/06/2554
Report:
When the larva first emerged from the chest of the monkey, it seemed very curious. It would wander around aimlessly for awhile and then sit still. We are unable to determine the gender of the larva, or even determine if it has a gender. After some time had passed, it seemed to lose interest in its surroundings and sat mostly still while occasionally wagging its tail. We decided to throw in a live mouse to see if it would consume it. The larva quickly attacked and ate the mouse and seemed to get larger very suddenly, this suggests that the larvae are capable of metabolizing and directing all the energy towards growth at previously thought impossible speeds. It is a shame that we cannot observe the process more closely, as we do not currently know how dangerous or violent this creature is or will become as it matures fully.
It is tempting to imagine the possibilities of utilizing such a mechanism. The capability of skipping years of growth time for children, repairing bodily damage in a matter of moments, even its usage in existing cloning technology."
+
+/obj/item/weapon/paper/fluff/awaymissions/moonoutpost19/research/facehugger
+ name = "'Facehugger' Xenomorph Physiology & Behavior Observation"
+ info = "Researcher: Dr. Sakuma Sano
Date: 03/06/2554
Report:
The test subject we were provided with truly is alien. It is a small spider-like creature with bony legs leading to a smooth body. It has a long tail connected to it, and it has shown extremely aggressive behavior by flinging its entire body at the glass and shields to no avail. While doing so, we noticed there was a small pink hole in the middle of the body.
When we sent in a monkey through the crude but effective disposal tube, the alien immediately jumped at its face and latched on. The monkey was quickly suffocated by its constricting tail, unable to pry off the fingers. The monkey at first seemed to be dead, but was observed to be breathing. The recently named alien 'facehugger' fell off dead and curled its legs up like a spider moments after it had finished with the monkey's body.
While the monkey appeared to be unharmed, we kept it in the cell for a couple more hours until we were horrified to discover it screaming out in pain as a snake-like creature erupted from the monkey's chest! It appears that the 'facehugger' is only the start of this life cycle. The impregnation cycle involving the creatures growing inside the chests of their hosts seems to only be the beginning."
+
+/obj/item/weapon/paper/fluff/awaymissions/moonoutpost19/research/xeno_hivemind
+ name = "The Hivemind Hypothesis"
+ info = "Researcher: Dr. Mark Douglas
Date: 17/06/2554
Report:
Earlier today we have observed a new phenomenon with our subjects. While feeding them our last monkey subject and throwing out the box, the aliens merely looked at us instead of infecting the monkey right away. They looked to be collectively distressed as they would no longer be given hosts, where instead we would move to the next phase of the experiment. When I glanced at the gas tanks and piping leading to their cell, I looked back to see all of them were up against the glass, even the queen! It was as if they all understood what was going to happen, even though we knew only the queen had the cognitive capability to do so.
The only explanation for this is a form of communication between the aliens, but we have seen no such action take place anywhere in the cell until now. We also know that regular drone and hunter xenomorphs have no personality or instinct to survive by themselves. Perhaps the queen has a direct link to them? A form of a commander or overseer that controls their every move? A hivemind?"
+
+/obj/item/weapon/paper/fluff/awaymissions/moonoutpost19/research/xeno_behavior
+ name = "A Preliminary Study of Alien Behavior"
+ info = "Researcher: Dr. Sakuma Sano
Date: 08/06/2554
Report:
The xenomorphs we have come to study here are a remarkable species. They are almost universally aggressive across all castes, showing no remorse or guilt or pause before or after acts of violence. They appear to be a species entirely designed to kill. Oddly enough, even their method of reproduction is a brutal two-for-one method of birthing a new xenomorph and killing its host.
The lone xenomorph we studied only five days ago showed little sign of intelligence. Only a simple drone that flung itself at the safety glass and shields repeatedly and thankfully without success. Once the drone molted into a queen, it became much more calm and calculating, merely looking at us and waiting while building its nest. As the hive grew in size and in numbers, so too did the intelligence of the common hunter and drone. We are still researching how they can communicate with one another and the relationship between the different castes and the queen. We will continue to update our research as we learn more about the species."
+
+/obj/item/weapon/paper/fluff/awaymissions/moonoutpost19/research/xeno_castes
+ name = "The Xenomorph 'Castes'"
+ info = "Researcher: Dr. Mark Douglas
Date: 06/06/2554
Report:
While observing the growing number of aliens in the containment cell, we began to notice subtle differences that were consistently repeating. Like ants, these creatures clearly have different specialized variations that determine their roles in the hive. We have dubbed the three currently observed castes as Hunters, Drones, and Sentinels.
Hunters have been observed to be by far the most aggressive and agile of the three, constantly running on every surface and frequently swiping at the windows. They are also remarkably good at camouflaging themselves in darkness and on their resin structures, appearing almost invisible to the unwary observer. They are always the first to reach the monkeys we send in leading us to believe that this caste is primarily used for finding and retrieving hosts.
Drones on the other hand are much more docile and seem more shy by comparison, though not any less aggressive than the other castes. They have been observed to have a much wider head and lack dorsal tubes. They have shown to be less agile and visibly more fragile than any other caste. The drone however has never been observed to interact with the monkeys directly and instead preferring maintenance of the hive by building walls of resin and moving eggs around the nest. As far as we know, we have only ever observed a drone become a queen, and we have no way of knowing if the other castes have that capability.
Lastly, we have the Sentinels, which appear at first glance to be the guards of the hive. They have so far been only observed to remain near the queen and the eggs, frequently curled up against the walls. We have only observed one instance where they have interacted with a monkey who strayed too closely to the queen, and was pounced and held down immediately until it was applied with a facehugger. Their lack of movement makes it difficult to determine their exact purpose as guards, sentries, or other role."
+
+/obj/item/weapon/paper/fluff/awaymissions/moonoutpost19/research/larva_autopsy
+ name = "Larva Xenomorph Autopsy Report"
+ info = "Researcher: Dr. Mark Douglas
Date: 04/06/2554
Report:
After an extremely dangerous, time consuming and costly dissection, we have managed to record and identify several of the organs inside of the first stage of the xenomorph cycle: the larva. This procedure took an extensive amount of time because these creatures have incredibly, almost-comically acidic blood that can melt through almost anything in a few moments. We had to use over a dozen scalpels and retractors to complete the autopsy.
The larva seems to possess far fewer and quite different organs than that of a human. There is a stomach, with no digestive tract, a heart, which seems to lack any blood-oxygen circulation purpose, and an elongated brain, even though its as dumb as any large cat. It also lacks any liver, kidneys, or other basic organs.
We can't determine the exact nature of how these creatures grow, nor if they gain organs as they become adults. The larger breeds of xenomorph are too dangerous to kill and capture to give us an accurate answer to these questions. All that we can conclude is that being able to function with so little and yet be so deadly means that these creatures are highly evolved and likely to be extremely durable to various hazards that would otherwise be lethal to humans."
+
+/obj/item/weapon/paper/fluff/awaymissions/moonoutpost19/research/evacuation
+ name = "Evacuation Procedure"
+ info = "In The Event of Xenobiology Breach: Evacuate staff, Lock down Xenobiology, Notify on-site superiors and/or Central Command immediatly.
Current Xenobiology Containment Level:Secure RUN
"
+
+/obj/item/weapon/paper/fluff/awaymissions/moonoutpost19/log/personal
+ name = "Personal Log"
+ info = "Log 1:
We got our promised supply drop today. We were only meant to get it, what, a week ago? This bloody gateway keeps desyncing itself, and that means subsisting off recycled water and carb packs. No clue where the damn thing connects to on its off days, and HQ say we are 'not to touch it if it isn't linking to command.' We dumped off the assload of crates Jim filled, got our boxes of oxygen, food and drink, and closed the portal.
Log 2:
Damn thing is acting up again. Three days no contact this time. I thought I heard clanking noises from it yesterday. Jim is going on about the NT base or some shit. We've been over this before - They don't know we're here, that engineer was too drunk to recognise his suit, especially since I had it painted orange. He's starting to get annoying. We're safe.
Log 3:
Gateway synced itself up automatically today. I opened it for an instant to spy through it, got a glimpse of the inside of a transport container. Either HQ's redecorating or something, or there's more than two of these things."
+
+/obj/item/weapon/paper/fluff/awaymissions/moonoutpost19/log/personal_2
+ name = "Personal Log"
+ info = "Log 1:
While mining today I noticed the NT station was finished with its renovations. They placed some huge reinforced tumor on the station, looks so ugly. I wouldn't be surprised if those pigs decided to turn that little astronomy outpost into a prison with that thing, it'd be pretty typical of them.
Log 2:
Really dumb of me but I just waved at an engineer in the outpost, and he waved back. I hope to god he was too dumb or drunk to recognize the suit, because if he isn't then we might have to pull out before they come looking for us.
Log 3:
That huge reinforced tumor in their science section has been making a lot of noise lately. I've been hearing some banging and scratching from the other side and I'm kind of glad now that they reinforced this thing so much. I'll be sleeping with my gun under my pillow from now on."
+
+/obj/item/weapon/paper/fluff/awaymissions/moonoutpost19/engineering
+ name = "Engineering Instructions"
+ info = "Alright, listen up. If you're reading this, I'm either taking a shit or I've been recalled back to Command. Either way, you'll need to know how to restore power. We've stolen this stuff from Nanotrasen, so all the equipment is jury-rigged. We have generators that work on both plasma and uranium, about 50 sheets should power the outpost for quite a while. If the generators aren't working, which is very likely, take the power cell on the desk and put it into the APC in the hallway. That should get the place running, at least for a little while."
+
+/obj/item/weapon/paper/fluff/awaymissions/moonoutpost19/log/kenneth
+ name = "Personal Log - Kenneth Cunningham"
+ info = "Entry One - 27/05/2554:
I just arrived, and already I hate my job. I'm stuck on this shithole of an outpost, trying to avoid these damn eggheads running all over the place preparing for god knows what. There's no crimes to stop, no syndies to kill, and I'm not even allowed to beat the fuckin' assistant senseless! They said I was transferred from Space Station 13 for 'good behavior', but this feels more like a punishment than a reward. All I know is that if I don't get some action soon, I'm going to go insane.
Entry Two - 03/06/2554:
Okay, so get this: we got a fuckin' deathsquad coming in today! I thought the day I saw one of them would be the day my employment was 'terminated', if you get my drift. They're escorting some sort of weird alien creature for the eggheads to study. I heard one of the docs telling the chef that this thing killed a whole security force before it was captured. I sure as hell hope that I don't have to fight it.
Entry Three - 08/06/2554:
My first real bit of 'action' today, if you could call it that. Crazy Ivan got in a fight with Kuester today about his Booze-O-Mat. Apparently one of the crewmembers had stolen a couple bottles of booze from the machine after Ivan disabled the ID lock. Tell you the truth, I don't blame the thief. Everyone is going a little stir-crazy in here, and the bartender is being damn stingy with the alcohol. Either way, once they started to pick a fight, I had to take them down. It's a damn shame that we don't have a brig, though. I had to lock Ivan in a fuckin' freezer, for god's sake. Let's hope that we can keep our sanity together, at least for a while.
Entry Four - 10/06/2554:
Jesus fucking Christ riding on a motorbike. These things the scientists are studying are terrifying! Fucking great huge purple bug things as tall as the ceiling, with blades for arms and drooling at the mouth. I don't think my taser will do jack shit against these damn things, but the eggheads say that they're safely contained. If they do, I have a feeling that it's only a matter of time before we're all screwed. These bastards look like walking death.
Entry Five - 18/06/2554:
Finally caught who stole the booze from Kuester. It was that fuckin' loser assistant Steve! He was in the dorms, chugging his worries away. I took one of the bottles back to the barkeep, but no one has to know about this second one. I think I'm gonna enjoy this while watching tomorrow's Thunderdome match.
Entry Six - 19/06/2554:
Oh, great. The chef is still sleeping, so we get Ivan's gruel for breakfast today. I overheard Sano and Douglas saying something about the aliens being restless, so we might get some action today. As long as it happens after the big game, I'm fine with it. I still got one beer to drink before I'm ready to die."
+
+/obj/item/weapon/paper/fluff/awaymissions/moonoutpost19/log/ivan
+ name = "Personal Log - Ivan Volodin"
+ info = "Ivan Volodin Stories:
Entry Won - 28/05/2554:
Hello. I am Crazy Ivan. Boss say I must write. I do good job fixing outpost. Is very good job. Much better than mines. Many nice people. I cause no trouble.
Entry Too - 05/06/2554:
I am finding problem with Booze-O-Mat. Is not problem. I solve very easy. Use yellow tool to make purple light go off. I am good engineer! Bartender will be very happy.
Entry Tree - 08/06/2554:
Bartender is not happy. Security man is not happy. Cannot feel legs, is very cold in freezer. Is not good. Table is jammed into door, have no tools. Is very not good. But, on bright side, found meat! Shall chew to keep spirits up.
Entry Fore - 12/06/2554:
Big nasty purple bug looked at me today. Make nervous. Blue wall wire can be broken, then bad thing happens. Very very bad thing. Man in orange spacesuit wave at me today too. He seem nice. Wonder who was?
Entry Fiv - 15/06/2554:
I eat cornflakes today. Is good day. Sun shine for a while. Was nice. I also take ride on disposals chute. Was fun, but tiny. Get clog out of pipes, was vodka bottle. Is empty. This make many sads.
Entry Sex: 19/06/2554:
Purple bugs jumpy today. When waved, get hiss. Maybe very bad. Maybe just ill. Do not know. Is science problem, is not engineer problem. I eat sandwich. Is glorious job. Wish to never end."
+
+/obj/item/weapon/paper/fluff/awaymissions/moonoutpost19/log/gerald
+ name = "Personal Log - Gerald Rosswell"
+ info = "Personal Log for Research Director Gerald Rosswell
Entry One - 17/05/2554:
You know, I can't believe I took this position so suddenly. I saw that corporate needed a research director for one of it's outposts and thought it would be a cakewalk, there isn't going to be a lot of research to be done on a tiny outpost. Mainly just running scans on the gas giant we are orbiting or some basic RnD. However, they conveniently forgot to tell me that me and my science staff would have to pull double duty as medical staff and that there is no one higher up on the chain of command here, so I get to pull triple duty as acting captain as well! This shit is probably allowed in some 3 point fine print buried underneath the literally thousands of pages of contracts. Well, at least the research will be easy work.
Entry Two - 25/05/2554:
Well, we all expected it at the outpost, CentComm has decided to completely change what research we are doing. They've decided that we should be research the species known as 'xenomporphs'. They announced this change 4 days ago and along with it, sadly, the termination of our current science staff barring me. Not to mention the constant noise made by the construction detail they sent to staple on an xenobiology lab ensuring no one has been able to sleep decently ever since they announced the shift. To make matters worse our current security guard actually died of a heart attack today. Just goes to show that 75 year old men shouldn't be security guards. Still can't believe that they decided to do this major change less than a month after the outpost was established.
Entry Three - 27/05/2554:
The new security guard arrived today. Apparently transferred here from the research station that also is orbiting the gas giant. He seems to be rather angry about his transfer. Considering the rumors I've heard about the research station he's probably caught off guard by the fact that Steve hasn't tried to force an IED down his throat.
Entry Four - 06/06/2554:
My requests for additional security and containment measures for the 'xenomorph' has been denied. Does Central Command not notice how dangerous these creatures are? The only thing keeping them in is a force field, a minor problem with the power grid and the entire hive is loose. What would stop them then, the lone security guard with a dinky little taser? Kenneth can barely handle a short-tempered engineer. We are under equipped and under staffed, we are inevitably going to be destroyed unless we get the equipment and staff we need.
Entry Five - 10/06/2554:
Cunningham got a good look at the xenomorph in containment. He was frightened for the rest of the day, rather amusing if it wasn't for the fact that we are all trapped on this scrap heap with naught but a force field keeping those xenomorphs in.
Entry Six - 17/06/2554:
The reactions from the specimens today has shown that they possess strange mental properties. Mark hypothesizes that they possibly have a sort of hive mind, while nothing is certain this would explain how xenomorphs seem to have vastly increased intellect when a 'queen' is present. Of course, to test this hypothesis would require many complicated procedures which we will not be able to undertake. But we do not know the full extend of the xenomorph mind, it may or may not be able to find a way to circumvent our containment system. I will resend my request for additional security measures along with this new found information."
+
+/obj/item/weapon/paper/fluff/awaymissions/moonoutpost19/food_specials
+ name = "Specials This Week"
+ info = "I Can't Believe It's Not Pasta: Half off on Wednesdays
Burger night every Friday 6PM-10PM, free drinks with purchase of meal!
Premiering Tonight: The comedy stylings of Shoe Snatching Willy! 11AM-7PM
"
+
+/obj/item/weapon/paper/fluff/awaymissions/moonoutpost19/welcome
+ name = "Welcome Notice"
+ info = "Welcome to Moon Outpost 19! Property of Nanotrasen Inc.
Staff Roster:
-Dr. Gerald Rosswell: Research Director & Acting Captain
-Dr. Sakuma Sano: Xenobiologist
-Dr. Mark Douglas: Xenobiologist
-Kenneth Cunningham: Security Officer-Ivan Volodin: Engineer
-Mathias Kuester: Bartender
-Sven Edling: Chef
-Steve: Assistant
Please enjoy your stay, and report any abnormalities to an officer."
+
+/obj/item/weapon/paper/fluff/awaymissions/moonoutpost19/goodbye_note
+ name = "Note"
+ info = "Bugs break out. I run to here and lock door. I hear door next to me break open and screams. All nice people here dead now. I no want to be eaten, and bottle always said to be coward way out, but person who say that is stupid. Mira, there is no escape for me, tell Alexis and Elena that father will never come home, and that I love you all."
+
+
diff --git a/code/modules/awaymissions/mission_code/research.dm b/code/modules/awaymissions/mission_code/research.dm
new file mode 100644
index 0000000000..982a958812
--- /dev/null
+++ b/code/modules/awaymissions/mission_code/research.dm
@@ -0,0 +1,5 @@
+//research papers
+
+/obj/item/weapon/paper/crumpled/awaymissions/research/sensitive_info
+ info = "Theres a lot of sensitive info on these disks, try and keep them secure! If these backup copies get into the wrong hands, god knows what they could do with the genetic research on these disk.."
+
diff --git a/code/modules/awaymissions/mission_code/snowdin.dm b/code/modules/awaymissions/mission_code/snowdin.dm
index 2bd1f4c13e..fbbbd2c2fd 100644
--- a/code/modules/awaymissions/mission_code/snowdin.dm
+++ b/code/modules/awaymissions/mission_code/snowdin.dm
@@ -1,24 +1,27 @@
+/////////// papers
-//notes for lore or treasure hints wow//--
-
-/obj/item/weapon/paper/crumpled/snowdin/snowdingatewaynotice
+/obj/item/weapon/paper/crumpled/ruins/snowdin/snowdingatewaynotice
name = "scribbled note"
info = {"The gateway has been inactive for months, engineers think it's due to the recent drop in tempature fucking with the
circuitry or something. Without a constant supply of resources from central command, our stock is getting awfully low. Some of the security members have taken to
using the sparse rifle ammo left to hunting some of the wildlife to try and keep our food supply from emptying. God forbid if the heating goes out, I don't want to
die as a fucking popsicle down here."}
-/obj/item/weapon/paper/crumpled/snowdin/misc1
+/obj/item/weapon/paper/crumpled/ruins/snowdin/misc1
name = "Mission Prologue"
info = {"Holy shit, what a rush! Those Nanotrasen bastards didn't even know what hit 'em! All five of us dropped in right on the captain, didn't even have time to yell! We were in and out with that disk in mere minutes!
Crew didn't even know what was happening till the delta alert went down and by then were were already gone. We got a case to drink on the way home to celebrate, fuckin' job well done!"}
-/obj/item/weapon/paper/crumpled/snowdin/keys
+/obj/item/weapon/paper/crumpled/ruins/snowdin/keys
name = "scribbled note"
info = {"As a notice for anyone looking to borrow an ATV, some asshat lost the key set for all the vehicles. Nobody has yet to actually come forward about the potential where-abouts, either due to embarrassment or fear of
reprecussions. I hope they enjoy walking through that shit snow during the next shipment because I sure as hell ain't."}
-/obj/item/weapon/paper/snowdin/snowdinlog
+/obj/item/weapon/paper/fluff/awaymissions/snowdin/saw_usage
+ name = "SAW Usage"
+ info = "YOU SEEN IVAN, WHEN YOU HOLD SAAW LIKE PEESTOL, YOU STRONGER THAN RECOIL FOR FEAR OF HITTING FACE!"
+
+/obj/item/weapon/paper/fluff/awaymissions/snowdin/log
name = "Activity Log"
info = {"ACTIVITY LOG
June 3rd
We've moved to the main base in the valley finally, apparently establishing a listening system on a planet
that never stops fucking snowing is a great idea. There's a few outposts further south we'll be supplying from the main gateway. The summer months are enough already, I can only imagine how bad it'll be during winter.
August 23rd
@@ -30,7 +33,7 @@
December 10th
Signal has gotten much stronger, it almost seems like it's coming from under us according to what the researcher managed to decypher. We're waiting from the go from central before investigating.
The rest of the paper seems to be a mixture of scribbles and smudged ink. "}
-/obj/item/weapon/paper/snowdin/snowdinlog2
+/obj/item/weapon/paper/fluff/awaymissions/snowdin/log2
name = "Activity Log"
info = {"ACTIVITY LOG
June 14th
Movement to the second post is finally done. We're located on the southernmost area of the valley with a similar objective as the northern post.
There are two mid-way stops on the eastern and western sides of the valley so movement in between bases isn't horrible. Not too big of a fan of relying on the northern base for
@@ -40,35 +43,38 @@
shipment of supplies. The snow has really kicked up recently, shits almost like a constant blizzard right now. Maybe it'll drop down soon so we can get a word in.
The rest of the paper seems to be a mixture of scribbles and smudged ink. "}
-/obj/item/weapon/paper/snowdin/secnotice
+/obj/item/weapon/paper/fluff/awaymissions/snowdin/secnotice
name = "Security Notice"
info = {"You have been assigned a position on a listening outpost. Here you'll be watching over several crewmembers assigned to watching signals of the general area.
- As not much is expected in terms of issues, we've only assigned one guard per outpost. Crewmembers are expected to keep to their regulated work schedules and may be
- disciplined properly if found slacking. Food hoarding is heavily discouraged as all outposts will be sharing from the same shipment every 2-3 months. Hoarding of supplies
- should be punished severely as to prevent future incidients. Mutiny and/or rioting should be reported to central and dealt with swiftly. You're here to secure and protect
- Nanotrasen assets, not be a police officer. Do what you must, but make sure it's not messy."}
+ As not much is expected in terms of issues, we've only assigned one guard per outpost. Crewmembers are expected to keep to their regulated work schedules and may be
+ disciplined properly if found slacking. Food hoarding is heavily discouraged as all outposts will be sharing from the same shipment every 2-3 months. Hoarding of supplies
+ should be punished severely as to prevent future incidients. Mutiny and/or rioting should be reported to central and dealt with swiftly. You're here to secure and protect
+ Nanotrasen assets, not be a police officer. Do what you must, but make sure it's not messy."}
-/obj/item/weapon/paper/snowdin/syndienotice
+/obj/item/weapon/paper/fluff/awaymissions/snowdin/syndienotice
name = "Assignment Notice"
info = {"You've been assigned as an agent to listen in on Nanotrasen activities from passing ships and nearby stations. The outpost you've been assigned to is under lays of solid
ice and we've supplied you with a scrambler to help avoid Nanotrasen discovery, as they've recently built a listening post of their own aboveground. Get aquainted with your new
crewmates, because you're gonna be here for awhile. Enjoy the free syndicakes."}
-/obj/item/weapon/paper/crumpled/snowdin/syndielava
+/obj/item/weapon/paper/crumpled/ruins/snowdin/syndielava
name = "scribbled note"
info = {"Some cracks in the ice nearby have exposed some sort of hidden magma stream under all this shit ice. I don't know whats worse at this point honestly; freezing to death or
burning alive."}
-/obj/item/weapon/paper/crumpled/snowdin/lootstructures
+/obj/item/weapon/paper/crumpled/ruins/snowdin/lootstructures
name = "scribbled note"
info = {"From what we've seen so far, theres a ton of iced-over ruins down here in the caves. We sent a few men out to check things out and they never came back, so we decided to
border up majority of the ruins. We've heard some weird shit coming out of these caves and I'm not gonna find out the hard way myself."}
-/obj/item/weapon/paper/crumpled/snowdin/shovel
+/obj/item/weapon/paper/crumpled/ruins/snowdin/shovel
name = "shoveling duties"
info = {"Snow piles up bad here all-year round, even worse during the winter months. Keeping a constant rotation of shoveling that shit out of the way of the airlocks and keeping the paths decently clear
is a good step towards not getting stuck walking through knee-deep snow."}
+
+
+
//lootspawners//--
/obj/effect/spawner/lootdrop/snowdin
diff --git a/code/modules/awaymissions/mission_code/stationCollision.dm b/code/modules/awaymissions/mission_code/stationCollision.dm
index 339f179e00..59023dfa8c 100644
--- a/code/modules/awaymissions/mission_code/stationCollision.dm
+++ b/code/modules/awaymissions/mission_code/stationCollision.dm
@@ -28,7 +28,7 @@
B.deity_name = "Narsie"
B.icon_state = "melted"
B.item_state = "melted"
- new /obj/item/weapon/paper/sc_safehint_paper_bible(B)
+ new /obj/item/weapon/paper/fluff/awaymissions/stationcollision/safehint_paper_bible(B)
new /obj/item/weapon/pen(B)
qdel(src)
@@ -79,30 +79,30 @@ GLOBAL_VAR_INIT(sc_safecode4, "[rand(0,9)]")
GLOBAL_VAR_INIT(sc_safecode5, "[rand(0,9)]")
//Pieces of paper actually containing the hints
-/obj/item/weapon/paper/sc_safehint_paper_prison
+/obj/item/weapon/paper/fluff/awaymissions/stationcollision/safehint_paper_prison
name = "smudged paper"
-/obj/item/weapon/paper/sc_safehint_paper_prison/New()
+/obj/item/weapon/paper/fluff/awaymissions/stationcollision/safehint_paper_prison/New()
info = "The ink is smudged, you can only make out a couple numbers: '[GLOB.sc_safecode1]**[GLOB.sc_safecode4]*'"
-/obj/item/weapon/paper/sc_safehint_paper_hydro
+/obj/item/weapon/paper/fluff/awaymissions/stationcollision/safehint_paper_hydro
name = "shredded paper"
-/obj/item/weapon/paper/sc_safehint_paper_hydro/New()
+/obj/item/weapon/paper/fluff/awaymissions/stationcollision/safehint_paper_hydro/New()
info = "Although the paper is shredded, you can clearly see the number: '[GLOB.sc_safecode2]'"
-/obj/item/weapon/paper/sc_safehint_paper_caf
+/obj/item/weapon/paper/fluff/awaymissions/stationcollision/safehint_paper_caf
name = "blood-soaked paper"
//This does not have to be in New() because it is a constant. There are no variables in it i.e. [sc_safcode]
info = "This paper is soaked in blood, it is impossible to read any text."
-/obj/item/weapon/paper/sc_safehint_paper_bible
+/obj/item/weapon/paper/fluff/awaymissions/stationcollision/safehint_paper_bible
name = "hidden paper"
-/obj/item/weapon/paper/sc_safehint_paper_bible/New()
+/obj/item/weapon/paper/fluff/awaymissions/stationcollision/safehint_paper_bible/New()
info = {"It would appear that the pen hidden with the paper had leaked ink over the paper.
However you can make out the last three digits:'[GLOB.sc_safecode3][GLOB.sc_safecode4][GLOB.sc_safecode5]'
"}
-/obj/item/weapon/paper/sc_safehint_paper_shuttle
+/obj/item/weapon/paper/fluff/awaymissions/stationcollision/safehint_paper_shuttle
info = {"Target: Research-station Epsilon
Objective: Prototype weaponry. The captain likely keeps them locked in her safe.
diff --git a/code/modules/awaymissions/mission_code/wildwest.dm b/code/modules/awaymissions/mission_code/wildwest.dm
index 95cf0d718c..2416fb83c3 100644
--- a/code/modules/awaymissions/mission_code/wildwest.dm
+++ b/code/modules/awaymissions/mission_code/wildwest.dm
@@ -4,6 +4,28 @@
* Meat Grinder
*/
+ ////////// wildwest papers
+
+/obj/item/weapon/paper/fluff/awaymissions/wildwest/grinder
+ info = "meat grinder requires sacri"
+
+
+/obj/item/weapon/paper/fluff/awaymissions/wildwest/journal/page1
+ name = "Planer Saul's Journal: Page 1"
+ info = "We've discovered something floating in space. We can't really tell how old it is, but it is scraped and bent to hell. There object is the size of about a room with double doors that we have yet to break into. It is a lot sturdier than we could have imagined. We have decided to call it 'The Vault' "
+
+/obj/item/weapon/paper/fluff/awaymissions/wildwest/journal/page4
+ name = "Planer Saul's Journal: Page 4"
+ info = " The miners in the town have become sick and almost all production has stopped. They, in a fit of delusion, tossed all of their mining equipment into the furnaces. They all claimed the same thing. A voice beckoning them to lay down their arms. Stupid miners."
+
+/obj/item/weapon/paper/fluff/awaymissions/wildwest/journal/page7
+ name = "Planer Sauls' Journal: Page 7"
+ info = "The Vault...it just keeps growing and growing. I went on my daily walk through the garden and now its just right outside the mansion... a few days ago it was only barely visible. But whatever is inside...its calling to me."
+
+/obj/item/weapon/paper/fluff/awaymissions/wildwest/journal/page8
+ name = "Planer Saul's Journal: Page 8"
+ info = "The syndicate have invaded. Their ships appeared out of nowhere and now they likely intend to kill us all and take everything. On the off-chance that the Vault may grant us sanctuary, many of us have decided to force our way inside and bolt the door, taking as many provisions with us as we can carry. In case you find this, send for help immediately and open the Vault. Find us inside."
+
/*
* Wish Granter
diff --git a/code/modules/awaymissions/pamphlet.dm b/code/modules/awaymissions/pamphlet.dm
index 76166a97af..2174fec852 100644
--- a/code/modules/awaymissions/pamphlet.dm
+++ b/code/modules/awaymissions/pamphlet.dm
@@ -1,6 +1,8 @@
/obj/item/weapon/paper/pamphlet
name = "pamphlet"
icon_state = "pamphlet"
+
+/obj/item/weapon/paper/pamphlet/gateway
info = "Welcome to the Nanotrasen Gateway project...
\
Congratulations! If you're reading this, you and your superiors have decided that you're \
ready to commit to a life spent colonising the rolling hills of far away worlds. You \
diff --git a/code/modules/cargo/exports/manifest.dm b/code/modules/cargo/exports/manifest.dm
index a2af0151b1..41af132eaf 100644
--- a/code/modules/cargo/exports/manifest.dm
+++ b/code/modules/cargo/exports/manifest.dm
@@ -4,13 +4,13 @@
cost = 200
k_elasticity = 0
unit_name = "approved manifest"
- export_types = list(/obj/item/weapon/paper/manifest)
+ export_types = list(/obj/item/weapon/paper/fluff/jobs/cargo/manifest)
/datum/export/manifest_correct/applies_to(obj/O)
if(!..())
return FALSE
- var/obj/item/weapon/paper/manifest/M = O
+ var/obj/item/weapon/paper/fluff/jobs/cargo/manifest/M = O
if(M.is_approved() && !M.errors)
return TRUE
return FALSE
@@ -21,19 +21,19 @@
cost = -500
k_elasticity = 0
unit_name = "correctly denied manifest"
- export_types = list(/obj/item/weapon/paper/manifest)
+ export_types = list(/obj/item/weapon/paper/fluff/jobs/cargo/manifest)
/datum/export/manifest_error_denied/applies_to(obj/O)
if(!..())
return FALSE
- var/obj/item/weapon/paper/manifest/M = O
+ var/obj/item/weapon/paper/fluff/jobs/cargo/manifest/M = O
if(M.is_denied() && M.errors)
return TRUE
return FALSE
/datum/export/manifest_error_denied/get_cost(obj/O)
- var/obj/item/weapon/paper/manifest/M = O
+ var/obj/item/weapon/paper/fluff/jobs/cargo/manifest/M = O
return ..() + M.order_cost
@@ -41,19 +41,19 @@
// Substracts the package cost.
/datum/export/manifest_error
unit_name = "erroneously approved manifest"
- export_types = list(/obj/item/weapon/paper/manifest)
+ export_types = list(/obj/item/weapon/paper/fluff/jobs/cargo/manifest)
/datum/export/manifest_error/applies_to(obj/O)
if(!..())
return FALSE
- var/obj/item/weapon/paper/manifest/M = O
+ var/obj/item/weapon/paper/fluff/jobs/cargo/manifest/M = O
if(M.is_approved() && M.errors)
return TRUE
return FALSE
/datum/export/manifest_error/get_cost(obj/O)
- var/obj/item/weapon/paper/manifest/M = O
+ var/obj/item/weapon/paper/fluff/jobs/cargo/manifest/M = O
return -M.order_cost
@@ -62,17 +62,17 @@
/datum/export/manifest_correct_denied
cost = 500
unit_name = "erroneously denied manifest"
- export_types = list(/obj/item/weapon/paper/manifest)
+ export_types = list(/obj/item/weapon/paper/fluff/jobs/cargo/manifest)
/datum/export/manifest_correct_denied/applies_to(obj/O)
if(!..())
return FALSE
- var/obj/item/weapon/paper/manifest/M = O
+ var/obj/item/weapon/paper/fluff/jobs/cargo/manifest/M = O
if(M.is_denied() && !M.errors)
return TRUE
return FALSE
/datum/export/manifest_correct_denied/get_cost(obj/O)
- var/obj/item/weapon/paper/manifest/M = O
+ var/obj/item/weapon/paper/fluff/jobs/cargo/manifest/M = O
return ..() - M.order_cost
diff --git a/code/modules/cargo/order.dm b/code/modules/cargo/order.dm
index 19ccc71495..35668e738a 100644
--- a/code/modules/cargo/order.dm
+++ b/code/modules/cargo/order.dm
@@ -1,9 +1,9 @@
-/obj/item/weapon/paper/manifest
+/obj/item/weapon/paper/fluff/jobs/cargo/manifest
var/order_cost = 0
var/order_id = 0
var/errors = 0
-/obj/item/weapon/paper/manifest/New(atom/A, id, cost)
+/obj/item/weapon/paper/fluff/jobs/cargo/manifest/New(atom/A, id, cost)
..()
order_id = id
order_cost = cost
@@ -15,10 +15,10 @@
if(prob(MANIFEST_ERROR_CHANCE))
errors |= MANIFEST_ERROR_ITEM
-/obj/item/weapon/paper/manifest/proc/is_approved()
+/obj/item/weapon/paper/fluff/jobs/cargo/manifest/proc/is_approved()
return stamped && stamped.len && !is_denied()
-/obj/item/weapon/paper/manifest/proc/is_denied()
+/obj/item/weapon/paper/fluff/jobs/cargo/manifest/proc/is_denied()
return stamped && ("stamp-deny" in stamped)
/datum/supply_order
@@ -54,7 +54,7 @@
return P
/datum/supply_order/proc/generateManifest(obj/structure/closet/crate/C)
- var/obj/item/weapon/paper/manifest/P = new(C, id, pack.cost)
+ var/obj/item/weapon/paper/fluff/jobs/cargo/manifest/P = new(C, id, pack.cost)
var/station_name = (P.errors & MANIFEST_ERROR_NAME) ? new_station_name() : station_name()
@@ -85,7 +85,7 @@
/datum/supply_order/proc/generate(turf/T)
var/obj/structure/closet/crate/C = pack.generate(T)
- var/obj/item/weapon/paper/manifest/M = generateManifest(C)
+ var/obj/item/weapon/paper/fluff/jobs/cargo/manifest/M = generateManifest(C)
if(M.errors & MANIFEST_ERROR_ITEM)
if(istype(C, /obj/structure/closet/crate/secure) || istype(C, /obj/structure/closet/crate/large))
diff --git a/code/modules/cargo/packs.dm b/code/modules/cargo/packs.dm
index e3398c6f8f..263b5c5d30 100644
--- a/code/modules/cargo/packs.dm
+++ b/code/modules/cargo/packs.dm
@@ -620,7 +620,7 @@
/obj/item/solar_assembly,
/obj/item/weapon/circuitboard/computer/solar_control,
/obj/item/weapon/electronics/tracker,
- /obj/item/weapon/paper/solar)
+ /obj/item/weapon/paper/guides/jobs/engi/solars)
crate_name = "solar panel crate"
crate_type = /obj/structure/closet/crate/engineering/electrical
@@ -1336,7 +1336,7 @@
/obj/item/conveyor_construct,
/obj/item/conveyor_construct,
/obj/item/conveyor_switch_construct,
- /obj/item/weapon/paper/conveyor)
+ /obj/item/weapon/paper/guides/conveyor)
crate_name = "conveyor assembly crate"
/datum/supply_pack/misc/watertank
diff --git a/code/modules/holodeck/items.dm b/code/modules/holodeck/items.dm
index 8fd69096c3..00d8f3df7a 100644
--- a/code/modules/holodeck/items.dm
+++ b/code/modules/holodeck/items.dm
@@ -216,6 +216,10 @@
else
return ..()
-/obj/item/weapon/paper/trek_diploma
+/obj/item/weapon/paper/fluff/holodeck/trek_diploma
name = "paper - Starfleet Academy Diploma"
info = {"Starfleet Academy
Official Diploma
"}
+
+/obj/item/weapon/paper/fluff/holodeck/disclaimer
+ name = "Holodeck Disclaimer"
+ info = "Brusies sustained in the holodeck can be healed simply by sleeping."
diff --git a/code/modules/mob/living/simple_animal/guardian/guardian.dm b/code/modules/mob/living/simple_animal/guardian/guardian.dm
index 48c6484c87..0a36d62dac 100644
--- a/code/modules/mob/living/simple_animal/guardian/guardian.dm
+++ b/code/modules/mob/living/simple_animal/guardian/guardian.dm
@@ -602,7 +602,7 @@ GLOBAL_LIST_EMPTY(parasites) //all currently existing/living guardians
/obj/item/weapon/guardiancreator/tech/choose/dextrous
possible_guardians = list("Assassin", "Chaos", "Charger", "Dextrous", "Explosive", "Lightning", "Protector", "Ranged", "Standard", "Support")
-/obj/item/weapon/paper/guardian
+/obj/item/weapon/paper/guides/antag/guardian
name = "Holoparasite Guide"
icon_state = "alienpaper_words"
info = {"A list of Holoparasite Types
@@ -626,10 +626,10 @@ GLOBAL_LIST_EMPTY(parasites) //all currently existing/living guardians
"}
-/obj/item/weapon/paper/guardian/update_icon()
+/obj/item/weapon/paper/guides/antag/guardian/update_icon()
return
-/obj/item/weapon/paper/guardian/wizard
+/obj/item/weapon/paper/guides/antag/guardian/wizard
name = "Guardian Guide"
info = {"A list of Guardian Types
@@ -661,7 +661,7 @@ GLOBAL_LIST_EMPTY(parasites) //all currently existing/living guardians
/obj/item/weapon/storage/box/syndie_kit/guardian/Initialize()
..()
new /obj/item/weapon/guardiancreator/tech/choose/traitor(src)
- new /obj/item/weapon/paper/guardian(src)
+ new /obj/item/weapon/paper/guides/antag/guardian(src)
return
/obj/item/weapon/guardiancreator/carp
diff --git a/code/modules/paperwork/paper.dm b/code/modules/paperwork/paper.dm
index 9d9db88ee3..81f6572c22 100644
--- a/code/modules/paperwork/paper.dm
+++ b/code/modules/paperwork/paper.dm
@@ -390,51 +390,6 @@
. = ..()
color = "#FFF5ED"
-
-/*
- * Premade paper
- */
-
-/obj/item/weapon/paper/Court
- name = "paper- 'Judgement'"
- info = "For crimes against the station, the offender is sentenced to:
\n
\n"
-
-/obj/item/weapon/paper/Toxin
- name = "paper- 'Chemical Information'"
- info = "Known Onboard Toxins:
\n\tGrade A Semi-Liquid Plasma:
\n\t\tHighly poisonous. You cannot sustain concentrations above 15 units.
\n\t\tA gas mask fails to filter plasma after 50 units.
\n\t\tWill attempt to diffuse like a gas.
\n\t\tFiltered by scrubbers.
\n\t\tThere is a bottled version which is very different
\n\t\t\tfrom the version found in canisters!
\n
\n\t\tWARNING: Highly Flammable. Keep away from heat sources
\n\t\texcept in a enclosed fire area!
\n\t\tWARNING: It is a crime to use this without authorization.
\nKnown Onboard Anti-Toxin:
\n\tAnti-Toxin Type 01P: Works against Grade A Plasma.
\n\t\tBest if injected directly into bloodstream.
\n\t\tA full injection is in every regular Med-Kit.
\n\t\tSpecial toxin Kits hold around 7.
\n
\nKnown Onboard Chemicals (other):
\n\tRejuvenation T#001:
\n\t\tEven 1 unit injected directly into the bloodstream
\n\t\t\twill cure unconscious and sleep toxins.
\n\t\tIf administered to a dying patient it will prevent
\n\t\t\tfurther damage for about units*3 seconds.
\n\t\t\tit will not cure them or allow them to be cured.
\n\t\tIt can be administeredd to a non-dying patient
\n\t\t\tbut the chemicals disappear just as fast.
\n\tMorphine T#054:
\n\t\t5 units wilkl induce precisely 1 minute of sleep.
\n\t\t\tThe effect are cumulative.
\n\t\tWARNING: It is a crime to use this without authorization"
-
-/obj/item/weapon/paper/courtroom
- name = "paper- 'A Crash Course in Legal SOP on SS13'"
- info = "Roles:
\nThe Detective is basically the investigator and prosecutor.
\nThe Staff Assistant can perform these functions with written authority from the Detective.
\nThe Captain/HoP/Warden is ct as the judicial authority.
\nThe Security Officers are responsible for executing warrants, security during trial, and prisoner transport.
\n
\nInvestigative Phase:
\nAfter the crime has been committed the Detective's job is to gather evidence and try to ascertain not only who did it but what happened. He must take special care to catalogue everything and don't leave anything out. Write out all the evidence on paper. Make sure you take an appropriate number of fingerprints. IF he must ask someone questions he has permission to confront them. If the person refuses he can ask a judicial authority to write a subpoena for questioning. If again he fails to respond then that person is to be jailed as insubordinate and obstructing justice. Said person will be released after he cooperates.
\n
\nONCE the FT has a clear idea as to who the criminal is he is to write an arrest warrant on the piece of paper. IT MUST LIST THE CHARGES. The FT is to then go to the judicial authority and explain a small version of his case. If the case is moderately acceptable the authority should sign it. Security must then execute said warrant.
\n
\nPre-Pre-Trial Phase:
\nNow a legal representative must be presented to the defendant if said defendant requests one. That person and the defendant are then to be given time to meet (in the jail IS ACCEPTABLE). The defendant and his lawyer are then to be given a copy of all the evidence that will be presented at trial (rewriting it all on paper is fine). THIS IS CALLED THE DISCOVERY PACK. With a few exceptions, THIS IS THE ONLY EVIDENCE BOTH SIDES MAY USE AT TRIAL. IF the prosecution will be seeking the death penalty it MUST be stated at this time. ALSO if the defense will be seeking not guilty by mental defect it must state this at this time to allow ample time for examination.
\nNow at this time each side is to compile a list of witnesses. By default, the defendant is on both lists regardless of anything else. Also the defense and prosecution can compile more evidence beforehand BUT in order for it to be used the evidence MUST also be given to the other side.\nThe defense has time to compile motions against some evidence here.
\nPossible Motions:
\n1. Invalidate Evidence- Something with the evidence is wrong and the evidence is to be thrown out. This includes irrelevance or corrupt security.
\n2. Free Movement- Basically the defendant is to be kept uncuffed before and during the trial.
\n3. Subpoena Witness- If the defense presents god reasons for needing a witness but said person fails to cooperate then a subpoena is issued.
\n4. Drop the Charges- Not enough evidence is there for a trial so the charges are to be dropped. The FT CAN RETRY but the judicial authority must carefully reexamine the new evidence.
\n5. Declare Incompetent- Basically the defendant is insane. Once this is granted a medical official is to examine the patient. If he is indeed insane he is to be placed under care of the medical staff until he is deemed competent to stand trial.
\n
\nALL SIDES MOVE TO A COURTROOM
\nPre-Trial Hearings:
\nA judicial authority and the 2 sides are to meet in the trial room. NO ONE ELSE BESIDES A SECURITY DETAIL IS TO BE PRESENT. The defense submits a plea. If the plea is guilty then proceed directly to sentencing phase. Now the sides each present their motions to the judicial authority. He rules on them. Each side can debate each motion. Then the judicial authority gets a list of crew members. He first gets a chance to look at them all and pick out acceptable and available jurors. Those jurors are then called over. Each side can ask a few questions and dismiss jurors they find too biased. HOWEVER before dismissal the judicial authority MUST agree to the reasoning.
\n
\nThe Trial:
\nThe trial has three phases.
\n1. Opening Arguments- Each side can give a short speech. They may not present ANY evidence.
\n2. Witness Calling/Evidence Presentation- The prosecution goes first and is able to call the witnesses on his approved list in any order. He can recall them if necessary. During the questioning the lawyer may use the evidence in the questions to help prove a point. After every witness the other side has a chance to cross-examine. After both sides are done questioning a witness the prosecution can present another or recall one (even the EXACT same one again!). After prosecution is done the defense can call witnesses. After the initial cases are presented both sides are free to call witnesses on either list.
\nFINALLY once both sides are done calling witnesses we move onto the next phase.
\n3. Closing Arguments- Same as opening.
\nThe jury then deliberates IN PRIVATE. THEY MUST ALL AGREE on a verdict. REMEMBER: They mix between some charges being guilty and others not guilty (IE if you supposedly killed someone with a gun and you unfortunately picked up a gun without authorization then you CAN be found not guilty of murder BUT guilty of possession of illegal weaponry.). Once they have agreed they present their verdict. If unable to reach a verdict and feel they will never they call a deadlocked jury and we restart at Pre-Trial phase with an entirely new set of jurors.
\n
\nSentencing Phase:
\nIf the death penalty was sought (you MUST have gone through a trial for death penalty) then skip to the second part.
\nI. Each side can present more evidence/witnesses in any order. There is NO ban on emotional aspects or anything. The prosecution is to submit a suggested penalty. After all the sides are done then the judicial authority is to give a sentence.
\nII. The jury stays and does the same thing as I. Their sole job is to determine if the death penalty is applicable. If NOT then the judge selects a sentence.
\n
\nTADA you're done. Security then executes the sentence and adds the applicable convictions to the person's record.
\n"
-
-/obj/item/weapon/paper/hydroponics
- name = "paper- 'Greetings from Billy Bob'"
- info = "Hey fellow botanist!
\n
\nI didn't trust the station folk so I left
\na couple of weeks ago. But here's some
\ninstructions on how to operate things here.
\nYou can grow plants and each iteration they become
\nstronger, more potent and have better yield, if you
\nknow which ones to pick. Use your botanist's analyzer
\nfor that. You can turn harvested plants into seeds
\nat the seed extractor, and replant them for better stuff!
\nSometimes if the weed level gets high in the tray
\nmutations into different mushroom or weed species have
\nbeen witnessed. On the rare occassion even weeds mutate!
\n
\nEither way, have fun!
\n
\nBest regards,
\nBilly Bob Johnson.
\n
\nPS.
\nHere's a few tips:
\nIn nettles, potency = damage
\nIn amanitas, potency = deadliness + side effect
\nIn Liberty caps, potency = drug power + effect
\nIn chilis, potency = heat
\nNutrients keep mushrooms alive!
\nWater keeps weeds such as nettles alive!
\nAll other plants need both."
-
-/obj/item/weapon/paper/djstation
- name = "paper - 'DJ Listening Outpost'"
- info = "Welcome new owner!
You have purchased the latest in listening equipment. The telecommunication setup we created is the best in listening to common and private radio frequencies. Here is a step by step guide to start listening in on those saucy radio channels:
- Equip yourself with a multitool
- Use the multitool on the relay.
- Turn it on. It has already been configured for you to listen on.
Simple as that. Now to listen to the private channels, you'll have to configure the intercoms. They are located on the front desk. Here is a list of frequencies for you to listen on.
- 145.9 - Common Channel
- 144.7 - Private AI Channel
- 135.9 - Security Channel
- 135.7 - Engineering Channel
- 135.5 - Medical Channel
- 135.3 - Command Channel
- 135.1 - Science Channel
- 134.9 - Service Channel
- 134.7 - Supply Channel
"
-
-/obj/item/weapon/paper/jobs
- name = "paper- 'Job Information'"
- info = "Information on all formal jobs that can be assigned on Space Station 13 can be found on this document.
\nThe data will be in the following form.
\nGenerally lower ranking positions come first in this list.
\n
\nJob Name general access>lab access-engine access-systems access (atmosphere control)
\n\tJob Description
\nJob Duties (in no particular order)
\nTips (where applicable)
\n
\nResearch Assistant 1>1-0-0
\n\tThis is probably the lowest level position. Anyone who enters the space station after the initial job\nassignment will automatically receive this position. Access with this is restricted. Head of Personnel should\nappropriate the correct level of assistance.
\n1. Assist the researchers.
\n2. Clean up the labs.
\n3. Prepare materials.
\n
\nStaff Assistant 2>0-0-0
\n\tThis position assists the security officer in his duties. The staff assisstants should primarily br\npatrolling the ship waiting until they are needed to maintain ship safety.\n(Addendum: Updated/Elevated Security Protocols admit issuing of low level weapons to security personnel)
\n1. Patrol ship/Guard key areas
\n2. Assist security officer
\n3. Perform other security duties.
\n
\nTechnical Assistant 1>0-0-1
\n\tThis is yet another low level position. The technical assistant helps the engineer and the statian\ntechnician with the upkeep and maintenance of the station. This job is very important because it usually\ngets to be a heavy workload on station technician and these helpers will alleviate that.
\n1. Assist Station technician and Engineers.
\n2. Perform general maintenance of station.
\n3. Prepare materials.
\n
\nMedical Assistant 1>1-0-0
\n\tThis is the fourth position yet it is slightly less common. This position doesn't have much power\noutside of the med bay. Consider this position like a nurse who helps to upkeep medical records and the\nmaterials (filling syringes and checking vitals)
\n1. Assist the medical personnel.
\n2. Update medical files.
\n3. Prepare materials for medical operations.
\n
\nResearch Technician 2>3-0-0
\n\tThis job is primarily a step up from research assistant. These people generally do not get their own lab\nbut are more hands on in the experimentation process. At this level they are permitted to work as consultants to\nthe others formally.
\n1. Inform superiors of research.
\n2. Perform research alongside of official researchers.
\n
\nDetective 3>2-0-0
\n\tThis job is in most cases slightly boring at best. Their sole duty is to\nperform investigations of crine scenes and analysis of the crime scene. This\nalleviates SOME of the burden from the security officer. This person's duty\nis to draw conclusions as to what happened and testify in court. Said person\nalso should stroe the evidence ly.
\n1. Perform crime-scene investigations/draw conclusions.
\n2. Store and catalogue evidence properly.
\n3. Testify to superiors/inquieries on findings.
\n
\nStation Technician 2>0-2-3
\n\tPeople assigned to this position must work to make sure all the systems aboard Space Station 13 are operable.\nThey should primarily work in the computer lab and repairing faulty equipment. They should work with the\natmospheric technician.
\n1. Maintain SS13 systems.
\n2. Repair equipment.
\n
\nAtmospheric Technician 3>0-0-4
\n\tThese people should primarily work in the atmospheric control center and lab. They have the very important\njob of maintaining the delicate atmosphere on SS13.
\n1. Maintain atmosphere on SS13
\n2. Research atmospheres on the space station. (safely please!)
\n
\nEngineer 2>1-3-0
\n\tPeople working as this should generally have detailed knowledge as to how the propulsion systems on SS13\nwork. They are one of the few classes that have unrestricted access to the engine area.
\n1. Upkeep the engine.
\n2. Prevent fires in the engine.
\n3. Maintain a safe orbit.
\n
\nMedical Researcher 2>5-0-0
\n\tThis position may need a little clarification. Their duty is to make sure that all experiments are safe and\nto conduct experiments that may help to improve the station. They will be generally idle until a new laboratory\nis constructed.
\n1. Make sure the station is kept safe.
\n2. Research medical properties of materials studied of Space Station 13.
\n
\nScientist 2>5-0-0
\n\tThese people study the properties, particularly the toxic properties, of materials handled on SS13.\nTechnically they can also be called Plasma Technicians as plasma is the material they routinly handle.
\n1. Research plasma
\n2. Make sure all plasma is properly handled.
\n
\nMedical Doctor (Officer) 2>0-0-0
\n\tPeople working this job should primarily stay in the medical area. They should make sure everyone goes to\nthe medical bay for treatment and examination. Also they should make sure that medical supplies are kept in\norder.
\n1. Heal wounded people.
\n2. Perform examinations of all personnel.
\n3. Monitor usage of medical equipment.
\n
\nSecurity Officer 3>0-0-0
\n\tThese people should attempt to keep the peace inside the station and make sure the station is kept safe. One\nside duty is to assist in repairing the station. They also work like general maintenance personnel. They are not\ngiven a weapon and must use their own resources.
\n(Addendum: Updated/Elevated Security Protocols admit issuing of weapons to security personnel)
\n1. Maintain order.
\n2. Assist others.
\n3. Repair structural problems.
\n
\nHead of Security 4>5-2-2
\n\tPeople assigned as Head of Security should issue orders to the security staff. They should\nalso carefully moderate the usage of all security equipment. All security matters should be reported to this person.
\n1. Oversee security.
\n2. Assign patrol duties.
\n3. Protect the station and staff.
\n
\nHead of Personnel 4>4-2-2
\n\tPeople assigned as head of personnel will find themselves moderating all actions done by personnel. \nAlso they have the ability to assign jobs and access levels.
\n1. Assign duties.
\n2. Moderate personnel.
\n3. Moderate research.
\n
\nCaptain 5>5-5-5 (unrestricted station wide access)
\n\tThis is the highest position youi can aquire on Space Station 13. They are allowed anywhere inside the\nspace station and therefore should protect their ID card. They also have the ability to assign positions\nand access levels. They should not abuse their power.
\n1. Assign all positions on SS13
\n2. Inspect the station for any problems.
\n3. Perform administrative duties.
\n"
-
-/obj/item/weapon/paper/sop
- name = "paper- 'Standard Operating Procedure'"
- info = "Alert Levels:
\nBlue- Emergency
\n\t1. Caused by fire
\n\t2. Caused by manual interaction
\n\tAction:
\n\t\tClose all fire doors. These can only be opened by reseting the alarm
\nRed- Ejection/Self Destruct
\n\t1. Caused by module operating computer.
\n\tAction:
\n\t\tAfter the specified time the module will eject completely.
\n
\nEngine Maintenance Instructions:
\n\tShut off ignition systems:
\n\tActivate internal power
\n\tActivate orbital balance matrix
\n\tRemove volatile liquids from area
\n\tWear a fire suit
\n
\n\tAfter
\n\t\tDecontaminate
\n\t\tVisit medical examiner
\n
\nToxin Laboratory Procedure:
\n\tWear a gas mask regardless
\n\tGet an oxygen tank.
\n\tActivate internal atmosphere
\n
\n\tAfter
\n\t\tDecontaminate
\n\t\tVisit medical examiner
\n
\nDisaster Procedure:
\n\tFire:
\n\t\tActivate sector fire alarm.
\n\t\tMove to a safe area.
\n\t\tGet a fire suit
\n\t\tAfter:
\n\t\t\tAssess Damage
\n\t\t\tRepair damages
\n\t\t\tIf needed, Evacuate
\n\tMeteor Shower:
\n\t\tActivate fire alarm
\n\t\tMove to the back of ship
\n\t\tAfter
\n\t\t\tRepair damage
\n\t\t\tIf needed, Evacuate
\n\tAccidental Reentry:
\n\t\tActivate fire alrms in front of ship.
\n\t\tMove volatile matter to a fire proof area!
\n\t\tGet a fire suit.
\n\t\tStay secure until an emergency ship arrives.
\n
\n\t\tIf ship does not arrive-
\n\t\t\tEvacuate to a nearby safe area!"
-
-/obj/item/weapon/paper/centcom
- name = "paper- 'Official Bulletin'"
- info = "
Centcom Security
Port Division
Official Bulletin
Inspector,
There is an emergency shuttle arriving today.
Approval is restricted to Nanotrasen employees only. Deny all other entrants.
Centcom Port Commissioner"
-
-/obj/item/weapon/paper/range
- name = "paper- Firing Range Instructions"
- info = "Directions:
First you'll want to make sure there is a target stake in the center of the magnetic platform. Next, take an aluminum target from the crates back there and slip it into the stake. Make sure it clicks! Next, there should be a control console mounted on the wall somewhere in the room.
This control console dictates the behaviors of the magnetic platform, which can move your firing target around to simulate real-world combat situations. From here, you can turn off the magnets or adjust their electromagnetic levels and magnetic fields. The electricity level dictates the strength of the pull - you will usually want this to be the same value as the speed. The magnetic field level dictates how far the magnetic pull reaches.
Speed and path are the next two settings. Speed is associated with how fast the machine loops through the designated path. Paths dictate where the magnetic field will be centered at what times. There should be a pre-fabricated path input already. You can enable moving to observe how the path affects the way the stake moves. To script your own path, look at the following key:
N: North
S: South
E: East
W: West
C: Center
R: Random (results may vary)
; or &: separators. They are not necessary but can make the path string better visible."
-
-/obj/item/weapon/paper/mining
- name = "paper- Smelting Operations Closed"
- info = "**NOTICE**
Smelting operations moved on-station.
Take your unrefined ore to the Redemption Machine in the Delivery Office to redeem points.
--SS13 Command"
-
/obj/item/weapon/paper/crumpled
name = "paper scrap"
icon_state = "scrap"
@@ -446,50 +401,3 @@
/obj/item/weapon/paper/crumpled/bloody
icon_state = "scrap_bloodied"
-/obj/item/weapon/paper/oldstat
- name = "Cyro Awakening Alert"
- info = "**WARNING**
Catastrophic damage sustained to station. Powernet exhausted to reawaken crew.
Immediate Objectives
1: Activate emergency power generator
2: Lift station lockdown on the bridge
Please locate the 'Damage Report' on the bridge for a detailed situation report."
-
-/obj/item/weapon/paper/oldstat/damagereport
- name = "Damage Report"
- info = "*Damage Report*
Alpha Station - Destroyed
Beta Station - Catastrophic Damage. Medical, destroyed. Atmospherics, partially destroyed. Engine Core, destroyed.
Charlie Station - Intact. Loss of oxygen to eastern side of main corridor.
Delta Station - Intact. WARNING: Unknown force occupying Delta Station. Intent unknown. Species unknown. Numbers unknown.
Recommendation - Reestablish station powernet via solar array. Reestablish station atmospherics system to restore air."
-
-/obj/item/weapon/paper/oldstat/protosuit
- name = "B01-RIG Hardsuit Report"
- info = "*Prototype Hardsuit*
The B01-RIG Hardsuit is a prototype powered exoskeleton. Based off of a recovered pre-void war era united earth government powered military \
- exosuit, the RIG Hardsuit is a breakthrough in Hardsuit technology, and is the first post-void war era Hardsuit that can be safely used by a operator.
The B01 however suffers \
- a myriad of constraints. It is slow and bulky to move around, it lacks any significant armor plating against direct attacks and its internal heads up display is unfinished, \
- resulting in the user being unable to see long distances.
The B01 is unlikely to see any form of mass production, but will serve as a base for future Hardsuit developments."
-
-/obj/item/weapon/paper/oldstat/protohealth
- name = "Health Analyser Report"
- info = "*Health Analyser*
The portable Health Analyser is essentially a handheld varient of a health analyser. Years of research have concluded with this device which is \
- capable of diagnosing even the most critical, obscure or technical injuries any humanoid entity is suffering in a easy to understand format that even a non-trained health professional \
- can understand.
The health analyser is expected to go into full production as standard issue medical kit."
-
-/obj/item/weapon/paper/oldstat/protogun
- name = "K14 Energy Gun Report"
- info = "*K14-Multiphase Energy Gun*
The K14 Prototype Energy Gun is the first Energy Rifle that has been successfully been able to not only hold a larger ammo charge \
- than other gun models, but is capable of swapping between different energy projectile types on command with no incidents.
The weapon still suffers several drawbacks, its alternative, \
- non laser fire mode, can only fire one round before exhausting the energy cell, the weapon also remains prohibitively expensive, nonetheless NT Market Research fully believe this weapon \
- will form the backbone of our Energy weapon cataloge.
The K14 is expected to undergo revision to fix the ammo issues, the K15 is expected to replace the 'stun' setting with a \
- 'disable' setting in a attempt to bypass the ammo issues."
-
-/obj/item/weapon/paper/oldstat/protosing
- name = "Singularity Generator"
- info = "*Singularity Generator*
Modern power generation typically comes in two forms, a Fusion Generator or a Fission Generator. Fusion provides the best space to power \
- ratio, and is typically seen on military or high security ships and stations, however Fission reactors require the usage of expensive, and rare, materials in its construction.. Fission generators are massive and bulky, and require a large reserve of uranium to power, however they are extremely cheap to operate and oft need little maintenance once \
- operational.
The Singularity aims to alter this, a functional Singularity is essentially a controlled Black Hole, a Black Hole that generates far more power than Fusion or Fission \
- generators can ever hope to produce. "
-
-/obj/item/weapon/paper/oldstat/protoinv
- name = "Laboratory Inventory"
- info = "*Inventory*
(1) Prototype Hardsuit
(1)Health Analyser
(1)Prototype Energy Gun
(1)Singularity Generation Disk
DO NOT REMOVE WITHOUT \
- THE CAPTAIN AND RESEARCH DIRECTOR'S AUTHORISATION"
-
-/obj/item/weapon/paper/oldstat/report
- name = "Crew Reawakening Report"
- info = "Artifical Program's report to surviving crewmembers.
Crew were placed into cryostasis on March 10th, 2445.
Crew were awoken from cryostasis around June, 2557.
\
- SIGNIFICANT EVENTS OF NOTE
1: The primary radiation detectors were taken offline after 112 years due to power failure, secondary radioation detectors showed no residual \
- radioation on station. Deduction, primariy detector was malfunctioning and was producing a radioation signal when there was none.
2: A data burst from a nearby Nanotrasen Space \
- Station was recieved, this data burst contained research data that has been uploaded to our RnD labs.
3: Unknown invasion force has occupied Delta station."
diff --git a/code/modules/paperwork/paper_premade.dm b/code/modules/paperwork/paper_premade.dm
new file mode 100644
index 0000000000..7a269745b7
--- /dev/null
+++ b/code/modules/paperwork/paper_premade.dm
@@ -0,0 +1,113 @@
+/*
+ * Premade paper
+ */
+
+/obj/item/weapon/paper/fluff/sop
+ name = "paper- 'Standard Operating Procedure'"
+ info = "Alert Levels:
\nBlue- Emergency
\n\t1. Caused by fire
\n\t2. Caused by manual interaction
\n\tAction:
\n\t\tClose all fire doors. These can only be opened by reseting the alarm
\nRed- Ejection/Self Destruct
\n\t1. Caused by module operating computer.
\n\tAction:
\n\t\tAfter the specified time the module will eject completely.
\n
\nEngine Maintenance Instructions:
\n\tShut off ignition systems:
\n\tActivate internal power
\n\tActivate orbital balance matrix
\n\tRemove volatile liquids from area
\n\tWear a fire suit
\n
\n\tAfter
\n\t\tDecontaminate
\n\t\tVisit medical examiner
\n
\nToxin Laboratory Procedure:
\n\tWear a gas mask regardless
\n\tGet an oxygen tank.
\n\tActivate internal atmosphere
\n
\n\tAfter
\n\t\tDecontaminate
\n\t\tVisit medical examiner
\n
\nDisaster Procedure:
\n\tFire:
\n\t\tActivate sector fire alarm.
\n\t\tMove to a safe area.
\n\t\tGet a fire suit
\n\t\tAfter:
\n\t\t\tAssess Damage
\n\t\t\tRepair damages
\n\t\t\tIf needed, Evacuate
\n\tMeteor Shower:
\n\t\tActivate fire alarm
\n\t\tMove to the back of ship
\n\t\tAfter
\n\t\t\tRepair damage
\n\t\t\tIf needed, Evacuate
\n\tAccidental Reentry:
\n\t\tActivate fire alrms in front of ship.
\n\t\tMove volatile matter to a fire proof area!
\n\t\tGet a fire suit.
\n\t\tStay secure until an emergency ship arrives.
\n
\n\t\tIf ship does not arrive-
\n\t\t\tEvacuate to a nearby safe area!"
+
+/obj/item/weapon/paper/fluff/shuttles/daniel
+ info = "i love daniel
daniel is my best friend
you are tearing me apart elise"
+
+
+//////////// Job guides n' fluff
+
+/obj/item/weapon/paper/guides/jobs/hydroponics
+ name = "paper- 'Greetings from Billy Bob'"
+ info = "Hey fellow botanist!
\n
\nI didn't trust the station folk so I left
\na couple of weeks ago. But here's some
\ninstructions on how to operate things here.
\nYou can grow plants and each iteration they become
\nstronger, more potent and have better yield, if you
\nknow which ones to pick. Use your botanist's analyzer
\nfor that. You can turn harvested plants into seeds
\nat the seed extractor, and replant them for better stuff!
\nSometimes if the weed level gets high in the tray
\nmutations into different mushroom or weed species have
\nbeen witnessed. On the rare occassion even weeds mutate!
\n
\nEither way, have fun!
\n
\nBest regards,
\nBilly Bob Johnson.
\n
\nPS.
\nHere's a few tips:
\nIn nettles, potency = damage
\nIn amanitas, potency = deadliness + side effect
\nIn Liberty caps, potency = drug power + effect
\nIn chilis, potency = heat
\nNutrients keep mushrooms alive!
\nWater keeps weeds such as nettles alive!
\nAll other plants need both."
+
+/obj/item/weapon/paper/fluff/jobs/security/beepsky_mom
+ name = "Note from Beepsky's Mom"
+ info = "01001001 00100000 01101000 01101111 01110000 01100101 00100000 01111001 01101111 01110101 00100000 01110011 01110100 01100001 01111001 00100000 01110011 01100001 01100110 01100101 00101110 00100000 01001100 01101111 01110110 01100101 00101100 00100000 01101101 01101111 01101101 00101110"
+
+/obj/item/weapon/paper/guides/jobs/security/courtroom
+ name = "paper- 'A Crash Course in Legal SOP on SS13'"
+ info = "Roles:
\nThe Detective is basically the investigator and prosecutor.
\nThe Staff Assistant can perform these functions with written authority from the Detective.
\nThe Captain/HoP/Warden is ct as the judicial authority.
\nThe Security Officers are responsible for executing warrants, security during trial, and prisoner transport.
\n
\nInvestigative Phase:
\nAfter the crime has been committed the Detective's job is to gather evidence and try to ascertain not only who did it but what happened. He must take special care to catalogue everything and don't leave anything out. Write out all the evidence on paper. Make sure you take an appropriate number of fingerprints. IF he must ask someone questions he has permission to confront them. If the person refuses he can ask a judicial authority to write a subpoena for questioning. If again he fails to respond then that person is to be jailed as insubordinate and obstructing justice. Said person will be released after he cooperates.
\n
\nONCE the FT has a clear idea as to who the criminal is he is to write an arrest warrant on the piece of paper. IT MUST LIST THE CHARGES. The FT is to then go to the judicial authority and explain a small version of his case. If the case is moderately acceptable the authority should sign it. Security must then execute said warrant.
\n
\nPre-Pre-Trial Phase:
\nNow a legal representative must be presented to the defendant if said defendant requests one. That person and the defendant are then to be given time to meet (in the jail IS ACCEPTABLE). The defendant and his lawyer are then to be given a copy of all the evidence that will be presented at trial (rewriting it all on paper is fine). THIS IS CALLED THE DISCOVERY PACK. With a few exceptions, THIS IS THE ONLY EVIDENCE BOTH SIDES MAY USE AT TRIAL. IF the prosecution will be seeking the death penalty it MUST be stated at this time. ALSO if the defense will be seeking not guilty by mental defect it must state this at this time to allow ample time for examination.
\nNow at this time each side is to compile a list of witnesses. By default, the defendant is on both lists regardless of anything else. Also the defense and prosecution can compile more evidence beforehand BUT in order for it to be used the evidence MUST also be given to the other side.\nThe defense has time to compile motions against some evidence here.
\nPossible Motions:
\n1. Invalidate Evidence- Something with the evidence is wrong and the evidence is to be thrown out. This includes irrelevance or corrupt security.
\n2. Free Movement- Basically the defendant is to be kept uncuffed before and during the trial.
\n3. Subpoena Witness- If the defense presents god reasons for needing a witness but said person fails to cooperate then a subpoena is issued.
\n4. Drop the Charges- Not enough evidence is there for a trial so the charges are to be dropped. The FT CAN RETRY but the judicial authority must carefully reexamine the new evidence.
\n5. Declare Incompetent- Basically the defendant is insane. Once this is granted a medical official is to examine the patient. If he is indeed insane he is to be placed under care of the medical staff until he is deemed competent to stand trial.
\n
\nALL SIDES MOVE TO A COURTROOM
\nPre-Trial Hearings:
\nA judicial authority and the 2 sides are to meet in the trial room. NO ONE ELSE BESIDES A SECURITY DETAIL IS TO BE PRESENT. The defense submits a plea. If the plea is guilty then proceed directly to sentencing phase. Now the sides each present their motions to the judicial authority. He rules on them. Each side can debate each motion. Then the judicial authority gets a list of crew members. He first gets a chance to look at them all and pick out acceptable and available jurors. Those jurors are then called over. Each side can ask a few questions and dismiss jurors they find too biased. HOWEVER before dismissal the judicial authority MUST agree to the reasoning.
\n
\nThe Trial:
\nThe trial has three phases.
\n1. Opening Arguments- Each side can give a short speech. They may not present ANY evidence.
\n2. Witness Calling/Evidence Presentation- The prosecution goes first and is able to call the witnesses on his approved list in any order. He can recall them if necessary. During the questioning the lawyer may use the evidence in the questions to help prove a point. After every witness the other side has a chance to cross-examine. After both sides are done questioning a witness the prosecution can present another or recall one (even the EXACT same one again!). After prosecution is done the defense can call witnesses. After the initial cases are presented both sides are free to call witnesses on either list.
\nFINALLY once both sides are done calling witnesses we move onto the next phase.
\n3. Closing Arguments- Same as opening.
\nThe jury then deliberates IN PRIVATE. THEY MUST ALL AGREE on a verdict. REMEMBER: They mix between some charges being guilty and others not guilty (IE if you supposedly killed someone with a gun and you unfortunately picked up a gun without authorization then you CAN be found not guilty of murder BUT guilty of possession of illegal weaponry.). Once they have agreed they present their verdict. If unable to reach a verdict and feel they will never they call a deadlocked jury and we restart at Pre-Trial phase with an entirely new set of jurors.
\n
\nSentencing Phase:
\nIf the death penalty was sought (you MUST have gone through a trial for death penalty) then skip to the second part.
\nI. Each side can present more evidence/witnesses in any order. There is NO ban on emotional aspects or anything. The prosecution is to submit a suggested penalty. After all the sides are done then the judicial authority is to give a sentence.
\nII. The jury stays and does the same thing as I. Their sole job is to determine if the death penalty is applicable. If NOT then the judge selects a sentence.
\n
\nTADA you're done. Security then executes the sentence and adds the applicable convictions to the person's record.
\n"
+
+/obj/item/weapon/paper/guides/jobs/security/labor_camp
+ name = "Labor Camp Operating Guide"
+ info = "Labor Camp Facility Operation Guide
Hello there, proud operator of an NT-Sec Prisoner Rehabilitation Center. A solution to rising crime rates and falling productivity, these facilities are specifically designed for the safe, productive imprisonment of your most dangerous criminals.
To press a long-term prisoner into the service of the station, replace his equipment with prisoners' garb at one of the prison lockers, as per normal operating procedure. Before assigning a prisoner his ID, insert the ID into a prisoner management console and assign the prisoner a quota, based on the severity of his crime.
A single sheet of most materials produces five points for the prisoner, and points can be expected to be produced at a rate of about 100 per minute, though punishments as severe as forced labor should be reserved for serious crimes of sentences not less than five minutes long.
Once you have prepared the prisoner, place him in the secure northern half of the labor shuttle, and send him to the station. Once he meets his quota by feeding sheets to the stacker, he will be allowed to return to the station, and will be able to open the secure door to the prisoner release area.
In the case of dangerous prisoners, surveilance may be needed. To that end, there is a prisoner monitoring room on the mining station, equipped with a remote flasher and a lockdown button. The mine itself is patrolled by a securibot, so the nearby security records console can also be used to secure hostile prisoners on the mine."
+
+/obj/item/weapon/paper/guides/jobs/security/range
+ name = "paper- Firing Range Instructions"
+ info = "Directions:
First you'll want to make sure there is a target stake in the center of the magnetic platform. Next, take an aluminum target from the crates back there and slip it into the stake. Make sure it clicks! Next, there should be a control console mounted on the wall somewhere in the room.
This control console dictates the behaviors of the magnetic platform, which can move your firing target around to simulate real-world combat situations. From here, you can turn off the magnets or adjust their electromagnetic levels and magnetic fields. The electricity level dictates the strength of the pull - you will usually want this to be the same value as the speed. The magnetic field level dictates how far the magnetic pull reaches.
Speed and path are the next two settings. Speed is associated with how fast the machine loops through the designated path. Paths dictate where the magnetic field will be centered at what times. There should be a pre-fabricated path input already. You can enable moving to observe how the path affects the way the stake moves. To script your own path, look at the following key:
N: North
S: South
E: East
W: West
C: Center
R: Random (results may vary)
; or &: separators. They are not necessary but can make the path string better visible."
+
+/obj/item/weapon/paper/fluff/jobs/jobs
+ name = "paper- 'Job Information'"
+ info = "Information on all formal jobs that can be assigned on Space Station 13 can be found on this document.
\nThe data will be in the following form.
\nGenerally lower ranking positions come first in this list.
\n
\nJob Name general access>lab access-engine access-systems access (atmosphere control)
\n\tJob Description
\nJob Duties (in no particular order)
\nTips (where applicable)
\n
\nResearch Assistant 1>1-0-0
\n\tThis is probably the lowest level position. Anyone who enters the space station after the initial job\nassignment will automatically receive this position. Access with this is restricted. Head of Personnel should\nappropriate the correct level of assistance.
\n1. Assist the researchers.
\n2. Clean up the labs.
\n3. Prepare materials.
\n
\nStaff Assistant 2>0-0-0
\n\tThis position assists the security officer in his duties. The staff assisstants should primarily br\npatrolling the ship waiting until they are needed to maintain ship safety.\n(Addendum: Updated/Elevated Security Protocols admit issuing of low level weapons to security personnel)
\n1. Patrol ship/Guard key areas
\n2. Assist security officer
\n3. Perform other security duties.
\n
\nTechnical Assistant 1>0-0-1
\n\tThis is yet another low level position. The technical assistant helps the engineer and the statian\ntechnician with the upkeep and maintenance of the station. This job is very important because it usually\ngets to be a heavy workload on station technician and these helpers will alleviate that.
\n1. Assist Station technician and Engineers.
\n2. Perform general maintenance of station.
\n3. Prepare materials.
\n
\nMedical Assistant 1>1-0-0
\n\tThis is the fourth position yet it is slightly less common. This position doesn't have much power\noutside of the med bay. Consider this position like a nurse who helps to upkeep medical records and the\nmaterials (filling syringes and checking vitals)
\n1. Assist the medical personnel.
\n2. Update medical files.
\n3. Prepare materials for medical operations.
\n
\nResearch Technician 2>3-0-0
\n\tThis job is primarily a step up from research assistant. These people generally do not get their own lab\nbut are more hands on in the experimentation process. At this level they are permitted to work as consultants to\nthe others formally.
\n1. Inform superiors of research.
\n2. Perform research alongside of official researchers.
\n
\nDetective 3>2-0-0
\n\tThis job is in most cases slightly boring at best. Their sole duty is to\nperform investigations of crine scenes and analysis of the crime scene. This\nalleviates SOME of the burden from the security officer. This person's duty\nis to draw conclusions as to what happened and testify in court. Said person\nalso should stroe the evidence ly.
\n1. Perform crime-scene investigations/draw conclusions.
\n2. Store and catalogue evidence properly.
\n3. Testify to superiors/inquieries on findings.
\n
\nStation Technician 2>0-2-3
\n\tPeople assigned to this position must work to make sure all the systems aboard Space Station 13 are operable.\nThey should primarily work in the computer lab and repairing faulty equipment. They should work with the\natmospheric technician.
\n1. Maintain SS13 systems.
\n2. Repair equipment.
\n
\nAtmospheric Technician 3>0-0-4
\n\tThese people should primarily work in the atmospheric control center and lab. They have the very important\njob of maintaining the delicate atmosphere on SS13.
\n1. Maintain atmosphere on SS13
\n2. Research atmospheres on the space station. (safely please!)
\n
\nEngineer 2>1-3-0
\n\tPeople working as this should generally have detailed knowledge as to how the propulsion systems on SS13\nwork. They are one of the few classes that have unrestricted access to the engine area.
\n1. Upkeep the engine.
\n2. Prevent fires in the engine.
\n3. Maintain a safe orbit.
\n
\nMedical Researcher 2>5-0-0
\n\tThis position may need a little clarification. Their duty is to make sure that all experiments are safe and\nto conduct experiments that may help to improve the station. They will be generally idle until a new laboratory\nis constructed.
\n1. Make sure the station is kept safe.
\n2. Research medical properties of materials studied of Space Station 13.
\n
\nScientist 2>5-0-0
\n\tThese people study the properties, particularly the toxic properties, of materials handled on SS13.\nTechnically they can also be called Plasma Technicians as plasma is the material they routinly handle.
\n1. Research plasma
\n2. Make sure all plasma is properly handled.
\n
\nMedical Doctor (Officer) 2>0-0-0
\n\tPeople working this job should primarily stay in the medical area. They should make sure everyone goes to\nthe medical bay for treatment and examination. Also they should make sure that medical supplies are kept in\norder.
\n1. Heal wounded people.
\n2. Perform examinations of all personnel.
\n3. Monitor usage of medical equipment.
\n
\nSecurity Officer 3>0-0-0
\n\tThese people should attempt to keep the peace inside the station and make sure the station is kept safe. One\nside duty is to assist in repairing the station. They also work like general maintenance personnel. They are not\ngiven a weapon and must use their own resources.
\n(Addendum: Updated/Elevated Security Protocols admit issuing of weapons to security personnel)
\n1. Maintain order.
\n2. Assist others.
\n3. Repair structural problems.
\n
\nHead of Security 4>5-2-2
\n\tPeople assigned as Head of Security should issue orders to the security staff. They should\nalso carefully moderate the usage of all security equipment. All security matters should be reported to this person.
\n1. Oversee security.
\n2. Assign patrol duties.
\n3. Protect the station and staff.
\n
\nHead of Personnel 4>4-2-2
\n\tPeople assigned as head of personnel will find themselves moderating all actions done by personnel. \nAlso they have the ability to assign jobs and access levels.
\n1. Assign duties.
\n2. Moderate personnel.
\n3. Moderate research.
\n
\nCaptain 5>5-5-5 (unrestricted station wide access)
\n\tThis is the highest position youi can aquire on Space Station 13. They are allowed anywhere inside the\nspace station and therefore should protect their ID card. They also have the ability to assign positions\nand access levels. They should not abuse their power.
\n1. Assign all positions on SS13
\n2. Inspect the station for any problems.
\n3. Perform administrative duties.
\n"
+
+/obj/item/weapon/paper/fluff/jobs/mining/smelter_notice
+ name = "paper- Smelting Operations Closed"
+ info = "**NOTICE**
Smelting operations moved on-station.
Take your unrefined ore to the Redemption Machine in the Delivery Office to redeem points.
--SS13 Command"
+
+/obj/item/weapon/paper/fluff/jobs/security/court_judgement
+ name = "paper- 'Judgement'"
+ info = "For crimes against the station, the offender is sentenced to:
\n
\n"
+
+/obj/item/weapon/paper/fluff/jobs/toxins/chemical_info
+ name = "paper- 'Chemical Information'"
+ info = "Known Onboard Toxins:
\n\tGrade A Semi-Liquid Plasma:
\n\t\tHighly poisonous. You cannot sustain concentrations above 15 units.
\n\t\tA gas mask fails to filter plasma after 50 units.
\n\t\tWill attempt to diffuse like a gas.
\n\t\tFiltered by scrubbers.
\n\t\tThere is a bottled version which is very different
\n\t\t\tfrom the version found in canisters!
\n
\n\t\tWARNING: Highly Flammable. Keep away from heat sources
\n\t\texcept in a enclosed fire area!
\n\t\tWARNING: It is a crime to use this without authorization.
\nKnown Onboard Anti-Toxin:
\n\tAnti-Toxin Type 01P: Works against Grade A Plasma.
\n\t\tBest if injected directly into bloodstream.
\n\t\tA full injection is in every regular Med-Kit.
\n\t\tSpecial toxin Kits hold around 7.
\n
\nKnown Onboard Chemicals (other):
\n\tRejuvenation T#001:
\n\t\tEven 1 unit injected directly into the bloodstream
\n\t\t\twill cure unconscious and sleep toxins.
\n\t\tIf administered to a dying patient it will prevent
\n\t\t\tfurther damage for about units*3 seconds.
\n\t\t\tit will not cure them or allow them to be cured.
\n\t\tIt can be administeredd to a non-dying patient
\n\t\t\tbut the chemicals disappear just as fast.
\n\tMorphine T#054:
\n\t\t5 units wilkl induce precisely 1 minute of sleep.
\n\t\t\tThe effect are cumulative.
\n\t\tWARNING: It is a crime to use this without authorization"
+
+
+ /*
+ * Stations
+ */
+
+////////// Cere fluff
+
+/obj/item/weapon/paper/fluff/stations/cere/abandoned_dock
+ name = "Disclaimer Notice"
+ info = "This station needs clearing out within the next few weeks as construction is almost complete and NT expects most of the equipment off-site before then. Throw most of the shit in here for now and we'll come back later with a pod to haul the heavier stuff. Shouldn't be too big of an issue."
+
+/obj/item/weapon/paper/fluff/stations/cere/janitor
+ name = "Janitor Notice"
+ info = "You got a big job ahead of you, pal. This is a big station, lots of floors and assholes to dirty said floors without any thought for you. It might not be a bad idea to check on the external waste belts every now and again to make sure some foriegn object hasn't clogged the disposal loop, either."
+
+/obj/item/weapon/paper/fluff/stations/cere/gateway
+ name = "NOTICE - GATEWAY STATUS"
+ info = "Nanotrasen Exploration and Colonization Program
Due to recent shutdowns of the Exploration and Colonization department shortly after this gateway was delivered on-site during station construction, this room has been condemmed and an engineering team will be on-site within the next few months to recollect the gate. Thank you for your cooperation."
+
+/obj/item/weapon/paper/fluff/stations/cere/journal/journal
+ name = "Journal Log"
+ info = "2XXX - 2nd Trimestor
I hide in here, away from the masses, not like it matters much considering how fucking huge this place is. "
+
+/obj/item/weapon/paper/fluff/stations/cere/journal/journal_2
+ name = "Journal Log 2"
+ info = "2XXX - 3rd Trimestor
I hear strange whispers from the halls, longing for blood. Something isn't right here. Why did they transfer us here to work in the first place? "
+
+/obj/item/weapon/paper/crumpled/stations/cere/empty_station
+ info = "I can't be here for much longer, this station is too empty for its own good. Something is wrong..."
+
+/obj/item/weapon/paper/crumpled/bloody/hop
+ info = "...THE HOPLINE CALLS...IT THIRSTS FOR BLOOD...I MUST GO..."
+
+/obj/item/weapon/paper/crumpled/stations/cere/rocks1
+ info = "...SOMETHING IN THE ROCKS, IT WATCHES US ALL..."
+
+/obj/item/weapon/paper/crumpled/stations/cere/rocks2
+ info = "...THEY SENT US HERE FOR A REASON...TERRIBLE..."
+
+/obj/item/weapon/paper/crumpled/stations/cere/rocks3
+ info = "...EMPTY HALLS...USELESS SPACE..."
+
+
+/////////// Centcom
+
+/obj/item/weapon/paper/fluff/stations/centcom/disk_memo
+ name = "memo"
+ info = "GET DAT FUKKEN DISK"
+
+/obj/item/weapon/paper/fluff/stations/centcom/broken_evac
+ info = "Due to circumstances beyond our control, your Emergency Evacuation Shuttle is out of service.
We apologise for the inconvinience this may cause you.
Please enjoy the use of this complementary book.
Sincerely,
Centcom Operations Demolitions Examination Retribution Bugfixing Underlining Services"
+
+/obj/item/weapon/paper/fluff/stations/centcom/bulletin
+ name = "paper- 'Official Bulletin'"
+ info = "
Centcom Security
Port Division
Official Bulletin
Inspector,
There is an emergency shuttle arriving today.
Approval is restricted to Nanotrasen employees only. Deny all other entrants.
Centcom Port Commissioner"
+
+
+/////////// Lavaland
+
+/obj/item/weapon/paper/fluff/stations/lavaland/orm_notice
+ name = "URGENT!"
+ info = "A hastily written note has been scribbled here...
Please use the ore redemption machine in the cargo office for smelting. PLEASE!
--The Research Staff"
+
diff --git a/code/modules/power/gravitygenerator.dm b/code/modules/power/gravitygenerator.dm
index 4b3b5bcd46..8475ed1627 100644
--- a/code/modules/power/gravitygenerator.dm
+++ b/code/modules/power/gravitygenerator.dm
@@ -401,7 +401,7 @@ GLOBAL_LIST_EMPTY(gravity_generators) // We will keep track of this by adding ne
// Misc
-/obj/item/weapon/paper/gravity_gen
+/obj/item/weapon/paper/guides/jobs/engi/gravity_gen
name = "paper- 'Generate your own gravity!'"
info = {"Gravity Generator Instructions For Dummies
Surprisingly, gravity isn't that hard to make! All you have to do is inject deadly radioactive minerals into a ball of
diff --git a/code/modules/power/solar.dm b/code/modules/power/solar.dm
index 0da3841bd7..fc07ff03b0 100644
--- a/code/modules/power/solar.dm
+++ b/code/modules/power/solar.dm
@@ -493,6 +493,6 @@
// MISC
//
-/obj/item/weapon/paper/solar
+/obj/item/weapon/paper/guides/jobs/engi/solars
name = "paper- 'Going green! Setup your own solar array instructions.'"
info = "
Welcome
At greencorps we love the environment, and space. With this package you are able to help mother nature and produce energy without any usage of fossil fuel or plasma! Singularity energy is dangerous while solar energy is safe, which is why it's better. Now here is how you setup your own solar array.
You can make a solar panel by wrenching the solar assembly onto a cable node. Adding a glass panel, reinforced or regular glass will do, will finish the construction of your solar panel. It is that easy!
Now after setting up 19 more of these solar panels you will want to create a solar tracker to keep track of our mother nature's gift, the sun. These are the same steps as before except you insert the tracker equipment circuit into the assembly before performing the final step of adding the glass. You now have a tracker! Now the last step is to add a computer to calculate the sun's movements and to send commands to the solar panels to change direction with the sun. Setting up the solar computer is the same as setting up any computer, so you should have no trouble in doing that. You do need to put a wire node under the computer, and the wire needs to be connected to the tracker.
Congratulations, you should have a working solar array. If you are having trouble, here are some tips. Make sure all solar equipment are on a cable node, even the computer. You can always deconstruct your creations if you make a mistake.
That's all to it, be safe, be green!
"
diff --git a/code/modules/recycling/conveyor2.dm b/code/modules/recycling/conveyor2.dm
index ddc1c56657..0d0a4f7695 100644
--- a/code/modules/recycling/conveyor2.dm
+++ b/code/modules/recycling/conveyor2.dm
@@ -347,6 +347,6 @@
transfer_fingerprints_to(NC)
qdel(src)
-/obj/item/weapon/paper/conveyor
+/obj/item/weapon/paper/guides/conveyor
name = "paper- 'Nano-it-up U-build series, #9: Build your very own conveyor belt, in SPACE'"
info = "Congratulations!
You are now the proud owner of the best conveyor set available for space mail order! We at Nano-it-up know you love to prepare your own structures without wasting time, so we have devised a special streamlined assembly procedure that puts all other mail-order products to shame!
Firstly, you need to link the conveyor switch assembly to each of the conveyor belt assemblies. After doing so, you simply need to install the belt assemblies onto the floor, et voila, belt built. Our special Nano-it-up smart switch will detected any linked assemblies as far as the eye can see! This convenience, you can only have it when you Nano-it-up. Stay nano!
"
diff --git a/code/modules/ruins/lavalandruin_code/sloth.dm b/code/modules/ruins/lavalandruin_code/sloth.dm
new file mode 100644
index 0000000000..7253f48e97
--- /dev/null
+++ b/code/modules/ruins/lavalandruin_code/sloth.dm
@@ -0,0 +1,5 @@
+/////////// lavaland slot ruin items
+
+/obj/item/weapon/paper/fluff/stations/lavaland/sloth/note
+ name = "note from sloth"
+ desc = "have not gotten around to finishing my cursed item yet sorry - sloth"
\ No newline at end of file
diff --git a/code/modules/ruins/lavalandruin_code/surface.dm b/code/modules/ruins/lavalandruin_code/surface.dm
new file mode 100644
index 0000000000..4da89f2abe
--- /dev/null
+++ b/code/modules/ruins/lavalandruin_code/surface.dm
@@ -0,0 +1,5 @@
+//////lavaland surface papers
+
+/obj/item/weapon/paper/fluff/stations/lavaland/surface/henderson_report
+ name = "Important Notice - Mrs. Henderson"
+ info = "Nothing of interest to report."
\ No newline at end of file
diff --git a/code/modules/ruins/spaceruin_code/DJstation.dm b/code/modules/ruins/spaceruin_code/DJstation.dm
new file mode 100644
index 0000000000..7fbe3e9300
--- /dev/null
+++ b/code/modules/ruins/spaceruin_code/DJstation.dm
@@ -0,0 +1,5 @@
+/////////// djstation items
+
+/obj/item/weapon/paper/fluff/ruins/djstation
+ name = "paper - 'DJ Listening Outpost'"
+ info = "Welcome new owner!
You have purchased the latest in listening equipment. The telecommunication setup we created is the best in listening to common and private radio frequencies. Here is a step by step guide to start listening in on those saucy radio channels:
- Equip yourself with a multitool
- Use the multitool on the relay.
- Turn it on. It has already been configured for you to listen on.
Simple as that. Now to listen to the private channels, you'll have to configure the intercoms. They are located on the front desk. Here is a list of frequencies for you to listen on.
- 145.9 - Common Channel
- 144.7 - Private AI Channel
- 135.9 - Security Channel
- 135.7 - Engineering Channel
- 135.5 - Medical Channel
- 135.3 - Command Channel
- 135.1 - Science Channel
- 134.9 - Service Channel
- 134.7 - Supply Channel
"
diff --git a/code/modules/ruins/spaceruin_code/TheDerelict.dm b/code/modules/ruins/spaceruin_code/TheDerelict.dm
new file mode 100644
index 0000000000..e7b55411fb
--- /dev/null
+++ b/code/modules/ruins/spaceruin_code/TheDerelict.dm
@@ -0,0 +1,13 @@
+/////////// thederelict items
+
+/obj/item/weapon/paper/fluff/ruins/thederelict/equipment
+ info = "If the equipment breaks there should be enough spare parts in our engineering storage near the north east solar array."
+ name = "Equipment Inventory"
+
+/obj/item/weapon/paper/fluff/ruins/thederelict/syndie_mission
+ name = "Mission Objectives"
+ info = "The Syndicate have cunningly disguised a Syndicate Uplink as your PDA. Simply enter the code \"678 Bravo\" into the ringtone select to unlock its hidden features.
Objective #1. Kill the God damn AI in a fire blast that it rocks the station. Success!
Objective #2. Escape alive. Failed."
+
+/obj/item/weapon/paper/fluff/ruins/thederelict/nukie_objectives
+ name = "Objectives of a Nuclear Operative"
+ info = "Objective #1: Destroy the station with a nuclear device."
\ No newline at end of file
diff --git a/code/modules/ruins/spaceruin_code/asteroid4.dm b/code/modules/ruins/spaceruin_code/asteroid4.dm
new file mode 100644
index 0000000000..eca2b4252c
--- /dev/null
+++ b/code/modules/ruins/spaceruin_code/asteroid4.dm
@@ -0,0 +1,4 @@
+/////////// asteroid4 items
+
+/obj/item/weapon/paper/fluff/ruins/asteroid4/extraction
+ info = "Extraction was successful! The disguise was perfect, the clowns never knew what hit 'em! Once I get back to base with the bananium samples I'll be rich, I tell you! RICH!"
diff --git a/code/modules/ruins/spaceruin_code/crashedclownship.dm b/code/modules/ruins/spaceruin_code/crashedclownship.dm
new file mode 100644
index 0000000000..f927b7be73
--- /dev/null
+++ b/code/modules/ruins/spaceruin_code/crashedclownship.dm
@@ -0,0 +1,4 @@
+/////////// crashedclownship items
+
+/obj/item/weapon/paper/fluff/ruins/crashedclownship/true_nation
+ info = "The call has gone out! Our ancestral home has been rediscovered! Not a small patch of land, but a true clown nation, a true Clown Planet! We're on our way home at last!"
diff --git a/code/modules/ruins/spaceruin_code/crashedship.dm b/code/modules/ruins/spaceruin_code/crashedship.dm
new file mode 100644
index 0000000000..e7d07dafb5
--- /dev/null
+++ b/code/modules/ruins/spaceruin_code/crashedship.dm
@@ -0,0 +1,15 @@
+/////////// crashedship items
+
+/obj/item/weapon/paper/fluff/ruins/crashedship/scribbled
+ name = "scribbled note"
+ info = "The next person who takes one of my screwdrivers gets stabbed with one. They are MINE. - Love, Madsen"
+
+
+/obj/item/weapon/paper/fluff/ruins/crashedship/captains_log
+ name = "Captain's log entry"
+ info = "I'm no scientist, but judging from the design and components, it seems to be some kind of teleporter. This thing is gonna be worth a lot of cash to the right man. The boys are excited, as they have every right to be, and I've let them crack into that case of beer we got. I normally wouldn't allow such a thing, but this is a time for celebration! It's not like a couple drinks will hurt anything."
+
+/obj/item/weapon/paper/fluff/ruins/crashedship/old_diary
+ name = "Old Diary"
+ info = "DEAR DAIRY: So we was doing our typpical route when the captain says we've been picking up weird signals on some backwatter planet. Madsen wanted to stay on course but he ain't the captain, so we went out of the way to check it out. There was lots of rocks on the way, but we got to the planet fine. Found a big fancy camp with nobody around and this big metal donut thing with NT stamps all over it right in the middle. Case of beer too. Captain reckons we can pass it off to some buyer in the Syndicate. Ingram says it's bad luck and that someone is going to come look for it but it sounds like better money than selling bad meat to jerky companies."
+
diff --git a/code/modules/ruins/spaceruin_code/deepstorage.dm b/code/modules/ruins/spaceruin_code/deepstorage.dm
new file mode 100644
index 0000000000..97fc360d7c
--- /dev/null
+++ b/code/modules/ruins/spaceruin_code/deepstorage.dm
@@ -0,0 +1,14 @@
+/////////// deepstorage items
+
+/obj/item/weapon/paper/fluff/ruins/deepstorage/water_concern
+ name = "water concerns"
+ info = "To whoever keeps it up with the long, hot showers: you're going on the next ice-mining trip. If you feel the need to use up all the damn water during your 'relaxation' time, you sure as hell are gonna work for all that water!"
+
+/obj/item/weapon/paper/fluff/ruins/deepstorage/hydro_notice
+ name = "hydroponics notice"
+ info = "Hydroponics is our life and blood here, if it dies then so do we. Keep the damn plants watered!"
+
+/obj/item/weapon/paper/fluff/ruins/deepstorage/recycling_notice
+ name = "recycling notice"
+ info = "Please make sure to throw all excess waste into the crusher in the back! It's amazing what you can get out of what others consider 'garbage' if you run it through a giant crusher enough times."
+
diff --git a/code/modules/ruins/spaceruin_code/listeningstation.dm b/code/modules/ruins/spaceruin_code/listeningstation.dm
new file mode 100644
index 0000000000..9441ec3685
--- /dev/null
+++ b/code/modules/ruins/spaceruin_code/listeningstation.dm
@@ -0,0 +1,45 @@
+/////////// listening station
+
+/obj/item/weapon/paper/fluff/ruins/listeningstation/reports
+ info = "Nothing of interest to report."
+
+/obj/item/weapon/paper/fluff/ruins/listeningstation/reports/july
+ name = "july report"
+
+/obj/item/weapon/paper/fluff/ruins/listeningstation/reports/august
+ name = "august report"
+
+/obj/item/weapon/paper/fluff/ruins/listeningstation/reports/september
+ name = "september report"
+
+/obj/item/weapon/paper/fluff/ruins/listeningstation/reports/october
+ name = "october report"
+
+/obj/item/weapon/paper/fluff/ruins/listeningstation/reports/november
+ name = "november report"
+
+/obj/item/weapon/paper/fluff/ruins/listeningstation/reports/june
+ name = "june report"
+ info = "Nanotrasen communications have been noticably less frequent recently. The pirate radio station I found last month has been transmitting pro-Nanotrasen propaganda. I will continue to monitor it."
+
+/obj/item/weapon/paper/fluff/ruins/listeningstation/reports/may
+ name = "may report"
+ info = "Nothing of real interest to report this month. I have intercepted faint transmissions from what appears to be some sort of pirate radio station. They do not appear to be relevant to my assignment."
+
+/obj/item/weapon/paper/fluff/ruins/listeningstation/reports/april
+ name = "april report"
+ info = "A good start to the operation: intercepted Nanotrasen military communications. A convoy is scheduled to transfer nuclear warheads to a new military base. This is as good a chance as any to get our hands on some heavy weaponry, I suggest we take it."
+
+/obj/item/weapon/paper/fluff/ruins/listeningstation/receipt
+ name = "receipt"
+ info = "1 x Stechtkin pistol - $600
1 x silencer - $200
shipping charge - $4360
total - $5160"
+
+/obj/item/weapon/paper/fluff/ruins/listeningstation/odd_report
+ name = "odd report"
+ info = "I wonder how much longer they will accept my empty reports. They will cancel the case soon without results. When the pickup comes, I will tell them I have lost faith in our cause, and beg them to consider a diplomatic solution. How many nuclear teams have been dispatched with those nukes? I must try and prevent more from ever being sent. If they will not listen to reason, I will detonate the warehouse myself. Maybe some day in the immediate future, space will be peaceful, though I don't intend to live to see it. And that is why I write this down- it is my sacrifice that stabilised your worlds, traveller. Spare a thought for me, and please attempt to prevent nuclear proliferation, should it ever rear it's ugly head again. -Donk Co. Operative #451"
+
+/obj/item/weapon/paper/fluff/ruins/listeningstation/briefing
+ name = "mission briefing"
+ info = "Mission Details: You have been assigned to a newly constructed listening post constructed within an asteroid in Nanotrasen space to monitor their plasma mining operations. Accurate intel is crucial to the success of our operatives onboard, do not fail us."
+
+
diff --git a/code/modules/ruins/spaceruin_code/oldstation.dm b/code/modules/ruins/spaceruin_code/oldstation.dm
new file mode 100644
index 0000000000..52b2f5313c
--- /dev/null
+++ b/code/modules/ruins/spaceruin_code/oldstation.dm
@@ -0,0 +1,49 @@
+/////////// Oldstation items
+
+/obj/item/weapon/paper/fluff/ruins/oldstation
+ name = "Cyro Awakening Alert"
+ info = "**WARNING**
Catastrophic damage sustained to station. Powernet exhausted to reawaken crew.
Immediate Objectives
1: Activate emergency power generator
2: Lift station lockdown on the bridge
Please locate the 'Damage Report' on the bridge for a detailed situation report."
+
+/obj/item/weapon/paper/fluff/ruins/oldstation/damagereport
+ name = "Damage Report"
+ info = "*Damage Report*
Alpha Station - Destroyed
Beta Station - Catastrophic Damage. Medical, destroyed. Atmospherics, partially destroyed. Engine Core, destroyed.
Charlie Station - Intact. Loss of oxygen to eastern side of main corridor.
Delta Station - Intact. WARNING: Unknown force occupying Delta Station. Intent unknown. Species unknown. Numbers unknown.
Recommendation - Reestablish station powernet via solar array. Reestablish station atmospherics system to restore air."
+
+/obj/item/weapon/paper/fluff/ruins/oldstation/protosuit
+ name = "B01-RIG Hardsuit Report"
+ info = "*Prototype Hardsuit*
The B01-RIG Hardsuit is a prototype powered exoskeleton. Based off of a recovered pre-void war era united earth government powered military \
+ exosuit, the RIG Hardsuit is a breakthrough in Hardsuit technology, and is the first post-void war era Hardsuit that can be safely used by a operator.
The B01 however suffers \
+ a myriad of constraints. It is slow and bulky to move around, it lacks any significant armor plating against direct attacks and its internal heads up display is unfinished, \
+ resulting in the user being unable to see long distances.
The B01 is unlikely to see any form of mass production, but will serve as a base for future Hardsuit developments."
+
+/obj/item/weapon/paper/fluff/ruins/oldstation/protohealth
+ name = "Health Analyser Report"
+ info = "*Health Analyser*
The portable Health Analyser is essentially a handheld varient of a health analyser. Years of research have concluded with this device which is \
+ capable of diagnosing even the most critical, obscure or technical injuries any humanoid entity is suffering in a easy to understand format that even a non-trained health professional \
+ can understand.
The health analyser is expected to go into full production as standard issue medical kit."
+
+/obj/item/weapon/paper/fluff/ruins/oldstation/protogun
+ name = "K14 Energy Gun Report"
+ info = "*K14-Multiphase Energy Gun*
The K14 Prototype Energy Gun is the first Energy Rifle that has been successfully been able to not only hold a larger ammo charge \
+ than other gun models, but is capable of swapping between different energy projectile types on command with no incidents.
The weapon still suffers several drawbacks, its alternative, \
+ non laser fire mode, can only fire one round before exhausting the energy cell, the weapon also remains prohibitively expensive, nonetheless NT Market Research fully believe this weapon \
+ will form the backbone of our Energy weapon cataloge.
The K14 is expected to undergo revision to fix the ammo issues, the K15 is expected to replace the 'stun' setting with a \
+ 'disable' setting in a attempt to bypass the ammo issues."
+
+/obj/item/weapon/paper/fluff/ruins/oldstation/protosing
+ name = "Singularity Generator"
+ info = "*Singularity Generator*
Modern power generation typically comes in two forms, a Fusion Generator or a Fission Generator. Fusion provides the best space to power \
+ ratio, and is typically seen on military or high security ships and stations, however Fission reactors require the usage of expensive, and rare, materials in its construction.. Fission generators are massive and bulky, and require a large reserve of uranium to power, however they are extremely cheap to operate and oft need little maintenance once \
+ operational.
The Singularity aims to alter this, a functional Singularity is essentially a controlled Black Hole, a Black Hole that generates far more power than Fusion or Fission \
+ generators can ever hope to produce. "
+
+/obj/item/weapon/paper/fluff/ruins/oldstation/protoinv
+ name = "Laboratory Inventory"
+ info = "*Inventory*
(1) Prototype Hardsuit
(1)Health Analyser
(1)Prototype Energy Gun
(1)Singularity Generation Disk
DO NOT REMOVE WITHOUT \
+ THE CAPTAIN AND RESEARCH DIRECTOR'S AUTHORISATION"
+
+/obj/item/weapon/paper/fluff/ruins/oldstation/report
+ name = "Crew Reawakening Report"
+ info = "Artifical Program's report to surviving crewmembers.
Crew were placed into cryostasis on March 10th, 2445.
Crew were awoken from cryostasis around June, 2557.
\
+ SIGNIFICANT EVENTS OF NOTE
1: The primary radiation detectors were taken offline after 112 years due to power failure, secondary radioation detectors showed no residual \
+ radioation on station. Deduction, primariy detector was malfunctioning and was producing a radioation signal when there was none.
2: A data burst from a nearby Nanotrasen Space \
+ Station was recieved, this data burst contained research data that has been uploaded to our RnD labs.
3: Unknown invasion force has occupied Delta station."
diff --git a/code/modules/ruins/spaceruin_code/originalcontent.dm b/code/modules/ruins/spaceruin_code/originalcontent.dm
new file mode 100644
index 0000000000..ade3e3cb21
--- /dev/null
+++ b/code/modules/ruins/spaceruin_code/originalcontent.dm
@@ -0,0 +1,4 @@
+/////////// originalcontent items
+
+/obj/item/weapon/paper/crumpled/ruins/originalcontent
+ desc = "Various scrawled out drawings and sketches reside on the paper, apparently he didn't much care for these drawings."
\ No newline at end of file
diff --git a/code/modules/ruins/spaceruin_code/spacehotel.dm b/code/modules/ruins/spaceruin_code/spacehotel.dm
new file mode 100644
index 0000000000..843cfa860c
--- /dev/null
+++ b/code/modules/ruins/spaceruin_code/spacehotel.dm
@@ -0,0 +1,12 @@
+/////////// spacehotel items
+
+
+/obj/item/weapon/paper/fluff/ruins/spacehotel/notice
+ name = "!NOTICE!"
+ info = "!NOTICE!
We are expecting arriving guests soon from a nearby station! Stay sharp and make sure guests enjoy their time spent here. Don't think you can sneak off while they're here, either."
+
+/obj/item/weapon/paper/pamphlet/ruin/spacehotel
+ name = "hotel pamphlet"
+ info = "The Twin Nexus Hotel
A place of Sanctuary
Welcome to The Twin-Nexus Hotel, \[insert name here]! The loyal staff stride to their best effort to cater for the best possible experience for all space(wo)men! If you have any questions or comments, please ask one of our on-board staff for more infomation."
+
+
diff --git a/code/modules/uplink/uplink_item_cit.dm b/code/modules/uplink/uplink_item_cit.dm
index 3ea3e7f63c..0d1a6efce6 100644
--- a/code/modules/uplink/uplink_item_cit.dm
+++ b/code/modules/uplink/uplink_item_cit.dm
@@ -27,4 +27,4 @@
/obj/item/weapon/storage/box/syndie_kit/holoparasite/PopulateContents()
new /obj/item/weapon/guardiancreator/tech/choose/traitor(src)
- new /obj/item/weapon/paper/guardian(src)
\ No newline at end of file
+ new /obj/item/weapon/paper/guides/antag/guardian(src)
diff --git a/tgstation.dme b/tgstation.dme
index c2d9554891..0d19f5365c 100644
--- a/tgstation.dme
+++ b/tgstation.dme
@@ -1156,8 +1156,11 @@
#include "code\modules\awaymissions\zlevel.dm"
#include "code\modules\awaymissions\mission_code\Academy.dm"
#include "code\modules\awaymissions\mission_code\Cabin.dm"
+#include "code\modules\awaymissions\mission_code\caves.dm"
#include "code\modules\awaymissions\mission_code\centcomAway.dm"
#include "code\modules\awaymissions\mission_code\challenge.dm"
+#include "code\modules\awaymissions\mission_code\moonoutpost19.dm"
+#include "code\modules\awaymissions\mission_code\research.dm"
#include "code\modules\awaymissions\mission_code\snowdin.dm"
#include "code\modules\awaymissions\mission_code\spacebattle.dm"
#include "code\modules\awaymissions\mission_code\stationCollision.dm"
@@ -1891,6 +1894,7 @@
#include "code\modules\paperwork\handlabeler.dm"
#include "code\modules\paperwork\paper.dm"
#include "code\modules\paperwork\paper_cutter.dm"
+#include "code\modules\paperwork\paper_premade.dm"
#include "code\modules\paperwork\paperbin.dm"
#include "code\modules\paperwork\paperplane.dm"
#include "code\modules\paperwork\pen.dm"
@@ -2069,10 +2073,22 @@
#include "code\modules\research\xenobiology\xenobio_camera.dm"
#include "code\modules\research\xenobiology\xenobiology.dm"
#include "code\modules\ruins\lavaland_ruin_code.dm"
+#include "code\modules\ruins\lavalandruin_code\sloth.dm"
+#include "code\modules\ruins\lavalandruin_code\surface.dm"
#include "code\modules\ruins\objects_and_mobs\ash_walker_den.dm"
#include "code\modules\ruins\objects_and_mobs\necropolis_gate.dm"
#include "code\modules\ruins\objects_and_mobs\ruin_mapping_aids.dm"
#include "code\modules\ruins\objects_and_mobs\sin_ruins.dm"
+#include "code\modules\ruins\spaceruin_code\asteroid4.dm"
+#include "code\modules\ruins\spaceruin_code\crashedclownship.dm"
+#include "code\modules\ruins\spaceruin_code\crashedship.dm"
+#include "code\modules\ruins\spaceruin_code\deepstorage.dm"
+#include "code\modules\ruins\spaceruin_code\DJstation.dm"
+#include "code\modules\ruins\spaceruin_code\listeningstation.dm"
+#include "code\modules\ruins\spaceruin_code\oldstation.dm"
+#include "code\modules\ruins\spaceruin_code\originalcontent.dm"
+#include "code\modules\ruins\spaceruin_code\spacehotel.dm"
+#include "code\modules\ruins\spaceruin_code\TheDerelict.dm"
#include "code\modules\security_levels\keycard_authentication.dm"
#include "code\modules\security_levels\security_levels.dm"
#include "code\modules\server_tools\server_tools.dm"
From 8a4ddbe8a87df6f8f6a66083e3cb4935666df428 Mon Sep 17 00:00:00 2001
From: CitadelStationBot
Date: Wed, 2 Aug 2017 04:56:44 -0500
Subject: [PATCH 014/154] [MIRROR] Ports Rapid Cable Layers from /vg/ and
paradise (#2162)
* Ports Rapid Cable Layers from /vg/ and paradise
* rej clean up + manual sync
* maps and .rej file cleanup
* sprite and WGW memes
* actual spellchecked memes
* some other map fix memes
* fuck it, let's just hard sync maps
* dumb paperwork shit for maps
* Revert "dumb paperwork shit for maps"
This reverts commit 8e70bbec0f407c334cd81f5b92aafdb90544ca9d.
* *autistic screeching*
* REEEEEEEEEEEEEEEEEEEEE
* Fuck off I want to do something else
---
.../lavaland_surface_ash_walker1.dmm.rej | 307 -
.../lavaland_surface_syndicate_base1.dmm | 14 +-
_maps/RandomRuins/SpaceRuins/TheDerelict.dmm | 7 +-
_maps/RandomRuins/SpaceRuins/deepstorage.dmm | 3 +
_maps/RandomRuins/SpaceRuins/oldstation.dmm | 227 +-
_maps/RandomZLevels/challenge.dmm | 208 +-
_maps/RandomZLevels/moonoutpost19.dmm | 4 +-
_maps/RandomZLevels/snowdin.dmm | 6 +-
_maps/map_files/BoxStation/BoxStation.dmm | 2978 +-
_maps/map_files/BoxStation/BoxStation.dmm.rej | 92 -
_maps/map_files/Cerestation/cerestation.dmm | 569 +-
.../map_files/Cerestation/cerestation.dmm.rej | 10 -
.../map_files/Deltastation/DeltaStation2.dmm | 2377 +-
.../Deltastation/DeltaStation2.dmm.rej | 37 -
_maps/map_files/MetaStation/MetaStation.dmm | 2040 +-
.../map_files/MetaStation/MetaStation.dmm.rej | 37 -
_maps/map_files/OmegaStation/OmegaStation.dmm | 791 +-
_maps/map_files/PubbyStation/PubbyStation.dmm | 112924 ++++++++-------
.../PubbyStation/PubbyStation.dmm.rej | 213 -
_maps/map_files/generic/Centcomm.dmm | 110 +-
_maps/shuttles/emergency_pubby.dmm | 55 +-
_maps/shuttles/emergency_supermatter.dmm | 16 +-
code/__DEFINES/DNA.dm.rej | 9 -
code/__DEFINES/combat.dm.rej | 9 -
code/__DEFINES/sound.dm.rej | 51 -
code/__HELPERS/_lists.dm.rej | 0
code/datums/action.dm | 4 +
code/datums/components/component.dm.rej | 35 -
.../diseases/advance/symptoms/sensory.dm.rej | 134 -
.../diseases/advance/symptoms/vision.dm.rej | 19 -
.../diseases/advance/symptoms/vomit.dm.rej | 30 -
code/game/area/areas/derelict.dm | 6 +-
code/game/atoms.dm.rej | 10 -
code/game/gamemodes/game_mode.dm.rej | 10 -
code/game/machinery/iv_drip.dm.rej | 35 -
.../effects/spawners/gibspawner.dm.rej | 10 -
code/game/objects/items/shooting_range.dm | 3 +
code/game/objects/items/weapons/RCL.dm | 202 +
.../objects/structures/beds_chairs/bed.dm | 22 +-
.../closets/secure/security.dm.rej | 30 -
.../crates_lockers/closets/utility_closets.dm | 3 +
code/game/objects/structures/reflector.dm | 9 +
code/game/objects/structures/signs.dm | 35 +
code/game/sound.dm.rej | 9 -
code/game/turfs/simulated/floor/misc_floor.dm | 8 +-
.../turfs/simulated/floor/plasteel_floor.dm | 30 +
code/game/turfs/turf.dm | 37 +-
code/game/turfs/turf.dm.rej | 10 -
.../atmospherics/machinery/airalarm.dm | 13 +
.../clothing/spacesuits/flightsuit.dm.rej | 14 -
.../clothing/spacesuits/hardsuit.dm.rej | 19 -
.../clothing/spacesuits/miscellaneous.dm.rej | 10 -
.../clothing/spacesuits/plasmamen.dm.rej | 10 -
code/modules/clothing/spacesuits/syndi.dm.rej | 10 -
.../clothing/suits/miscellaneous.dm.rej | 19 -
code/modules/crafting/recipes.dm | 9 +
code/modules/mining/mine_items.dm | 5 +-
.../mob/living/carbon/damage_procs.dm.rej | 10 -
.../mob/living/carbon/human/species.dm.rej | 12 -
code/modules/mob/living/damage_procs.dm.rej | 41 -
.../simple_animal/friendly/lizard.dm.rej | 10 -
.../computers/item/tablet.dm.rej | 15 -
code/modules/paperwork/paper.dm | 3 +-
code/modules/paperwork/paper_premade.dm | 4 +-
code/modules/power/cable.dm | 97 +-
code/modules/power/singularity/collector.dm | 3 +
code/modules/power/singularity/emitter.dm | 13 +
.../modules/surgery/organ_manipulation.dm.rej | 10 -
icons/mob/actions.dmi | Bin 194028 -> 196416 bytes
icons/obj/decals.dmi | Bin 22324 -> 25679 bytes
icons/obj/tools.dmi | Bin 13457 -> 14686 bytes
strings/tips.txt.rej | 19 -
tgstation.dme | 1 +
tgstation.dme.rej | 9 -
74 files changed, 62713 insertions(+), 61428 deletions(-)
delete mode 100644 _maps/RandomRuins/LavaRuins/lavaland_surface_ash_walker1.dmm.rej
delete mode 100644 _maps/map_files/BoxStation/BoxStation.dmm.rej
delete mode 100644 _maps/map_files/Cerestation/cerestation.dmm.rej
delete mode 100644 _maps/map_files/Deltastation/DeltaStation2.dmm.rej
delete mode 100644 _maps/map_files/MetaStation/MetaStation.dmm.rej
delete mode 100644 _maps/map_files/PubbyStation/PubbyStation.dmm.rej
delete mode 100644 code/__DEFINES/DNA.dm.rej
delete mode 100644 code/__DEFINES/combat.dm.rej
delete mode 100644 code/__DEFINES/sound.dm.rej
delete mode 100644 code/__HELPERS/_lists.dm.rej
delete mode 100644 code/datums/components/component.dm.rej
delete mode 100644 code/datums/diseases/advance/symptoms/sensory.dm.rej
delete mode 100644 code/datums/diseases/advance/symptoms/vision.dm.rej
delete mode 100644 code/datums/diseases/advance/symptoms/vomit.dm.rej
delete mode 100644 code/game/atoms.dm.rej
delete mode 100644 code/game/gamemodes/game_mode.dm.rej
delete mode 100644 code/game/machinery/iv_drip.dm.rej
delete mode 100644 code/game/objects/effects/spawners/gibspawner.dm.rej
create mode 100644 code/game/objects/items/weapons/RCL.dm
delete mode 100644 code/game/objects/structures/crates_lockers/closets/secure/security.dm.rej
delete mode 100644 code/game/sound.dm.rej
delete mode 100644 code/game/turfs/turf.dm.rej
delete mode 100644 code/modules/clothing/spacesuits/flightsuit.dm.rej
delete mode 100644 code/modules/clothing/spacesuits/hardsuit.dm.rej
delete mode 100644 code/modules/clothing/spacesuits/miscellaneous.dm.rej
delete mode 100644 code/modules/clothing/spacesuits/plasmamen.dm.rej
delete mode 100644 code/modules/clothing/spacesuits/syndi.dm.rej
delete mode 100644 code/modules/clothing/suits/miscellaneous.dm.rej
delete mode 100644 code/modules/mob/living/carbon/damage_procs.dm.rej
delete mode 100644 code/modules/mob/living/carbon/human/species.dm.rej
delete mode 100644 code/modules/mob/living/damage_procs.dm.rej
delete mode 100644 code/modules/mob/living/simple_animal/friendly/lizard.dm.rej
delete mode 100644 code/modules/modular_computers/computers/item/tablet.dm.rej
delete mode 100644 code/modules/surgery/organ_manipulation.dm.rej
delete mode 100644 strings/tips.txt.rej
delete mode 100644 tgstation.dme.rej
diff --git a/_maps/RandomRuins/LavaRuins/lavaland_surface_ash_walker1.dmm.rej b/_maps/RandomRuins/LavaRuins/lavaland_surface_ash_walker1.dmm.rej
deleted file mode 100644
index 4fe35ae3e9..0000000000
--- a/_maps/RandomRuins/LavaRuins/lavaland_surface_ash_walker1.dmm.rej
+++ /dev/null
@@ -1,307 +0,0 @@
-diff a/_maps/RandomRuins/LavaRuins/lavaland_surface_ash_walker1.dmm b/_maps/RandomRuins/LavaRuins/lavaland_surface_ash_walker1.dmm (rejected hunks)
-@@ -1161,6 +1188,293 @@
- },
- /turf/open/floor/plating/asteroid/basalt/lava_land_surface,
- /area/lavaland/surface/outdoors)
-+"cT" = (
-+/obj/structure/stone_tile,
-+/obj/structure/stone_tile/block{
-+ dir = 1
-+ },
-+/turf/closed/mineral/volcanic,
-+/area/lavaland/surface/outdoors)
-+"cU" = (
-+/obj/structure/stone_tile/block{
-+ dir = 8
-+ },
-+/turf/closed/mineral/volcanic,
-+/area/lavaland/surface/outdoors)
-+"cV" = (
-+/obj/structure/stone_tile/cracked,
-+/obj/structure/stone_tile/block{
-+ dir = 8
-+ },
-+/turf/closed/mineral/volcanic,
-+/area/lavaland/surface/outdoors)
-+"cW" = (
-+/obj/structure/table/optable,
-+/obj/structure/stone_tile{
-+ dir = 1
-+ },
-+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-+/area/ruin/unpowered/ash_walkers)
-+"cX" = (
-+/obj/item/weapon/storage/box/rxglasses,
-+/obj/structure/stone_tile{
-+ dir = 1
-+ },
-+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-+/area/ruin/unpowered/ash_walkers)
-+"cY" = (
-+/obj/item/seeds/glowshroom,
-+/obj/item/seeds/glowshroom,
-+/obj/structure/stone_tile/block{
-+ dir = 4
-+ },
-+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-+/area/ruin/unpowered/ash_walkers)
-+"cZ" = (
-+/obj/structure/stone_tile/surrounding_tile{
-+ dir = 8
-+ },
-+/obj/structure/stone_tile/block{
-+ dir = 4
-+ },
-+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-+/area/lavaland/surface/outdoors)
-+"da" = (
-+/obj/structure/stone_tile/surrounding_tile/cracked{
-+ dir = 8
-+ },
-+/turf/closed/mineral/volcanic,
-+/area/lavaland/surface/outdoors)
-+"db" = (
-+/obj/structure/stone_tile/block,
-+/turf/closed/mineral/volcanic,
-+/area/lavaland/surface/outdoors)
-+"dc" = (
-+/obj/structure/stone_tile/block,
-+/turf/closed/mineral/volcanic,
-+/area/lavaland/surface/outdoors)
-+"dd" = (
-+/obj/structure/stone_tile/surrounding_tile/cracked,
-+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-+/area/lavaland/surface/outdoors)
-+"de" = (
-+/obj/structure/stone_tile/block/cracked{
-+ dir = 4
-+ },
-+/obj/structure/stone_tile/block{
-+ dir = 8
-+ },
-+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-+/area/lavaland/surface/outdoors)
-+"df" = (
-+/obj/effect/decal/cleanable/blood,
-+/obj/structure/stone_tile/cracked{
-+ dir = 8
-+ },
-+/obj/structure/stone_tile/cracked{
-+ dir = 4
-+ },
-+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-+/area/lavaland/surface/outdoors)
-+"dg" = (
-+/obj/structure/bonfire/dense,
-+/obj/structure/stone_tile/center,
-+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-+/area/lavaland/surface/outdoors)
-+"dh" = (
-+/obj/structure/stone_tile/block/cracked,
-+/obj/structure/stone_tile/block{
-+ dir = 1
-+ },
-+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-+/area/lavaland/surface/outdoors)
-+"di" = (
-+/obj/effect/decal/cleanable/blood,
-+/obj/structure/stone_tile/block,
-+/obj/structure/stone_tile/cracked{
-+ dir = 4
-+ },
-+/obj/structure/stone_tile/cracked{
-+ dir = 1
-+ },
-+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-+/area/lavaland/surface/outdoors)
-+"dj" = (
-+/obj/structure/stone_tile/block,
-+/obj/structure/stone_tile/block{
-+ dir = 1
-+ },
-+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-+/area/lavaland/surface/outdoors)
-+"dk" = (
-+/obj/structure/stone_tile/block/cracked{
-+ dir = 1
-+ },
-+/obj/structure/stone_tile/block,
-+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-+/area/lavaland/surface/outdoors)
-+"dl" = (
-+/obj/structure/stone_tile/block/cracked{
-+ dir = 1
-+ },
-+/obj/structure/stone_tile/cracked,
-+/obj/structure/stone_tile/cracked{
-+ dir = 8
-+ },
-+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-+/area/lavaland/surface/outdoors)
-+"dm" = (
-+/obj/structure/stone_tile/block,
-+/obj/structure/stone_tile/block{
-+ dir = 1
-+ },
-+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-+/area/lavaland/surface/outdoors)
-+"dn" = (
-+/obj/structure/stone_tile/block{
-+ dir = 4
-+ },
-+/obj/structure/stone_tile/block/cracked{
-+ dir = 8
-+ },
-+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-+/area/lavaland/surface/outdoors)
-+"do" = (
-+/obj/structure/stone_tile{
-+ dir = 8
-+ },
-+/obj/structure/reagent_dispensers/watertank,
-+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-+/area/lavaland/surface/outdoors)
-+"dp" = (
-+/obj/item/weapon/pickaxe,
-+/obj/structure/stone_tile/cracked{
-+ dir = 1
-+ },
-+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-+/area/lavaland/surface/outdoors)
-+"dq" = (
-+/obj/item/stack/sheet/mineral/wood,
-+/obj/structure/stone_tile{
-+ dir = 4
-+ },
-+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-+/area/lavaland/surface/outdoors)
-+"dr" = (
-+/obj/structure/stone_tile/surrounding_tile/cracked,
-+/obj/structure/stone_tile/surrounding_tile/cracked{
-+ dir = 1
-+ },
-+/obj/structure/stone_tile/surrounding_tile{
-+ dir = 8
-+ },
-+/obj/structure/stone_tile/center,
-+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-+/area/lavaland/surface/outdoors)
-+"ds" = (
-+/obj/structure/stone_tile/block,
-+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-+/area/lavaland/surface/outdoors)
-+"dt" = (
-+/obj/structure/stone_tile/surrounding_tile/cracked{
-+ dir = 4
-+ },
-+/obj/structure/stone_tile/surrounding_tile/cracked,
-+/obj/structure/stone_tile/surrounding_tile{
-+ dir = 8
-+ },
-+/obj/structure/stone_tile/center,
-+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-+/area/lavaland/surface/outdoors)
-+"du" = (
-+/obj/structure/stone_tile/cracked{
-+ dir = 1
-+ },
-+/turf/closed/mineral/volcanic,
-+/area/lavaland/surface/outdoors)
-+"dv" = (
-+/obj/structure/stone_tile/cracked{
-+ dir = 8
-+ },
-+/obj/effect/mob_spawn/human/corpse/damaged,
-+/obj/effect/decal/cleanable/blood,
-+/obj/structure/stone_tile/cracked{
-+ dir = 1
-+ },
-+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-+/area/lavaland/surface/outdoors)
-+"dw" = (
-+/obj/item/weapon/reagent_containers/glass/bucket,
-+/obj/structure/stone_tile/block/cracked{
-+ dir = 4
-+ },
-+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-+/area/lavaland/surface/outdoors)
-+"dx" = (
-+/obj/item/device/flashlight/lantern,
-+/obj/structure/stone_tile/center,
-+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-+/area/lavaland/surface/outdoors)
-+"dy" = (
-+/obj/machinery/hydroponics/soil,
-+/obj/structure/stone_tile/block{
-+ dir = 8
-+ },
-+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-+/area/lavaland/surface/outdoors)
-+"dz" = (
-+/obj/structure/stone_tile/cracked{
-+ dir = 1
-+ },
-+/obj/structure/stone_tile/cracked,
-+/turf/closed/mineral/volcanic,
-+/area/lavaland/surface/outdoors)
-+"dA" = (
-+/obj/machinery/hydroponics/soil,
-+/obj/structure/stone_tile/surrounding_tile/cracked{
-+ dir = 1
-+ },
-+/obj/structure/stone_tile/surrounding_tile,
-+/obj/structure/stone_tile/surrounding_tile{
-+ dir = 4
-+ },
-+/obj/structure/stone_tile/center,
-+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-+/area/lavaland/surface/outdoors)
-+"dB" = (
-+/obj/structure/stone_tile/surrounding_tile/cracked{
-+ dir = 4
-+ },
-+/obj/structure/stone_tile/surrounding_tile/cracked{
-+ dir = 1
-+ },
-+/obj/structure/stone_tile/surrounding_tile/cracked{
-+ dir = 8
-+ },
-+/obj/structure/stone_tile/center/cracked,
-+/turf/closed/mineral/volcanic,
-+/area/lavaland/surface/outdoors)
-+"dC" = (
-+/obj/structure/stone_tile,
-+/turf/closed/mineral/volcanic,
-+/area/lavaland/surface/outdoors)
-+"dD" = (
-+/obj/structure/stone_tile/cracked{
-+ dir = 8
-+ },
-+/turf/closed/mineral/volcanic,
-+/area/lavaland/surface/outdoors)
-+"dE" = (
-+/obj/structure/stone_tile,
-+/obj/structure/stone_tile/cracked{
-+ dir = 8
-+ },
-+/turf/closed/mineral/volcanic,
-+/area/lavaland/surface/outdoors)
-+"dF" = (
-+/obj/structure/stone_tile,
-+/turf/closed/mineral/volcanic,
-+/area/lavaland/surface/outdoors)
-
- (1,1,1) = {"
- aa
-@@ -1526,9 +1840,9 @@ bt
- ak
- ak
- bU
--bM
-+cg
- ck
--cb
-+bS
- cv
- cA
- cE
diff --git a/_maps/RandomRuins/LavaRuins/lavaland_surface_syndicate_base1.dmm b/_maps/RandomRuins/LavaRuins/lavaland_surface_syndicate_base1.dmm
index 61e158adca..be96830ca4 100644
--- a/_maps/RandomRuins/LavaRuins/lavaland_surface_syndicate_base1.dmm
+++ b/_maps/RandomRuins/LavaRuins/lavaland_surface_syndicate_base1.dmm
@@ -70,7 +70,6 @@
"ak" = (
/obj/structure/dresser,
/obj/structure/mirror{
- desc = "Mirror mirror on the wall, who is the most robust of them all?";
pixel_x = -26
},
/turf/open/floor/plasteel/vault,
@@ -298,7 +297,6 @@
"aP" = (
/obj/structure/dresser,
/obj/structure/mirror{
- desc = "Mirror mirror on the wall, who is the most robust of them all?";
pixel_x = 26
},
/turf/open/floor/plasteel/vault{
@@ -312,9 +310,7 @@
},
/area/ruin/powered/syndicate_lava_base)
"aR" = (
-/obj/structure/closet/emcloset{
- anchored = 1
- },
+/obj/structure/closet/emcloset/anchored,
/obj/item/weapon/tank/internals/emergency_oxygen/engi,
/obj/item/device/flashlight/seclite,
/obj/item/clothing/mask/gas,
@@ -372,7 +368,6 @@
/area/ruin/powered/syndicate_lava_base)
"aX" = (
/obj/structure/mirror{
- desc = "Mirror mirror on the wall, who is the most robust of them all?";
pixel_x = 28
},
/obj/structure/sink{
@@ -394,9 +389,7 @@
},
/area/ruin/powered/syndicate_lava_base)
"ba" = (
-/obj/structure/closet/emcloset{
- anchored = 1
- },
+/obj/structure/closet/emcloset/anchored,
/obj/item/weapon/tank/internals/emergency_oxygen/engi,
/obj/item/device/flashlight/seclite,
/obj/item/clothing/mask/gas,
@@ -555,8 +548,7 @@
/obj/structure/table/reinforced,
/obj/item/device/healthanalyzer,
/obj/item/stack/sheet/mineral/plasma{
- amount = 5;
- layer = 3.1
+ amount = 5
},
/turf/open/floor/plasteel/podhatch,
/area/ruin/powered/syndicate_lava_base)
diff --git a/_maps/RandomRuins/SpaceRuins/TheDerelict.dmm b/_maps/RandomRuins/SpaceRuins/TheDerelict.dmm
index 768dd08e3f..95f886314c 100644
--- a/_maps/RandomRuins/SpaceRuins/TheDerelict.dmm
+++ b/_maps/RandomRuins/SpaceRuins/TheDerelict.dmm
@@ -1506,8 +1506,7 @@
/area/derelict/singularity_engine)
"en" = (
/obj/machinery/power/emitter{
- dir = 1;
- icon_state = "emitter"
+ dir = 1
},
/turf/open/floor/plating/airless,
/area/derelict/singularity_engine)
@@ -3739,11 +3738,11 @@
"kS" = (
/obj/machinery/door/window,
/turf/open/floor/plasteel/airless,
-/area/hallway/primary/port)
+/area/derelict/hallway/primary/port)
"kT" = (
/obj/machinery/vending/hydroseeds,
/turf/open/floor/plasteel/airless,
-/area/hallway/primary/port)
+/area/derelict/hallway/primary/port)
"kU" = (
/obj/item/weapon/cigbutt,
/turf/template_noop,
diff --git a/_maps/RandomRuins/SpaceRuins/deepstorage.dmm b/_maps/RandomRuins/SpaceRuins/deepstorage.dmm
index ce223b03b8..46c2dee271 100644
--- a/_maps/RandomRuins/SpaceRuins/deepstorage.dmm
+++ b/_maps/RandomRuins/SpaceRuins/deepstorage.dmm
@@ -1143,6 +1143,9 @@
/obj/structure/sign/barsign{
pixel_y = 32
},
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 4
+ },
/turf/open/floor/plasteel/bar{
baseturf = /turf/open/floor/plating/asteroid/airless
},
diff --git a/_maps/RandomRuins/SpaceRuins/oldstation.dmm b/_maps/RandomRuins/SpaceRuins/oldstation.dmm
index 0f6ffcde39..02cba3e76d 100644
--- a/_maps/RandomRuins/SpaceRuins/oldstation.dmm
+++ b/_maps/RandomRuins/SpaceRuins/oldstation.dmm
@@ -99,6 +99,7 @@
"ap" = (
/obj/effect/decal/cleanable/oil,
/obj/effect/decal/cleanable/robot_debris,
+/mob/living/simple_animal/hostile/hivebot,
/turf/open/floor/plasteel/black,
/area/ruin/ancientstation/hivebot)
"aq" = (
@@ -169,11 +170,11 @@
/area/template_noop)
"aB" = (
/obj/effect/decal/cleanable/robot_debris,
-/mob/living/simple_animal/hostile/hivebot/rapid,
+/mob/living/simple_animal/hostile/hivebot,
/turf/open/floor/plasteel/black,
/area/ruin/ancientstation/hivebot)
"aC" = (
-/mob/living/simple_animal/hostile/hivebot/rapid,
+/mob/living/simple_animal/hostile/hivebot/range,
/turf/open/floor/plasteel/black,
/area/ruin/ancientstation/hivebot)
"aD" = (
@@ -691,7 +692,7 @@
/area/ruin/ancientstation/deltacorridor)
"cc" = (
/obj/effect/decal/cleanable/dirt,
-/mob/living/simple_animal/hostile/hivebot/strong,
+/mob/living/simple_animal/hostile/hivebot,
/turf/open/floor/plating,
/area/ruin/ancientstation/deltacorridor)
"cd" = (
@@ -878,6 +879,7 @@
},
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
+/mob/living/simple_animal/hostile/hivebot/strong,
/turf/open/floor/plasteel/floorgrime,
/area/ruin/ancientstation/deltacorridor)
"cA" = (
@@ -908,7 +910,7 @@
icon_state = "4-8"
},
/obj/effect/decal/cleanable/dirt,
-/mob/living/simple_animal/hostile/hivebot/rapid,
+/mob/living/simple_animal/hostile/hivebot/range,
/turf/open/floor/plasteel/floorgrime,
/area/ruin/ancientstation/deltacorridor)
"cD" = (
@@ -1079,6 +1081,7 @@
},
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
+/mob/living/simple_animal/hostile/hivebot,
/turf/open/floor/plasteel/floorgrime,
/area/ruin/ancientstation/deltacorridor)
"cZ" = (
@@ -1087,6 +1090,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 6
},
+/mob/living/simple_animal/hostile/hivebot,
/turf/open/floor/plasteel/floorgrime,
/area/ruin/ancientstation/deltacorridor)
"da" = (
@@ -1119,7 +1123,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/mob/living/simple_animal/hostile/hivebot/rapid,
+/mob/living/simple_animal/hostile/hivebot/range,
/turf/open/floor/plasteel/floorgrime,
/area/ruin/ancientstation/deltacorridor)
"de" = (
@@ -1135,6 +1139,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 10
},
+/mob/living/simple_animal/hostile/hivebot/strong,
/turf/open/floor/plasteel/floorgrime,
/area/ruin/ancientstation/deltacorridor)
"dg" = (
@@ -1532,6 +1537,7 @@
req_access = "0";
req_one_access = "0"
},
+/mob/living/simple_animal/hostile/hivebot,
/turf/open/floor/plasteel/floorgrime,
/area/ruin/ancientstation/deltacorridor)
"ef" = (
@@ -1868,6 +1874,7 @@
icon_state = "1-2"
},
/obj/effect/decal/cleanable/dirt,
+/mob/living/simple_animal/hostile/hivebot,
/turf/open/floor/plasteel/floorgrime,
/area/ruin/ancientstation/deltacorridor)
"eX" = (
@@ -2234,7 +2241,7 @@
icon_state = "1-2"
},
/obj/effect/decal/cleanable/dirt,
-/mob/living/simple_animal/hostile/hivebot/strong,
+/mob/living/simple_animal/hostile/hivebot,
/turf/open/floor/plasteel/floorgrime,
/area/ruin/ancientstation/deltacorridor)
"fS" = (
@@ -4115,7 +4122,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/mob/living/simple_animal/hostile/hivebot/rapid,
+/mob/living/simple_animal/hostile/hivebot,
/turf/open/floor/plasteel/floorgrime,
/area/ruin/ancientstation/deltacorridor)
"ju" = (
@@ -4139,6 +4146,7 @@
"jw" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,
+/mob/living/simple_animal/hostile/hivebot,
/turf/open/floor/plasteel/floorgrime,
/area/ruin/ancientstation/deltacorridor)
"jx" = (
@@ -5152,31 +5160,6 @@
icon_state = "floor"
},
/area/template_noop)
-"me" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/mob/living/simple_animal/hostile/hivebot/rapid,
-/turf/open/floor/plasteel/floorgrime,
-/area/ruin/ancientstation/deltacorridor)
-"mf" = (
-/obj/effect/decal/cleanable/dirt,
-/mob/living/simple_animal/hostile/hivebot/rapid,
-/turf/open/floor/plasteel/floorgrime,
-/area/ruin/ancientstation/deltacorridor)
-"mg" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/mob/living/simple_animal/hostile/hivebot/rapid,
-/turf/open/floor/plasteel/floorgrime,
-/area/ruin/ancientstation/deltacorridor)
-"mh" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/mob/living/simple_animal/hostile/hivebot/strong,
-/turf/open/floor/plasteel/floorgrime,
-/area/ruin/ancientstation/deltacorridor)
(1,1,1) = {"
aa
@@ -8275,7 +8258,7 @@ ey
hC
ey
ey
-dW
+iC
dw
ey
ey
@@ -8317,17 +8300,17 @@ bD
cA
cZ
dx
-me
-dX
-hD
dX
dX
+eX
+dX
+fS
gL
dX
hD
-mg
dX
dX
+fS
dx
dX
dB
@@ -8408,18 +8391,18 @@ aa
ac
ad
ae
-ah
-aD
+af
+af
ag
-aB
-aE
-ah
+ai
+ao
+af
bo
ad
ac
bD
-cD
-dc
+cC
+db
dy
dY
ez
@@ -8434,8 +8417,8 @@ in
iD
iP
dy
-dc
-cD
+jt
+jK
jV
kd
kt
@@ -8459,14 +8442,14 @@ aa
aa
ac
ad
-ah
-aq
-ah
-ah
-ah
-ah
+af
+ao
+af
ah
ah
+af
+af
+af
ad
bE
bD
@@ -8522,7 +8505,7 @@ ad
ad
bG
bF
-cD
+cC
dd
dy
dZ
@@ -8563,14 +8546,14 @@ aa
ac
ac
ad
-ah
+af
ap
+af
+aq
ah
-aq
-aD
ag
-aq
-ai
+be
+aB
aN
bG
lx
@@ -8590,7 +8573,7 @@ ip
iF
eb
dy
-dc
+db
cC
jV
kg
@@ -8615,24 +8598,24 @@ aa
ac
ac
ad
-ah
-ah
+af
+af
aB
ah
ai
ah
-ah
-ah
+aC
+af
aN
bG
lx
-ca
-dc
+cF
+db
dz
eb
eb
eb
-eb
+fw
eb
gO
eb
@@ -8678,7 +8661,7 @@ ad
ad
bG
bF
-dg
+ca
dc
dA
eb
@@ -8695,7 +8678,7 @@ lT
hi
jd
jw
-dX
+fS
jX
ki
ki
@@ -8720,20 +8703,20 @@ ac
ac
ad
ag
-ah
-ah
-ah
-ah
-ah
-ah
+af
+af
+af
+af
+af
+af
ah
ad
bE
bD
-ca
-dc
+cF
+db
dy
-dY
+ec
dZ
dZ
eC
@@ -8746,7 +8729,7 @@ is
dy
dy
dy
-mh
+dc
ca
jV
kj
@@ -8772,12 +8755,12 @@ ac
ac
ad
ah
-ah
-ah
-ai
-ah
+af
+af
+aB
+af
ag
-ah
+af
ah
ad
ac
@@ -8798,8 +8781,8 @@ eb
lM
iQ
dy
-jv
-ca
+jx
+ed
jV
kk
kx
@@ -8824,12 +8807,12 @@ ac
ac
ad
ai
+af
ah
-aD
ag
+aC
ah
-aD
-ah
+af
aq
ad
ac
@@ -8877,17 +8860,17 @@ ac
ad
ah
ag
-ah
-ah
aC
-ah
+aC
+aC
+aC
ag
ah
ad
ac
bD
-ca
-dc
+cF
+db
dy
ea
eF
@@ -8903,7 +8886,7 @@ iG
iS
dy
jt
-ca
+ed
jV
kl
kz
@@ -8930,8 +8913,8 @@ ad
ah
ai
ah
-ah
-ah
+aD
+aD
ah
ai
ah
@@ -8981,10 +8964,10 @@ ac
ad
ag
aq
+aD
ah
ah
-ah
-ah
+aD
aq
ah
ad
@@ -8993,17 +8976,17 @@ bD
ca
df
dB
+ed
ca
+eY
ca
+ed
+ca
+ed
hI
-mf
-ca
-ca
-dg
-hI
-ca
-ca
+ed
ca
+ed
ca
je
jy
@@ -9043,17 +9026,17 @@ ad
ac
bD
cH
-ca
+dg
dC
ee
ca
-hI
+eY
cX
+ed
ca
-ca
-ca
+ed
hJ
-ca
+ed
ca
ee
cX
@@ -9085,10 +9068,10 @@ ac
ad
aj
ai
-aq
-ah
-ah
-ah
+aE
+aD
+aD
+aD
ah
bp
ad
@@ -9137,17 +9120,17 @@ ac
ac
ad
ag
-ah
-ah
-ah
-ah
+aD
+aD
+aD
+aD
aq
ad
ac
bD
-dh
cc
-dh
+cc
+cc
bD
aa
bD
@@ -9161,9 +9144,9 @@ hK
bD
aa
bD
-dh
cc
-dh
+cc
+cc
bD
aa
aa
diff --git a/_maps/RandomZLevels/challenge.dmm b/_maps/RandomZLevels/challenge.dmm
index 71edc1e99e..8ab66089fa 100644
--- a/_maps/RandomZLevels/challenge.dmm
+++ b/_maps/RandomZLevels/challenge.dmm
@@ -160,17 +160,8 @@
/turf/open/floor/plasteel/airless,
/area/awaymission/challenge/main)
"aI" = (
-/obj/machinery/power/emitter{
- active = 1;
- active_power_usage = 0;
- anchored = 1;
- dir = 2;
- idle_power_usage = 0;
- locked = 1;
- name = "Energy Cannon";
- req_access_txt = "100";
- state = 2;
- use_power = 0
+/obj/machinery/power/emitter/ctf{
+ dir = 2
},
/turf/open/floor/plating/airless,
/area/awaymission/challenge/main)
@@ -200,17 +191,8 @@
/area/awaymission/challenge/main)
"aO" = (
/obj/structure/window/reinforced,
-/obj/machinery/power/emitter{
- active = 1;
- active_power_usage = 0;
- anchored = 1;
- dir = 2;
- idle_power_usage = 0;
- locked = 1;
- name = "Energy Cannon";
- req_access_txt = "100";
- state = 2;
- use_power = 0
+/obj/machinery/power/emitter/ctf{
+ dir = 2
},
/turf/open/floor/plating/airless,
/area/awaymission/challenge/main)
@@ -228,17 +210,8 @@
/turf/open/floor/plasteel,
/area/awaymission/challenge/main)
"aS" = (
-/obj/machinery/power/emitter{
- active = 1;
- active_power_usage = 0;
- anchored = 1;
- dir = 4;
- idle_power_usage = 0;
- locked = 1;
- name = "Energy Cannon";
- req_access_txt = "100";
- state = 2;
- use_power = 0
+/obj/machinery/power/emitter/ctf{
+ dir = 4
},
/turf/open/floor/plating/airless,
/area/awaymission/challenge/main)
@@ -261,17 +234,8 @@
/turf/open/floor/plating/airless,
/area/awaymission/challenge/main)
"aW" = (
-/obj/machinery/power/emitter{
- active = 1;
- active_power_usage = 0;
- anchored = 1;
- dir = 8;
- idle_power_usage = 0;
- locked = 1;
- name = "Energy Cannon";
- req_access_txt = "100";
- state = 2;
- use_power = 0
+/obj/machinery/power/emitter/ctf{
+ dir = 8
},
/turf/open/floor/plating/airless,
/area/awaymission/challenge/main)
@@ -341,17 +305,8 @@
/turf/open/floor/plating,
/area/awaymission/challenge/main)
"bf" = (
-/obj/machinery/power/emitter{
- active = 1;
- active_power_usage = 0;
- anchored = 1;
- dir = 1;
- idle_power_usage = 0;
- locked = 1;
- name = "Energy Cannon";
- req_access_txt = "100";
- state = 2;
- use_power = 0
+/obj/machinery/power/emitter/ctf{
+ dir = 1
},
/obj/structure/window/reinforced{
dir = 1
@@ -377,17 +332,8 @@
/turf/open/floor/plasteel,
/area/awaymission/challenge/main)
"bi" = (
-/obj/machinery/power/emitter{
- active = 1;
- active_power_usage = 0;
- anchored = 1;
- dir = 1;
- idle_power_usage = 0;
- locked = 1;
- name = "Energy Cannon";
- req_access_txt = "100";
- state = 2;
- use_power = 0
+/obj/machinery/power/emitter/ctf{
+ dir = 1
},
/obj/structure/window/reinforced{
dir = 8
@@ -402,17 +348,8 @@
/turf/open/floor/plating,
/area/awaymission/challenge/main)
"bk" = (
-/obj/machinery/power/emitter{
- active = 1;
- active_power_usage = 0;
- anchored = 1;
- dir = 1;
- idle_power_usage = 0;
- locked = 1;
- name = "Energy Cannon";
- req_access_txt = "100";
- state = 2;
- use_power = 0
+/obj/machinery/power/emitter/ctf{
+ dir = 1
},
/obj/machinery/light,
/turf/open/floor/plating,
@@ -421,17 +358,8 @@
/obj/structure/window/reinforced{
dir = 4
},
-/obj/machinery/power/emitter{
- active = 1;
- active_power_usage = 0;
- anchored = 1;
- dir = 1;
- idle_power_usage = 0;
- locked = 1;
- name = "Energy Cannon";
- req_access_txt = "100";
- state = 2;
- use_power = 0
+/obj/machinery/power/emitter/ctf{
+ dir = 1
},
/obj/effect/turf_decal/stripes/line{
dir = 4
@@ -446,17 +374,8 @@
/turf/closed/wall/mineral/plastitanium,
/area/awaymission/challenge/main)
"bo" = (
-/obj/machinery/power/emitter{
- active = 1;
- active_power_usage = 0;
- anchored = 1;
- dir = 2;
- idle_power_usage = 0;
- locked = 1;
- name = "Energy Cannon";
- req_access_txt = "100";
- state = 2;
- use_power = 0
+/obj/machinery/power/emitter/ctf{
+ dir = 2
},
/obj/structure/window/reinforced{
dir = 8
@@ -528,17 +447,8 @@
/turf/open/floor/plating,
/area/awaymission/challenge/main)
"bx" = (
-/obj/machinery/power/emitter{
- active = 1;
- active_power_usage = 0;
- anchored = 1;
- dir = 8;
- idle_power_usage = 0;
- locked = 1;
- name = "Energy Cannon";
- req_access_txt = "100";
- state = 2;
- use_power = 0
+/obj/machinery/power/emitter/ctf{
+ dir = 8
},
/obj/structure/window/reinforced{
dir = 8
@@ -578,17 +488,8 @@
/obj/structure/window/reinforced{
dir = 8
},
-/obj/machinery/power/emitter{
- active = 1;
- active_power_usage = 0;
- anchored = 1;
- dir = 8;
- idle_power_usage = 0;
- locked = 1;
- name = "Energy Cannon";
- req_access_txt = "100";
- state = 2;
- use_power = 0
+/obj/machinery/power/emitter/ctf{
+ dir = 8
},
/turf/open/floor/plating/airless,
/area/awaymission/challenge/main)
@@ -596,17 +497,8 @@
/obj/structure/window/reinforced{
dir = 4
},
-/obj/machinery/power/emitter{
- active = 1;
- active_power_usage = 0;
- anchored = 1;
- dir = 4;
- idle_power_usage = 0;
- locked = 1;
- name = "Energy Cannon";
- req_access_txt = "100";
- state = 2;
- use_power = 0
+/obj/machinery/power/emitter/ctf{
+ dir = 4
},
/turf/open/floor/plating/airless,
/area/awaymission/challenge/main)
@@ -654,17 +546,8 @@
/turf/open/floor/plating/airless,
/area/awaymission/challenge/main)
"bL" = (
-/obj/machinery/power/emitter{
- active = 1;
- active_power_usage = 0;
- anchored = 1;
- dir = 1;
- idle_power_usage = 0;
- locked = 1;
- name = "Energy Cannon";
- req_access_txt = "100";
- state = 2;
- use_power = 0
+/obj/machinery/power/emitter/ctf{
+ dir = 1
},
/obj/structure/window/reinforced{
dir = 1
@@ -672,32 +555,14 @@
/turf/open/floor/plating/airless,
/area/awaymission/challenge/main)
"bM" = (
-/obj/machinery/power/emitter{
- active = 1;
- active_power_usage = 0;
- anchored = 1;
- dir = 1;
- idle_power_usage = 0;
- locked = 1;
- name = "Energy Cannon";
- req_access_txt = "100";
- state = 2;
- use_power = 0
+/obj/machinery/power/emitter/ctf{
+ dir = 1
},
/turf/open/floor/plating/airless,
/area/awaymission/challenge/main)
"bN" = (
-/obj/machinery/power/emitter{
- active = 1;
- active_power_usage = 0;
- anchored = 1;
- dir = 1;
- idle_power_usage = 0;
- locked = 1;
- name = "Energy Cannon";
- req_access_txt = "100";
- state = 2;
- use_power = 0
+/obj/machinery/power/emitter/ctf{
+ dir = 1
},
/obj/structure/window/reinforced{
dir = 4
@@ -705,17 +570,8 @@
/turf/open/floor/plating/airless,
/area/awaymission/challenge/main)
"bO" = (
-/obj/machinery/power/emitter{
- active = 1;
- active_power_usage = 0;
- anchored = 1;
- dir = 1;
- idle_power_usage = 0;
- locked = 1;
- name = "Energy Cannon";
- req_access_txt = "100";
- state = 2;
- use_power = 0
+/obj/machinery/power/emitter/ctf{
+ dir = 1
},
/obj/structure/window/reinforced{
dir = 8
diff --git a/_maps/RandomZLevels/moonoutpost19.dmm b/_maps/RandomZLevels/moonoutpost19.dmm
index f387d2dbc3..71b778c7d6 100644
--- a/_maps/RandomZLevels/moonoutpost19.dmm
+++ b/_maps/RandomZLevels/moonoutpost19.dmm
@@ -3804,9 +3804,7 @@
})
"fg" = (
/obj/structure/table,
-/obj/item/stack/sheet/mineral/plasma{
- layer = 2.9
- },
+/obj/item/stack/sheet/mineral/plasma,
/obj/machinery/light/small{
active_power_usage = 0;
dir = 1;
diff --git a/_maps/RandomZLevels/snowdin.dmm b/_maps/RandomZLevels/snowdin.dmm
index 2391a827cb..9eb3b2e55b 100644
--- a/_maps/RandomZLevels/snowdin.dmm
+++ b/_maps/RandomZLevels/snowdin.dmm
@@ -2406,11 +2406,7 @@
},
/area/awaymission/snowdin/post)
"gA" = (
-/obj/structure/closet/secure_closet{
- anchored = 1;
- name = "Contraband Locker";
- req_access_txt = "3"
- },
+/obj/structure/closet/secure_closet/contraband/armory,
/obj/item/weapon/gun/ballistic/automatic/speargun,
/obj/item/weapon/twohanded/spear,
/obj/item/weapon/twohanded/spear,
diff --git a/_maps/map_files/BoxStation/BoxStation.dmm b/_maps/map_files/BoxStation/BoxStation.dmm
index fa2c78e010..bf4263ffe6 100644
--- a/_maps/map_files/BoxStation/BoxStation.dmm
+++ b/_maps/map_files/BoxStation/BoxStation.dmm
@@ -920,11 +920,7 @@
/turf/open/floor/carpet,
/area/crew_quarters/heads/hos)
"acv" = (
-/obj/structure/closet/secure_closet{
- anchored = 1;
- name = "Contraband Locker";
- req_access_txt = "3"
- },
+/obj/structure/closet/secure_closet/contraband/armory,
/turf/open/floor/plasteel/black,
/area/ai_monitored/security/armory)
"acw" = (
@@ -2587,9 +2583,7 @@
/turf/open/floor/plasteel/red/side,
/area/security/prison)
"afH" = (
-/obj/structure/closet/secure_closet/brig{
- anchored = 1
- },
+/obj/structure/closet/secure_closet/brig,
/turf/open/floor/plasteel/red/side,
/area/security/prison)
"afI" = (
@@ -7628,9 +7622,7 @@
/turf/open/floor/plating,
/area/maintenance/port/fore)
"aqN" = (
-/obj/structure/closet/secure_closet/miner{
- locked = 0
- },
+/obj/structure/closet/secure_closet/miner/unlocked,
/obj/effect/turf_decal/stripes/line{
dir = 5
},
@@ -7714,8 +7706,6 @@
/area/security/detectives_office)
"aqX" = (
/obj/machinery/airalarm{
- frequency = 1439;
- locked = 0;
pixel_y = 23
},
/obj/structure/chair,
@@ -8725,8 +8715,7 @@
amount = 5
},
/obj/item/stack/sheet/mineral/plasma{
- amount = 10;
- layer = 2.9
+ amount = 10
},
/turf/open/floor/plasteel/floorgrime,
/area/maintenance/department/electrical)
@@ -9523,10 +9512,6 @@
/area/crew_quarters/fitness)
"avB" = (
/obj/structure/grille,
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
- },
/obj/structure/window/reinforced/fulltile,
/obj/structure/cable{
d2 = 8;
@@ -13159,6 +13144,9 @@
/area/crew_quarters/toilet)
"aDO" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
+/obj/machinery/airalarm{
+ pixel_y = 23
+ },
/turf/open/floor/plasteel/freezer,
/area/crew_quarters/toilet)
"aDP" = (
@@ -20035,7 +20023,6 @@
/area/security/vacantoffice)
"aUP" = (
/obj/machinery/airalarm{
- frequency = 1439;
pixel_y = 23
},
/turf/open/floor/wood,
@@ -22947,7 +22934,7 @@
"bbI" = (
/obj/machinery/power/apc{
dir = 8;
- name = "Vacant Office A APC";
+ name = "Vacant Office APC";
pixel_x = -24
},
/obj/structure/cable{
@@ -22955,7 +22942,7 @@
d2 = 4
},
/turf/open/floor/plating,
-/area/security/vacantoffice/a)
+/area/security/vacantoffice)
"bbJ" = (
/obj/structure/disposalpipe/segment,
/obj/structure/cable{
@@ -23402,13 +23389,9 @@
/turf/closed/wall,
/area/quartermaster/storage)
"bcU" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/wood{
- icon_state = "wood-broken6"
- },
-/area/maintenance/bar)
+/obj/item/stack/tile/plasteel,
+/turf/open/space,
+/area/space/nearstation)
"bcV" = (
/obj/machinery/airalarm{
dir = 8;
@@ -23834,8 +23817,9 @@
/turf/open/floor/plasteel/floorgrime,
/area/quartermaster/storage)
"bdV" = (
-/turf/open/floor/wood,
-/area/maintenance/bar)
+/obj/item/stack/sheet/metal,
+/turf/open/floor/plating/airless,
+/area/space/nearstation)
"bdW" = (
/obj/item/clothing/gloves/color/rainbow,
/obj/item/clothing/head/soft/rainbow,
@@ -24935,7 +24919,6 @@
},
/obj/machinery/airalarm{
dir = 4;
- locked = 0;
pixel_x = -23
},
/turf/open/floor/plasteel,
@@ -25653,12 +25636,8 @@
"bio" = (
/obj/structure/table/glass,
/obj/item/weapon/reagent_containers/glass/bottle/epinephrine,
-/obj/item/stack/sheet/mineral/plasma{
- layer = 2.9
- },
-/obj/item/stack/sheet/mineral/plasma{
- layer = 2.9
- },
+/obj/item/stack/sheet/mineral/plasma,
+/obj/item/stack/sheet/mineral/plasma,
/obj/machinery/requests_console{
department = "Chemistry";
departmentType = 2;
@@ -26971,7 +26950,7 @@
icon_state = "1-2"
},
/turf/open/floor/plating,
-/area/crew_quarters/heads/captain)
+/area/maintenance/central/secondary)
"ble" = (
/obj/structure/disposalpipe/segment,
/obj/structure/extinguisher_cabinet{
@@ -27176,6 +27155,10 @@
/obj/machinery/atmospherics/components/unary/vent_pump/on{
dir = 4
},
+/obj/machinery/airalarm{
+ dir = 1;
+ pixel_y = -22
+ },
/turf/open/floor/plasteel,
/area/science/robotics/mechbay)
"bly" = (
@@ -27665,7 +27648,7 @@
icon_state = "1-2"
},
/turf/open/floor/plating,
-/area/crew_quarters/heads/captain)
+/area/maintenance/central/secondary)
"bmE" = (
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel,
@@ -28247,11 +28230,7 @@
/area/crew_quarters/heads/hop)
"bnQ" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/bed/dogbed{
- anchored = 1;
- desc = "Ian's bed! Looks comfy.";
- name = "Ian's bed"
- },
+/obj/structure/bed/dogbed/ian,
/mob/living/simple_animal/pet/dog/corgi/Ian{
dir = 8
},
@@ -28463,7 +28442,6 @@
/area/security/checkpoint/medical)
"bol" = (
/obj/machinery/airalarm{
- frequency = 1439;
pixel_y = 23
},
/obj/structure/disposalpipe/segment{
@@ -29133,7 +29111,6 @@
dir = 1
},
/obj/machinery/airalarm{
- frequency = 1439;
pixel_y = 23
},
/turf/open/floor/plasteel/white,
@@ -29574,7 +29551,7 @@
icon_state = "1-2"
},
/turf/open/floor/plating,
-/area/teleporter)
+/area/maintenance/central/secondary)
"bqL" = (
/obj/machinery/door/firedoor,
/obj/structure/disposalpipe/segment,
@@ -30015,7 +29992,6 @@
/obj/item/weapon/folder/white,
/obj/item/weapon/folder/white,
/obj/machinery/airalarm{
- frequency = 1439;
pixel_y = 23
},
/obj/item/device/radio/off,
@@ -30024,9 +30000,7 @@
},
/area/science/explab)
"brD" = (
-/obj/structure/closet/emcloset{
- pixel_x = -2
- },
+/obj/structure/closet/emcloset,
/turf/open/floor/plasteel/white/corner{
dir = 8
},
@@ -30363,7 +30337,6 @@
c_tag = "Teleporter"
},
/obj/machinery/airalarm{
- frequency = 1439;
pixel_y = 23
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -33495,7 +33468,6 @@
"bza" = (
/obj/structure/chair,
/obj/machinery/airalarm{
- frequency = 1439;
pixel_y = 23
},
/turf/open/floor/plasteel/black,
@@ -34698,8 +34670,6 @@
"bBF" = (
/obj/machinery/portable_atmospherics/scrubber,
/obj/machinery/airalarm{
- frequency = 1439;
- locked = 0;
pixel_y = 23
},
/obj/item/weapon/storage/firstaid/toxin,
@@ -34767,7 +34737,6 @@
"bBO" = (
/obj/machinery/computer/med_data,
/obj/machinery/airalarm{
- frequency = 1439;
pixel_y = 23
},
/turf/open/floor/plasteel/barber,
@@ -35527,7 +35496,6 @@
/area/storage/tech)
"bDz" = (
/obj/machinery/airalarm{
- frequency = 1439;
pixel_y = 23
},
/turf/open/floor/plating,
@@ -35604,7 +35572,6 @@
"bDH" = (
/obj/structure/closet/l3closet/janitor,
/obj/machinery/airalarm{
- frequency = 1439;
pixel_y = 23
},
/turf/open/floor/plasteel,
@@ -39315,9 +39282,7 @@
network = list("Toxins");
use_power = 0
},
-/obj/item/target/alien{
- anchored = 1
- },
+/obj/item/target/alien/anchored,
/obj/effect/turf_decal/stripes/line{
dir = 4
},
@@ -39711,7 +39676,6 @@
/obj/structure/table,
/obj/machinery/reagentgrinder,
/obj/machinery/airalarm{
- frequency = 1439;
pixel_y = 23
},
/turf/open/floor/plasteel/white,
@@ -40150,9 +40114,7 @@
/obj/item/stack/sheet/metal{
amount = 50
},
-/obj/item/stack/sheet/mineral/plasma{
- layer = 2.9
- },
+/obj/item/stack/sheet/mineral/plasma,
/obj/effect/turf_decal/stripes/line{
dir = 1
},
@@ -40323,7 +40285,6 @@
/area/quartermaster/office)
"bNL" = (
/obj/machinery/airalarm{
- frequency = 1439;
pixel_y = 23
},
/turf/open/floor/plating,
@@ -40536,7 +40497,6 @@
dir = 1
},
/obj/machinery/airalarm{
- frequency = 1439;
pixel_y = 23
},
/turf/open/floor/plasteel/white,
@@ -40596,7 +40556,6 @@
},
/obj/machinery/airalarm{
dir = 4;
- locked = 0;
pixel_x = -23
},
/turf/open/floor/plasteel,
@@ -41161,15 +41120,9 @@
/area/science/misc_lab)
"bPG" = (
/obj/structure/table,
-/obj/item/stack/sheet/mineral/plasma{
- layer = 2.9
- },
-/obj/item/stack/sheet/mineral/plasma{
- layer = 2.9
- },
-/obj/item/stack/sheet/mineral/plasma{
- layer = 2.9
- },
+/obj/item/stack/sheet/mineral/plasma,
+/obj/item/stack/sheet/mineral/plasma,
+/obj/item/stack/sheet/mineral/plasma,
/obj/machinery/light,
/obj/item/device/radio/intercom{
name = "Station Intercom (General)";
@@ -41264,13 +41217,12 @@
/turf/open/floor/plating,
/area/maintenance/port/aft)
"bPV" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
- icon_state = "space";
- layer = 4;
- name = "EXTERNAL AIRLOCK";
- pixel_x = 0;
- pixel_y = 32
+/obj/machinery/door/airlock/maintenance{
+ name = "Maint Bar Access";
+ req_access_txt = "12"
+ },
+/obj/structure/barricade/wooden{
+ name = "wooden barricade (CLOSED)"
},
/turf/open/floor/plating,
/area/maintenance/port/aft)
@@ -41279,24 +41231,13 @@
/turf/open/floor/plating,
/area/maintenance/port/aft)
"bPX" = (
-/obj/machinery/door/airlock/maintenance{
- req_access_txt = "12"
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
+/obj/structure/closet/emcloset,
+/obj/effect/decal/cleanable/cobweb,
/turf/open/floor/plating,
/area/maintenance/port/aft)
"bPY" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
+/obj/structure/girder,
+/obj/structure/grille/broken,
/turf/open/floor/plating,
/area/maintenance/port/aft)
"bPZ" = (
@@ -41540,12 +41481,8 @@
/obj/machinery/newscaster{
pixel_x = -30
},
-/obj/item/stack/sheet/mineral/plasma{
- layer = 2.9
- },
-/obj/item/stack/sheet/mineral/plasma{
- layer = 2.9
- },
+/obj/item/stack/sheet/mineral/plasma,
+/obj/item/stack/sheet/mineral/plasma,
/turf/open/floor/plasteel/white,
/area/medical/virology)
"bQF" = (
@@ -42267,23 +42204,25 @@
/turf/open/floor/wood,
/area/maintenance/port/aft)
"bSo" = (
-/obj/structure/rack{
- dir = 8;
- layer = 2.9
- },
-/obj/effect/spawner/lootdrop/maintenance{
- lootcount = 2;
- name = "2maintenance loot spawner"
- },
-/turf/open/floor/plating,
+/obj/structure/chair/stool,
+/turf/open/floor/wood,
/area/maintenance/port/aft)
"bSp" = (
/obj/structure/grille/broken,
/turf/open/floor/plating,
/area/maintenance/port/aft)
"bSq" = (
-/turf/closed/wall,
-/area/maintenance/bar)
+/obj/structure/rack{
+ dir = 8;
+ layer = 2.9
+ },
+/obj/item/weapon/tank/internals/emergency_oxygen,
+/obj/item/weapon/tank/internals/emergency_oxygen,
+/obj/item/clothing/mask/breath,
+/obj/item/clothing/mask/breath,
+/obj/effect/decal/cleanable/cobweb,
+/turf/open/floor/plating,
+/area/maintenance/port/aft)
"bSr" = (
/obj/structure/rack,
/obj/effect/spawner/lootdrop/maintenance,
@@ -42304,9 +42243,11 @@
/turf/open/floor/plasteel,
/area/tcommsat/computer)
"bSu" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/wood,
-/area/maintenance/bar)
+/obj/item/stack/cable_coil{
+ amount = 5
+ },
+/turf/open/floor/plating/airless,
+/area/space/nearstation)
"bSv" = (
/obj/machinery/camera{
c_tag = "Construction Area";
@@ -42869,7 +42810,7 @@
dir = 6
},
/turf/closed/wall,
-/area/maintenance/bar)
+/area/maintenance/port/aft)
"bTC" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
/turf/closed/wall,
@@ -43234,31 +43175,41 @@
/turf/open/floor/plating,
/area/maintenance/port/aft)
"bUt" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
-/turf/open/floor/wood,
-/area/maintenance/bar)
+/obj/structure/cable{
+ icon_state = "0-4";
+ d2 = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/port/aft)
"bUu" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
/obj/structure/cable{
d1 = 2;
d2 = 4;
icon_state = "2-4"
},
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 6
},
-/obj/structure/disposalpipe/junction{
- icon_state = "pipe-j1";
- dir = 4
- },
/turf/open/floor/plating,
/area/maintenance/port/aft)
"bUv" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/disposalpipe/segment{
- dir = 4
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/turf/closed/wall,
-/area/maintenance/bar)
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plating,
+/area/maintenance/port/aft)
"bUw" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -43281,8 +43232,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ icon_state = "4-8"
},
/obj/structure/cable{
d1 = 1;
@@ -43730,8 +43680,11 @@
/turf/open/space,
/area/space/nearstation)
"bVx" = (
-/turf/open/space,
-/area/space)
+/obj/machinery/atmospherics/components/unary/outlet_injector/on{
+ dir = 2
+ },
+/turf/open/floor/plating/airless,
+/area/maintenance/port/aft)
"bVy" = (
/obj/structure/grille,
/obj/structure/disposalpipe/segment{
@@ -43750,11 +43703,12 @@
/turf/open/floor/plating/airless,
/area/space/nearstation)
"bVA" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/reagent_dispensers/fueltank,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
+ dir = 10
},
/turf/open/floor/plating,
/area/maintenance/port/aft)
@@ -43769,14 +43723,20 @@
/turf/open/floor/plating,
/area/maintenance/port/aft)
"bVC" = (
-/obj/structure/table,
+/obj/machinery/atmospherics/components/unary/portables_connector/visible,
+/obj/machinery/light/small{
+ dir = 1
+ },
/turf/open/floor/plating,
/area/maintenance/port/aft)
"bVD" = (
-/obj/structure/table,
-/obj/item/wallframe/camera,
-/obj/item/wallframe/camera,
-/obj/item/weapon/screwdriver,
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/obj/structure/sign/deathsposal{
+ pixel_y = 32
+ },
/turf/open/floor/plating,
/area/maintenance/port/aft)
"bVE" = (
@@ -43790,9 +43750,11 @@
/turf/open/floor/plating,
/area/maintenance/port/aft)
"bVG" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on,
-/turf/open/floor/wood,
-/area/maintenance/bar)
+/obj/structure/sign/nosmoking_2{
+ pixel_x = -28
+ },
+/turf/open/floor/plating,
+/area/maintenance/port/aft)
"bVH" = (
/obj/structure/cable{
d1 = 1;
@@ -44137,31 +44099,19 @@
/turf/open/floor/plating,
/area/maintenance/port/aft)
"bWB" = (
-/turf/open/floor/circuit{
- name = "Mainframe Base";
- initial_gas_mix = "n2=100;TEMP=80"
- },
+/turf/open/floor/circuit/telecomms/mainframe,
/area/tcommsat/server)
"bWC" = (
/obj/machinery/telecomms/bus/preset_four,
-/turf/open/floor/plasteel/black{
- name = "Mainframe Floor";
- initial_gas_mix = "n2=100;TEMP=80"
- },
+/turf/open/floor/plasteel/black/telecomms/mainframe,
/area/tcommsat/server)
"bWD" = (
/obj/machinery/telecomms/server/presets/engineering,
-/turf/open/floor/plasteel/black{
- name = "Mainframe Floor";
- initial_gas_mix = "n2=100;TEMP=80"
- },
+/turf/open/floor/plasteel/black/telecomms/mainframe,
/area/tcommsat/server)
"bWE" = (
/obj/machinery/telecomms/processor/preset_three,
-/turf/open/floor/plasteel/black{
- name = "Mainframe Floor";
- initial_gas_mix = "n2=100;TEMP=80"
- },
+/turf/open/floor/plasteel/black/telecomms/mainframe,
/area/tcommsat/server)
"bWF" = (
/obj/machinery/light{
@@ -44177,17 +44127,11 @@
icon_state = "0-2";
d2 = 2
},
-/turf/open/floor/circuit{
- name = "Mainframe Base";
- initial_gas_mix = "n2=100;TEMP=80"
- },
+/turf/open/floor/circuit/telecomms/mainframe,
/area/tcommsat/server)
"bWG" = (
/obj/machinery/telecomms/server/presets/security,
-/turf/open/floor/plasteel/black{
- name = "Mainframe Floor";
- initial_gas_mix = "n2=100;TEMP=80"
- },
+/turf/open/floor/plasteel/black/telecomms/mainframe,
/area/tcommsat/server)
"bWH" = (
/obj/structure/table,
@@ -44641,14 +44585,8 @@
/turf/open/floor/plating,
/area/maintenance/port/aft)
"bXw" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/obj/item/weapon/shard,
-/turf/open/floor/plating,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
+/turf/open/floor/plasteel/floorgrime,
/area/maintenance/port/aft)
"bXx" = (
/obj/effect/landmark/blobstart,
@@ -44660,24 +44598,15 @@
/area/maintenance/port/aft)
"bXz" = (
/obj/machinery/telecomms/processor/preset_four,
-/turf/open/floor/plasteel/black{
- name = "Mainframe Floor";
- initial_gas_mix = "n2=100;TEMP=80"
- },
+/turf/open/floor/plasteel/black/telecomms/mainframe,
/area/tcommsat/server)
"bXA" = (
/obj/machinery/telecomms/server/presets/common,
-/turf/open/floor/plasteel/black{
- name = "Mainframe Floor";
- initial_gas_mix = "n2=100;TEMP=80"
- },
+/turf/open/floor/plasteel/black/telecomms/mainframe,
/area/tcommsat/server)
"bXB" = (
/obj/machinery/telecomms/bus/preset_three,
-/turf/open/floor/plasteel/black{
- name = "Mainframe Floor";
- initial_gas_mix = "n2=100;TEMP=80"
- },
+/turf/open/floor/plasteel/black/telecomms/mainframe,
/area/tcommsat/server)
"bXC" = (
/obj/structure/cable{
@@ -44685,17 +44614,11 @@
d2 = 2;
icon_state = "1-2"
},
-/turf/open/floor/circuit{
- name = "Mainframe Base";
- initial_gas_mix = "n2=100;TEMP=80"
- },
+/turf/open/floor/circuit/telecomms/mainframe,
/area/tcommsat/server)
"bXD" = (
/obj/machinery/telecomms/server/presets/command,
-/turf/open/floor/plasteel/black{
- name = "Mainframe Floor";
- initial_gas_mix = "n2=100;TEMP=80"
- },
+/turf/open/floor/plasteel/black/telecomms/mainframe,
/area/tcommsat/server)
"bXE" = (
/obj/machinery/computer/message_monitor,
@@ -45048,13 +44971,8 @@
/turf/open/floor/plating,
/area/maintenance/starboard/aft)
"bYt" = (
-/obj/structure/girder,
-/obj/structure/grille,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
+ dir = 5
},
/turf/open/floor/plating,
/area/maintenance/port/aft)
@@ -45089,35 +45007,29 @@
/turf/open/floor/plasteel/floorgrime,
/area/maintenance/port/aft)
"bYy" = (
-/obj/structure/closet/secure_closet/personal/cabinet,
-/turf/open/floor/wood,
-/area/maintenance/bar)
-"bYz" = (
-/turf/open/floor/plasteel/black{
- name = "Mainframe Floor";
- initial_gas_mix = "n2=100;TEMP=80"
+/obj/machinery/door/airlock/maintenance{
+ name = "Incinerator Access";
+ req_access_txt = "12"
},
+/obj/structure/barricade/wooden{
+ name = "wooden barricade (CLOSED)"
+ },
+/turf/open/floor/plating,
+/area/maintenance/port/aft)
+"bYz" = (
+/turf/open/floor/plasteel/black/telecomms/mainframe,
/area/tcommsat/server)
"bYA" = (
/obj/machinery/telecomms/broadcaster/preset_right,
-/turf/open/floor/plasteel/black{
- name = "Mainframe Floor";
- initial_gas_mix = "n2=100;TEMP=80"
- },
+/turf/open/floor/plasteel/black/telecomms/mainframe,
/area/tcommsat/server)
"bYB" = (
/obj/machinery/blackbox_recorder,
-/turf/open/floor/plasteel/black{
- name = "Mainframe Floor";
- initial_gas_mix = "n2=100;TEMP=80"
- },
+/turf/open/floor/plasteel/black/telecomms/mainframe,
/area/tcommsat/server)
"bYC" = (
/obj/machinery/telecomms/receiver/preset_right,
-/turf/open/floor/plasteel/black{
- name = "Mainframe Floor";
- initial_gas_mix = "n2=100;TEMP=80"
- },
+/turf/open/floor/plasteel/black/telecomms/mainframe,
/area/tcommsat/server)
"bYD" = (
/obj/machinery/computer/telecomms/server{
@@ -45330,8 +45242,8 @@
/turf/open/floor/plating,
/area/maintenance/starboard)
"bZj" = (
-/obj/item/weapon/shard{
- icon_state = "small"
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 4
},
/turf/open/floor/plating,
/area/maintenance/port/aft)
@@ -45366,10 +45278,7 @@
d2 = 4;
icon_state = "2-4"
},
-/turf/open/floor/circuit{
- name = "Mainframe Base";
- initial_gas_mix = "n2=100;TEMP=80"
- },
+/turf/open/floor/circuit/telecomms/mainframe,
/area/tcommsat/server)
"bZo" = (
/obj/structure/cable{
@@ -45377,10 +45286,7 @@
d2 = 8;
icon_state = "4-8"
},
-/turf/open/floor/circuit{
- name = "Mainframe Base";
- initial_gas_mix = "n2=100;TEMP=80"
- },
+/turf/open/floor/circuit/telecomms/mainframe,
/area/tcommsat/server)
"bZp" = (
/obj/structure/cable{
@@ -45393,10 +45299,7 @@
d2 = 4;
icon_state = "1-4"
},
-/turf/open/floor/circuit{
- name = "Mainframe Base";
- initial_gas_mix = "n2=100;TEMP=80"
- },
+/turf/open/floor/circuit/telecomms/mainframe,
/area/tcommsat/server)
"bZq" = (
/obj/structure/window/reinforced/fulltile,
@@ -45640,7 +45543,6 @@
/area/maintenance/aft)
"bZR" = (
/obj/machinery/airalarm{
- frequency = 1439;
pixel_y = 23
},
/obj/item/weapon/wrench,
@@ -45782,10 +45684,7 @@
/area/maintenance/port/aft)
"cag" = (
/obj/machinery/ntnet_relay,
-/turf/open/floor/circuit{
- name = "Mainframe Base";
- initial_gas_mix = "n2=100;TEMP=80"
- },
+/turf/open/floor/circuit/telecomms/mainframe,
/area/tcommsat/server)
"cah" = (
/obj/structure/cable{
@@ -45793,10 +45692,7 @@
d2 = 8;
icon_state = "1-8"
},
-/turf/open/floor/circuit{
- name = "Mainframe Base";
- initial_gas_mix = "n2=100;TEMP=80"
- },
+/turf/open/floor/circuit/telecomms/mainframe,
/area/tcommsat/server)
"cai" = (
/obj/machinery/power/smes{
@@ -45806,10 +45702,7 @@
icon_state = "0-4";
d2 = 4
},
-/turf/open/floor/circuit{
- name = "Mainframe Base";
- initial_gas_mix = "n2=100;TEMP=80"
- },
+/turf/open/floor/circuit/telecomms/mainframe,
/area/tcommsat/server)
"caj" = (
/obj/structure/cable{
@@ -45817,17 +45710,12 @@
d2 = 4;
icon_state = "1-4"
},
-/turf/open/floor/circuit{
- name = "Mainframe Base";
- initial_gas_mix = "n2=100;TEMP=80"
- },
+/turf/open/floor/circuit/telecomms/mainframe,
/area/tcommsat/server)
"cak" = (
/obj/machinery/telecomms/hub/preset,
-/turf/open/floor/plasteel/vault{
- dir = 8;
- name = "Mainframe Floor";
- initial_gas_mix = "n2=100;TEMP=80"
+/turf/open/floor/plasteel/vault/telecomms/mainframe{
+ dir = 8
},
/area/tcommsat/server)
"cal" = (
@@ -45851,10 +45739,7 @@
d2 = 8;
icon_state = "4-8"
},
-/turf/open/floor/circuit{
- name = "Mainframe Base";
- initial_gas_mix = "n2=100;TEMP=80"
- },
+/turf/open/floor/circuit/telecomms/mainframe,
/area/tcommsat/server)
"can" = (
/obj/machinery/door/airlock/glass_engineering{
@@ -45882,8 +45767,7 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -46373,10 +46257,7 @@
dir = 4;
network = list("SS13")
},
-/turf/open/floor/plasteel/black{
- name = "Mainframe Floor";
- initial_gas_mix = "n2=100;TEMP=80"
- },
+/turf/open/floor/plasteel/black/telecomms/mainframe,
/area/tcommsat/server)
"cbm" = (
/obj/structure/window/reinforced/fulltile,
@@ -46498,8 +46379,7 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/obj/structure/cable{
d1 = 2;
@@ -46820,24 +46700,15 @@
/area/construction)
"ccf" = (
/obj/machinery/telecomms/broadcaster/preset_left,
-/turf/open/floor/plasteel/black{
- name = "Mainframe Floor";
- initial_gas_mix = "n2=100;TEMP=80"
- },
+/turf/open/floor/plasteel/black/telecomms/mainframe,
/area/tcommsat/server)
"ccg" = (
/obj/machinery/message_server,
-/turf/open/floor/plasteel/black{
- name = "Mainframe Floor";
- initial_gas_mix = "n2=100;TEMP=80"
- },
+/turf/open/floor/plasteel/black/telecomms/mainframe,
/area/tcommsat/server)
"cch" = (
/obj/machinery/telecomms/receiver/preset_left,
-/turf/open/floor/plasteel/black{
- name = "Mainframe Floor";
- initial_gas_mix = "n2=100;TEMP=80"
- },
+/turf/open/floor/plasteel/black/telecomms/mainframe,
/area/tcommsat/server)
"cci" = (
/obj/structure/table,
@@ -47234,50 +47105,31 @@
/turf/open/floor/plating,
/area/maintenance/port/aft)
"cda" = (
-/obj/structure/table,
-/obj/item/device/radio/intercom{
- freerange = 0;
- frequency = 1459;
- name = "Station Intercom (General)";
- pixel_x = -30
+/obj/machinery/light/small{
+ dir = 1
},
-/obj/item/weapon/kitchen/rollingpin,
-/obj/item/weapon/reagent_containers/food/condiment/sugar,
-/obj/item/weapon/reagent_containers/food/condiment/enzyme,
-/obj/item/weapon/reagent_containers/glass/beaker,
-/turf/open/floor/plasteel/floorgrime,
-/area/maintenance/bar)
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/plating,
+/area/maintenance/port/aft)
"cdb" = (
/obj/machinery/portable_atmospherics/canister/air,
/turf/open/floor/plating,
/area/maintenance/port/aft)
"cdc" = (
/obj/machinery/telecomms/bus/preset_two,
-/turf/open/floor/plasteel/black{
- name = "Mainframe Floor";
- initial_gas_mix = "n2=100;TEMP=80"
- },
+/turf/open/floor/plasteel/black/telecomms/mainframe,
/area/tcommsat/server)
"cdd" = (
/obj/machinery/telecomms/server/presets/supply,
-/turf/open/floor/plasteel/black{
- name = "Mainframe Floor";
- initial_gas_mix = "n2=100;TEMP=80"
- },
+/turf/open/floor/plasteel/black/telecomms/mainframe,
/area/tcommsat/server)
"cde" = (
/obj/machinery/telecomms/processor/preset_one,
-/turf/open/floor/plasteel/black{
- name = "Mainframe Floor";
- initial_gas_mix = "n2=100;TEMP=80"
- },
+/turf/open/floor/plasteel/black/telecomms/mainframe,
/area/tcommsat/server)
"cdf" = (
/obj/machinery/telecomms/server/presets/medical,
-/turf/open/floor/plasteel/black{
- name = "Mainframe Floor";
- initial_gas_mix = "n2=100;TEMP=80"
- },
+/turf/open/floor/plasteel/black/telecomms/mainframe,
/area/tcommsat/server)
"cdg" = (
/obj/machinery/computer/telecomms/monitor{
@@ -47308,8 +47160,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ icon_state = "4-8"
},
/turf/open/floor/plating,
/area/maintenance/port/aft)
@@ -47660,16 +47511,15 @@
/turf/open/floor/plating,
/area/maintenance/starboard/aft)
"cdW" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "Port Quarter Maintenance APC";
+ pixel_x = -25;
+ pixel_y = 1
},
/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+ icon_state = "0-4";
+ d2 = 4
},
/turf/open/floor/plating,
/area/maintenance/port/aft)
@@ -47691,41 +47541,26 @@
/area/maintenance/port/aft)
"cdZ" = (
/obj/machinery/telecomms/processor/preset_two,
-/turf/open/floor/plasteel/black{
- name = "Mainframe Floor";
- initial_gas_mix = "n2=100;TEMP=80"
- },
+/turf/open/floor/plasteel/black/telecomms/mainframe,
/area/tcommsat/server)
"cea" = (
/obj/machinery/telecomms/server/presets/service,
-/turf/open/floor/plasteel/black{
- name = "Mainframe Floor";
- initial_gas_mix = "n2=100;TEMP=80"
- },
+/turf/open/floor/plasteel/black/telecomms/mainframe,
/area/tcommsat/server)
"ceb" = (
/obj/machinery/telecomms/bus/preset_one,
-/turf/open/floor/plasteel/black{
- name = "Mainframe Floor";
- initial_gas_mix = "n2=100;TEMP=80"
- },
+/turf/open/floor/plasteel/black/telecomms/mainframe,
/area/tcommsat/server)
"cec" = (
/obj/structure/sign/nosmoking_2{
pixel_y = -32
},
/obj/machinery/light,
-/turf/open/floor/circuit{
- name = "Mainframe Base";
- initial_gas_mix = "n2=100;TEMP=80"
- },
+/turf/open/floor/circuit/telecomms/mainframe,
/area/tcommsat/server)
"ced" = (
/obj/machinery/telecomms/server/presets/science,
-/turf/open/floor/plasteel/black{
- name = "Mainframe Floor";
- initial_gas_mix = "n2=100;TEMP=80"
- },
+/turf/open/floor/plasteel/black/telecomms/mainframe,
/area/tcommsat/server)
"cee" = (
/obj/structure/table,
@@ -48070,7 +47905,6 @@
req_access_txt = "11";
req_one_access_txt = "0"
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel,
/area/engine/engineering)
"cfa" = (
@@ -48447,8 +48281,7 @@
/area/engine/atmos)
"cfS" = (
/obj/machinery/atmospherics/pipe/simple/green/visible{
- dir = 4;
-
+ dir = 4
},
/turf/open/floor/plasteel,
/area/engine/atmos)
@@ -48752,8 +48585,7 @@
icon_state = "space";
layer = 4;
name = "EXTERNAL AIRLOCK";
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/turf/open/floor/plating,
/area/maintenance/solars/port/aft)
@@ -48786,35 +48618,26 @@
/obj/machinery/light/small{
dir = 8
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
+/obj/structure/closet/emcloset,
/turf/open/floor/plating,
/area/maintenance/port/aft)
"cgE" = (
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'HIGH VOLTAGE'";
icon_state = "shock";
- name = "HIGH VOLTAGE";
- pixel_y = 0
+ name = "HIGH VOLTAGE"
},
/turf/closed/wall/r_wall,
/area/maintenance/solars/port/aft)
"cgF" = (
-/obj/structure/table,
-/obj/machinery/airalarm{
- dir = 4;
- locked = 0;
- pixel_x = -23;
- pixel_y = 0
+/obj/effect/spawner/lootdrop/maintenance,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/item/weapon/storage/box/donkpockets,
-/obj/item/weapon/kitchen/knife,
-/turf/open/floor/plasteel/floorgrime,
-/area/maintenance/bar)
+/turf/open/floor/plating,
+/area/maintenance/port/aft)
"cgG" = (
/obj/structure/cable{
d1 = 4;
@@ -49099,14 +48922,9 @@
/obj/machinery/power/terminal{
dir = 1
},
-/obj/machinery/airalarm{
- desc = "This particular atmos control unit appears to have no access restrictions.";
+/obj/machinery/airalarm/all_access{
dir = 8;
- locked = 0;
- name = "all-access air alarm";
- pixel_x = 24;
- req_access = "0";
- req_one_access = "0"
+ pixel_x = 24
},
/obj/structure/cable/yellow{
d2 = 8;
@@ -49422,8 +49240,7 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/obj/structure/cable{
d1 = 1;
@@ -49442,7 +49259,7 @@
/area/maintenance/solars/port/aft)
"chS" = (
/obj/machinery/door/airlock/engineering{
- name = "Aft Port Solar Access";
+ name = "Port Quarter Solar Access";
req_access_txt = "10"
},
/obj/structure/cable{
@@ -49562,8 +49379,6 @@
},
/obj/machinery/portable_atmospherics/canister/oxygen,
/obj/machinery/airalarm{
- frequency = 1439;
- locked = 0;
pixel_y = 23
},
/obj/structure/cable{
@@ -49910,7 +49725,7 @@
"ciQ" = (
/obj/machinery/power/solar_control{
id = "portsolar";
- name = "Aft Port Solar Control";
+ name = "Port Quarter Solar Control";
track = 0
},
/obj/structure/cable,
@@ -49919,7 +49734,7 @@
"ciR" = (
/obj/machinery/power/apc{
dir = 4;
- name = "Aft Port Solar APC";
+ name = "Port Quarter Solar APC";
pixel_x = 23;
pixel_y = 2
},
@@ -50131,12 +49946,9 @@
/turf/open/floor/plasteel,
/area/engine/engineering)
"cjn" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/door/airlock{
- name = "Gaming Room"
- },
-/turf/open/floor/wood,
-/area/maintenance/bar)
+/obj/item/weapon/weldingtool,
+/turf/open/floor/plating/airless,
+/area/space/nearstation)
"cjo" = (
/obj/structure/closet/toolcloset,
/turf/open/floor/plasteel,
@@ -51989,6 +51801,8 @@
d2 = 2;
icon_state = "1-2"
},
+/obj/item/weapon/twohanded/rcl/pre_loaded,
+/obj/item/weapon/twohanded/rcl/pre_loaded,
/turf/open/floor/plasteel,
/area/engine/engineering)
"cnB" = (
@@ -53259,9 +53073,13 @@
/turf/open/floor/plasteel,
/area/engine/engineering)
"cpY" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
-/turf/open/floor/plasteel/floorgrime,
-/area/maintenance/bar)
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/open/floor/plating,
+/area/maintenance/port/aft)
"cpZ" = (
/obj/structure/table,
/obj/item/weapon/storage/toolbox/mechanical{
@@ -53654,7 +53472,7 @@
/obj/machinery/light/small{
dir = 8
},
-/obj/structure/closet/emcloset,
+/obj/structure/closet/emcloset/anchored,
/turf/open/floor/plating,
/area/engine/engineering)
"cqT" = (
@@ -53683,9 +53501,7 @@
/turf/open/floor/plating,
/area/engine/engineering)
"cqW" = (
-/obj/machinery/power/rad_collector{
- anchored = 1
- },
+/obj/machinery/power/rad_collector/anchored,
/obj/item/weapon/tank/internals/plasma,
/obj/structure/cable/yellow,
/obj/effect/turf_decal/stripes/line{
@@ -53719,12 +53535,9 @@
dir = 1;
name = "Gas to Filter"
},
-/obj/machinery/airalarm{
+/obj/machinery/airalarm/engine{
dir = 4;
- locked = 0;
- pixel_x = -23;
- req_access = null;
- req_one_access_txt = "24;10"
+ pixel_x = -23
},
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/engine,
@@ -54103,7 +53916,6 @@
/turf/open/floor/plating,
/area/engine/engineering)
"crX" = (
-/obj/structure/closet/emcloset,
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
icon_state = "space";
@@ -54111,6 +53923,7 @@
name = "EXTERNAL AIRLOCK";
pixel_x = 32
},
+/obj/structure/closet/emcloset/anchored,
/turf/open/floor/plating,
/area/engine/engineering)
"crY" = (
@@ -54153,8 +53966,7 @@
/turf/open/floor/plasteel/black,
/area/engine/engineering)
"csf" = (
-/obj/machinery/power/emitter{
- anchored = 1;
+/obj/machinery/power/emitter/anchored{
dir = 8;
state = 2
},
@@ -55176,8 +54988,7 @@
},
/obj/item/clothing/head/welding,
/obj/item/stack/sheet/mineral/plasma{
- amount = 35;
- layer = 3.1
+ amount = 35
},
/obj/machinery/firealarm{
dir = 4;
@@ -56044,7 +55855,6 @@
/area/ai_monitored/turret_protected/ai)
"cwg" = (
/obj/machinery/airalarm{
- frequency = 1439;
pixel_y = 23
},
/obj/structure/chair{
@@ -57076,12 +56886,16 @@
/turf/open/floor/plating,
/area/maintenance/solars/port/aft)
"cyL" = (
-/obj/machinery/light/small,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 5
+/obj/machinery/door/airlock/maintenance{
+ req_access_txt = "12"
},
-/turf/open/floor/plasteel/floorgrime,
-/area/maintenance/bar)
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating,
+/area/maintenance/port/aft)
"cyM" = (
/obj/machinery/door/airlock/engineering{
cyclelinkeddir = 1;
@@ -57684,8 +57498,7 @@
/obj/structure/cable/yellow{
d1 = 2;
d2 = 4;
- icon_state = "2-4";
-
+ icon_state = "2-4"
},
/turf/open/floor/plating/airless,
/area/space/nearstation)
@@ -57714,8 +57527,7 @@
/obj/structure/cable/yellow{
d1 = 2;
d2 = 8;
- icon_state = "2-8";
-
+ icon_state = "2-8"
},
/turf/open/floor/plating/airless,
/area/space/nearstation)
@@ -57792,12 +57604,9 @@
d2 = 8;
icon_state = "0-8"
},
-/obj/machinery/power/emitter{
- anchored = 1;
+/obj/machinery/power/emitter/anchored{
dir = 4;
- icon_state = "emitter";
- state = 2;
-
+ state = 2
},
/turf/open/floor/plating,
/area/engine/engineering)
@@ -57805,8 +57614,7 @@
/obj/structure/cable/yellow{
d1 = 1;
d2 = 4;
- icon_state = "1-4";
-
+ icon_state = "1-4"
},
/turf/open/floor/plating/airless,
/area/space/nearstation)
@@ -57819,8 +57627,7 @@
/obj/structure/cable/yellow{
d1 = 1;
d2 = 8;
- icon_state = "1-8";
-
+ icon_state = "1-8"
},
/turf/open/floor/plating/airless,
/area/space/nearstation)
@@ -57828,8 +57635,7 @@
/obj/structure/cable/yellow{
d1 = 1;
d2 = 8;
- icon_state = "1-8";
-
+ icon_state = "1-8"
},
/turf/open/floor/plating/airless,
/area/space/nearstation)
@@ -57854,7 +57660,9 @@
/turf/open/floor/plating,
/area/maintenance/port/aft)
"cAB" = (
-/turf/closed/wall/r_wall,
+/obj/structure/table,
+/obj/machinery/microwave,
+/turf/open/floor/plating,
/area/maintenance/port/aft)
"cAC" = (
/obj/structure/sink/kitchen{
@@ -57870,11 +57678,15 @@
/turf/open/floor/plating,
/area/maintenance/port/aft)
"cAE" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+/obj/structure/table/glass,
+/obj/item/weapon/reagent_containers/food/condiment/saltshaker{
+ pixel_y = 2
+ },
+/obj/item/weapon/reagent_containers/food/condiment/peppermill{
+ pixel_x = 2
+ },
+/obj/item/weapon/reagent_containers/food/snacks/mint{
+ pixel_y = 9
},
/turf/open/floor/plating,
/area/maintenance/port/aft)
@@ -58403,6 +58215,7 @@
/obj/structure/table/reinforced,
/obj/machinery/cell_charger,
/obj/item/weapon/stock_parts/cell/high/plus,
+/obj/item/weapon/twohanded/rcl/pre_loaded,
/turf/open/floor/plasteel,
/area/crew_quarters/heads/chief)
"cBN" = (
@@ -58534,10 +58347,9 @@
/turf/open/floor/plasteel/grimy,
/area/chapel/office)
"cCa" = (
-/obj/structure/table,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/bar,
-/area/maintenance/bar)
+/obj/item/clothing/head/hardhat,
+/turf/open/floor/plating/airless,
+/area/space/nearstation)
"cCb" = (
/obj/structure/table,
/obj/item/stack/cable_coil{
@@ -59495,9 +59307,7 @@
/turf/open/floor/plating,
/area/engine/supermatter)
"cEu" = (
-/obj/machinery/power/rad_collector{
- anchored = 1
- },
+/obj/machinery/power/rad_collector/anchored,
/obj/structure/cable/yellow{
d2 = 8;
icon_state = "0-8"
@@ -59539,9 +59349,7 @@
/turf/open/floor/plating,
/area/engine/supermatter)
"cEz" = (
-/obj/machinery/power/rad_collector{
- anchored = 1
- },
+/obj/machinery/power/rad_collector/anchored,
/obj/structure/cable/yellow{
d2 = 4;
icon_state = "0-4"
@@ -59686,9 +59494,7 @@
/turf/open/floor/plating,
/area/engine/supermatter)
"cEN" = (
-/obj/machinery/power/rad_collector{
- anchored = 1
- },
+/obj/machinery/power/rad_collector/anchored,
/obj/structure/cable/yellow{
d2 = 8;
icon_state = "0-8"
@@ -59724,9 +59530,7 @@
/turf/open/floor/plating,
/area/engine/engineering)
"cES" = (
-/obj/machinery/power/rad_collector{
- anchored = 1
- },
+/obj/machinery/power/rad_collector/anchored,
/obj/structure/cable/yellow{
d2 = 4;
icon_state = "0-4"
@@ -59826,9 +59630,7 @@
/turf/open/floor/engine,
/area/engine/engineering)
"cFd" = (
-/obj/machinery/power/rad_collector{
- anchored = 1
- },
+/obj/machinery/power/rad_collector/anchored,
/obj/structure/cable/yellow{
d2 = 8;
icon_state = "0-8"
@@ -59864,9 +59666,7 @@
/turf/open/floor/plating,
/area/engine/supermatter)
"cFi" = (
-/obj/machinery/power/rad_collector{
- anchored = 1
- },
+/obj/machinery/power/rad_collector/anchored,
/obj/structure/cable/yellow{
d2 = 4;
icon_state = "0-4"
@@ -60492,14 +60292,11 @@
/turf/open/floor/plasteel/black,
/area/engine/engineering)
"cGU" = (
-/obj/structure/reflector/double{
- anchored = 1
- },
+/obj/structure/reflector/double/anchored,
/turf/open/floor/plasteel/black,
/area/engine/engineering)
"cGV" = (
-/obj/structure/reflector/box{
- anchored = 1;
+/obj/structure/reflector/box/anchored{
dir = 1
},
/turf/open/floor/plasteel/black,
@@ -60603,17 +60400,14 @@
d2 = 8;
icon_state = "0-8"
},
-/obj/machinery/power/emitter{
- anchored = 1;
+/obj/machinery/power/emitter/anchored{
dir = 4;
- icon_state = "emitter";
state = 2
},
/turf/open/floor/plating,
/area/engine/engineering)
"cHi" = (
-/obj/structure/reflector/box{
- anchored = 1;
+/obj/structure/reflector/box/anchored{
dir = 1
},
/turf/open/floor/plasteel/black,
@@ -60623,10 +60417,8 @@
icon_state = "0-4";
d2 = 4
},
-/obj/machinery/power/emitter{
- anchored = 1;
+/obj/machinery/power/emitter/anchored{
dir = 8;
- icon_state = "emitter";
state = 2
},
/turf/open/floor/plating,
@@ -60661,18 +60453,14 @@
/turf/open/floor/plating,
/area/engine/engineering)
"cHo" = (
-/obj/structure/reflector/single{
- anchored = 1;
- dir = 1;
- icon_state = "reflector"
+/obj/structure/reflector/single/anchored{
+ dir = 1
},
/turf/open/floor/plating,
/area/engine/engineering)
"cHp" = (
-/obj/structure/reflector/single{
- anchored = 1;
- dir = 4;
- icon_state = "reflector"
+/obj/structure/reflector/single/anchored{
+ dir = 4
},
/turf/open/floor/plating,
/area/engine/engineering)
@@ -62571,9 +62359,7 @@
/turf/open/floor/engine,
/area/engine/supermatter)
"cMI" = (
-/obj/machinery/power/rad_collector{
- anchored = 1
- },
+/obj/machinery/power/rad_collector/anchored,
/obj/structure/cable/yellow{
d2 = 8;
icon_state = "0-8"
@@ -62581,9 +62367,7 @@
/turf/open/floor/engine,
/area/engine/supermatter)
"cMJ" = (
-/obj/machinery/power/rad_collector{
- anchored = 1
- },
+/obj/machinery/power/rad_collector/anchored,
/obj/structure/cable/yellow{
d2 = 8;
icon_state = "0-8"
@@ -64117,19 +63901,13 @@
d2 = 8;
icon_state = "4-8"
},
-/turf/open/floor/plasteel/black{
- name = "Mainframe Floor";
- initial_gas_mix = "n2=100;TEMP=80"
- },
+/turf/open/floor/plasteel/black/telecomms/mainframe,
/area/tcommsat/server)
"cSF" = (
/obj/machinery/power/terminal{
dir = 1
},
-/turf/open/floor/plasteel/black{
- name = "Mainframe Floor";
- initial_gas_mix = "n2=100;TEMP=80"
- },
+/turf/open/floor/plasteel/black/telecomms/mainframe,
/area/tcommsat/server)
"cSG" = (
/obj/machinery/atmospherics/pipe/simple/cyan/visible,
@@ -64473,1363 +64251,23 @@
/turf/closed/wall/mineral/titanium,
/area/shuttle/mining)
"cTD" = (
-/obj/machinery/vending/kink,
-/turf/open/floor/plating,
-/area/maintenance/starboard/fore)
-"cTE" = (
-/obj/structure/barricade/wooden,
-/turf/open/floor/plating,
-/area/maintenance/starboard/fore)
-"cTF" = (
-/obj/structure/rack{
- dir = 8;
- layer = 2.9
- },
-/obj/effect/spawner/lootdrop/maintenance,
-/obj/item/weapon/bikehorn/rubberducky,
-/turf/open/floor/plating,
-/area/maintenance/port/aft)
-"cTG" = (
-/turf/open/space,
-/area/space)
-"cTH" = (
-/turf/open/space,
-/area/space)
-"cTI" = (
-/turf/open/space,
-/area/space)
-"cTJ" = (
-/turf/open/space,
-/area/space)
-"cTK" = (
-/turf/open/space,
-/area/space)
-"cTL" = (
-/turf/open/space,
-/area/space)
-"cTM" = (
-/turf/open/space,
-/area/space)
-"cTN" = (
-/turf/open/space,
-/area/space)
-"cTO" = (
-/turf/open/space,
-/area/space)
-"cTP" = (
-/turf/open/space,
-/area/space)
-"cTQ" = (
-/turf/open/space,
-/area/space)
-"cTR" = (
-/turf/open/space,
-/area/space)
-"cTS" = (
-/turf/open/space,
-/area/space)
-"cTT" = (
-/turf/open/space,
-/area/space)
-"cTU" = (
-/obj/structure/rack{
- dir = 8;
- layer = 2.9
- },
-/obj/effect/spawner/lootdrop/maintenance{
- lootcount = 4;
- name = "4maintenance loot spawner"
- },
-/turf/open/floor/plating,
-/area/maintenance/port/aft)
-"cTV" = (
-/obj/effect/decal/cleanable/cobweb,
-/obj/structure/closet,
-/obj/effect/spawner/lootdrop/maintenance{
- lootcount = 2;
- name = "2maintenance loot spawner"
- },
-/turf/open/floor/plating,
-/area/maintenance/port/aft)
-"cTW" = (
-/turf/open/space,
-/area/space)
-"cTX" = (
-/turf/open/space,
-/area/space)
-"cTY" = (
-/turf/open/space,
-/area/space)
-"cTZ" = (
-/turf/open/space,
-/area/space)
-"cUa" = (
-/turf/open/space,
-/area/space)
-"cUb" = (
-/turf/open/space,
-/area/space)
-"cUc" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/turf/open/floor/plating,
-/area/maintenance/port/aft)
-"cUd" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
- },
-/turf/open/floor/plating,
-/area/maintenance/port/aft)
-"cUe" = (
-/turf/open/space,
-/area/space)
-"cUf" = (
-/turf/open/space,
-/area/space)
-"cUg" = (
-/turf/open/space,
-/area/space)
-"cUh" = (
-/turf/open/space,
-/area/space)
-"cUi" = (
-/turf/open/space,
-/area/space)
-"cUj" = (
-/turf/open/space,
-/area/space)
-"cUk" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/obj/machinery/light/small{
- brightness = 3;
- dir = 8
- },
-/turf/open/floor/plating,
-/area/maintenance/port/aft)
-"cUl" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/turf/open/floor/plating,
-/area/maintenance/port/aft)
-"cUm" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/obj/machinery/light/small,
-/turf/open/floor/plating,
-/area/maintenance/port/aft)
-"cUn" = (
-/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/turf/open/floor/plating,
-/area/maintenance/port/aft)
-"cUo" = (
-/turf/open/space,
-/area/space)
-"cUp" = (
-/turf/open/space,
-/area/space)
-"cUq" = (
-/turf/open/space,
-/area/space)
-"cUr" = (
-/turf/open/space,
-/area/space)
-"cUs" = (
-/turf/open/space,
-/area/space)
-"cUt" = (
-/turf/open/space,
-/area/space)
-"cUu" = (
-/turf/open/space,
-/area/space)
-"cUv" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/turf/open/floor/plating,
-/area/maintenance/port/aft)
-"cUw" = (
-/turf/open/space,
-/area/space)
-"cUx" = (
-/turf/open/space,
-/area/space)
-"cUy" = (
-/turf/open/space,
-/area/space)
-"cUz" = (
-/turf/open/space,
-/area/space)
-"cUA" = (
-/turf/open/space,
-/area/space)
-"cUB" = (
-/turf/open/space,
-/area/space)
-"cUC" = (
-/obj/structure/toilet{
- dir = 4
- },
-/obj/machinery/light/small{
- dir = 1
- },
-/turf/open/floor/plasteel/freezer,
-/area/maintenance/bar)
-"cUD" = (
-/obj/structure/sink{
- pixel_y = 30
- },
-/turf/open/floor/plasteel/freezer,
-/area/maintenance/bar)
-"cUE" = (
-/obj/structure/curtain,
-/obj/machinery/shower{
- dir = 1
- },
-/turf/open/floor/plasteel/freezer,
-/area/maintenance/bar)
-"cUF" = (
-/obj/machinery/vending/autodrobe{
- req_access_txt = "0"
- },
-/turf/open/floor/wood,
-/area/maintenance/bar)
-"cUG" = (
-/obj/machinery/vending/clothing,
-/turf/open/floor/wood,
-/area/maintenance/bar)
-"cUH" = (
-/obj/machinery/vending/kink,
-/turf/open/floor/wood,
-/area/maintenance/bar)
-"cUI" = (
-/obj/structure/table/wood,
-/obj/machinery/newscaster{
- pixel_y = 32
- },
-/obj/item/weapon/reagent_containers/spray/cleaner,
-/turf/open/floor/wood,
-/area/maintenance/bar)
-"cUJ" = (
-/obj/structure/table/wood,
-/obj/machinery/firealarm{
- pixel_y = 24
- },
-/obj/item/weapon/paper_bin,
-/obj/item/weapon/pen,
-/turf/open/floor/wood,
-/area/maintenance/bar)
-"cUK" = (
-/turf/open/space,
-/area/space)
-"cUL" = (
-/turf/open/space,
-/area/space)
-"cUM" = (
-/turf/open/space,
-/area/space)
-"cUN" = (
-/turf/open/space,
-/area/space)
-"cUO" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/turf/open/floor/plating,
-/area/maintenance/port/aft)
-"cUP" = (
-/obj/machinery/door/airlock{
- name = "Shower"
- },
-/turf/open/floor/plasteel/freezer,
-/area/maintenance/bar)
-"cUQ" = (
-/turf/open/floor/wood,
-/area/maintenance/bar)
-"cUR" = (
-/turf/open/floor/wood,
-/area/maintenance/bar)
-"cUS" = (
-/turf/open/floor/wood,
-/area/maintenance/bar)
-"cUT" = (
-/turf/open/floor/wood,
-/area/maintenance/bar)
-"cUU" = (
-/obj/machinery/disposal/bin,
-/obj/structure/disposalpipe/trunk{
- dir = 4
- },
-/turf/open/floor/wood,
-/area/maintenance/bar)
-"cUV" = (
-/obj/structure/table/wood,
-/obj/item/device/radio/intercom{
- freerange = 0;
- frequency = 1459;
- name = "Station Intercom (General)";
- pixel_x = -30
- },
-/turf/open/floor/wood,
-/area/maintenance/bar)
-"cUW" = (
-/obj/structure/bed,
-/obj/item/weapon/bedsheet/red,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 6
- },
-/turf/open/floor/wood,
-/area/maintenance/bar)
-"cUX" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/closed/wall,
-/area/maintenance/bar)
-"cUY" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/wood,
-/area/maintenance/bar)
-"cUZ" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 1
- },
-/turf/open/floor/carpet,
-/area/maintenance/bar)
-"cVa" = (
-/obj/structure/chair/stool,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/carpet,
-/area/maintenance/bar)
-"cVb" = (
-/obj/structure/chair/stool,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/carpet,
-/area/maintenance/bar)
-"cVc" = (
-/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,
-/turf/open/floor/carpet,
-/area/maintenance/bar)
-"cVd" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/wood,
-/area/maintenance/bar)
-"cVe" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 4
- },
-/turf/closed/wall,
-/area/maintenance/bar)
-"cVf" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating,
-/area/maintenance/port/aft)
-"cVg" = (
-/obj/structure/closet/secure_closet/personal/cabinet,
-/turf/open/floor/wood,
-/area/maintenance/bar)
-"cVh" = (
-/obj/machinery/light/small,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 5
- },
-/obj/machinery/airalarm{
- dir = 1;
- icon_state = "alarm0";
- pixel_y = -22
- },
-/turf/open/floor/wood,
-/area/maintenance/bar)
-"cVi" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/button/door{
- id = "MaintDorm2";
- name = "Dorm Bolt Control";
- normaldoorcontrol = 1;
- pixel_x = 10;
- pixel_y = -25;
- req_access_txt = "0";
- specialfunctions = 4
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 1
- },
-/turf/open/floor/wood,
-/area/maintenance/bar)
-"cVj" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/door/airlock{
- id_tag = "MaintDorm2";
- name = "Dorm 2"
- },
-/turf/open/floor/wood,
-/area/maintenance/bar)
-"cVk" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 10
- },
-/turf/open/floor/wood,
-/area/maintenance/bar)
-"cVl" = (
-/obj/structure/chair/stool,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/carpet,
-/area/maintenance/bar)
-"cVm" = (
-/obj/structure/table/wood/poker,
-/obj/item/weapon/coin/iron,
-/obj/item/weapon/coin/iron,
-/obj/item/weapon/coin/iron,
-/turf/open/floor/carpet,
-/area/maintenance/bar)
-"cVn" = (
-/obj/structure/table/wood/poker,
-/obj/item/weapon/storage/pill_bottle/dice,
-/turf/open/floor/carpet,
-/area/maintenance/bar)
-"cVo" = (
-/obj/structure/chair/stool,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/carpet,
-/area/maintenance/bar)
-"cVp" = (
-/turf/open/floor/wood{
- icon_state = "wood-broken"
- },
-/area/maintenance/bar)
-"cVq" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/closed/wall,
-/area/maintenance/bar)
-"cVr" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating,
-/area/maintenance/port/aft)
-"cVs" = (
-/obj/machinery/light{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/wood,
-/area/maintenance/bar)
-"cVt" = (
-/obj/structure/chair/stool,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/carpet,
-/area/maintenance/bar)
-"cVu" = (
-/obj/structure/table/wood/poker,
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/carpet,
-/area/maintenance/bar)
-"cVv" = (
-/obj/structure/table/wood/poker,
-/obj/item/weapon/dice/d20,
-/turf/open/floor/carpet,
-/area/maintenance/bar)
-"cVw" = (
-/obj/structure/chair/stool,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/carpet,
-/area/maintenance/bar)
-"cVx" = (
-/obj/machinery/light{
- dir = 4
- },
-/turf/open/floor/wood,
-/area/maintenance/bar)
-"cVy" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/closed/wall,
-/area/maintenance/bar)
-"cVz" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating,
-/area/maintenance/port/aft)
-"cVA" = (
-/obj/machinery/light/small{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 6
- },
-/turf/open/floor/wood{
- icon_state = "wood-broken7"
- },
-/area/maintenance/bar)
-"cVB" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/button/door{
- id = "MaintDorm1";
- name = "Dorm Bolt Control";
- normaldoorcontrol = 1;
- pixel_x = 10;
- pixel_y = 25;
- req_access_txt = "0";
- specialfunctions = 4
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
-/turf/open/floor/wood,
-/area/maintenance/bar)
-"cVC" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/door/airlock{
- id_tag = "MaintDorm1";
- name = "Dorm 1"
- },
-/turf/open/floor/wood,
-/area/maintenance/bar)
-"cVD" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
-/turf/open/floor/wood,
-/area/maintenance/bar)
-"cVE" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/carpet,
-/area/maintenance/bar)
-"cVF" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 10
- },
-/obj/structure/chair/stool,
-/turf/open/floor/carpet,
-/area/maintenance/bar)
-"cVG" = (
-/obj/structure/chair/stool,
-/turf/open/floor/carpet,
-/area/maintenance/bar)
-"cVH" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/carpet,
-/area/maintenance/bar)
-"cVI" = (
-/turf/open/floor/wood,
-/area/maintenance/bar)
-"cVJ" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/closed/wall,
-/area/maintenance/bar)
-"cVK" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating,
-/area/maintenance/port/aft)
-"cVL" = (
-/obj/structure/lattice,
-/turf/open/space/basic,
-/area/space)
-"cVM" = (
-/obj/structure/table/wood,
-/obj/item/device/radio/intercom{
- freerange = 0;
- frequency = 1459;
- name = "Station Intercom (General)";
- pixel_x = -30
- },
-/obj/effect/landmark{
- name = "blobstart"
- },
-/turf/open/floor/wood,
-/area/maintenance/bar)
-"cVN" = (
-/obj/machinery/airalarm{
- dir = 1;
- icon_state = "alarm0";
- pixel_y = -22
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 1
- },
-/turf/open/floor/wood,
-/area/maintenance/bar)
-"cVO" = (
-/obj/structure/bed,
-/obj/item/weapon/bedsheet/blue,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 5
- },
-/turf/open/floor/wood,
-/area/maintenance/bar)
-"cVP" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/closed/wall,
-/area/maintenance/bar)
-"cVQ" = (
-/obj/machinery/airalarm{
- dir = 1;
- icon_state = "alarm0";
- pixel_y = -22
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 9
- },
-/turf/open/floor/wood,
-/area/maintenance/bar)
-"cVR" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 8
- },
-/turf/open/floor/wood,
-/area/maintenance/bar)
-"cVS" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 8
- },
-/turf/open/floor/wood,
-/area/maintenance/bar)
-"cVT" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/wood,
-/area/maintenance/bar)
-"cVU" = (
-/turf/open/floor/wood,
-/area/maintenance/bar)
-"cVV" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/closed/wall,
-/area/maintenance/bar)
-"cVW" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating,
-/area/maintenance/port/aft)
-"cVX" = (
-/obj/machinery/door/airlock{
- name = "Gaming Room"
- },
-/turf/open/floor/wood,
-/area/maintenance/bar)
-"cVY" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/closed/wall,
-/area/maintenance/bar)
-"cVZ" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/closed/wall,
-/area/maintenance/bar)
-"cWa" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating,
-/area/maintenance/port/aft)
-"cWb" = (
-/obj/structure/lattice,
-/turf/open/space/basic,
-/area/space)
-"cWc" = (
-/obj/structure/closet/secure_closet/freezer/kitchen/maintenance,
-/turf/open/floor/plasteel/floorgrime,
-/area/maintenance/bar)
-"cWd" = (
-/obj/machinery/light/small{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 6
- },
-/turf/open/floor/plasteel/floorgrime,
-/area/maintenance/bar)
-"cWe" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/firealarm{
- pixel_y = 24
- },
-/turf/open/floor/plasteel/floorgrime,
-/area/maintenance/bar)
-"cWf" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/door/airlock{
- name = "Kitchen"
- },
-/turf/open/floor/plasteel/floorgrime,
-/area/maintenance/bar)
-"cWg" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/bar,
-/area/maintenance/bar)
-"cWh" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/newscaster{
- pixel_y = 32
- },
-/turf/open/floor/plasteel/bar,
-/area/maintenance/bar)
-"cWi" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/firealarm{
- pixel_y = 24
- },
-/turf/open/floor/plasteel/bar,
-/area/maintenance/bar)
-"cWj" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 10
- },
-/obj/machinery/door/window/eastleft{
- name = "Bar Counter"
- },
-/turf/open/floor/plasteel/bar,
-/area/maintenance/bar)
-"cWk" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 4
- },
-/turf/open/floor/wood,
-/area/maintenance/bar)
-"cWl" = (
-/obj/machinery/light{
- dir = 1
- },
-/obj/machinery/newscaster{
- pixel_y = 32
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/wood,
-/area/maintenance/bar)
-"cWm" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/light/small{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/maintenance/bar)
-"cWn" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating,
-/area/maintenance/port/aft)
-"cWo" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/obj/machinery/door/airlock/maintenance{
- req_access_txt = "12"
- },
-/turf/open/floor/plating,
-/area/maintenance/port/aft)
-"cWp" = (
-/obj/structure/table,
-/obj/machinery/microwave,
-/turf/open/floor/plasteel/floorgrime,
-/area/maintenance/bar)
-"cWq" = (
-/obj/effect/landmark{
- name = "xeno_spawn";
- pixel_x = -1
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 1
- },
-/turf/open/floor/plasteel/floorgrime,
-/area/maintenance/bar)
-"cWr" = (
-/obj/effect/spawner/lootdrop/keg,
-/turf/open/floor/plasteel/floorgrime,
-/area/maintenance/bar)
-"cWs" = (
-/obj/structure/table,
-/obj/item/device/radio/intercom{
- freerange = 0;
- frequency = 1459;
- name = "Station Intercom (General)";
- pixel_x = -27
- },
-/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/shotglass,
-/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/shotglass,
-/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/shotglass,
-/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/shotglass,
-/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/shotglass,
-/turf/open/floor/plasteel/bar,
-/area/maintenance/bar)
-"cWt" = (
-/turf/open/floor/plasteel/bar,
-/area/maintenance/bar)
-"cWu" = (
-/turf/open/floor/plasteel/bar,
-/area/maintenance/bar)
-"cWv" = (
-/obj/structure/chair/stool/bar,
-/turf/open/floor/wood,
-/area/maintenance/bar)
-"cWw" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 8
- },
-/turf/open/floor/wood,
-/area/maintenance/bar)
-"cWx" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 8
- },
-/turf/open/floor/wood,
-/area/maintenance/bar)
-"cWy" = (
-/obj/item/device/radio/intercom{
- dir = 4;
- name = "Station Intercom (General)";
- pixel_x = 27
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/wood,
-/area/maintenance/bar)
-"cWz" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/open/floor/plating,
-/area/maintenance/bar)
-"cWA" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating,
-/area/maintenance/port/aft)
-"cWB" = (
-/obj/effect/decal/cleanable/cobweb,
-/obj/structure/closet/crate,
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/open/floor/plating,
-/area/maintenance/port/aft)
-"cWC" = (
-/obj/structure/rack{
- dir = 8;
- layer = 2.9
- },
-/obj/effect/spawner/lootdrop/maintenance{
- lootcount = 2;
- name = "2maintenance loot spawner"
- },
-/obj/machinery/light/small{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/maintenance/port/aft)
-"cWD" = (
-/turf/open/floor/plasteel/floorgrime,
-/area/maintenance/bar)
-"cWE" = (
-/obj/machinery/disposal/bin,
-/obj/structure/disposalpipe/trunk,
-/turf/open/floor/plasteel/floorgrime,
-/area/maintenance/bar)
-"cWF" = (
-/obj/structure/table,
-/obj/machinery/power/apc{
- auto_name = 1;
- dir = 8;
- name = "Maintenance Bar APC";
- pixel_x = -25;
- pixel_y = 1
- },
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/obj/item/weapon/reagent_containers/food/drinks/drinkingglass,
-/obj/item/weapon/reagent_containers/food/drinks/drinkingglass,
-/obj/item/weapon/reagent_containers/food/drinks/drinkingglass,
-/obj/item/weapon/reagent_containers/food/drinks/drinkingglass,
-/obj/item/weapon/reagent_containers/food/drinks/drinkingglass,
-/obj/item/weapon/reagent_containers/food/drinks/drinkingglass,
-/obj/item/weapon/reagent_containers/food/drinks/drinkingglass,
-/obj/item/weapon/reagent_containers/food/drinks/drinkingglass,
-/obj/item/weapon/reagent_containers/food/drinks/drinkingglass,
-/obj/item/weapon/reagent_containers/food/drinks/drinkingglass,
-/obj/item/weapon/reagent_containers/food/drinks/drinkingglass,
-/turf/open/floor/plasteel/bar,
-/area/maintenance/bar)
-"cWG" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 6
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/turf/open/floor/plasteel/bar,
-/area/maintenance/bar)
-"cWH" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/turf/open/floor/plasteel/bar,
-/area/maintenance/bar)
-"cWI" = (
-/obj/structure/table,
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/turf/open/floor/plasteel/bar,
-/area/maintenance/bar)
-"cWJ" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/obj/structure/chair/stool/bar,
-/turf/open/floor/wood,
-/area/maintenance/bar)
-"cWK" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/turf/open/floor/wood,
-/area/maintenance/bar)
-"cWL" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/turf/open/floor/wood,
-/area/maintenance/bar)
-"cWM" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/wood,
-/area/maintenance/bar)
-"cWN" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/obj/machinery/door/airlock/maintenance{
- name = "Maintenance Bar"
- },
-/turf/open/floor/wood,
-/area/maintenance/bar)
-"cWO" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/turf/open/floor/plating,
-/area/maintenance/bar)
-"cWP" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
- },
-/turf/open/floor/plating,
-/area/maintenance/port/aft)
-"cWQ" = (
-/obj/structure/lattice,
-/turf/open/space/basic,
-/area/space)
-"cWR" = (
/obj/machinery/power/apc{
dir = 8;
- name = "Engineering Maintenance APC";
- pixel_x = -25;
- pixel_y = 1
+ name = "Central Maintenance APC";
+ pixel_x = -24
},
/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
+ icon_state = "0-2";
+ pixel_y = 1;
+ d2 = 2
},
/turf/open/floor/plating,
-/area/maintenance/port/aft)
-"cWS" = (
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/obj/structure/table,
-/turf/open/floor/plasteel/floorgrime,
-/area/maintenance/bar)
-"cWT" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/closed/wall,
-/area/maintenance/bar)
-"cWU" = (
-/obj/structure/table,
-/obj/machinery/airalarm{
- dir = 4;
- icon_state = "alarm0";
- pixel_x = -22
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/chem_dispenser/drinks{
- name = "dusty old soda dispenser"
- },
-/turf/open/floor/plasteel/bar,
-/area/maintenance/bar)
-"cWV" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 1
- },
-/turf/open/floor/plasteel/bar,
-/area/maintenance/bar)
-"cWW" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
-/turf/open/floor/plasteel/bar,
-/area/maintenance/bar)
-"cWX" = (
-/obj/structure/table,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/filled/cola,
-/turf/open/floor/plasteel/bar,
-/area/maintenance/bar)
-"cWY" = (
-/obj/structure/chair/stool/bar,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/wood,
-/area/maintenance/bar)
-"cWZ" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/wood,
-/area/maintenance/bar)
-"cXa" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/wood{
- icon_state = "wood-broken5"
- },
-/area/maintenance/bar)
-"cXb" = (
-/obj/structure/disposalpipe/junction{
- icon_state = "pipe-j1";
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/wood,
-/area/maintenance/bar)
-"cXc" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/closed/wall,
-/area/maintenance/bar)
-"cXd" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/bar)
-"cXe" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/disposalpipe/junction{
- icon_state = "pipe-j2";
- dir = 1
- },
-/turf/open/floor/plating,
-/area/maintenance/port/aft)
-"cXf" = (
-/obj/machinery/processor,
-/turf/open/floor/plasteel/floorgrime,
-/area/maintenance/bar)
-"cXg" = (
-/obj/structure/closet/secure_closet/personal/cabinet,
-/obj/item/clothing/glasses/sunglasses/reagent,
-/obj/item/ammo_box/foambox,
-/obj/item/weapon/gun/ballistic/shotgun/toy/unrestricted,
-/obj/item/weapon/lighter,
-/obj/item/clothing/mask/cigarette/cigar/cohiba,
-/obj/item/weapon/storage/box/drinkingglasses,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/floorgrime,
-/area/maintenance/bar)
-"cXh" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/closed/wall,
-/area/maintenance/bar)
-"cXi" = (
-/obj/structure/table,
-/obj/machinery/chem_dispenser/drinks/beer{
- name = "dusty old booze dispenser"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/bar,
-/area/maintenance/bar)
-"cXj" = (
-/obj/machinery/light,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/bar,
-/area/maintenance/bar)
-"cXk" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
-/turf/open/floor/plasteel/bar,
-/area/maintenance/bar)
-"cXl" = (
-/obj/structure/table,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/bar,
-/area/maintenance/bar)
-"cXm" = (
-/obj/structure/chair/stool/bar,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/wood,
-/area/maintenance/bar)
-"cXn" = (
-/obj/machinery/firealarm{
- dir = 1;
- pixel_y = -24
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/wood,
-/area/maintenance/bar)
-"cXo" = (
-/obj/machinery/vending/cigarette,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/wood,
-/area/maintenance/bar)
-"cXp" = (
-/obj/machinery/disposal/bin,
-/obj/structure/disposalpipe/trunk{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 9
- },
-/turf/open/floor/wood,
-/area/maintenance/bar)
-"cXq" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/light/small{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/maintenance/bar)
-"cXr" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating,
-/area/maintenance/port/aft)
-"cXs" = (
-/obj/machinery/door/airlock/maintenance{
- req_access_txt = "12"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/turf/open/floor/plating,
-/area/maintenance/port/aft)
+/area/maintenance/central/secondary)
(1,1,1) = {"
aaa
@@ -81114,13 +79552,13 @@ ayl
ayl
ayl
aSf
-aTq
-aTq
-aTq
-aTq
-aTq
-aTq
-aTq
+czK
+czK
+czK
+czK
+czK
+czK
+czK
aPz
aPz
bdB
@@ -81667,7 +80105,7 @@ aaa
aaa
aaa
aaa
-cUo
+aag
aaa
aaa
aaa
@@ -81924,7 +80362,7 @@ aaa
aaa
aaa
aaa
-cUp
+aag
aaa
aaa
aaa
@@ -82181,7 +80619,7 @@ aaa
aaa
aaa
aaa
-cUq
+aag
aaa
aaa
aaa
@@ -82438,7 +80876,7 @@ aaa
aaa
aaa
aaa
-cUr
+aag
aaa
aaa
aaa
@@ -82695,7 +81133,7 @@ aaa
aaa
aaa
aaa
-cUs
+aag
aaa
aaa
aaa
@@ -82952,7 +81390,7 @@ aaa
aaa
aaa
aaa
-cUt
+aag
aaa
aaa
aaa
@@ -83206,16 +81644,16 @@ aaa
aaa
aaa
aaa
-cTM
-cTW
-cUe
-cUu
-cUw
-cUK
-bVx
-bVx
-bVx
-bVx
+aaa
+aaa
+aaa
+aag
+aaa
+aoV
+bZm
+aoV
+aoV
+aoV
aaa
aaS
aaa
@@ -83463,16 +81901,16 @@ aaa
aaa
aaa
aaa
-cTN
-cTX
-cUf
-aaf
-cUx
-cUL
-bVx
-bVx
-bVx
-bVx
+aaa
+aaa
+aaa
+aag
+aaa
+aoV
+bVz
+apQ
+apQ
+aoV
aaa
aaS
aaf
@@ -83720,16 +82158,16 @@ aaa
aaa
aaa
aaa
-cTO
-cTY
-cUg
-aaf
-cUy
-cUM
-bVx
-bVx
-aaf
-bVx
+aaa
+aaa
+aaa
+aag
+aaa
+bVw
+bVz
+bVw
+bVw
+aoV
aaa
aaS
aaa
@@ -83977,17 +82415,17 @@ aaa
aaa
aaa
aaa
-cTP
-aaf
-aaf
-aaf
-aaf
-aaf
-aaf
-aaf
-aaf
-aaf
-cVL
+aaa
+aaa
+aaa
+aag
+aaa
+apQ
+bVz
+aoV
+bVw
+aoV
+aaa
aaS
aaS
aaS
@@ -84234,16 +82672,16 @@ aaa
aaa
aaa
aaa
-cTQ
-cTZ
-cUh
-aaf
-cUz
-cUN
-bVx
-bVx
-aaf
-bVx
+aaa
+aaa
+aaa
+aag
+aaa
+apQ
+bVz
+apQ
+bVw
+aoV
aaa
aaa
aaf
@@ -84489,18 +82927,18 @@ aaa
aaa
aaa
aaa
-cTG
-cTI
-cTR
-cUa
-cUi
aaf
-cUA
-bVx
-bVx
-bVx
aaf
+aaf
+aaa
+aaa
+aag
+aaa
bVx
+caf
+aoV
+bVw
+apQ
aaa
aaa
aaf
@@ -84748,23 +83186,23 @@ aaa
aaa
aaa
aaa
-cTS
-cUb
-cUj
+bCq
+bCq
+bCq
+bLv
+bCq
+aoV
+cbj
+aoV
+bVw
+apQ
aaf
-cUB
-bVx
-bVx
-bVx
-aaf
-bVx
-bVx
-aaa
-cWb
-aaa
-aaa
-cWQ
-aaa
+bCq
+bCq
+bCq
+bCq
+bCq
+bCq
cfx
cfx
cyK
@@ -85003,25 +83441,25 @@ aaa
aaa
aaa
aaa
-cTH
-cTJ
+aaa
+aaa
+bCq
+bJP
+bCq
+bSn
+bCq
+bCq
+cbj
+bLv
+bXv
+bLv
aaf
-apQ
-apQ
-apQ
-apQ
-apQ
-apQ
-apQ
-apQ
-apQ
-apQ
-apQ
-apQ
-cAB
-cAB
-cAB
+bCq
+cAy
cAB
+ccY
+cAD
+cAH
cfw
cgA
chP
@@ -85261,24 +83699,24 @@ cTg
cTi
cTg
cTg
-cTK
-cTT
-aoV
-aoV
-apQ
-aoV
-aoV
-aoV
-aoV
-apQ
-aoV
-aoV
-aoV
-apQ
-cAB
-cWB
-cWR
-cdb
+aaa
+bCq
+bPS
+bRd
+bPS
+bPS
+bCq
+cbk
+bLv
+bHE
+bLv
+aaf
+bCq
+cAA
+bHE
+bHE
+ccZ
+cAK
cfw
cgC
chR
@@ -85518,24 +83956,24 @@ cMl
bHx
cTx
cTg
-cTL
-aoV
-apQ
-apQ
-apQ
-aoV
-aoV
-aoV
-aoV
-apQ
-aoV
-aoV
-aoV
-apQ
-cAB
-cWC
+aaa
+bLv
+bPR
+bRc
+bSo
+bTs
+bCq
+bVy
+bLv
+cyE
+bLv
+bLv
+bCq
+bHE
+cAC
+ccZ
cAE
-bSs
+ceV
cfw
cgB
chQ
@@ -85775,24 +84213,24 @@ cTo
bHx
bLt
bMF
-aoV
-aoV
-apQ
+aaa
bCq
+bPS
+bRf
+bSo
+bTu
bCq
-bCq
-bCq
-bCq
-bLv
-bCq
-bCq
-bCq
-bCq
-bCq
-cAB
+bVB
bHE
-cAE
-ciT
+bHE
+bYu
+bZk
+bCq
+bTz
+bCq
+bCq
+bCq
+bCq
cfw
cgE
chS
@@ -86032,27 +84470,27 @@ cTo
bHx
bLs
cTg
-aoV
-bCq
-bXv
-bCq
+aaa
+bLv
+bPT
+bRe
bSo
-cAh
-cUO
-bVA
+bTt
+bCq
bVA
+bWw
bXw
bYt
-bVA
-bVA
-bVA
-cWo
-bVA
+bZj
+bCq
+bHE
+bCq
+bSq
cdW
-bVA
-cXs
+ceW
+bCq
cgD
-cAi
+bUs
bHE
cjI
bCq
@@ -86289,25 +84727,25 @@ bJc
cTi
cTg
cTg
-aoV
+aaa
bCq
bPV
bCq
-bSo
-bPY
+bCq
+bTw
bCq
bVD
-bHE
-bHE
-bCq
+bWy
+bXx
+bYw
bZj
-bSq
-bSq
-bSq
-bSq
-bSq
-bSq
-bSq
+bYy
+bHE
+bTz
+bHE
+bUs
+ceY
+bCq
bHE
bUs
bHE
@@ -86548,23 +84986,23 @@ bGi
aoV
aoV
bCq
-cyE
-bCq
-cjI
-bPY
+bPU
+bHE
+bSp
+bTv
bCq
bVC
-bHE
-bHE
+bWx
+bWy
+bYv
+bZl
bCq
bHE
-bSq
-cWc
-cWp
+bCq
cda
cgF
-cXf
-bSq
+bCq
+cqn
cAh
chT
bHE
@@ -86803,26 +85241,26 @@ byE
bKk
bGi
aoV
+aoV
+bCq
+bPW
bCq
bCq
-cAh
-cUk
-cUv
-chT
+bTy
+bCq
+bVF
+bWA
+bXy
+bYx
+bWz
bCq
-ceY
bHE
-bHE
-bHE
-bHE
-bSq
-cWd
-cWq
-cWD
+bCq
+bQa
cpY
cyL
-bSq
-bUs
+cqy
+cAi
bQa
bHE
bHE
@@ -87060,25 +85498,25 @@ byE
bKj
bGi
aoV
+aoV
bCq
-bJf
-cUc
+bHE
bHE
bSq
-bSq
-bSq
-bSq
-bSq
-bSq
-bSq
-bSq
-bSq
-cWe
-cWr
-cWE
-cWS
-cXg
-bSq
+bTx
+bCq
+bVE
+bWz
+bHE
+bHE
+bLu
+bCq
+bLu
+bCq
+cdb
+bSs
+bCq
+bCq
cgG
bCq
bCq
@@ -87317,28 +85755,28 @@ bJd
bKm
bxy
apQ
+apQ
bCq
-ciT
bPY
-bHE
-bSq
-cUC
-bSq
-cUV
-cVg
-bSq
+cOw
+bCq
+bCq
+bCq
+bCq
+bCq
+bCq
bYy
-cVM
-bSq
-cWf
-bSq
-bSq
-cWT
-cXh
-bSq
+bCq
+bCq
+bLv
+bCq
+bCq
+bCq
+bCq
+bLv
bUs
bLv
-bVx
+aaa
bCq
ckv
bHE
@@ -87574,28 +86012,28 @@ bHA
bKl
bxy
aaH
-bCq
+aaH
bCq
bPX
+bRg
+bRg
bCq
-bSq
-cUD
-cUP
+bHE
bVG
-cVh
-bSq
-cVA
-cVN
-bSq
-cWg
-cWs
-cWF
-cWU
-cXi
-bSq
+bHE
+bHE
+bHE
+bLv
+apQ
+aoV
+aoV
+aoV
+aoV
+aoV
+bLv
bUs
bLv
-bVx
+aaa
bLv
bJf
ccd
@@ -87831,25 +86269,25 @@ byE
byE
bGi
apQ
+apQ
+bLv
+bQa
+bHE
+bHE
+bCq
+bHE
+bLv
+bLv
+bLv
+bLv
+bLv
+aoV
+aoV
+aoV
+aoV
+aoV
+apQ
bLv
-cTU
-cUd
-cUl
-bSq
-cUE
-bSq
-cUW
-cVi
-bSq
-cVB
-cVO
-bSq
-cWh
-cWt
-cWG
-cWV
-cXj
-bSq
bUs
bLv
aaf
@@ -88088,28 +86526,28 @@ bGM
bKn
bGi
aoV
+aoV
bLv
+bPZ
bHE
bHE
-bPY
-bSq
-bSq
-bSq
-cUX
-cVj
-bSq
-cVC
-cVP
-bSq
-cWi
-cWu
-cWH
-cWW
-cXk
-bSq
+bTz
+bHE
+bLv
+aoV
+aoV
+aoV
+aoV
+aoV
+aoV
+aoV
+aoV
+aoV
+aoV
+bLv
bUs
bLv
-bVx
+aaa
cjJ
ckw
clC
@@ -88345,28 +86783,28 @@ byE
bKp
bGi
apQ
+apQ
bLv
-ccZ
bHE
-cUm
-bSq
-cUF
-cUQ
-cUY
-cVk
-cVs
-cVD
+bHE
+bSs
+bCq
+bHE
+bLv
+aoV
+aoV
+aoV
bcU
-bSq
-cWj
+apQ
+aaH
cCa
-cWI
-cWX
-cXl
-bSq
+aoV
+aoV
+aoV
+bLv
bUs
bLv
-bVx
+aaa
cjJ
cky
clE
@@ -88602,25 +87040,25 @@ byE
bKo
bxy
aaH
+aaH
bCq
-bJe
-cqK
-bPY
-bSq
-cUG
-cUR
-cUZ
-cVl
-cVt
-cVE
-cVQ
-bSq
+bHE
+bRh
+bSr
+bCq
+bHE
+bLv
+apQ
+apQ
+aoV
+aoV
+aaH
bdV
-cWv
-cWJ
-cWY
-cXm
-bSq
+aaH
+apQ
+apQ
+apQ
+bLv
bUs
bLv
aaf
@@ -88859,28 +87297,28 @@ bGn
bKq
bxy
apQ
+apQ
+bCq
+bOK
bCq
bCq
bCq
-bPX
-bSq
-cUH
-cUS
-cVa
-cVm
-cVu
-cVF
-cVR
+bHE
+bLv
+aoV
+aoV
+aoV
+aoV
cjn
bSu
-cWw
-cWK
-cWZ
-cXn
-bSq
+aaH
+aoV
+aoV
+aoV
+bLv
bUs
bLv
-bVx
+aaa
cjJ
cky
clG
@@ -89116,28 +87554,28 @@ bxy
bxy
bxy
bLv
+bLv
bCq
-cTV
bHE
-bPY
-bSq
-cUI
-cUT
-cVb
-cVn
-cVv
-cVG
-cVS
-cVX
-cWk
-cWx
-cWL
-cXa
-cXo
-bSq
+bLv
+aaa
+bLv
+bHE
+bLv
+aoV
+aoV
+aoV
+aoV
+aoV
+aaH
+apQ
+aoV
+aoV
+aoV
+bLv
bUs
bLv
-bVx
+aaa
cjJ
ckz
clF
@@ -89371,27 +87809,27 @@ bCq
bHD
bJe
bCq
-cTF
-bHE
-bCq
bLu
bHE
-bPY
-bSq
-cUJ
+bHE
+bHE
+bHE
+bLv
+aaf
+bLv
bUt
-cVc
-cVo
-cVw
-cVH
-cVT
-cVY
-cWl
-cWy
-cWM
-cXb
-cXp
-bSq
+bLv
+apQ
+apQ
+aoV
+aoV
+aoV
+aaH
+aoV
+aoV
+apQ
+apQ
+bLv
bUs
bLv
aaf
@@ -89630,28 +88068,28 @@ bHE
bCq
bCq
bLv
-bCq
-ceY
+bLv
bHE
-bPY
-bSq
-bSq
-cUU
-cVd
-cVp
-cVx
-cVI
-cVU
-bSq
-bSq
-bSq
-cWN
-cXc
-bSq
-bSq
+bLv
+bCq
+aaa
+bLv
+bUs
+bLv
+aoV
+aoV
+aoV
+aoV
+aoV
+apQ
+aoV
+aoV
+aoV
+aoV
+bCq
bUs
bCq
-bVx
+aaa
aaf
aaa
aaa
@@ -89887,24 +88325,24 @@ bJf
bCq
aaa
aaf
-bCq
-bSs
+bLv
bHE
-bPY
-bQa
+bLv
+aaa
+aaa
bTB
bUv
-cVe
-cVq
-cVy
-cVJ
-cVV
-cVZ
-cWm
-cWz
-cWO
-cXd
-cXq
+bES
+bES
+bES
+bES
+bGp
+bGp
+bGp
+bGp
+bES
+bES
+bES
car
bUs
bCq
@@ -90144,24 +88582,24 @@ bCq
bCq
bLv
bLv
-bCq
-bHE
-bHE
-bPY
-bHE
-bTE
+bLv
+bOK
+bLv
+bLv
+bLv
+bTA
bUu
-cVf
-cVr
-cVz
-cVK
-cVW
-cWa
-cWn
-cWA
-cWP
-cXe
-cXr
+bLw
+bLw
+bLw
+bLw
+bLw
+bLw
+bLw
+bLw
+bLw
+bLw
+bLw
caq
cbw
ccu
@@ -90404,7 +88842,7 @@ bGq
bGq
bGq
bLw
-cUn
+bGq
bGq
bTD
bUx
@@ -92490,7 +90928,7 @@ cDo
cgR
cqA
cqT
-czh
+csg
cEm
crU
csb
@@ -98091,7 +96529,7 @@ bbw
bjJ
bld
bmD
-bmD
+cTD
bmD
bqK
bso
@@ -112182,9 +110620,9 @@ aaf
aaf
aaf
aaf
+aaf
+aaf
alP
-cTD
-cTE
anf
alP
aqC
@@ -112439,8 +110877,8 @@ aaa
aaa
aaa
aaa
-alP
-alP
+aaa
+aaf
alP
anf
alP
diff --git a/_maps/map_files/BoxStation/BoxStation.dmm.rej b/_maps/map_files/BoxStation/BoxStation.dmm.rej
deleted file mode 100644
index f0e788c352..0000000000
--- a/_maps/map_files/BoxStation/BoxStation.dmm.rej
+++ /dev/null
@@ -1,92 +0,0 @@
-diff a/_maps/map_files/BoxStation/BoxStation.dmm b/_maps/map_files/BoxStation/BoxStation.dmm (rejected hunks)
-@@ -33644,7 +33645,7 @@
- /obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 4;
- external_pressure_bound = 140;
-- pressure_checks = 0
-+ pressure_checks = 0;
- name = "server vent"
- },
- /turf/open/floor/circuit{
-@@ -83911,12 +83912,12 @@ aaa
- aaa
- aaa
- cTg
--cTl
--cTn
--cTr
--cTu
--cTw
--cTz
-+cTg
-+cTi
-+cTg
-+cTi
-+cTg
-+cTg
- aaa
- bCq
- bPS
-@@ -84167,13 +84168,13 @@ aaa
- aaa
- aaa
- aaa
--cTh
-+cTg
- bGg
- cTo
- cMl
- bHx
- cTx
--cTA
-+cTg
- aaa
- bLv
- bPR
-@@ -84427,7 +84428,7 @@ bDi
- cTi
- bGh
- bHx
--cTs
-+cTo
- bHx
- bLt
- bMF
-@@ -84681,13 +84682,13 @@ bzP
- bAS
- bxu
- aaa
--cTj
-+cTg
- bGg
--cTp
--cTt
-+cTo
-+cTo
- bHx
- bLs
--cTB
-+cTg
- aaa
- bLv
- bPT
-@@ -84938,13 +84939,13 @@ bzR
- byd
- bxx
- aaa
--cTk
--cTm
--cTq
-+cTg
-+cTg
-+cTi
- bJc
--cTv
--cTy
--cTC
-+cTi
-+cTg
-+cTg
- aaa
- bCq
- bPV
diff --git a/_maps/map_files/Cerestation/cerestation.dmm b/_maps/map_files/Cerestation/cerestation.dmm
index e7d08fb1ed..e7aa0f7adb 100644
--- a/_maps/map_files/Cerestation/cerestation.dmm
+++ b/_maps/map_files/Cerestation/cerestation.dmm
@@ -1533,8 +1533,6 @@
/area/shuttle/syndicate)
"ady" = (
/obj/machinery/airalarm{
- frequency = 1439;
- locked = 0;
pixel_y = 23
},
/obj/machinery/firealarm{
@@ -2837,8 +2835,6 @@
/area/security/prison)
"age" = (
/obj/machinery/airalarm{
- frequency = 1439;
- locked = 0;
pixel_y = 23
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -6969,8 +6965,6 @@
/area/crew_quarters/heads/captain)
"aoi" = (
/obj/machinery/airalarm{
- frequency = 1439;
- locked = 0;
pixel_y = 23
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -7610,8 +7604,6 @@
/area/security/prison)
"apA" = (
/obj/machinery/airalarm{
- frequency = 1439;
- locked = 0;
pixel_y = 23
},
/obj/structure/cable/orange{
@@ -8013,15 +8005,15 @@
/obj/machinery/door/airlock/mining{
req_access_txt = "48"
},
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/miningdock)
"aqr" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
@@ -8087,6 +8079,11 @@
/area/security/warden)
"aqy" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/cable/orange{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
/turf/open/floor/plasteel/showroomfloor{
baseturf = /turf/open/floor/plating/asteroid/airless
},
@@ -8637,8 +8634,6 @@
/area/crew_quarters/locker)
"arC" = (
/obj/machinery/airalarm{
- frequency = 1439;
- locked = 0;
pixel_y = 23
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -8802,8 +8797,6 @@
"arU" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
/obj/machinery/airalarm{
- frequency = 1439;
- locked = 0;
pixel_y = 23
},
/turf/open/floor/plasteel/floorgrime{
@@ -8943,12 +8936,6 @@
/obj/structure/rack,
/obj/item/weapon/gun/energy/e_gun/dragnet,
/obj/item/weapon/gun/energy/e_gun/dragnet,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/cable/orange{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
@@ -9140,8 +9127,6 @@
/obj/structure/bed,
/obj/item/weapon/bedsheet/cmo,
/obj/machinery/airalarm{
- frequency = 1439;
- locked = 0;
pixel_y = 23
},
/obj/item/weapon/storage/secure/safe{
@@ -9246,8 +9231,6 @@
/obj/structure/bed,
/obj/item/weapon/bedsheet/ce,
/obj/machinery/airalarm{
- frequency = 1439;
- locked = 0;
pixel_y = 23
},
/obj/structure/sign/poster/contraband/power{
@@ -9477,11 +9460,6 @@
pixel_y = -3
},
/obj/structure/window/reinforced,
-/obj/structure/cable/orange{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
@@ -10324,8 +10302,6 @@
req_one_access_txt = "19;41"
},
/obj/machinery/airalarm{
- frequency = 1439;
- locked = 0;
pixel_y = 23
},
/turf/open/floor/carpet{
@@ -10663,8 +10639,6 @@
/area/maintenance/asteroid/fore/com_west)
"avD" = (
/obj/machinery/airalarm{
- frequency = 1439;
- locked = 0;
pixel_y = 23
},
/obj/structure/closet/wardrobe/red,
@@ -10745,8 +10719,6 @@
/area/security/warden)
"avL" = (
/obj/machinery/airalarm{
- frequency = 1439;
- locked = 0;
pixel_y = 23
},
/turf/open/floor/plasteel{
@@ -11486,6 +11458,9 @@
/obj/item/weapon/reagent_containers/food/drinks/bottle/vodka/badminka,
/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/shotglass,
/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/shotglass,
+/obj/machinery/airalarm{
+ pixel_y = 23
+ },
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
@@ -11905,8 +11880,6 @@
/obj/structure/bed,
/obj/item/weapon/bedsheet/hos,
/obj/machinery/airalarm{
- frequency = 1439;
- locked = 0;
pixel_y = 23
},
/obj/item/weapon/storage/secure/safe{
@@ -12061,8 +12034,6 @@
/obj/structure/bed,
/obj/item/weapon/bedsheet/rd,
/obj/machinery/airalarm{
- frequency = 1439;
- locked = 0;
pixel_y = 23
},
/obj/structure/sign/poster/contraband/lamarr{
@@ -13985,8 +13956,6 @@
dir = 4
},
/obj/machinery/airalarm{
- frequency = 1439;
- locked = 0;
pixel_y = 23
},
/turf/open/floor/plasteel{
@@ -14137,8 +14106,6 @@
dir = 4
},
/obj/machinery/airalarm{
- frequency = 1439;
- locked = 0;
pixel_y = 23
},
/obj/machinery/camera{
@@ -14213,6 +14180,11 @@
/area/security/main)
"aCK" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
+/obj/structure/cable/orange{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
/turf/open/floor/plasteel/red/side{
icon_state = "red";
dir = 1;
@@ -14272,8 +14244,6 @@
/area/security/brig)
"aCP" = (
/obj/machinery/airalarm{
- frequency = 1439;
- locked = 0;
pixel_y = 23
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -14344,8 +14314,6 @@
/area/security/courtroom)
"aCV" = (
/obj/machinery/airalarm{
- frequency = 1439;
- locked = 0;
pixel_y = 23
},
/turf/open/floor/plasteel{
@@ -15320,8 +15288,6 @@
c_tag = "Bridge Midway 1"
},
/obj/machinery/airalarm{
- frequency = 1439;
- locked = 0;
pixel_y = 23
},
/turf/open/floor/plasteel/darkblue/side{
@@ -15517,8 +15483,6 @@
/obj/structure/bed,
/obj/item/weapon/bedsheet/qm,
/obj/machinery/airalarm{
- frequency = 1439;
- locked = 0;
pixel_y = 23
},
/obj/item/weapon/storage/secure/safe{
@@ -15713,6 +15677,11 @@
d2 = 8;
icon_state = "4-8"
},
+/obj/structure/cable/orange{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
/turf/open/floor/plasteel/red/side{
icon_state = "red";
dir = 10;
@@ -17437,8 +17406,6 @@
dir = 1
},
/obj/machinery/airalarm{
- frequency = 1439;
- locked = 0;
pixel_y = 23
},
/turf/open/floor/wood{
@@ -18959,8 +18926,6 @@
/area/bridge)
"aLg" = (
/obj/machinery/airalarm{
- frequency = 1439;
- locked = 0;
pixel_y = 23
},
/obj/item/weapon/twohanded/required/kirbyplants{
@@ -21040,6 +21005,11 @@
/obj/structure/extinguisher_cabinet{
pixel_y = 32
},
+/obj/structure/cable/orange{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
/turf/open/floor/plasteel/neutral/corner{
dir = 4;
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -23508,6 +23478,9 @@
dir = 4
},
/obj/vehicle/janicart,
+/obj/machinery/airalarm{
+ pixel_y = 23
+ },
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
@@ -28093,6 +28066,9 @@
c_tag = "EVA Equipment";
dir = 6
},
+/obj/machinery/airalarm{
+ pixel_y = 23
+ },
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
@@ -29499,8 +29475,6 @@
/area/hallway/primary/central)
"bek" = (
/obj/machinery/airalarm{
- frequency = 1439;
- locked = 0;
pixel_y = 23
},
/turf/open/floor/plasteel/neutral/corner{
@@ -31231,6 +31205,10 @@
c_tag = "EVA Storage";
dir = 9
},
+/obj/machinery/airalarm{
+ dir = 8;
+ pixel_x = 24
+ },
/turf/open/floor/plasteel/blue/side{
icon_state = "blue";
dir = 4;
@@ -32487,8 +32465,6 @@
/obj/structure/bed,
/obj/item/weapon/bedsheet,
/obj/machinery/airalarm{
- frequency = 1439;
- locked = 0;
pixel_y = 23
},
/turf/open/floor/plasteel/white{
@@ -32926,8 +32902,7 @@
d2 = 4;
icon_state = "2-4"
},
-/obj/machinery/power/emitter{
- anchored = 1;
+/obj/machinery/power/emitter/anchored{
state = 2
},
/turf/open/floor/plating{
@@ -32954,8 +32929,7 @@
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/power/emitter{
- anchored = 1;
+/obj/machinery/power/emitter/anchored{
state = 2
},
/turf/open/floor/plating{
@@ -32967,8 +32941,7 @@
d2 = 8;
icon_state = "0-8"
},
-/obj/machinery/power/emitter{
- anchored = 1;
+/obj/machinery/power/emitter/anchored{
state = 2
},
/turf/open/floor/plating{
@@ -33751,7 +33724,6 @@
name = "Isolation A";
req_access_txt = "39"
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
@@ -34137,28 +34109,22 @@
},
/area/engine/engineering)
"bmB" = (
-/obj/structure/reflector/single{
- anchored = 1;
- dir = 4;
- icon_state = "reflector"
+/obj/structure/reflector/single/anchored{
+ dir = 4
},
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engineering)
"bmC" = (
-/obj/structure/reflector/box{
- anchored = 1
- },
+/obj/structure/reflector/box/anchored,
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engineering)
"bmD" = (
-/obj/structure/reflector/single{
- anchored = 1;
- dir = 1;
- icon_state = "reflector"
+/obj/structure/reflector/single/anchored{
+ dir = 1
},
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -35873,8 +35839,6 @@
"bpt" = (
/obj/structure/table,
/obj/machinery/airalarm{
- frequency = 1439;
- locked = 0;
pixel_y = 23
},
/obj/item/weapon/paper_bin{
@@ -36080,8 +36044,6 @@
dir = 4
},
/obj/machinery/airalarm{
- frequency = 1439;
- locked = 0;
pixel_y = 23
},
/turf/open/floor/plasteel/white{
@@ -37263,9 +37225,7 @@
},
/area/hallway/primary/port)
"brN" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 9
- },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
/turf/open/floor/plasteel/neutral/corner{
dir = 8;
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -37277,6 +37237,9 @@
dir = 1;
pixel_y = -24
},
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
/turf/open/floor/plasteel/neutral/corner{
dir = 8;
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -37284,6 +37247,9 @@
/area/hallway/primary/port)
"brP" = (
/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 10
+ },
/turf/open/floor/plasteel/neutral/corner{
dir = 8;
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -38080,6 +38046,7 @@
dir = 8;
icon_state = "pipe-c"
},
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
@@ -38194,9 +38161,7 @@
},
/area/engine/supermatter)
"btu" = (
-/obj/machinery/power/rad_collector{
- anchored = 1
- },
+/obj/machinery/power/rad_collector/anchored,
/obj/structure/cable/yellow{
d2 = 8;
icon_state = "0-8"
@@ -38253,9 +38218,7 @@
},
/area/engine/supermatter)
"btA" = (
-/obj/machinery/power/rad_collector{
- anchored = 1
- },
+/obj/machinery/power/rad_collector/anchored,
/obj/structure/cable/yellow{
icon_state = "0-4";
d2 = 4
@@ -38879,9 +38842,6 @@
},
/area/hydroponics)
"buE" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
/obj/machinery/door/airlock/maintenance{
name = "Hydroponics";
req_access_txt = "35"
@@ -38897,9 +38857,6 @@
},
/area/hydroponics)
"buF" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
/obj/machinery/light/small{
dir = 1
},
@@ -38908,6 +38865,9 @@
d2 = 8;
icon_state = "4-8"
},
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 5
+ },
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
@@ -39131,9 +39091,7 @@
},
/area/engine/supermatter)
"buZ" = (
-/obj/machinery/power/rad_collector{
- anchored = 1
- },
+/obj/machinery/power/rad_collector/anchored,
/obj/structure/cable/yellow{
icon_state = "0-4";
d2 = 4
@@ -39865,9 +39823,7 @@
},
/area/engine/engineering)
"bwo" = (
-/obj/machinery/power/rad_collector{
- anchored = 1
- },
+/obj/machinery/power/rad_collector/anchored,
/obj/structure/cable/yellow{
d2 = 8;
icon_state = "0-8"
@@ -40226,8 +40182,6 @@
dir = 8
},
/obj/machinery/airalarm{
- frequency = 1439;
- locked = 0;
pixel_y = 23
},
/turf/open/floor/plasteel/white{
@@ -40498,8 +40452,6 @@
dir = 6
},
/obj/machinery/airalarm{
- frequency = 1439;
- locked = 0;
pixel_y = 23
},
/turf/open/floor/plasteel{
@@ -40696,8 +40648,6 @@
icon_state = "0-8"
},
/obj/machinery/airalarm{
- frequency = 1439;
- locked = 0;
pixel_y = 23
},
/turf/open/floor/plasteel{
@@ -40995,8 +40945,6 @@
c_tag = "Hydroponics North 2"
},
/obj/machinery/airalarm{
- frequency = 1439;
- locked = 0;
pixel_y = 23
},
/turf/open/floor/plasteel/darkgreen{
@@ -41596,7 +41544,6 @@
"bzz" = (
/obj/effect/turf_decal/delivery,
/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{
- name = "scrubbers pipe";
dir = 4
},
/turf/open/floor/plasteel/black{
@@ -42347,9 +42294,7 @@
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/airalarm{
- frequency = 1439;
- locked = 0;
+/obj/machinery/airalarm/engine{
pixel_y = 23
},
/obj/machinery/atmospherics/pipe/manifold/green/visible,
@@ -43743,8 +43688,6 @@
/area/medical/chemistry)
"bDn" = (
/obj/machinery/airalarm{
- frequency = 1439;
- locked = 0;
pixel_y = 23
},
/turf/open/floor/plasteel/whiteyellow/side{
@@ -44445,8 +44388,6 @@
/area/medical/genetics)
"bEF" = (
/obj/machinery/airalarm{
- frequency = 1439;
- locked = 0;
pixel_y = 23
},
/turf/open/floor/plasteel/whitepurple/side{
@@ -44665,8 +44606,6 @@
/obj/item/weapon/grenade/chem_grenade/metalfoam,
/obj/item/weapon/grenade/chem_grenade/metalfoam,
/obj/machinery/airalarm{
- frequency = 1439;
- locked = 0;
pixel_y = 23
},
/turf/open/floor/plasteel{
@@ -44851,8 +44790,6 @@
dir = 1
},
/obj/machinery/airalarm{
- frequency = 1439;
- locked = 0;
pixel_y = 23
},
/obj/structure/cable/yellow{
@@ -45436,8 +45373,6 @@
/area/library)
"bGw" = (
/obj/machinery/airalarm{
- frequency = 1439;
- locked = 0;
pixel_y = 23
},
/obj/item/weapon/twohanded/required/kirbyplants{
@@ -45524,8 +45459,6 @@
/obj/item/weapon/grown/log,
/obj/item/weapon/grown/log,
/obj/machinery/airalarm{
- frequency = 1439;
- locked = 0;
pixel_y = 23
},
/obj/item/weapon/hatchet,
@@ -46101,8 +46034,6 @@
pixel_y = -3
},
/obj/machinery/airalarm{
- frequency = 1439;
- locked = 0;
pixel_y = 23
},
/turf/open/floor/plasteel/white{
@@ -46781,12 +46712,8 @@
"bIO" = (
/obj/structure/table/glass,
/obj/item/weapon/reagent_containers/glass/bottle/epinephrine,
-/obj/item/stack/sheet/mineral/plasma{
- layer = 2.9
- },
-/obj/item/stack/sheet/mineral/plasma{
- layer = 2.9
- },
+/obj/item/stack/sheet/mineral/plasma,
+/obj/item/stack/sheet/mineral/plasma,
/obj/machinery/camera{
c_tag = "Chemistry";
dir = 10;
@@ -46881,9 +46808,6 @@
},
/obj/item/clothing/suit/straight_jacket,
/obj/item/clothing/mask/muzzle,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
@@ -47305,6 +47229,9 @@
/area/engine/engineering)
"bJS" = (
/obj/structure/table,
+/obj/item/weapon/twohanded/rcl/pre_loaded,
+/obj/item/weapon/twohanded/rcl/pre_loaded,
+/obj/item/weapon/twohanded/rcl/pre_loaded,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
@@ -47811,8 +47738,6 @@
/area/engine/gravity_generator)
"bKQ" = (
/obj/machinery/airalarm{
- frequency = 1439;
- locked = 0;
pixel_y = 23
},
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
@@ -48936,9 +48861,6 @@
pixel_y = 2
},
/obj/item/clothing/neck/stethoscope,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
/obj/machinery/light,
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -50831,6 +50753,11 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
+/obj/structure/cable/orange{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
@@ -51569,7 +51496,6 @@
/area/engine/atmos)
"bRz" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{
- name = "scrubbers pipe";
dir = 1
},
/turf/open/floor/plasteel{
@@ -51583,7 +51509,6 @@
name = "Waste Loop"
},
/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{
- name = "scrubbers pipe";
dir = 4
},
/turf/open/floor/plasteel{
@@ -53377,8 +53302,6 @@
/area/crew_quarters/fitness)
"bVm" = (
/obj/machinery/airalarm{
- frequency = 1439;
- locked = 0;
pixel_y = 23
},
/turf/open/floor/plasteel/black{
@@ -55746,6 +55669,10 @@
/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
dir = 1
},
+/obj/machinery/airalarm{
+ dir = 4;
+ pixel_x = -22
+ },
/turf/open/floor/plasteel/grimy{
baseturf = /turf/open/floor/plating/asteroid/airless
},
@@ -57663,9 +57590,7 @@
},
/area/shuttle/escape)
"cdZ" = (
-/obj/structure/closet/secure_closet/miner{
- locked = 0
- },
+/obj/structure/closet/secure_closet/miner/unlocked,
/obj/effect/turf_decal/stripes/line{
dir = 9
},
@@ -59235,7 +59160,7 @@
height = 20;
name = "Cere emergency shuttle";
port_angle = 90;
- preferred_direction = 2;
+ preferred_direction = 1;
width = 42
},
/obj/docking_port/stationary{
@@ -60619,9 +60544,6 @@
},
/area/hallway/primary/aft)
"cjO" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -60632,6 +60554,9 @@
req_access_txt = "24"
},
/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
@@ -60692,8 +60617,6 @@
/area/construction/mining/aux_base)
"cjU" = (
/obj/machinery/airalarm{
- frequency = 1439;
- locked = 0;
pixel_y = 23
},
/obj/effect/turf_decal/stripes/line{
@@ -60864,10 +60787,7 @@
},
/obj/machinery/airalarm{
dir = 4;
- locked = 0;
- pixel_x = -23;
- req_access = null;
- req_one_access_txt = "24;10"
+ pixel_x = -22
},
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -61677,8 +61597,6 @@
dir = 8
},
/obj/machinery/airalarm{
- frequency = 1439;
- locked = 0;
pixel_y = 23
},
/turf/open/floor/plasteel{
@@ -62030,8 +61948,6 @@
dir = 4
},
/obj/machinery/airalarm{
- frequency = 1439;
- locked = 0;
pixel_y = 23
},
/turf/open/floor/plasteel/red/side{
@@ -62823,8 +62739,6 @@
dir = 4
},
/obj/machinery/airalarm{
- frequency = 1439;
- locked = 0;
pixel_y = 23
},
/turf/open/floor/plasteel/blue/corner{
@@ -64480,8 +64394,6 @@
/area/science/robotics/lab)
"cqz" = (
/obj/machinery/airalarm{
- frequency = 1439;
- locked = 0;
pixel_y = 23
},
/turf/open/floor/plasteel{
@@ -64603,8 +64515,6 @@
/obj/item/stack/sheet/metal/fifty,
/obj/item/clothing/glasses/welding,
/obj/machinery/airalarm{
- frequency = 1439;
- locked = 0;
pixel_y = 23
},
/turf/open/floor/plasteel/whitepurple/side{
@@ -64632,7 +64542,7 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/asteroid/aft/science)
+/area/hallway/primary/aft)
"cqM" = (
/obj/structure/cable{
d1 = 1;
@@ -66359,7 +66269,7 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/maintenance/asteroid/aft/science)
+/area/science/lab)
"ctR" = (
/obj/machinery/power/terminal{
dir = 4
@@ -66753,8 +66663,6 @@
/area/science/research)
"cuN" = (
/obj/machinery/airalarm{
- frequency = 1439;
- locked = 0;
pixel_y = 23
},
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
@@ -68185,8 +68093,6 @@
/area/science/xenobiology)
"cwO" = (
/obj/machinery/airalarm{
- frequency = 1439;
- locked = 0;
pixel_y = 23
},
/turf/open/floor/plasteel/white{
@@ -68712,11 +68618,6 @@
d2 = 2;
icon_state = "1-2"
},
-/obj/structure/cable/orange{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
/obj/effect/turf_decal/stripes/asteroid/line{
icon_state = "ast_warn";
dir = 1
@@ -68778,8 +68679,6 @@
/area/science/server)
"cxT" = (
/obj/machinery/airalarm{
- frequency = 1439;
- locked = 0;
pixel_y = 23
},
/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
@@ -69934,9 +69833,6 @@
name = "Kill Chamber";
req_access_txt = "55"
},
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 4
- },
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
@@ -72217,7 +72113,6 @@
pixel_x = 3;
pixel_y = -3
},
-/obj/machinery/atmospherics/components/unary/vent_pump/on,
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
@@ -75181,8 +75076,6 @@
dir = 1
},
/obj/machinery/airalarm{
- frequency = 1439;
- locked = 0;
pixel_y = 23
},
/obj/machinery/atmospherics/components/trinary/filter/critical{
@@ -75721,8 +75614,6 @@
/area/crew_quarters/locker)
"cLx" = (
/obj/machinery/airalarm{
- frequency = 1439;
- locked = 0;
pixel_y = 23
},
/obj/structure/sign/map/left/ceres{
@@ -76612,8 +76503,6 @@
/area/crew_quarters/theatre)
"cNb" = (
/obj/machinery/airalarm{
- frequency = 1439;
- locked = 0;
pixel_y = 23
},
/turf/open/floor/plasteel/cafeteria{
@@ -76805,8 +76694,6 @@
dir = 4
},
/obj/machinery/airalarm{
- frequency = 1439;
- locked = 0;
pixel_y = 23
},
/turf/open/floor/wood{
@@ -77254,8 +77141,6 @@
dir = 4
},
/obj/machinery/airalarm{
- frequency = 1439;
- locked = 0;
pixel_y = 23
},
/turf/open/floor/plasteel/barber{
@@ -78279,6 +78164,7 @@
/obj/item/clothing/glasses/meson{
pixel_y = 4
},
+/obj/item/weapon/twohanded/rcl/pre_loaded,
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
@@ -80297,14 +80183,9 @@
},
/area/maintenance/disposal/incinerator)
"cUO" = (
-/obj/machinery/airalarm{
- desc = "This particular atmos control unit appears to have no access restrictions.";
+/obj/machinery/airalarm/all_access{
dir = 8;
- locked = 0;
- name = "all-access air alarm";
- pixel_x = 24;
- req_access = "0";
- req_one_access = "0"
+ pixel_x = 24
},
/obj/machinery/atmospherics/components/unary/portables_connector/visible{
name = "output gas connector port"
@@ -85125,8 +85006,6 @@
/area/security/armory)
"dfc" = (
/obj/machinery/airalarm{
- frequency = 1439;
- locked = 0;
pixel_y = 23
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -87467,8 +87346,6 @@
"dlg" = (
/obj/machinery/computer/gulag_teleporter_computer,
/obj/machinery/airalarm{
- frequency = 1439;
- locked = 0;
pixel_y = 23
},
/turf/open/floor/plasteel{
@@ -88702,8 +88579,7 @@
/area/security/processing)
"dnR" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 4;
-
+ dir = 4
},
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -90062,12 +89938,6 @@
/obj/structure/window/reinforced{
dir = 1
},
-/obj/structure/cable/orange{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
@@ -90241,12 +90111,6 @@
pixel_x = 3;
pixel_y = -3
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/cable/orange{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
@@ -90432,12 +90296,6 @@
pixel_x = 3;
pixel_y = -3
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/cable/orange{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
@@ -91610,8 +91468,6 @@
dir = 4
},
/obj/machinery/airalarm{
- frequency = 1439;
- locked = 0;
pixel_y = 23
},
/obj/machinery/camera{
@@ -91661,8 +91517,6 @@
dir = 8
},
/obj/machinery/airalarm{
- frequency = 1439;
- locked = 0;
pixel_y = 23
},
/turf/open/floor/plasteel/black{
@@ -91933,7 +91787,7 @@
/area/crew_quarters/heads/hos)
"dua" = (
/mob/living/simple_animal/hostile/retaliate/bat{
- desc = "A fierce companion for any person of power, this spider has been carefully trained by NanoTrasen specialists. Its beady, staring eyes send shivers down your spine.";
+ desc = "A fierce companion for any person of power, this spider has been carefully trained by Nanotrasen specialists. Its beady, staring eyes send shivers down your spine.";
emote_hear = list("chitters");
faction = list("spiders");
harm_intent_damage = 3;
@@ -92262,6 +92116,15 @@
/obj/structure/reagent_dispensers/peppertank{
pixel_x = -32
},
+/obj/machinery/power/apc{
+ dir = 2;
+ name = "Warden's Office APC";
+ pixel_y = -24
+ },
+/obj/structure/cable/orange{
+ d2 = 4;
+ icon_state = "0-4"
+ },
/turf/open/floor/plasteel/showroomfloor{
baseturf = /turf/open/floor/plating/asteroid/airless
},
@@ -92503,6 +92366,11 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/cable/orange{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
/turf/open/floor/plasteel/showroomfloor{
baseturf = /turf/open/floor/plating/asteroid/airless
},
@@ -92727,6 +92595,15 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "Brig APC";
+ pixel_y = 24
+ },
+/obj/structure/cable/orange{
+ d2 = 2;
+ icon_state = "0-2"
+ },
/turf/open/floor/plasteel/red/side{
icon_state = "red";
dir = 9;
@@ -93900,8 +93777,6 @@
/area/security/courtroom)
"dxP" = (
/obj/machinery/airalarm{
- frequency = 1439;
- locked = 0;
pixel_y = 23
},
/turf/open/floor/plasteel/vault{
@@ -94638,6 +94513,184 @@
/obj/machinery/atmospherics/pipe/simple/cyan/visible,
/turf/closed/wall/r_wall,
/area/engine/supermatter)
+"dzg" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/grille,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 6
+ },
+/turf/open/floor/plating,
+/area/hallway/secondary/bridges/cargo_ai)
+"dzh" = (
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/ai_monitored/storage/eva)
+"dzi" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
+/obj/structure/cable/orange{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/security/brig)
+"dzj" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/cable/orange{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable/orange{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/open/floor/plasteel/red/side{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/security/brig)
+"dzk" = (
+/obj/machinery/airalarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/turf/open/floor/circuit,
+/area/ai_monitored/nuke_storage)
+"dzl" = (
+/obj/structure/cable/orange{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/airalarm{
+ pixel_y = 23
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 1;
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/hallway/primary/starboard)
+"dzm" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/airalarm{
+ dir = 4;
+ pixel_x = -22
+ },
+/turf/open/floor/plasteel{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/hallway/primary/starboard)
+"dzn" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/airalarm{
+ dir = 8;
+ pixel_x = 24
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/hallway/primary/starboard)
+"dzo" = (
+/obj/machinery/power/apc{
+ dir = 2;
+ name = "Starboard Asteroid Maintenance APC";
+ pixel_y = -24
+ },
+/obj/effect/turf_decal/stripes/end{
+ icon_state = "warn_end";
+ dir = 1
+ },
+/obj/structure/cable/orange,
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/asteroid/starboard)
+"dzp" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/airalarm{
+ dir = 8;
+ pixel_x = 24
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/hallway/primary/starboard/aft)
+"dzq" = (
+/obj/machinery/airalarm{
+ pixel_y = 23
+ },
+/turf/open/floor/wood{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/security/vacantoffice)
+"dzr" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/airalarm{
+ dir = 8;
+ pixel_x = 24
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 4;
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/hallway/primary/aft)
+"dzs" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/airalarm{
+ pixel_y = 23
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 1;
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/hallway/primary/aft)
(1,1,1) = {"
aaa
@@ -106781,7 +106834,7 @@ dtJ
dtJ
dvh
dvG
-aDP
+dzi
aFl
cLB
dwO
@@ -108323,8 +108376,8 @@ duk
aqy
dvk
aCK
-aGP
-aFq
+cHc
+dzj
dwv
dwT
dxn
@@ -109739,7 +109792,7 @@ civ
cjc
cjN
cky
-cky
+dzr
cky
cmI
cnO
@@ -118222,7 +118275,7 @@ cfA
cfA
cfA
cfA
-cmJ
+dzs
cfv
coN
cJC
@@ -121196,7 +121249,7 @@ cEY
aUZ
aUZ
aUZ
-aVn
+dzk
aSN
abC
aaa
@@ -121322,7 +121375,7 @@ djY
cxE
djV
cSA
-czT
+djz
dka
djV
dkb
@@ -128113,7 +128166,7 @@ dsW
dvv
aDs
aEQ
-dwo
+dtX
dvv
arP
arP
@@ -132019,7 +132072,7 @@ cIE
cIF
bfg
bgk
-bfg
+dzh
cIF
cIH
cIv
@@ -135064,7 +135117,7 @@ cXC
cXH
aqV
cXP
-cXR
+cXF
aqU
aaa
aaa
@@ -136349,7 +136402,7 @@ cXC
aqV
aqV
cXQ
-cXR
+cXF
aqU
aaa
aaa
@@ -137634,7 +137687,7 @@ cXD
cXI
aqV
cXP
-cXR
+cXF
aqU
aaa
aaa
@@ -138637,7 +138690,7 @@ ako
ako
ako
ako
-cXv
+dzg
cXv
cXv
cXv
@@ -138662,7 +138715,7 @@ aOe
cXJ
aqV
cXP
-cXR
+cXF
aqU
aaa
aaa
@@ -139947,7 +140000,7 @@ cXF
cXL
aqV
cXQ
-cXR
+cXF
aqU
aaa
aaa
@@ -141232,7 +141285,7 @@ cXF
cXK
aqV
cXP
-cXR
+cXF
aqU
aaa
aaa
@@ -141275,7 +141328,7 @@ bhm
bhm
bjG
dyY
-bkG
+dzm
blF
bkG
bnY
@@ -141809,7 +141862,7 @@ bEr
bFF
bEr
bIK
-bEr
+dzn
bEr
bMy
bNG
@@ -141851,7 +141904,7 @@ cXf
cXg
cdy
djr
-djr
+dzp
djr
djr
cfl
@@ -143915,7 +143968,7 @@ cdi
cth
cgW
chI
-cim
+dzq
cim
cjE
ckv
@@ -144182,7 +144235,7 @@ cmz
cnH
cnH
chI
-cpZ
+cpX
cnX
crW
csG
@@ -145382,7 +145435,7 @@ bcS
bcS
beD
aZq
-bgw
+dzl
bhp
bic
biP
@@ -148497,7 +148550,7 @@ bMO
bNM
bOR
bPZ
-cQi
+dzo
beH
aZM
aZM
diff --git a/_maps/map_files/Cerestation/cerestation.dmm.rej b/_maps/map_files/Cerestation/cerestation.dmm.rej
deleted file mode 100644
index b003bc1f30..0000000000
--- a/_maps/map_files/Cerestation/cerestation.dmm.rej
+++ /dev/null
@@ -1,10 +0,0 @@
-diff a/_maps/map_files/Cerestation/cerestation.dmm b/_maps/map_files/Cerestation/cerestation.dmm (rejected hunks)
-@@ -94667,7 +94667,7 @@
- "dzo" = (
- /obj/machinery/power/apc{
- dir = 2;
-- name = "Starboard Asteroid Maintenace APC";
-+ name = "Starboard Asteroid Maintenance APC";
- pixel_y = -24
- },
- /obj/effect/turf_decal/stripes/end{
diff --git a/_maps/map_files/Deltastation/DeltaStation2.dmm b/_maps/map_files/Deltastation/DeltaStation2.dmm
index 96c7f5a8ab..14e8acd6fd 100644
--- a/_maps/map_files/Deltastation/DeltaStation2.dmm
+++ b/_maps/map_files/Deltastation/DeltaStation2.dmm
@@ -430,9 +430,7 @@
/obj/machinery/light/small{
dir = 8
},
-/obj/structure/closet/emcloset{
- anchored = 1
- },
+/obj/structure/closet/emcloset/anchored,
/obj/structure/sign/vacuum{
pixel_x = -32
},
@@ -3418,6 +3416,7 @@
/obj/effect/turf_decal/stripes/line{
dir = 1
},
+/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel,
/area/security/vacantoffice)
"ahy" = (
@@ -4207,6 +4206,7 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
+/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel/blue/side{
icon_state = "blue";
dir = 4
@@ -4288,6 +4288,7 @@
/obj/effect/turf_decal/stripes/line{
dir = 4
},
+/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel,
/area/security/checkpoint/checkpoint2)
"ajy" = (
@@ -4400,9 +4401,7 @@
/turf/open/space,
/area/solar/port/fore)
"ajK" = (
-/obj/structure/reflector/single{
- anchored = 1
- },
+/obj/structure/reflector/single/anchored,
/turf/open/floor/plasteel/vault{
dir = 8
},
@@ -4413,8 +4412,7 @@
},
/area/engine/atmospherics_engine)
"ajM" = (
-/obj/structure/reflector/box{
- anchored = 1;
+/obj/structure/reflector/box/anchored{
dir = 4;
icon_state = "reflector_box"
},
@@ -4441,10 +4439,8 @@
},
/area/engine/atmospherics_engine)
"ajP" = (
-/obj/structure/reflector/single{
- anchored = 1;
- dir = 8;
- icon_state = "reflector"
+/obj/structure/reflector/single/anchored{
+ dir = 8
},
/turf/open/floor/plasteel/vault{
dir = 8
@@ -4807,18 +4803,14 @@
},
/area/engine/atmospherics_engine)
"akQ" = (
-/obj/structure/reflector/double{
- anchored = 1
- },
+/obj/structure/reflector/double/anchored,
/turf/open/floor/plasteel/vault{
dir = 5
},
/area/engine/atmospherics_engine)
"akR" = (
-/obj/structure/reflector/double{
- anchored = 1;
- dir = 1;
- icon_state = "reflector_double"
+/obj/structure/reflector/double/anchored{
+ dir = 1
},
/turf/open/floor/plasteel/vault{
dir = 5
@@ -5259,10 +5251,8 @@
/turf/open/floor/plasteel/airless/solarpanel,
/area/solar/port/fore)
"alP" = (
-/obj/structure/reflector/double{
- anchored = 1;
- dir = 4;
- icon_state = "reflector_double"
+/obj/structure/reflector/double/anchored{
+ dir = 4
},
/turf/open/floor/plasteel/vault{
dir = 5
@@ -5823,9 +5813,7 @@
},
/area/engine/atmospherics_engine)
"anb" = (
-/obj/structure/reflector/box{
- anchored = 1
- },
+/obj/structure/reflector/box/anchored,
/turf/open/floor/plasteel/vault{
dir = 5
},
@@ -5934,7 +5922,7 @@
"ano" = (
/obj/structure/table/wood,
/obj/item/weapon/phone{
- desc = "Supposedly a direct line to NanoTrasen Central Command. It's not even plugged in.";
+ desc = "Supposedly a direct line to Nanotrasen Central Command. It's not even plugged in.";
pixel_x = -3;
pixel_y = 3
},
@@ -6000,11 +5988,7 @@
/turf/open/floor/wood,
/area/security/vacantoffice)
"anx" = (
-/obj/structure/closet/secure_closet{
- anchored = 1;
- name = "Contraband Locker";
- req_access_txt = "19"
- },
+/obj/structure/closet/secure_closet/contraband/heads,
/obj/machinery/airalarm{
dir = 1;
pixel_y = -22
@@ -6316,10 +6300,8 @@
/turf/open/floor/plasteel/airless/solarpanel,
/area/solar/port/fore)
"aoa" = (
-/obj/structure/reflector/single{
- anchored = 1;
- dir = 1;
- icon_state = "reflector"
+/obj/structure/reflector/single/anchored{
+ dir = 1
},
/turf/open/floor/plasteel/vault{
dir = 8
@@ -6621,8 +6603,7 @@
pixel_y = 1;
d2 = 2
},
-/obj/machinery/power/emitter{
- anchored = 1;
+/obj/machinery/power/emitter/anchored{
dir = 1;
state = 2
},
@@ -6773,6 +6754,7 @@
d2 = 8;
icon_state = "4-8"
},
+/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel/neutral/side{
dir = 1
},
@@ -7690,6 +7672,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
+/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel/neutral,
/area/maintenance/starboard/fore)
"aqI" = (
@@ -9048,11 +9031,6 @@
/area/quartermaster/storage)
"atd" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
/obj/machinery/door/airlock/maintenance_hatch{
name = "Cargo Maintenance";
req_access_txt = "31"
@@ -9201,7 +9179,6 @@
/area/maintenance/port/fore)
"atw" = (
/obj/structure/mirror{
- desc = "Mirror mirror on the wall, who is the most robust of them all?";
pixel_x = -28
},
/obj/structure/table/wood,
@@ -9294,7 +9271,6 @@
/area/maintenance/port/fore)
"atH" = (
/obj/structure/mirror{
- desc = "Mirror mirror on the wall, who is the most robust of them all?";
pixel_x = -28
},
/obj/structure/table/reinforced,
@@ -9375,7 +9351,6 @@
"atO" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/mirror{
- desc = "Mirror mirror on the wall, who is the most robust of them all?";
pixel_x = -26
},
/obj/structure/sink{
@@ -9400,6 +9375,7 @@
/area/crew_quarters/toilet/auxiliary)
"atR" = (
/obj/effect/decal/cleanable/dirt,
+/obj/effect/landmark/event_spawn,
/turf/open/floor/plating,
/area/crew_quarters/toilet/auxiliary)
"atS" = (
@@ -9705,9 +9681,7 @@
/turf/open/floor/plating,
/area/engine/supermatter)
"auC" = (
-/obj/machinery/power/rad_collector{
- anchored = 1
- },
+/obj/machinery/power/rad_collector/anchored,
/obj/structure/cable{
d2 = 8;
icon_state = "0-8"
@@ -9743,9 +9717,7 @@
/turf/open/floor/plating,
/area/engine/supermatter)
"auH" = (
-/obj/machinery/power/rad_collector{
- anchored = 1
- },
+/obj/machinery/power/rad_collector/anchored,
/obj/structure/cable{
icon_state = "0-4";
d2 = 4
@@ -9920,6 +9892,7 @@
"avd" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/bot,
+/obj/effect/landmark/event_spawn,
/mob/living/simple_animal/hostile/lizard{
name = "Eats-The-Roaches";
real_name = "Wags-His-Tail"
@@ -11277,28 +11250,28 @@
/turf/open/floor/plasteel,
/area/engine/atmospherics_engine)
"axX" = (
-/obj/machinery/atmospherics/pipe/simple/yellow/visible{
- dir = 4
- },
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
/obj/effect/turf_decal/bot,
+/obj/machinery/atmospherics/pipe/simple/orange/visible{
+ dir = 4
+ },
/turf/open/floor/plasteel,
/area/engine/atmospherics_engine)
"axY" = (
/obj/structure/grille,
-/obj/machinery/atmospherics/pipe/simple/yellow/visible{
+/obj/structure/window/plasma/reinforced/fulltile,
+/obj/machinery/atmospherics/pipe/simple/orange/visible{
dir = 4
},
-/obj/structure/window/plasma/reinforced/fulltile,
/turf/open/floor/plating,
/area/engine/atmospherics_engine)
"axZ" = (
/obj/structure/lattice/catwalk,
-/obj/machinery/atmospherics/pipe/simple/yellow/visible{
+/obj/machinery/atmospherics/pipe/simple/orange/visible{
dir = 10
},
/turf/open/space,
@@ -11645,6 +11618,7 @@
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel/neutral,
/area/quartermaster/warehouse)
"ayF" = (
@@ -11914,7 +11888,7 @@
/area/engine/atmospherics_engine)
"azm" = (
/obj/structure/lattice,
-/obj/machinery/atmospherics/pipe/simple/yellow/visible,
+/obj/machinery/atmospherics/pipe/simple/orange/visible,
/turf/open/space,
/area/space)
"azn" = (
@@ -12391,7 +12365,6 @@
/area/engine/atmospherics_engine)
"aAc" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{
- name = "scrubbers pipe";
dir = 4
},
/obj/effect/turf_decal/bot,
@@ -12446,7 +12419,7 @@
/area/engine/atmospherics_engine)
"aAj" = (
/obj/structure/lattice/catwalk,
-/obj/machinery/atmospherics/pipe/simple/yellow/visible,
+/obj/machinery/atmospherics/pipe/simple/orange/visible,
/turf/open/space,
/area/space)
"aAk" = (
@@ -12539,8 +12512,9 @@
icon_state = "1-2"
},
/obj/machinery/door/airlock/maintenance_hatch{
- name = "Maintenance Hatch";
- req_access_txt = "12"
+ name = "Service Hallway Maintenance Hatch";
+ req_access_txt = "0";
+ req_one_access_txt = "12;25;28;46"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/disposalpipe/segment,
@@ -12872,12 +12846,8 @@
icon_state = "4-8"
},
/obj/effect/decal/cleanable/dirt,
-/obj/machinery/airalarm{
- locked = 0;
- name = "Engine Air Alarm";
- pixel_y = 23;
- req_access = null;
- req_one_access_txt = "24;10"
+/obj/machinery/airalarm/engine{
+ pixel_y = 23
},
/obj/effect/turf_decal/stripes/line{
dir = 1
@@ -13412,6 +13382,7 @@
/area/engine/atmospherics_engine)
"aCe" = (
/obj/effect/decal/cleanable/dirt,
+/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel/yellow,
/area/engine/atmospherics_engine)
"aCf" = (
@@ -16000,6 +15971,7 @@
/turf/open/floor/plasteel/neutral/side,
/area/maintenance/port/fore)
"aGJ" = (
+/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel/neutral/side,
/area/maintenance/port/fore)
"aGK" = (
@@ -16500,9 +16472,7 @@
/obj/structure/extinguisher_cabinet{
pixel_x = 26
},
-/obj/structure/closet/emcloset{
- anchored = 1
- },
+/obj/structure/closet/emcloset/anchored,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
/area/engine/atmospherics_engine)
@@ -16730,6 +16700,7 @@
},
/area/quartermaster/sorting)
"aIj" = (
+/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel/neutral,
/area/quartermaster/sorting)
"aIk" = (
@@ -17231,21 +17202,21 @@
/area/engine/atmos)
"aJf" = (
/obj/structure/lattice/catwalk,
-/obj/machinery/atmospherics/pipe/simple/yellow/visible{
+/obj/machinery/atmospherics/pipe/simple/orange/visible{
dir = 5
},
/turf/open/space,
/area/space)
"aJg" = (
/obj/structure/lattice/catwalk,
-/obj/machinery/atmospherics/pipe/simple/yellow/visible{
+/obj/machinery/atmospherics/pipe/simple/orange/visible{
dir = 4
},
/turf/open/space,
/area/space)
"aJh" = (
/obj/structure/lattice,
-/obj/machinery/atmospherics/pipe/simple/yellow/visible{
+/obj/machinery/atmospherics/pipe/simple/orange/visible{
dir = 4
},
/turf/open/space,
@@ -18758,7 +18729,6 @@
/area/maintenance/port/fore)
"aMv" = (
/obj/structure/mirror{
- desc = "Mirror mirror on the wall, who is the most robust of them all?";
pixel_x = -28
},
/turf/open/floor/plasteel/redblue,
@@ -19005,6 +18975,7 @@
/turf/open/floor/plating,
/area/quartermaster/sorting)
"aMW" = (
+/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel/red/side{
icon_state = "red";
dir = 10
@@ -20653,7 +20624,6 @@
/area/crew_quarters/theatre)
"aPL" = (
/obj/structure/mirror{
- desc = "Mirror mirror on the wall, who is the most robust of them all?";
pixel_x = -28
},
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
@@ -20670,6 +20640,7 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
+/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel/cafeteria,
/area/crew_quarters/theatre)
"aPO" = (
@@ -21210,6 +21181,7 @@
icon_state = "1-2"
},
/obj/effect/decal/cleanable/dirt,
+/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel/neutral/side,
/area/security/prison)
"aQO" = (
@@ -22460,6 +22432,7 @@
/obj/machinery/atmospherics/pipe/simple/cyan/visible{
dir = 6
},
+/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel/neutral,
/area/engine/atmos)
"aTc" = (
@@ -22944,6 +22917,11 @@
name = "Long-Term Cell 2";
req_access_txt = "2"
},
+/obj/structure/cable/white{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
/turf/open/floor/plasteel/floorgrime,
/area/security/prison)
"aUc" = (
@@ -24762,6 +24740,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
+/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel/red/corner{
dir = 1
},
@@ -25751,8 +25730,7 @@
/area/engine/atmos)
"aZp" = (
/obj/machinery/atmospherics/pipe/manifold/general/visible{
- dir = 4;
-
+ dir = 4
},
/turf/open/floor/plasteel/neutral,
/area/engine/atmos)
@@ -27175,7 +27153,7 @@
/area/engine/atmos)
"bcn" = (
/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/manifold4w/yellow/visible,
+/obj/machinery/atmospherics/pipe/manifold/yellow/visible,
/turf/open/floor/plasteel/vault{
dir = 5
},
@@ -27678,6 +27656,9 @@
/turf/open/floor/plasteel/neutral,
/area/engine/atmos)
"bdq" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 10
+ },
/turf/open/floor/plasteel/caution{
dir = 1
},
@@ -27797,10 +27778,6 @@
/area/engine/atmos)
"bdC" = (
/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/components/binary/valve/open{
- name = "SM Coolant loop";
- open = 0
- },
/turf/open/floor/plasteel/vault{
dir = 5
},
@@ -28639,6 +28616,9 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
+/obj/machinery/atmospherics/components/binary/pump{
+ name = "Port Mix to Engine"
+ },
/turf/open/floor/plasteel/neutral,
/area/engine/atmos)
"bfk" = (
@@ -28731,6 +28711,7 @@
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
+/obj/machinery/meter,
/turf/open/floor/plasteel/neutral,
/area/engine/atmos)
"bfr" = (
@@ -29498,11 +29479,7 @@
},
/area/security/main)
"bgJ" = (
-/obj/structure/bed/dogbed{
- desc = "Seems kind of... fishy.";
- name = "Cayenne's bed";
- pixel_y = 5
- },
+/obj/structure/bed/dogbed/cayenne,
/obj/machinery/computer/security/telescreen/entertainment{
pixel_y = 32
},
@@ -29631,22 +29608,21 @@
/turf/open/floor/plasteel,
/area/engine/atmos)
"bgY" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
- dir = 6
- },
/obj/effect/turf_decal/stripes/line,
+/obj/machinery/atmospherics/pipe/simple/orange/visible{
+ dir = 4
+ },
/turf/open/floor/plasteel,
/area/engine/atmos)
"bgZ" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/atmospherics/components/trinary/filter{
dir = 4
},
-/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel,
/area/engine/atmos)
"bha" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{
- name = "scrubbers pipe";
dir = 1
},
/obj/effect/turf_decal/stripes/line,
@@ -29654,13 +29630,13 @@
/area/engine/atmos)
"bhb" = (
/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{
- name = "scrubbers pipe";
- dir = 1
- },
/obj/effect/turf_decal/stripes/corner{
dir = 1
},
+/obj/machinery/atmospherics/pipe/simple/orange/visible{
+ dir = 4
+ },
+/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel,
/area/engine/atmos)
"bhc" = (
@@ -29670,47 +29646,52 @@
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/orange/visible{
dir = 4
},
-/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/neutral,
/area/engine/atmos)
"bhd" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
- dir = 4
- },
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/effect/turf_decal/stripes/corner,
+/obj/machinery/atmospherics/pipe/simple/orange/visible{
+ dir = 4
+ },
/turf/open/floor/plasteel,
/area/engine/atmos)
"bhe" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible,
-/obj/machinery/meter,
/obj/effect/turf_decal/stripes/line,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
+/obj/machinery/atmospherics/pipe/simple/orange/visible{
+ dir = 4
+ },
/turf/open/floor/plasteel,
/area/engine/atmos)
"bhf" = (
/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
- dir = 4
- },
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/effect/turf_decal/stripes/line,
+/obj/machinery/atmospherics/pipe/simple/orange/visible{
+ dir = 4
+ },
/turf/open/floor/plasteel,
/area/engine/atmos)
"bhg" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
- dir = 4
- },
/obj/effect/turf_decal/stripes/line{
dir = 6
},
+/obj/machinery/atmospherics/pipe/simple/orange/visible{
+ dir = 4
+ },
+/obj/machinery/meter,
/turf/open/floor/plasteel,
/area/engine/atmos)
"bhh" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
- dir = 9
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
+/obj/machinery/atmospherics/components/binary/valve{
+ dir = 4;
+ name = "SM Coolant Loop"
},
/turf/open/floor/plasteel/vault{
dir = 8
@@ -29723,7 +29704,9 @@
/obj/machinery/light/small{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/yellow/visible,
+/obj/machinery/atmospherics/pipe/simple/orange/visible{
+ dir = 10
+ },
/turf/open/floor/plasteel/vault{
dir = 5
},
@@ -30566,23 +30549,17 @@
/turf/open/floor/plasteel,
/area/engine/atmos)
"biY" = (
-/obj/machinery/atmospherics/pipe/manifold/cyan/visible{
- dir = 8
- },
/obj/effect/turf_decal/bot,
+/obj/machinery/atmospherics/pipe/simple/cyan/visible,
/turf/open/floor/plasteel,
/area/engine/atmos)
"biZ" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/visible{
- dir = 4
- },
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
/area/engine/atmos)
"bja" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
-/obj/machinery/atmospherics/pipe/simple/cyan/visible{
- dir = 4
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
+ dir = 6
},
/turf/open/floor/plasteel/caution{
icon_state = "caution";
@@ -30590,27 +30567,23 @@
},
/area/engine/atmos)
"bjb" = (
-/obj/machinery/atmospherics/pipe/manifold/cyan/visible{
- dir = 1
- },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible,
/turf/open/floor/plasteel/caution{
dir = 1
},
/area/engine/atmos)
"bjc" = (
/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
-/obj/machinery/atmospherics/pipe/simple/cyan/visible{
- dir = 4
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{
+ dir = 1
},
/turf/open/floor/plasteel/caution{
dir = 1
},
/area/engine/atmos)
"bjd" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
-/obj/machinery/atmospherics/pipe/simple/cyan/visible{
- dir = 4
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{
+ dir = 1
},
/turf/open/floor/plasteel/caution{
icon_state = "caution";
@@ -30618,15 +30591,12 @@
},
/area/engine/atmos)
"bje" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
- dir = 2
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/visible{
- dir = 4
- },
/obj/effect/turf_decal/stripes/line{
dir = 8
},
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{
+ dir = 1
+ },
/turf/open/floor/plasteel,
/area/engine/atmos)
"bjf" = (
@@ -30635,10 +30605,10 @@
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/cyan/visible{
- dir = 10
- },
/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
+ dir = 4
+ },
/turf/open/floor/plasteel/neutral,
/area/engine/atmos)
"bjg" = (
@@ -30646,6 +30616,9 @@
/obj/effect/turf_decal/stripes/line{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
+ dir = 4
+ },
/turf/open/floor/plasteel,
/area/engine/atmos)
"bjh" = (
@@ -30656,10 +30629,8 @@
/obj/item/stack/rods{
amount = 50
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 6
- },
/obj/effect/turf_decal/bot,
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible,
/turf/open/floor/plasteel,
/area/engine/atmos)
"bji" = (
@@ -30675,10 +30646,11 @@
/obj/machinery/newscaster{
pixel_y = -32
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 9
- },
/obj/effect/turf_decal/bot,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
+ dir = 4
+ },
/turf/open/floor/plasteel,
/area/engine/atmos)
"bjk" = (
@@ -30686,12 +30658,15 @@
dir = 8
},
/obj/item/weapon/twohanded/required/kirbyplants/random,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
+ dir = 9
+ },
/turf/open/floor/plasteel/vault{
dir = 8
},
/area/engine/atmos)
"bjl" = (
-/obj/machinery/atmospherics/pipe/simple/yellow/visible{
+/obj/machinery/atmospherics/pipe/simple/orange/visible{
dir = 5
},
/turf/open/floor/plasteel/vault{
@@ -30708,7 +30683,7 @@
/area/engine/atmos)
"bjn" = (
/obj/structure/lattice/catwalk,
-/obj/machinery/atmospherics/pipe/simple/yellow/visible{
+/obj/machinery/atmospherics/pipe/simple/orange/visible{
dir = 9
},
/turf/open/space,
@@ -31180,11 +31155,6 @@
/obj/structure/chair/office/dark{
dir = 4
},
-/obj/structure/cable/white{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -31194,6 +31164,11 @@
/obj/structure/table/wood,
/obj/item/device/flashlight/lamp,
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
+/obj/structure/cable/white{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
/turf/open/floor/plasteel/grimy,
/area/crew_quarters/heads/hos)
"bki" = (
@@ -31343,9 +31318,7 @@
"bky" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
-/obj/machinery/atmospherics/pipe/simple/cyan/visible{
- dir = 9
- },
+/obj/machinery/atmospherics/pipe/manifold/cyan/visible,
/turf/open/floor/plating,
/area/engine/atmos)
"bkz" = (
@@ -31354,6 +31327,9 @@
/obj/item/device/flashlight,
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
/obj/effect/turf_decal/bot,
+/obj/machinery/atmospherics/pipe/simple/cyan/visible{
+ dir = 4
+ },
/turf/open/floor/plasteel,
/area/engine/atmos)
"bkA" = (
@@ -31389,7 +31365,6 @@
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/cyan/visible,
/obj/machinery/atmospherics/components/unary/vent_pump/on{
dir = 4
},
@@ -31413,7 +31388,9 @@
/turf/open/floor/plasteel,
/area/engine/atmos)
"bkF" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 6
+ },
/turf/closed/wall/r_wall,
/area/engine/atmos)
"bkG" = (
@@ -31854,6 +31831,7 @@
dir = 4;
icon_state = "pipe-c"
},
+/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel/red/side{
dir = 4
},
@@ -31922,16 +31900,6 @@
d2 = 8;
icon_state = "4-8"
},
-/obj/structure/cable/white{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/structure/cable/white{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -31949,6 +31917,16 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
+/obj/structure/cable/white{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/cable/white{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
/turf/open/floor/plasteel/grimy,
/area/crew_quarters/heads/hos)
"blF" = (
@@ -32019,6 +31997,7 @@
d2 = 8;
icon_state = "4-8"
},
+/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel/grimy,
/area/crew_quarters/heads/hos)
"blK" = (
@@ -32240,6 +32219,9 @@
dir = 2
},
/obj/effect/landmark/start/atmospheric_technician,
+/obj/machinery/atmospherics/pipe/simple/cyan/visible{
+ dir = 4
+ },
/turf/open/floor/plasteel/neutral,
/area/engine/atmos)
"bmi" = (
@@ -32251,6 +32233,9 @@
dir = 2
},
/obj/effect/turf_decal/bot,
+/obj/machinery/atmospherics/pipe/simple/cyan/visible{
+ dir = 4
+ },
/turf/open/floor/plasteel,
/area/engine/atmos)
"bmj" = (
@@ -32259,10 +32244,10 @@
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/cyan/visible{
- dir = 5
- },
/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/cyan/visible{
+ dir = 4
+ },
/turf/open/floor/plasteel/neutral,
/area/engine/atmos)
"bml" = (
@@ -32432,6 +32417,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
+/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel/neutral/side{
dir = 10;
heat_capacity = 1e+006
@@ -33069,11 +33055,6 @@
/obj/structure/chair/office/dark{
dir = 4
},
-/obj/structure/cable/white{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -33082,7 +33063,7 @@
"bnD" = (
/obj/structure/table/wood,
/obj/item/weapon/phone{
- desc = "Supposedly a direct line to NanoTrasen Central Command. It's not even plugged in.";
+ desc = "Supposedly a direct line to Nanotrasen Central Command. It's not even plugged in.";
pixel_x = -3;
pixel_y = 3
},
@@ -33098,15 +33079,15 @@
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 1
},
+/obj/structure/cable/white{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
/turf/open/floor/plasteel/grimy,
/area/crew_quarters/heads/hos)
"bnE" = (
/obj/machinery/computer/security,
-/obj/structure/cable/white{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -33331,7 +33312,6 @@
/area/engine/atmos)
"bod" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{
- name = "scrubbers pipe";
dir = 4
},
/obj/effect/turf_decal/stripes/line{
@@ -35013,7 +34993,6 @@
"brg" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{
- name = "scrubbers pipe";
dir = 4
},
/turf/open/floor/plasteel/caution{
@@ -35694,7 +35673,6 @@
pixel_x = 26
},
/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{
- name = "scrubbers pipe";
dir = 4
},
/obj/machinery/meter{
@@ -37162,9 +37140,7 @@
"bvd" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/cobweb,
-/obj/structure/closet/emcloset{
- anchored = 1
- },
+/obj/structure/closet/emcloset/anchored,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
/area/engine/gravity_generator)
@@ -39251,10 +39227,6 @@
/turf/open/floor/plasteel,
/area/engine/break_room)
"byK" = (
-/obj/structure/cable/white{
- d2 = 2;
- icon_state = "0-2"
- },
/obj/structure/cable/white{
d2 = 4;
icon_state = "0-4"
@@ -39755,6 +39727,11 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
+/obj/structure/cable/white{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
/turf/open/floor/plasteel/vault{
dir = 8
},
@@ -40112,6 +40089,11 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
+/obj/structure/cable/white{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
/turf/open/floor/plasteel/vault{
dir = 8
},
@@ -40414,16 +40396,6 @@
/area/engine/gravity_generator)
"bAm" = (
/obj/machinery/door/firedoor,
-/obj/structure/cable/white{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/structure/cable/white{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
/obj/machinery/door/airlock/glass_command{
name = "Gravity Generator Chamber";
req_access_txt = "19; 61"
@@ -40434,12 +40406,27 @@
/obj/effect/turf_decal/stripes/line{
dir = 4
},
+/obj/structure/cable/white{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/cable/white{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
/turf/open/floor/plasteel,
/area/engine/gravity_generator)
"bAn" = (
/obj/machinery/holopad,
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/bot,
+/obj/structure/cable/white{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
/turf/open/floor/plasteel,
/area/engine/gravity_generator)
"bAo" = (
@@ -40451,6 +40438,11 @@
/obj/effect/turf_decal/stripes/line{
dir = 4
},
+/obj/structure/cable/white{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
/turf/open/floor/plasteel,
/area/engine/gravity_generator)
"bAp" = (
@@ -41301,12 +41293,7 @@
},
/area/security/warden)
"bBI" = (
-/obj/structure/closet/secure_closet{
- anchored = 1;
- name = "Secure Evidence Closet";
- req_access_txt = "0";
- req_one_access_txt = "3,4"
- },
+/obj/structure/closet/secure_closet/evidence,
/turf/open/floor/plasteel/vault{
dir = 8
},
@@ -41926,6 +41913,7 @@
/obj/structure/fireaxecabinet{
pixel_y = -28
},
+/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel/darkblue/side,
/area/bridge)
"bCT" = (
@@ -43315,12 +43303,7 @@
},
/area/security/warden)
"bFr" = (
-/obj/structure/closet/secure_closet{
- anchored = 1;
- name = "Secure Evidence Closet";
- req_access_txt = "0";
- req_one_access_txt = "3,4"
- },
+/obj/structure/closet/secure_closet/evidence,
/obj/machinery/camera{
c_tag = "Security - Evidence Storage";
dir = 1;
@@ -43489,6 +43472,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
+/obj/item/weapon/twohanded/rcl/pre_loaded,
/turf/open/floor/plasteel/vault{
dir = 5
},
@@ -43756,10 +43740,6 @@
/obj/item/weapon/stock_parts/console_screen,
/obj/item/weapon/stock_parts/console_screen,
/obj/item/weapon/stock_parts/console_screen,
-/obj/structure/cable/white{
- d2 = 4;
- icon_state = "0-4"
- },
/turf/open/floor/plasteel/vault{
dir = 8
},
@@ -44405,9 +44385,7 @@
/turf/closed/wall/r_wall,
/area/engine/transit_tube)
"bHw" = (
-/obj/structure/closet/emcloset{
- anchored = 1
- },
+/obj/structure/closet/emcloset/anchored,
/turf/open/floor/plasteel/vault{
dir = 8
},
@@ -44883,7 +44861,7 @@
pixel_x = 7
},
/obj/item/weapon/phone{
- desc = "Supposedly a direct line to NanoTrasen Central Command. It's not even plugged in.";
+ desc = "Supposedly a direct line to Nanotrasen Central Command. It's not even plugged in.";
pixel_x = -3;
pixel_y = 3
},
@@ -45304,6 +45282,11 @@
pixel_x = -32;
pixel_y = 32
},
+/obj/structure/cable/white{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
/turf/open/floor/plasteel/red/side{
dir = 9
},
@@ -46108,6 +46091,7 @@
d2 = 8;
icon_state = "4-8"
},
+/obj/effect/landmark/event_spawn,
/turf/open/floor/wood,
/area/crew_quarters/heads/captain)
"bKH" = (
@@ -46378,6 +46362,11 @@
/area/security/warden)
"bLi" = (
/obj/machinery/computer/secure_data,
+/obj/structure/cable/white{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
/turf/open/floor/plasteel/red/side{
dir = 6
},
@@ -46411,11 +46400,7 @@
/turf/open/floor/plasteel,
/area/ai_monitored/security/armory)
"bLn" = (
-/obj/structure/closet/secure_closet{
- anchored = 1;
- name = "Contraband Locker";
- req_access_txt = "3"
- },
+/obj/structure/closet/secure_closet/contraband/armory,
/obj/machinery/light{
dir = 4
},
@@ -46882,6 +46867,7 @@
/turf/open/floor/wood,
/area/bridge/meeting_room/council)
"bMm" = (
+/obj/effect/landmark/event_spawn,
/turf/open/floor/carpet,
/area/bridge/meeting_room/council)
"bMn" = (
@@ -46977,12 +46963,7 @@
},
/area/tcommsat/computer)
"bMC" = (
-/obj/structure/bed/dogbed{
- anchored = 1;
- desc = "Renault's bed! Looks comfy. A foxy person needs a foxy pet.";
- name = "Renault's bed";
- pixel_y = 2
- },
+/obj/structure/bed/dogbed/renault,
/mob/living/simple_animal/pet/fox/Renault,
/turf/open/floor/plasteel/vault{
dir = 8
@@ -47092,6 +47073,7 @@
},
/area/storage/tools)
"bMN" = (
+/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel,
/area/storage/tools)
"bMO" = (
@@ -47202,11 +47184,6 @@
density = 0
},
/obj/structure/table/wood,
-/obj/structure/cable/white{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
/obj/machinery/button/door{
id = "detectivewindows";
name = "Privacy Shutters";
@@ -47275,6 +47252,11 @@
/obj/structure/table/reinforced,
/obj/item/weapon/paper_bin,
/obj/item/weapon/pen,
+/obj/structure/cable/white{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
/turf/open/floor/plasteel/red/side{
dir = 8
},
@@ -47300,6 +47282,11 @@
/area/security/warden)
"bNe" = (
/obj/machinery/computer/security,
+/obj/structure/cable/white{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
/turf/open/floor/plasteel/red,
/area/security/warden)
"bNf" = (
@@ -47973,7 +47960,7 @@
pixel_y = -26
},
/obj/item/weapon/phone{
- desc = "Supposedly a direct line to NanoTrasen Central Command. It's not even plugged in.";
+ desc = "Supposedly a direct line to Nanotrasen Central Command. It's not even plugged in.";
pixel_x = -3;
pixel_y = 3
},
@@ -48133,10 +48120,14 @@
name = "Detective Privacy Blast door"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/cable/white{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
/turf/open/floor/plating,
/area/security/detectives_office)
"bOM" = (
-/obj/structure/cable/white,
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/door/poddoor/preopen{
@@ -48144,6 +48135,10 @@
name = "Detective Privacy Blast door"
},
/obj/structure/disposalpipe/segment,
+/obj/structure/cable/white{
+ d2 = 8;
+ icon_state = "0-8"
+ },
/turf/open/floor/plating,
/area/security/detectives_office)
"bON" = (
@@ -48674,7 +48669,7 @@
/area/crew_quarters/heads/chief)
"bPD" = (
/obj/item/weapon/phone{
- desc = "Supposedly a direct line to NanoTrasen Central Command. It's not even plugged in.";
+ desc = "Supposedly a direct line to Nanotrasen Central Command. It's not even plugged in.";
pixel_x = -3;
pixel_y = 3
},
@@ -49225,10 +49220,8 @@
/turf/closed/wall/r_wall,
/area/crew_quarters/heads/hop)
"bQr" = (
-/turf/open/floor/plasteel/vault{
- dir = 8;
- initial_gas_mix = "n2=100;TEMP=80";
- temperature = 80
+/turf/open/floor/plasteel/vault/telecomms{
+ dir = 8
},
/area/tcommsat/server)
"bQs" = (
@@ -50233,6 +50226,7 @@
/obj/effect/turf_decal/stripes/line{
dir = 4
},
+/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel,
/area/engine/engineering)
"bSd" = (
@@ -50512,26 +50506,16 @@
/obj/machinery/light{
dir = 8
},
-/turf/open/floor/plasteel/vault{
- dir = 8;
- initial_gas_mix = "n2=100;TEMP=80";
- temperature = 80
+/turf/open/floor/plasteel/vault/telecomms{
+ dir = 8
},
/area/tcommsat/server)
"bSE" = (
-/turf/open/floor/circuit/green{
- initial_gas_mix = "n2=100;TEMP=80";
- name = "Mainframe Base";
- temperature = 80
- },
+/turf/open/floor/circuit/green/telecomms/mainframe,
/area/tcommsat/server)
"bSF" = (
/obj/machinery/telecomms/receiver/preset_right,
-/turf/open/floor/circuit/green{
- initial_gas_mix = "n2=100;TEMP=80";
- name = "Mainframe Base";
- temperature = 80
- },
+/turf/open/floor/circuit/green/telecomms/mainframe,
/area/tcommsat/server)
"bSG" = (
/obj/structure/cable/white{
@@ -50546,20 +50530,14 @@
/area/tcommsat/server)
"bSH" = (
/obj/machinery/telecomms/receiver/preset_left,
-/turf/open/floor/circuit/green{
- initial_gas_mix = "n2=100;TEMP=80";
- name = "Mainframe Base";
- temperature = 80
- },
+/turf/open/floor/circuit/green/telecomms/mainframe,
/area/tcommsat/server)
"bSI" = (
/obj/machinery/light{
dir = 4
},
-/turf/open/floor/plasteel/vault{
- dir = 8;
- initial_gas_mix = "n2=100;TEMP=80";
- temperature = 80
+/turf/open/floor/plasteel/vault/telecomms{
+ dir = 8
},
/area/tcommsat/server)
"bSJ" = (
@@ -51791,25 +51769,18 @@
/area/crew_quarters/heads/hop)
"bUJ" = (
/obj/machinery/telecomms/server/presets/medical,
-/turf/open/floor/plasteel/whiteblue/side{
- dir = 9;
- initial_gas_mix = "n2=100;TEMP=80";
- temperature = 80
+/turf/open/floor/plasteel/whiteblue/side/telecomms{
+ dir = 9
},
/area/tcommsat/server)
"bUK" = (
/obj/machinery/telecomms/server/presets/science,
-/turf/open/floor/plasteel/whitepurple/side{
- dir = 5;
- initial_gas_mix = "n2=100;TEMP=80";
- temperature = 80
+/turf/open/floor/plasteel/whitepurple/side/telecomms{
+ dir = 5
},
/area/tcommsat/server)
"bUL" = (
-/turf/open/floor/plasteel/vault{
- initial_gas_mix = "n2=100;TEMP=80";
- temperature = 80
- },
+/turf/open/floor/plasteel/vault/telecomms,
/area/tcommsat/server)
"bUM" = (
/obj/structure/cable/white{
@@ -51823,26 +51794,20 @@
req_access = null;
req_access_txt = "61"
},
-/turf/open/floor/plasteel/vault{
- dir = 5;
- initial_gas_mix = "n2=100;TEMP=80";
- temperature = 80
+/turf/open/floor/plasteel/vault/telecomms{
+ dir = 5
},
/area/tcommsat/server)
"bUN" = (
/obj/machinery/telecomms/server/presets/command,
-/turf/open/floor/plasteel/darkblue/side{
- dir = 9;
- initial_gas_mix = "n2=100;TEMP=80";
- temperature = 80
+/turf/open/floor/plasteel/darkblue/side/telecomms{
+ dir = 9
},
/area/tcommsat/server)
"bUO" = (
/obj/machinery/telecomms/server/presets/security,
-/turf/open/floor/plasteel/darkred/side{
- dir = 5;
- initial_gas_mix = "n2=100;TEMP=80";
- temperature = 80
+/turf/open/floor/plasteel/darkred/side/telecomms{
+ dir = 5
},
/area/tcommsat/server)
"bUP" = (
@@ -52142,6 +52107,7 @@
d2 = 4;
icon_state = "1-4"
},
+/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel/neutral,
/area/security/brig)
"bVs" = (
@@ -52227,6 +52193,7 @@
/turf/open/floor/plasteel/neutral,
/area/security/warden)
"bVw" = (
+/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel/red/side{
dir = 4
},
@@ -52255,6 +52222,7 @@
/area/ai_monitored/security/armory)
"bVz" = (
/obj/machinery/atmospherics/components/unary/vent_pump/on,
+/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel,
/area/ai_monitored/security/armory)
"bVA" = (
@@ -52286,8 +52254,7 @@
amount = 50
},
/obj/item/stack/sheet/mineral/plasma{
- amount = 20;
- layer = 3.1
+ amount = 20
},
/obj/structure/extinguisher_cabinet{
pixel_x = -26
@@ -52693,25 +52660,19 @@
/area/crew_quarters/heads/hop)
"bWv" = (
/obj/machinery/telecomms/bus/preset_one,
-/turf/open/floor/plasteel/whiteblue/side{
- dir = 10;
- initial_gas_mix = "n2=100;TEMP=80";
- temperature = 80
+/turf/open/floor/plasteel/whiteblue/side/telecomms{
+ dir = 10
},
/area/tcommsat/server)
"bWw" = (
/obj/machinery/telecomms/processor/preset_one,
-/turf/open/floor/plasteel/whitepurple/side{
- dir = 6;
- initial_gas_mix = "n2=100;TEMP=80";
- temperature = 80
+/turf/open/floor/plasteel/whitepurple/side/telecomms{
+ dir = 6
},
/area/tcommsat/server)
"bWx" = (
-/turf/open/floor/plasteel/vault{
- dir = 5;
- initial_gas_mix = "n2=100;TEMP=80";
- temperature = 80
+/turf/open/floor/plasteel/vault/telecomms{
+ dir = 5
},
/area/tcommsat/server)
"bWy" = (
@@ -52719,10 +52680,8 @@
dir = 1
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/vault{
- dir = 5;
- initial_gas_mix = "n2=100;TEMP=80";
- temperature = 80
+/turf/open/floor/plasteel/vault/telecomms{
+ dir = 5
},
/area/tcommsat/server)
"bWz" = (
@@ -52731,36 +52690,28 @@
d2 = 2;
icon_state = "1-2"
},
-/turf/open/floor/plasteel/vault{
- dir = 5;
- initial_gas_mix = "n2=100;TEMP=80";
- temperature = 80
+/turf/open/floor/plasteel/vault/telecomms{
+ dir = 5
},
/area/tcommsat/server)
"bWA" = (
/obj/machinery/light/small{
dir = 1
},
-/turf/open/floor/plasteel/vault{
- dir = 5;
- initial_gas_mix = "n2=100;TEMP=80";
- temperature = 80
+/turf/open/floor/plasteel/vault/telecomms{
+ dir = 5
},
/area/tcommsat/server)
"bWB" = (
/obj/machinery/telecomms/processor/preset_three,
-/turf/open/floor/plasteel/darkblue/side{
- dir = 10;
- initial_gas_mix = "n2=100;TEMP=80";
- temperature = 80
+/turf/open/floor/plasteel/darkblue/side/telecomms{
+ dir = 10
},
/area/tcommsat/server)
"bWC" = (
/obj/machinery/telecomms/bus/preset_three,
-/turf/open/floor/plasteel/darkred/side{
- dir = 6;
- initial_gas_mix = "n2=100;TEMP=80";
- temperature = 80
+/turf/open/floor/plasteel/darkred/side/telecomms{
+ dir = 6
},
/area/tcommsat/server)
"bWD" = (
@@ -52786,6 +52737,7 @@
/turf/open/floor/wood,
/area/crew_quarters/heads/captain/private)
"bWF" = (
+/obj/effect/landmark/event_spawn,
/turf/open/floor/wood,
/area/crew_quarters/heads/captain/private)
"bWG" = (
@@ -53216,9 +53168,7 @@
/turf/open/floor/plating/airless,
/area/engine/engineering)
"bXv" = (
-/obj/structure/closet/emcloset{
- anchored = 1
- },
+/obj/structure/closet/emcloset/anchored,
/obj/effect/decal/cleanable/dirt,
/obj/machinery/light/small{
dir = 1
@@ -53606,10 +53556,8 @@
name = "telecomms camera";
network = list("SS13","tcomm")
},
-/turf/open/floor/plasteel/vault{
- dir = 8;
- initial_gas_mix = "n2=100;TEMP=80";
- temperature = 80
+/turf/open/floor/plasteel/vault/telecomms{
+ dir = 8
},
/area/tcommsat/server)
"bYf" = (
@@ -53618,10 +53566,8 @@
d2 = 8;
icon_state = "4-8"
},
-/turf/open/floor/plasteel/vault{
- dir = 10;
- initial_gas_mix = "n2=100;TEMP=80";
- temperature = 80
+/turf/open/floor/plasteel/vault/telecomms{
+ dir = 10
},
/area/tcommsat/server)
"bYg" = (
@@ -53636,10 +53582,8 @@
name = "server vent";
pressure_checks = 0
},
-/turf/open/floor/plasteel/vault{
- dir = 5;
- initial_gas_mix = "n2=100;TEMP=80";
- temperature = 80
+/turf/open/floor/plasteel/vault/telecomms{
+ dir = 5
},
/area/tcommsat/server)
"bYh" = (
@@ -53648,10 +53592,8 @@
d2 = 8;
icon_state = "4-8"
},
-/turf/open/floor/plasteel/vault{
- dir = 5;
- initial_gas_mix = "n2=100;TEMP=80";
- temperature = 80
+/turf/open/floor/plasteel/vault/telecomms{
+ dir = 5
},
/area/tcommsat/server)
"bYi" = (
@@ -53661,10 +53603,8 @@
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/vault{
- dir = 5;
- initial_gas_mix = "n2=100;TEMP=80";
- temperature = 80
+/turf/open/floor/plasteel/vault/telecomms{
+ dir = 5
},
/area/tcommsat/server)
"bYj" = (
@@ -53680,11 +53620,7 @@
d2 = 8;
icon_state = "4-8"
},
-/turf/open/floor/circuit/green{
- initial_gas_mix = "n2=100;TEMP=80";
- name = "Mainframe Base";
- temperature = 80
- },
+/turf/open/floor/circuit/green/telecomms/mainframe,
/area/tcommsat/server)
"bYl" = (
/obj/structure/cable/white{
@@ -53697,10 +53633,8 @@
external_pressure_bound = 120;
name = "server vent"
},
-/turf/open/floor/plasteel/vault{
- dir = 5;
- initial_gas_mix = "n2=100;TEMP=80";
- temperature = 80
+/turf/open/floor/plasteel/vault/telecomms{
+ dir = 5
},
/area/tcommsat/server)
"bYm" = (
@@ -53709,10 +53643,8 @@
d2 = 8;
icon_state = "4-8"
},
-/turf/open/floor/plasteel/vault{
- dir = 6;
- initial_gas_mix = "n2=100;TEMP=80";
- temperature = 80
+/turf/open/floor/plasteel/vault/telecomms{
+ dir = 6
},
/area/tcommsat/server)
"bYn" = (
@@ -53721,10 +53653,8 @@
d2 = 8;
icon_state = "2-8"
},
-/turf/open/floor/plasteel/vault{
- dir = 8;
- initial_gas_mix = "n2=100;TEMP=80";
- temperature = 80
+/turf/open/floor/plasteel/vault/telecomms{
+ dir = 8
},
/area/tcommsat/server)
"bYo" = (
@@ -54544,10 +54474,8 @@
pixel_x = -26
},
/obj/structure/cable/white,
-/turf/open/floor/plasteel/vault{
- dir = 8;
- initial_gas_mix = "n2=100;TEMP=80";
- temperature = 80
+/turf/open/floor/plasteel/vault/telecomms{
+ dir = 8
},
/area/tcommsat/server)
"bZW" = (
@@ -54556,10 +54484,8 @@
d2 = 4;
icon_state = "2-4"
},
-/turf/open/floor/plasteel/vault{
- dir = 10;
- initial_gas_mix = "n2=100;TEMP=80";
- temperature = 80
+/turf/open/floor/plasteel/vault/telecomms{
+ dir = 10
},
/area/tcommsat/server)
"bZX" = (
@@ -54572,11 +54498,7 @@
/obj/machinery/atmospherics/pipe/simple/general/hidden{
dir = 5
},
-/turf/open/floor/circuit{
- initial_gas_mix = "n2=100;TEMP=80";
- name = "Mainframe Base";
- temperature = 80
- },
+/turf/open/floor/circuit/telecomms/mainframe,
/area/tcommsat/server)
"bZY" = (
/obj/structure/cable/white{
@@ -54587,10 +54509,8 @@
/obj/machinery/atmospherics/pipe/simple/general/hidden{
dir = 4
},
-/turf/open/floor/plasteel/vault{
- dir = 5;
- initial_gas_mix = "n2=100;TEMP=80";
- temperature = 80
+/turf/open/floor/plasteel/vault/telecomms{
+ dir = 5
},
/area/tcommsat/server)
"bZZ" = (
@@ -54603,11 +54523,7 @@
/obj/machinery/atmospherics/pipe/manifold/general/hidden{
dir = 1
},
-/turf/open/floor/circuit/green{
- initial_gas_mix = "n2=100;TEMP=80";
- name = "Mainframe Base";
- temperature = 80
- },
+/turf/open/floor/circuit/green/telecomms/mainframe,
/area/tcommsat/server)
"caa" = (
/obj/structure/cable/white{
@@ -54619,10 +54535,8 @@
/obj/machinery/atmospherics/pipe/simple/general/hidden{
dir = 4
},
-/turf/open/floor/plasteel/vault{
- dir = 5;
- initial_gas_mix = "n2=100;TEMP=80";
- temperature = 80
+/turf/open/floor/plasteel/vault/telecomms{
+ dir = 5
},
/area/tcommsat/server)
"cab" = (
@@ -54645,11 +54559,7 @@
/obj/machinery/atmospherics/pipe/simple/general/hidden{
dir = 4
},
-/turf/open/floor/circuit/green{
- initial_gas_mix = "n2=100;TEMP=80";
- name = "Mainframe Base";
- temperature = 80
- },
+/turf/open/floor/circuit/green/telecomms/mainframe,
/area/tcommsat/server)
"cad" = (
/obj/machinery/blackbox_recorder,
@@ -54661,11 +54571,7 @@
/obj/machinery/atmospherics/pipe/manifold/general/hidden{
dir = 1
},
-/turf/open/floor/circuit/green{
- initial_gas_mix = "n2=100;TEMP=80";
- name = "Mainframe Base";
- temperature = 80
- },
+/turf/open/floor/circuit/green/telecomms/mainframe,
/area/tcommsat/server)
"cae" = (
/obj/machinery/telecomms/broadcaster/preset_right,
@@ -54677,11 +54583,7 @@
/obj/machinery/atmospherics/pipe/simple/general/hidden{
dir = 9
},
-/turf/open/floor/circuit{
- initial_gas_mix = "n2=100;TEMP=80";
- name = "Mainframe Base";
- temperature = 80
- },
+/turf/open/floor/circuit/telecomms/mainframe,
/area/tcommsat/server)
"caf" = (
/obj/structure/cable/white{
@@ -54696,10 +54598,8 @@
d2 = 8;
icon_state = "0-8"
},
-/turf/open/floor/plasteel/vault{
- dir = 6;
- initial_gas_mix = "n2=100;TEMP=80";
- temperature = 80
+/turf/open/floor/plasteel/vault/telecomms{
+ dir = 6
},
/area/tcommsat/server)
"cag" = (
@@ -54707,10 +54607,8 @@
charge = 5e+006
},
/obj/structure/cable/white,
-/turf/open/floor/plasteel/vault{
- dir = 8;
- initial_gas_mix = "n2=100;TEMP=80";
- temperature = 80
+/turf/open/floor/plasteel/vault/telecomms{
+ dir = 8
},
/area/tcommsat/server)
"cah" = (
@@ -54946,6 +54844,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
+/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel/grimy,
/area/lawoffice)
"caB" = (
@@ -55612,25 +55511,19 @@
d2 = 2;
icon_state = "1-2"
},
-/turf/open/floor/plasteel/vault{
- dir = 10;
- initial_gas_mix = "n2=100;TEMP=80";
- temperature = 80
+/turf/open/floor/plasteel/vault/telecomms{
+ dir = 10
},
/area/tcommsat/server)
"cbK" = (
-/turf/open/floor/plasteel/vault{
- dir = 10;
- initial_gas_mix = "n2=100;TEMP=80";
- temperature = 80
+/turf/open/floor/plasteel/vault/telecomms{
+ dir = 10
},
/area/tcommsat/server)
"cbL" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/vault{
- dir = 5;
- initial_gas_mix = "n2=100;TEMP=80";
- temperature = 80
+/turf/open/floor/plasteel/vault/telecomms{
+ dir = 5
},
/area/tcommsat/server)
"cbM" = (
@@ -55640,18 +55533,12 @@
d2 = 2;
icon_state = "1-2"
},
-/turf/open/floor/circuit/green{
- initial_gas_mix = "n2=100;TEMP=80";
- name = "Mainframe Base";
- temperature = 80
- },
+/turf/open/floor/circuit/green/telecomms/mainframe,
/area/tcommsat/server)
"cbN" = (
/obj/machinery/atmospherics/pipe/simple/general/hidden,
-/turf/open/floor/plasteel/vault{
- dir = 6;
- initial_gas_mix = "n2=100;TEMP=80";
- temperature = 80
+/turf/open/floor/plasteel/vault/telecomms{
+ dir = 6
},
/area/tcommsat/server)
"cbO" = (
@@ -55660,10 +55547,8 @@
d2 = 2;
icon_state = "1-2"
},
-/turf/open/floor/plasteel/vault{
- dir = 6;
- initial_gas_mix = "n2=100;TEMP=80";
- temperature = 80
+/turf/open/floor/plasteel/vault/telecomms{
+ dir = 6
},
/area/tcommsat/server)
"cbP" = (
@@ -55673,10 +55558,8 @@
name = "telecomms camera";
network = list("SS13","tcomm")
},
-/turf/open/floor/plasteel/vault{
- dir = 8;
- initial_gas_mix = "n2=100;TEMP=80";
- temperature = 80
+/turf/open/floor/plasteel/vault/telecomms{
+ dir = 8
},
/area/tcommsat/server)
"cbQ" = (
@@ -56021,6 +55904,7 @@
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 4
},
+/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel,
/area/security/brig)
"ccv" = (
@@ -56594,6 +56478,7 @@
id = "hopline";
name = "Queue Shutters"
},
+/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel/loadingarea{
dir = 4
},
@@ -56634,59 +56519,43 @@
d2 = 2;
icon_state = "1-2"
},
-/turf/open/floor/circuit/green{
- initial_gas_mix = "n2=100;TEMP=80";
- name = "Mainframe Base";
- temperature = 80
- },
+/turf/open/floor/circuit/green/telecomms/mainframe,
/area/tcommsat/server)
"cdB" = (
/obj/machinery/telecomms/bus/preset_four,
-/turf/open/floor/plasteel/brown{
- dir = 9;
- initial_gas_mix = "n2=100;TEMP=80";
- temperature = 80
+/turf/open/floor/plasteel/brown/telecomms{
+ dir = 9
},
/area/tcommsat/server)
"cdC" = (
/obj/machinery/telecomms/processor/preset_four,
-/turf/open/floor/plasteel/green/side{
- dir = 5;
- initial_gas_mix = "n2=100;TEMP=80";
- temperature = 80
+/turf/open/floor/plasteel/green/side/telecomms{
+ dir = 5
},
/area/tcommsat/server)
"cdD" = (
/obj/machinery/light/small,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/vault{
- dir = 5;
- initial_gas_mix = "n2=100;TEMP=80";
- temperature = 80
+/turf/open/floor/plasteel/vault/telecomms{
+ dir = 5
},
/area/tcommsat/server)
"cdF" = (
/obj/machinery/light/small,
-/turf/open/floor/plasteel/vault{
- dir = 5;
- initial_gas_mix = "n2=100;TEMP=80";
- temperature = 80
+/turf/open/floor/plasteel/vault/telecomms{
+ dir = 5
},
/area/tcommsat/server)
"cdG" = (
/obj/machinery/telecomms/processor/preset_two,
-/turf/open/floor/plasteel/brown{
- dir = 9;
- initial_gas_mix = "n2=100;TEMP=80";
- temperature = 80
+/turf/open/floor/plasteel/brown/telecomms{
+ dir = 9
},
/area/tcommsat/server)
"cdH" = (
/obj/machinery/telecomms/bus/preset_two,
-/turf/open/floor/plasteel/neutral/side{
- dir = 5;
- initial_gas_mix = "n2=100;TEMP=80";
- temperature = 80
+/turf/open/floor/plasteel/neutral/side/telecomms{
+ dir = 5
},
/area/tcommsat/server)
"cdI" = (
@@ -57181,9 +57050,7 @@
/turf/open/floor/plating,
/area/engine/engineering)
"ceD" = (
-/obj/machinery/power/rad_collector{
- anchored = 1
- },
+/obj/machinery/power/rad_collector/anchored,
/obj/structure/cable{
icon_state = "0-4";
d2 = 4
@@ -57382,18 +57249,14 @@
/area/crew_quarters/heads/hop)
"cfd" = (
/obj/machinery/telecomms/server/presets/supply,
-/turf/open/floor/plasteel/brown{
- dir = 9;
- initial_gas_mix = "n2=100;TEMP=80";
- temperature = 80
+/turf/open/floor/plasteel/brown/telecomms{
+ dir = 9
},
/area/tcommsat/server)
"cfe" = (
/obj/machinery/telecomms/server/presets/service,
-/turf/open/floor/plasteel/green/side{
- dir = 6;
- initial_gas_mix = "n2=100;TEMP=80";
- temperature = 80
+/turf/open/floor/plasteel/green/side/telecomms{
+ dir = 6
},
/area/tcommsat/server)
"cff" = (
@@ -57408,26 +57271,20 @@
req_access = null;
req_access_txt = "61"
},
-/turf/open/floor/plasteel/vault{
- dir = 5;
- initial_gas_mix = "n2=100;TEMP=80";
- temperature = 80
+/turf/open/floor/plasteel/vault/telecomms{
+ dir = 5
},
/area/tcommsat/server)
"cfg" = (
/obj/machinery/telecomms/server/presets/engineering,
-/turf/open/floor/plasteel/brown{
- dir = 9;
- initial_gas_mix = "n2=100;TEMP=80";
- temperature = 80
+/turf/open/floor/plasteel/brown/telecomms{
+ dir = 9
},
/area/tcommsat/server)
"cfh" = (
/obj/machinery/telecomms/server/presets/common,
-/turf/open/floor/plasteel/neutral/side{
- dir = 5;
- initial_gas_mix = "n2=100;TEMP=80";
- temperature = 80
+/turf/open/floor/plasteel/neutral/side/telecomms{
+ dir = 5
},
/area/tcommsat/server)
"cfi" = (
@@ -57556,6 +57413,7 @@
req_access_txt = "42"
},
/obj/effect/turf_decal/bot,
+/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel,
/area/security/courtroom)
"cfx" = (
@@ -58034,12 +57892,7 @@
/turf/open/floor/plasteel/grimy,
/area/crew_quarters/heads/hop)
"cgv" = (
-/obj/structure/bed/dogbed{
- anchored = 1;
- desc = "Ian's bed! Looks comfy.";
- name = "Ian's bed";
- pixel_y = 2
- },
+/obj/structure/bed/dogbed/ian,
/obj/machinery/airalarm{
dir = 8;
pixel_x = 24
@@ -58054,20 +57907,16 @@
d2 = 2;
icon_state = "1-2"
},
-/turf/open/floor/plasteel/vault{
- dir = 8;
- initial_gas_mix = "n2=100;TEMP=80";
- temperature = 80
+/turf/open/floor/plasteel/vault/telecomms{
+ dir = 8
},
/area/tcommsat/server)
"cgx" = (
/obj/structure/sign/electricshock{
pixel_y = -32
},
-/turf/open/floor/plasteel/vault{
- dir = 8;
- initial_gas_mix = "n2=100;TEMP=80";
- temperature = 80
+/turf/open/floor/plasteel/vault/telecomms{
+ dir = 8
},
/area/tcommsat/server)
"cgz" = (
@@ -59208,6 +59057,11 @@
/obj/effect/turf_decal/stripes/line{
dir = 8
},
+/obj/structure/cable/white{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
/turf/open/floor/plasteel,
/area/security/range)
"ciI" = (
@@ -59767,6 +59621,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
+/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel/neutral,
/area/teleporter)
"cjK" = (
@@ -60069,10 +59924,10 @@
/obj/item/clothing/ears/earmuffs,
/obj/item/clothing/ears/earmuffs,
/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
/obj/effect/turf_decal/stripes/line{
dir = 6
},
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
/turf/open/floor/plasteel,
/area/security/range)
"ckm" = (
@@ -61420,6 +61275,7 @@
/area/engine/engineering)
"cno" = (
/obj/effect/landmark/start/station_engineer,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/yellow,
/area/engine/engineering)
"cnp" = (
@@ -62323,6 +62179,7 @@
/area/maintenance/port)
"cpf" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel/neutral/side{
dir = 8
},
@@ -63987,6 +63844,7 @@
d2 = 8;
icon_state = "1-8"
},
+/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel/blue/corner,
/area/hallway/secondary/command)
"csi" = (
@@ -64337,12 +64195,8 @@
},
/area/crew_quarters/fitness/recreation)
"csV" = (
-/obj/machinery/power/rad_collector{
- anchored = 1
- },
-/obj/machinery/power/rad_collector{
- anchored = 1
- },
+/obj/machinery/power/rad_collector/anchored,
+/obj/machinery/power/rad_collector/anchored,
/obj/structure/cable{
icon_state = "0-4";
d2 = 4
@@ -65362,6 +65216,8 @@
pixel_x = 26
},
/obj/effect/turf_decal/bot,
+/obj/item/weapon/twohanded/rcl/pre_loaded,
+/obj/item/weapon/twohanded/rcl/pre_loaded,
/turf/open/floor/plasteel,
/area/engine/storage)
"cuT" = (
@@ -65925,9 +65781,7 @@
/turf/open/space,
/area/space)
"cwc" = (
-/obj/machinery/power/rad_collector{
- anchored = 1
- },
+/obj/machinery/power/rad_collector/anchored,
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable{
icon_state = "0-4";
@@ -66114,6 +65968,7 @@
/turf/open/floor/plasteel/grimy,
/area/library)
"cwx" = (
+/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel/vault{
dir = 5
},
@@ -66197,7 +66052,7 @@
dir = 4
},
/obj/structure/showcase{
- desc = "A stand with an empty old NanoTrasen Corporation combat mech bolted to it. It is described as the premier unit used to defend corporate interests and employees.";
+ desc = "A stand with an empty old Nanotrasen Corporation combat mech bolted to it. It is described as the premier unit used to defend corporate interests and employees.";
icon = 'icons/mecha/mecha.dmi';
icon_state = "marauder";
name = "combat mech exhibit"
@@ -66269,11 +66124,11 @@
dir = 8
},
/obj/structure/showcase{
- desc = "A flimsy model of a standard NanoTrasen automated loyalty implant machine. With secure positioning harnesses and a robotic surgical injector, brain damage and other serious medical anomalies are now up to 60% less likely!";
+ desc = "A flimsy model of a standard Nanotrasen automated loyalty implant machine. With secure positioning harnesses and a robotic surgical injector, brain damage and other serious medical anomalies are now up to 60% less likely!";
icon = 'icons/obj/machines/implantchair.dmi';
icon_state = "implantchair";
layer = 2.7;
- name = "NanoTrasen automated loyalty implanter exhibit";
+ name = "Nanotrasen automated loyalty implanter exhibit";
pixel_y = 4
},
/turf/open/floor/plasteel/grimy,
@@ -66315,6 +66170,7 @@
d2 = 2;
icon_state = "1-2"
},
+/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel/neutral,
/area/gateway)
"cwS" = (
@@ -67095,6 +66951,7 @@
/obj/effect/turf_decal/stripes/line{
dir = 8
},
+/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel,
/area/ai_monitored/storage/eva)
"cym" = (
@@ -68289,7 +68146,6 @@
/area/crew_quarters/toilet/restrooms)
"cAu" = (
/obj/structure/mirror{
- desc = "Mirror mirror on the wall, who is the most robust of them all?";
pixel_x = -26
},
/obj/structure/sink{
@@ -69033,6 +68889,7 @@
"cBP" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/stripes/line,
+/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel,
/area/gateway)
"cBQ" = (
@@ -69053,7 +68910,6 @@
"cBS" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/mirror{
- desc = "Mirror mirror on the wall, who is the most robust of them all?";
pixel_x = -26
},
/obj/structure/sink{
@@ -69287,9 +69143,7 @@
/turf/open/floor/plating/airless,
/area/engine/engineering)
"cCs" = (
-/obj/structure/closet/emcloset{
- anchored = 1
- },
+/obj/structure/closet/emcloset/anchored,
/obj/machinery/light/small,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
@@ -69854,9 +69708,7 @@
/turf/closed/wall,
/area/crew_quarters/fitness/recreation)
"cDx" = (
-/obj/structure/closet/emcloset{
- anchored = 1
- },
+/obj/structure/closet/emcloset/anchored,
/obj/effect/decal/cleanable/dirt,
/obj/machinery/light/small{
dir = 1
@@ -70062,6 +69914,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
+/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel{
icon_state = "L5"
},
@@ -75770,6 +75623,7 @@
dir = 4
},
/obj/structure/disposalpipe/segment,
+/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel/whitepurple/corner{
dir = 1
},
@@ -76340,7 +76194,6 @@
/area/maintenance/department/electrical)
"cQf" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{
- name = "scrubbers pipe";
dir = 1
},
/obj/effect/decal/cleanable/dirt,
@@ -76815,9 +76668,24 @@
/obj/structure/chair/office/dark{
dir = 8
},
+/obj/structure/cable/white{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/cable/white{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
/turf/open/floor/plasteel/neutral,
/area/security/checkpoint/medical)
"cRg" = (
+/obj/structure/cable/white{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
/turf/open/floor/plasteel/red/side{
dir = 4
},
@@ -77316,6 +77184,7 @@
/obj/effect/turf_decal/stripes/line{
dir = 8
},
+/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel,
/area/science/xenobiology)
"cRZ" = (
@@ -80775,6 +80644,7 @@
},
/area/science/lab)
"cYU" = (
+/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel/whitepurple/side{
dir = 5;
initial_gas_mix = "o2=22;n2=82;TEMP=293.15"
@@ -81160,21 +81030,6 @@
/turf/open/floor/plating,
/area/science/xenobiology)
"cZT" = (
-/obj/structure/cable/white{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/structure/cable/white{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/structure/cable/white{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
/obj/machinery/door/poddoor/preopen{
id = "rdxeno";
name = "Xenobiology Containment Door"
@@ -81190,6 +81045,16 @@
/obj/effect/turf_decal/stripes/line{
dir = 1
},
+/obj/structure/cable/white{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/cable/white{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
/turf/open/floor/plasteel,
/area/science/xenobiology)
"cZU" = (
@@ -81370,6 +81235,7 @@
},
/area/medical/chemistry)
"dal" = (
+/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel/whiteyellow/side{
dir = 8
},
@@ -82990,7 +82856,6 @@
},
/obj/effect/decal/cleanable/dirt,
/obj/structure/mirror{
- desc = "Mirror mirror on the wall, who is the most robust of them all?";
pixel_x = -28
},
/obj/structure/cable/white{
@@ -83993,6 +83858,11 @@
/obj/structure/window/reinforced{
dir = 8
},
+/obj/structure/cable/white{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
/turf/open/floor/plating,
/area/crew_quarters/abandoned_gambling_den)
"dfI" = (
@@ -84424,7 +84294,7 @@
dir = 1
},
/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
+/area/maintenance/department/medical)
"dgD" = (
/turf/closed/wall,
/area/medical/genetics/cloning)
@@ -84687,6 +84557,7 @@
d2 = 2;
icon_state = "1-2"
},
+/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel/neutral,
/area/science/explab)
"dhm" = (
@@ -85011,25 +84882,35 @@
icon_state = "bluecorner";
dir = 1
},
-/area/hallway/primary/aft)
+/area/maintenance/department/medical)
"dhN" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel/blue/corner{
icon_state = "bluecorner";
dir = 1
},
-/area/hallway/primary/aft)
+/area/maintenance/department/medical)
"dhO" = (
/obj/effect/decal/cleanable/dirt,
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "Medical Maintenance APC";
+ pixel_y = 24
+ },
+/obj/structure/cable/white{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/effect/turf_decal/stripes/end,
/turf/open/floor/plating,
-/area/hallway/primary/aft)
+/area/maintenance/department/medical)
"dhP" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/blue/corner{
dir = 4
},
-/area/hallway/primary/aft)
+/area/maintenance/department/medical)
"dhQ" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/cobweb/cobweb2,
@@ -85038,7 +84919,7 @@
/turf/open/floor/plating{
icon_state = "platingdmg2"
},
-/area/hallway/primary/aft)
+/area/maintenance/department/medical)
"dhR" = (
/obj/machinery/clonepod,
/obj/structure/window/reinforced{
@@ -85604,8 +85485,7 @@
icon_state = "1-8"
},
/obj/item/stack/sheet/mineral/plasma{
- amount = 5;
- layer = 3.1
+ amount = 5
},
/obj/item/device/taperecorder,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -86015,14 +85895,14 @@
dir = 4
},
/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
+/area/maintenance/department/medical)
"djN" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plating,
-/area/hallway/primary/aft)
+/area/maintenance/department/medical)
"djO" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -86031,20 +85911,25 @@
/turf/open/floor/plating{
icon_state = "platingdmg3"
},
-/area/hallway/primary/aft)
+/area/maintenance/department/medical)
"djP" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
+/obj/structure/cable/white{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
/turf/open/floor/plasteel/neutral,
-/area/hallway/primary/aft)
+/area/maintenance/department/medical)
"djQ" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel/neutral,
-/area/hallway/primary/aft)
+/area/maintenance/department/medical)
"djR" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/table,
@@ -86053,7 +85938,7 @@
/turf/open/floor/plasteel/blue/corner{
dir = 4
},
-/area/hallway/primary/aft)
+/area/maintenance/department/medical)
"djS" = (
/obj/machinery/door/window/eastleft,
/obj/structure/mirror{
@@ -86952,26 +86837,31 @@
/turf/open/floor/plating{
icon_state = "panelscorched"
},
-/area/hallway/primary/aft)
+/area/maintenance/department/medical)
"dlA" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/vomit/old,
/turf/open/floor/plating,
-/area/hallway/primary/aft)
+/area/maintenance/department/medical)
"dlB" = (
/obj/effect/landmark/blobstart,
/obj/machinery/atmospherics/components/unary/vent_pump/on{
dir = 4
},
+/obj/structure/cable/white{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
/turf/open/floor/plasteel/neutral,
-/area/hallway/primary/aft)
+/area/maintenance/department/medical)
"dlC" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel/neutral,
-/area/hallway/primary/aft)
+/area/maintenance/department/medical)
"dlD" = (
/obj/structure/rack,
/obj/item/device/healthanalyzer,
@@ -86979,7 +86869,7 @@
/turf/open/floor/plating{
icon_state = "panelscorched"
},
-/area/hallway/primary/aft)
+/area/maintenance/department/medical)
"dlE" = (
/obj/machinery/door/window/eastright,
/obj/machinery/ai_status_display{
@@ -87457,6 +87347,7 @@
/area/science/robotics/mechbay)
"dmL" = (
/obj/effect/decal/cleanable/dirt,
+/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel/neutral,
/area/science/robotics/mechbay)
"dmM" = (
@@ -87507,19 +87398,24 @@
icon_state = "bluecorner";
dir = 8
},
-/area/hallway/primary/aft)
+/area/maintenance/department/medical)
"dmS" = (
+/obj/structure/cable/white{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
/turf/open/floor/plating,
-/area/hallway/primary/aft)
+/area/maintenance/department/medical)
"dmT" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/blue/corner,
-/area/hallway/primary/aft)
+/area/maintenance/department/medical)
"dmU" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel/blue/corner,
-/area/hallway/primary/aft)
+/area/maintenance/department/medical)
"dmV" = (
/obj/structure/window/reinforced{
dir = 4
@@ -88044,12 +87940,17 @@
/obj/effect/turf_decal/stripes/line{
dir = 1
},
+/obj/structure/cable/white{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
/turf/open/floor/plasteel,
-/area/medical/genetics)
+/area/maintenance/department/medical)
"doc" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/closed/wall,
-/area/medical/genetics)
+/area/maintenance/department/medical)
"dod" = (
/turf/closed/wall/r_wall,
/area/medical/genetics)
@@ -88599,6 +88500,7 @@
/obj/machinery/atmospherics/components/unary/vent_pump/on{
dir = 4
},
+/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel/whitepurple/corner{
dir = 8
},
@@ -88783,6 +88685,11 @@
},
/area/medical/genetics)
"dpE" = (
+/obj/structure/cable/white{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
/turf/open/floor/plasteel/whitepurple/corner{
dir = 1
},
@@ -89674,6 +89581,11 @@
dir = 2;
icon_state = "pipe-c"
},
+/obj/structure/cable/white{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
/turf/open/floor/plasteel/neutral,
/area/medical/genetics)
"dri" = (
@@ -90716,6 +90628,7 @@
/obj/machinery/atmospherics/components/unary/vent_pump/on{
dir = 4
},
+/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel/cmo,
/area/crew_quarters/heads/cmo)
"dsZ" = (
@@ -91343,6 +91256,7 @@
/turf/open/floor/plasteel/whitepurple/side,
/area/medical/genetics)
"duo" = (
+/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel/whitepurple/corner{
dir = 8
},
@@ -91379,10 +91293,7 @@
/turf/open/floor/plasteel/whiteblue/corner,
/area/medical/medbay/central)
"dut" = (
-/obj/structure/bed/dogbed{
- desc = "A comfy-looking cat bed. You can even strap your pet in, in case the gravity turns off.";
- name = "Runtime's bed"
- },
+/obj/structure/bed/dogbed/runtime,
/obj/machinery/airalarm{
dir = 4;
pixel_x = -23
@@ -91634,6 +91545,7 @@
icon_state = "2-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel/neutral,
/area/science/mixing)
"duT" = (
@@ -92247,11 +92159,6 @@
d2 = 8;
icon_state = "4-8"
},
-/obj/structure/cable/white{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -93769,6 +93676,7 @@
/area/medical/morgue)
"dza" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel/neutral,
/area/medical/morgue)
"dzb" = (
@@ -95696,17 +95604,12 @@
name = "server vent";
pressure_checks = 0
},
-/turf/open/floor/circuit/green{
- name = "Mainframe Base";
- initial_gas_mix = "n2=100;TEMP=80"
- },
+/turf/open/floor/circuit/green/telecomms/mainframe,
/area/science/server)
"dCI" = (
/obj/machinery/atmospherics/pipe/simple/general/hidden,
-/turf/open/floor/plasteel/vault{
- dir = 8;
- initial_gas_mix = "n2=100;TEMP=80";
- temperature = 80
+/turf/open/floor/plasteel/vault/telecomms{
+ dir = 8
},
/area/science/server)
"dCJ" = (
@@ -95721,10 +95624,7 @@
name = "science camera";
network = list("SS13","RD")
},
-/turf/open/floor/circuit/green{
- name = "Mainframe Base";
- initial_gas_mix = "n2=100;TEMP=80"
- },
+/turf/open/floor/circuit/green/telecomms/mainframe,
/area/science/server)
"dCK" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -95851,7 +95751,6 @@
pixel_y = -32
},
/obj/structure/mirror{
- desc = "Mirror mirror on the wall, who is the most robust of them all?";
pixel_x = 28
},
/obj/effect/turf_decal/bot,
@@ -95898,6 +95797,7 @@
"dDb" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/light_construct/small,
+/obj/effect/landmark/event_spawn,
/turf/open/floor/plating,
/area/medical/morgue)
"dDc" = (
@@ -96121,7 +96021,6 @@
/area/crew_quarters/theatre/abandoned)
"dDA" = (
/obj/structure/mirror{
- desc = "Mirror mirror on the wall, who is the most robust of them all?";
pixel_x = 28
},
/obj/effect/decal/cleanable/dirt,
@@ -96387,17 +96286,12 @@
/obj/machinery/atmospherics/pipe/simple/general/hidden{
dir = 5
},
-/turf/open/floor/circuit/green{
- name = "Mainframe Base";
- initial_gas_mix = "n2=100;TEMP=80"
- },
+/turf/open/floor/circuit/green/telecomms/mainframe,
/area/science/server)
"dEf" = (
/obj/machinery/atmospherics/pipe/manifold/general/hidden,
-/turf/open/floor/plasteel/vault{
- dir = 8;
- initial_gas_mix = "n2=100;TEMP=80";
- temperature = 80
+/turf/open/floor/plasteel/vault/telecomms{
+ dir = 8
},
/area/science/server)
"dEg" = (
@@ -96405,10 +96299,7 @@
/obj/machinery/atmospherics/pipe/simple/general/hidden{
dir = 9
},
-/turf/open/floor/circuit/green{
- name = "Mainframe Base";
- initial_gas_mix = "n2=100;TEMP=80"
- },
+/turf/open/floor/circuit/green/telecomms/mainframe,
/area/science/server)
"dEh" = (
/obj/item/weapon/twohanded/required/kirbyplants/random,
@@ -97430,6 +97321,7 @@
"dGh" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel/neutral/side{
dir = 10;
heat_capacity = 1e+006
@@ -97747,6 +97639,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
+/obj/effect/landmark/event_spawn,
/turf/open/floor/plating,
/area/maintenance/aft)
"dGL" = (
@@ -97982,13 +97875,14 @@
dir = 1;
pixel_y = -22
},
+/obj/item/weapon/twohanded/required/kirbyplants/random,
/turf/open/floor/wood{
icon_state = "wood-broken3"
},
/area/crew_quarters/theatre/abandoned)
"dHc" = (
+/obj/machinery/vending/cigarette,
/obj/effect/decal/cleanable/dirt,
-/obj/machinery/vending/kink,
/turf/open/floor/plating,
/area/crew_quarters/theatre/abandoned)
"dHd" = (
@@ -98168,6 +98062,7 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
+/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel/neutral/side{
dir = 4
},
@@ -98215,6 +98110,7 @@
/turf/open/floor/plasteel,
/area/science/research)
"dHD" = (
+/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel/neutral/side{
dir = 8;
heat_capacity = 1e+006
@@ -98570,7 +98466,6 @@
pixel_x = -12
},
/obj/structure/mirror{
- desc = "Mirror mirror on the wall, who is the most robust of them all?";
pixel_x = 28
},
/obj/effect/decal/cleanable/dirt,
@@ -99790,7 +99685,6 @@
pixel_x = -12
},
/obj/structure/mirror{
- desc = "Mirror mirror on the wall, who is the most robust of them all?";
pixel_x = -28
},
/obj/machinery/shower{
@@ -100379,11 +100273,7 @@
/turf/open/floor/plasteel/blue/side,
/area/security/checkpoint/customs)
"dLS" = (
-/obj/structure/closet/secure_closet{
- anchored = 1;
- name = "Contraband Locker";
- req_access_txt = "19"
- },
+/obj/structure/closet/secure_closet/contraband/heads,
/obj/item/weapon/storage/secure/briefcase,
/turf/open/floor/plasteel/blue/side{
dir = 6
@@ -103866,6 +103756,11 @@
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,
+/obj/structure/cable/white{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
/turf/open/floor/plasteel/green,
/area/medical/virology)
"dTi" = (
@@ -103896,6 +103791,11 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 10
},
+/obj/structure/cable/white{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
/turf/open/floor/plasteel/green,
/area/medical/virology)
"dTk" = (
@@ -104125,6 +104025,11 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/cable/white{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
/turf/open/floor/plasteel/whitegreen/corner{
dir = 8
},
@@ -104145,6 +104050,11 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/cable/white{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
/turf/open/floor/plasteel/whitegreen/corner,
/area/medical/virology)
"dTJ" = (
@@ -104434,6 +104344,11 @@
/obj/effect/turf_decal/stripes/line{
dir = 1
},
+/obj/structure/cable/white{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
/turf/open/floor/plasteel,
/area/medical/virology)
"dUl" = (
@@ -104686,6 +104601,11 @@
/obj/machinery/atmospherics/components/unary/vent_pump/on{
dir = 1
},
+/obj/structure/cable/white{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
/turf/open/floor/plasteel/whitegreen/side{
icon_state = "whitegreen";
dir = 5
@@ -104699,6 +104619,11 @@
/obj/machinery/atmospherics/components/unary/vent_pump/on{
dir = 1
},
+/obj/structure/cable/white{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
/turf/open/floor/plasteel/whitegreen/side{
icon_state = "whitegreen";
dir = 9
@@ -104983,6 +104908,11 @@
},
/obj/structure/chair/office/light,
/obj/effect/decal/cleanable/greenglow,
+/obj/structure/cable/white{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
/turf/open/floor/plasteel/whitegreen/side{
icon_state = "whitegreen";
dir = 6
@@ -104997,6 +104927,11 @@
dir = 8
},
/obj/structure/chair/office/light,
+/obj/structure/cable/white{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
/turf/open/floor/plasteel/whitegreen/side{
icon_state = "whitegreen";
dir = 10
@@ -105378,6 +105313,11 @@
/obj/item/weapon/folder/white,
/obj/item/weapon/pen/red,
/obj/effect/turf_decal/delivery,
+/obj/structure/cable/white{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
/turf/open/floor/plasteel,
/area/medical/virology)
"dWh" = (
@@ -105666,6 +105606,7 @@
"dWM" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable/white,
/turf/open/floor/plating,
/area/medical/virology)
"dWN" = (
@@ -108275,25 +108216,19 @@
/area/crew_quarters/heads/hop)
"ecz" = (
/obj/machinery/atmospherics/pipe/simple/general/hidden,
-/turf/open/floor/plasteel/vault{
- dir = 10;
- initial_gas_mix = "n2=100;TEMP=80";
- temperature = 80
+/turf/open/floor/plasteel/vault/telecomms{
+ dir = 10
},
/area/tcommsat/server)
"ecA" = (
-/turf/open/floor/plasteel/vault{
- dir = 6;
- initial_gas_mix = "n2=100;TEMP=80";
- temperature = 80
+/turf/open/floor/plasteel/vault/telecomms{
+ dir = 6
},
/area/tcommsat/server)
"ecE" = (
/obj/machinery/atmospherics/pipe/simple/general/hidden,
-/turf/open/floor/plasteel/vault{
- dir = 8;
- initial_gas_mix = "n2=100;TEMP=80";
- temperature = 80
+/turf/open/floor/plasteel/vault/telecomms{
+ dir = 8
},
/area/tcommsat/server)
"ecG" = (
@@ -108972,6 +108907,9 @@
/obj/structure/sign/poster/official/do_not_question{
pixel_y = -32
},
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
+ dir = 4
+ },
/turf/open/floor/plasteel,
/area/engine/atmos)
"efw" = (
@@ -110158,9 +110096,7 @@
/turf/closed/wall/r_wall,
/area/engine/supermatter)
"ehF" = (
-/obj/machinery/power/rad_collector{
- anchored = 1
- },
+/obj/machinery/power/rad_collector/anchored,
/obj/structure/cable{
icon_state = "0-4";
d2 = 4
@@ -110168,9 +110104,7 @@
/turf/open/floor/circuit/green,
/area/engine/supermatter)
"ehG" = (
-/obj/machinery/power/rad_collector{
- anchored = 1
- },
+/obj/machinery/power/rad_collector/anchored,
/obj/structure/cable{
icon_state = "0-4";
d2 = 4
@@ -110715,6 +110649,7 @@
/area/crew_quarters/dorms)
"ejf" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel/neutral,
/area/crew_quarters/dorms)
"ejg" = (
@@ -113119,9 +113054,901 @@
},
/area/construction/mining/aux_base)
"epU" = (
-/obj/machinery/vending/kink,
+/obj/machinery/atmospherics/pipe/manifold4w/general/visible,
+/turf/open/floor/plasteel/neutral,
+/area/engine/atmos)
+"epV" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/atmospherics/pipe/simple/orange/visible{
+ dir = 5
+ },
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"epW" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/atmospherics/pipe/simple/orange/visible{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/engine/atmos)
+"epX" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/visible{
+ dir = 10
+ },
+/turf/open/floor/plasteel/neutral,
+/area/engine/atmos)
+"epY" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 9
+ },
+/turf/closed/wall/r_wall,
+/area/engine/atmos)
+"epZ" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/visible,
+/obj/machinery/atmospherics/pipe/manifold/cyan/visible{
+ dir = 8
+ },
+/turf/open/floor/plasteel/neutral,
+/area/engine/atmos)
+"eqa" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
+ dir = 2
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/visible{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"eqb" = (
+/obj/structure/sign/electricshock,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 6
+ },
+/turf/closed/wall/r_wall,
+/area/engine/atmospherics_engine)
+"eqc" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/engine/atmospherics_engine)
+"eqd" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/door/airlock/maintenance_hatch{
+ name = "Maintenance Hatch";
+ req_access_txt = "12"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/barricade/wooden,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/maintenance/starboard/fore)
+"eqe" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/structure/cable/white{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel,
+/area/engine/gravity_generator)
+"eqf" = (
+/obj/machinery/door/airlock/maintenance_hatch{
+ name = "Maintenance Hatch";
+ req_access_txt = "12"
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/stripes/line{
+ dir = 2
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/construction)
+"eqg" = (
+/turf/closed/wall,
+/area/maintenance/department/medical)
+"eqh" = (
+/turf/closed/wall,
+/area/maintenance/department/medical)
+"eqi" = (
+/turf/closed/wall,
+/area/maintenance/department/medical)
+"eqj" = (
+/turf/closed/wall,
+/area/maintenance/department/medical)
+"eqk" = (
+/turf/closed/wall,
+/area/maintenance/department/medical)
+"eql" = (
+/turf/closed/wall,
+/area/maintenance/department/medical)
+"eqm" = (
+/turf/closed/wall,
+/area/maintenance/department/medical)
+"eqn" = (
+/turf/closed/wall,
+/area/maintenance/department/medical)
+"eqo" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/maintenance/department/medical)
+"eqp" = (
+/turf/closed/wall,
+/area/maintenance/department/medical)
+"eqq" = (
+/turf/closed/wall,
+/area/maintenance/department/medical)
+"eqr" = (
+/turf/closed/wall,
+/area/maintenance/department/medical)
+"eqs" = (
+/turf/closed/wall,
+/area/maintenance/department/medical)
+"eqt" = (
+/obj/structure/cable/white{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel/neutral,
+/area/construction/mining/aux_base)
+"equ" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel/arrival,
+/area/hallway/secondary/entry)
+"eqv" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel/arrival,
+/area/hallway/secondary/entry)
+"eqw" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable/white{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plating,
+/area/maintenance/starboard/fore)
+"eqx" = (
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/carpet,
+/area/hallway/secondary/entry)
+"eqy" = (
+/obj/structure/cable/white{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/landmark/event_spawn,
/turf/open/floor/plating,
/area/maintenance/port/fore)
+"eqz" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel,
+/area/engine/atmospherics_engine)
+"eqA" = (
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel/neutral/side{
+ dir = 1
+ },
+/area/maintenance/port/fore)
+"eqB" = (
+/obj/structure/cable/white{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel/neutral,
+/area/hallway/primary/fore)
+"eqC" = (
+/obj/structure/cable/white{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel/neutral/side,
+/area/maintenance/port/fore)
+"eqD" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/disposalpipe/segment,
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel/neutral,
+/area/quartermaster/storage)
+"eqE" = (
+/obj/structure/cable/white{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 4
+ },
+/area/hallway/secondary/service)
+"eqF" = (
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel/redyellow,
+/area/crew_quarters/bar/atrium)
+"eqG" = (
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel/neutral,
+/area/quartermaster/storage)
+"eqH" = (
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel/grimy,
+/area/crew_quarters/bar/atrium)
+"eqI" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel/neutral,
+/area/quartermaster/office)
+"eqJ" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel/neutral,
+/area/quartermaster/qm)
+"eqK" = (
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel/redyellow,
+/area/crew_quarters/bar/atrium)
+"eqL" = (
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plating,
+/area/maintenance/port/fore)
+"eqM" = (
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel/greenblue/side,
+/area/hydroponics)
+"eqN" = (
+/obj/structure/cable/white{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel/neutral,
+/area/hallway/primary/fore)
+"eqO" = (
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel/neutral,
+/area/quartermaster/miningoffice)
+"eqP" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel/neutral,
+/area/engine/atmos)
+"eqQ" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel/neutral,
+/area/hallway/primary/fore)
+"eqR" = (
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel/red,
+/area/crew_quarters/kitchen)
+"eqS" = (
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel/neutral,
+/area/quartermaster/miningoffice)
+"eqT" = (
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel/neutral,
+/area/hydroponics)
+"eqU" = (
+/obj/structure/cable/white{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel/neutral,
+/area/hallway/primary/central)
+"eqV" = (
+/obj/structure/cable/white{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel/neutral,
+/area/hallway/primary/central)
+"eqW" = (
+/obj/structure/cable/white{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel/neutral,
+/area/security/brig)
+"eqX" = (
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel/neutral,
+/area/engine/atmos)
+"eqY" = (
+/obj/structure/cable/white{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel/neutral,
+/area/hallway/primary/central)
+"eqZ" = (
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel/vault{
+ dir = 5
+ },
+/area/bridge)
+"era" = (
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel/neutral,
+/area/security/transfer)
+"erb" = (
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel/neutral,
+/area/storage/tech)
+"erc" = (
+/obj/structure/cable/white{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel/neutral,
+/area/engine/break_room)
+"erd" = (
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel/neutral,
+/area/storage/primary)
+"ere" = (
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel/darkblue/side,
+/area/bridge)
+"erf" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable/white{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel/neutral/side{
+ dir = 4
+ },
+/area/maintenance/port/fore)
+"erg" = (
+/obj/structure/cable/white{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel/red/side{
+ dir = 8
+ },
+/area/security/brig)
+"erh" = (
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel/neutral,
+/area/storage/primary)
+"eri" = (
+/obj/structure/cable/white{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel/neutral,
+/area/hallway/primary/central)
+"erj" = (
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel/vault{
+ dir = 5
+ },
+/area/security/detectives_office)
+"erk" = (
+/obj/structure/cable/white{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel/neutral,
+/area/hallway/primary/port)
+"erl" = (
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel/grimy,
+/area/tcommsat/computer)
+"erm" = (
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel/neutral,
+/area/hallway/primary/port)
+"ern" = (
+/obj/structure/cable/white{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel/neutral,
+/area/hallway/primary/starboard)
+"ero" = (
+/obj/structure/cable/white{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel/neutral,
+/area/hallway/primary/starboard)
+"erp" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"erq" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel/grimy,
+/area/crew_quarters/heads/hop)
+"err" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel/neutral/side{
+ dir = 4
+ },
+/area/maintenance/port)
+"ers" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel/grimy,
+/area/library)
+"ert" = (
+/obj/structure/cable/white{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel/neutral,
+/area/hallway/primary/central)
+"eru" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"erv" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel/neutral,
+/area/engine/engineering)
+"erw" = (
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/wood,
+/area/library)
+"erx" = (
+/obj/structure/cable/white{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 8
+ },
+/area/hallway/secondary/command)
+"ery" = (
+/obj/structure/cable/white{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel/neutral/corner,
+/area/hallway/secondary/command)
+"erz" = (
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel/neutral,
+/area/hallway/primary/central)
+"erA" = (
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel/neutral,
+/area/crew_quarters/locker)
+"erB" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel/neutral/side,
+/area/maintenance/starboard)
+"erC" = (
+/obj/structure/cable/white{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel/neutral,
+/area/hallway/primary/central)
+"erD" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel,
+/area/ai_monitored/storage/eva)
+"erE" = (
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel/yellow,
+/area/engine/storage)
+"erF" = (
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel/neutral,
+/area/crew_quarters/toilet/restrooms)
+"erG" = (
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel/neutral,
+/area/crew_quarters/locker)
+"erH" = (
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel/neutral/side,
+/area/crew_quarters/fitness/recreation)
+"erI" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"erJ" = (
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plating,
+/area/maintenance/port)
+"erK" = (
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plating,
+/area/maintenance/port)
+"erL" = (
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plating,
+/area/maintenance/port)
+"erM" = (
+/obj/structure/cable/white{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel/neutral,
+/area/hallway/primary/central)
+"erN" = (
+/obj/structure/cable/white{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel/neutral,
+/area/hallway/primary/central)
+"erO" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plating,
+/area/maintenance/port)
+"erP" = (
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plating,
+/area/maintenance/starboard/aft)
+"erQ" = (
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel/neutral,
+/area/medical/medbay/central)
+"erR" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel/cmo,
+/area/medical/medbay/central)
+"erS" = (
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel/neutral,
+/area/science/research)
+"erT" = (
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel/neutral,
+/area/crew_quarters/fitness/recreation)
+"erU" = (
+/obj/structure/cable/white{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 2
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel/white,
+/area/science/xenobiology)
+"erV" = (
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel/neutral,
+/area/hallway/primary/aft)
+"erW" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel/neutral/side{
+ dir = 1;
+ heat_capacity = 1e+006
+ },
+/area/maintenance/starboard/aft)
+"erX" = (
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel/purple,
+/area/science/research)
+"erY" = (
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel/neutral/side{
+ dir = 4
+ },
+/area/maintenance/port)
+"erZ" = (
+/obj/structure/cable/white{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel/blue,
+/area/medical/medbay/central)
+"esa" = (
+/obj/structure/cable/white{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel/neutral/side,
+/area/maintenance/port)
+"esb" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel/neutral,
+/area/science/research)
+"esc" = (
+/obj/structure/cable/white{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel/neutral,
+/area/medical/medbay/central)
+"esd" = (
+/obj/structure/cable/white{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel/neutral,
+/area/medical/medbay/central)
+"ese" = (
+/obj/structure/cable/white{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel/neutral,
+/area/medical/medbay/central)
+"esf" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plating,
+/area/maintenance/starboard/aft)
+"esg" = (
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel/neutral,
+/area/hallway/primary/aft)
+"esh" = (
+/obj/structure/cable/white{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel/neutral/side{
+ dir = 1
+ },
+/area/maintenance/port)
+"esi" = (
+/obj/structure/cable/white{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel/blue,
+/area/medical/medbay/central)
+"esj" = (
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel/neutral,
+/area/science/robotics/lab)
+"esk" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel/neutral/side,
+/area/maintenance/starboard/aft)
+"esl" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/white{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel/purple,
+/area/science/research)
+"esm" = (
+/obj/structure/cable/white{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel/neutral,
+/area/science/mixing)
+"esn" = (
+/obj/structure/cable/white{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel/neutral,
+/area/hallway/primary/aft)
+"eso" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel/neutral/side,
+/area/maintenance/aft)
+"esp" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plating,
+/area/maintenance/port/aft)
+"esq" = (
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel/neutral,
+/area/hallway/secondary/exit/departure_lounge)
+"esr" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel/neutral/side{
+ dir = 4
+ },
+/area/maintenance/port/aft)
+"ess" = (
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel{
+ dir = 1;
+ icon_state = "chapel"
+ },
+/area/chapel/main)
+"est" = (
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel{
+ icon_state = "chapel"
+ },
+/area/chapel/main)
+"esu" = (
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel/neutral,
+/area/hallway/secondary/exit/departure_lounge)
+"esv" = (
+/obj/structure/closet/secure_closet/miner/unlocked,
+/turf/open/floor/plasteel/yellow/side{
+ dir = 4
+ },
+/area/construction/mining/aux_base)
(1,1,1) = {"
aaa
@@ -133286,7 +134113,7 @@ aaf
btD
bwK
byz
-byz
+eqe
bBS
bDG
btD
@@ -133330,7 +134157,7 @@ cMq
bZC
bZD
cdj
-cMq
+erY
duO
bZC
cJc
@@ -133834,7 +134661,7 @@ czj
bZf
cAW
bVT
-bZC
+erJ
duK
cHJ
efW
@@ -136869,7 +137696,7 @@ aWj
aXP
aZq
aZq
-aWj
+eqP
bdp
bfh
bgW
@@ -137127,7 +137954,7 @@ aXQ
aZr
baL
bch
-aUo
+epU
bfi
bgX
biY
@@ -137386,9 +138213,9 @@ baM
aSY
bdq
bfj
-bgV
+epV
biZ
-aIU
+aPw
bmf
aIU
aIZ
@@ -137902,8 +138729,8 @@ bds
bfl
bgZ
bjb
-aUz
-aUz
+epX
+epZ
bof
aUz
bri
@@ -137926,7 +138753,7 @@ bPM
bVW
bXA
bZp
-cbh
+erp
ccW
ceI
ceM
@@ -137942,7 +138769,7 @@ csZ
ceM
cwf
cxK
-czn
+erI
bZp
cCv
cDy
@@ -138125,8 +138952,8 @@ ajL
alP
ajL
akR
-aoI
-apK
+eqb
+eqc
ard
asi
ehy
@@ -138157,7 +138984,7 @@ baO
bcj
bdt
bfm
-bha
+bgY
bjc
bkA
bmh
@@ -138169,7 +138996,7 @@ btN
bvp
bwW
byR
-bAF
+erc
bCi
bDR
bFQ
@@ -138414,7 +139241,7 @@ baP
aIU
bdu
bfn
-bha
+bgY
bjd
bkB
bmi
@@ -138674,7 +139501,7 @@ bfn
bhb
bje
bkC
-bkC
+eqa
boh
bqa
brl
@@ -138703,7 +139530,7 @@ ceK
ccZ
ceK
ccZ
-ceK
+erv
clV
cnp
coS
@@ -138988,7 +139815,7 @@ cJH
cWO
cHS
cZL
-dbc
+esa
dcG
dea
dfR
@@ -139233,7 +140060,7 @@ crI
crI
cFe
cBp
-bZD
+erO
cJz
cHS
cMI
@@ -139701,7 +140528,7 @@ bdz
bfr
bhf
bji
-aIZ
+epY
bmm
bol
bqe
@@ -139740,7 +140567,7 @@ crI
ctd
cuQ
cwj
-cxQ
+erE
czt
cBh
cCB
@@ -139964,7 +140791,7 @@ bom
bqf
brq
bsD
-aZq
+eqX
ehN
bvu
byX
@@ -140469,7 +141296,7 @@ aZx
baV
bcn
bdC
-bfu
+aZx
bhi
bjl
aIZ
@@ -140702,7 +141529,7 @@ asr
atp
auL
avV
-arm
+eqz
axW
azk
aAh
@@ -140728,7 +141555,7 @@ aSM
aIU
aWe
aIZ
-aSM
+epW
aIZ
bmq
bop
@@ -141515,7 +142342,7 @@ bCu
bEe
bGd
bGd
-bGd
+erk
bLV
bGd
bPW
@@ -141782,7 +142609,7 @@ bWf
bWg
bZC
cbu
-cdj
+err
bZC
cdj
chI
@@ -142598,7 +143425,7 @@ dnF
doZ
dqB
dej
-dtH
+esh
duK
cJc
aaa
@@ -142754,7 +143581,7 @@ anf
aiX
apV
arp
-arp
+eqy
atu
auO
avY
@@ -143094,7 +143921,7 @@ cHW
cHW
cOF
cQC
-cRR
+erU
cTF
cOC
cHW
@@ -143308,7 +144135,7 @@ bsM
bub
brB
bxk
-bze
+erb
bAP
bCy
bEk
@@ -143528,7 +144355,7 @@ aib
asx
atw
auQ
-epU
+aic
awX
aye
azn
@@ -143804,7 +144631,7 @@ aNZ
aRr
aHW
aUD
-aic
+eqL
aib
aoQ
efo
@@ -144095,7 +144922,7 @@ bWl
bXR
bZI
bXR
-bXR
+ers
bZI
cgo
chP
@@ -144113,7 +144940,7 @@ cya
czG
bWi
cCK
-bZC
+erJ
cFo
cGG
cHW
@@ -144339,7 +145166,7 @@ bxp
akm
ajl
ajl
-axb
+erf
akm
ajl
bKc
@@ -144872,7 +145699,7 @@ cgp
chQ
chQ
ckP
-chQ
+erw
chQ
cph
cqD
@@ -144917,7 +145744,7 @@ dwq
dxz
dyA
dxz
-dxz
+esm
dCy
dDV
dEE
@@ -145117,7 +145944,7 @@ bKe
bMe
bAZ
bQd
-bSn
+erm
bUr
bWi
bXU
@@ -145356,7 +146183,7 @@ bfB
bhp
bjr
bjt
-bjt
+eqT
boA
bjt
bbf
@@ -145369,7 +146196,7 @@ bAT
bCC
bEo
bCC
-bCC
+erd
bKf
bCF
bAZ
@@ -145447,7 +146274,7 @@ dND
dOq
dPj
dPX
-dQQ
+esr
dFW
dSC
dTm
@@ -146137,7 +146964,7 @@ aUK
bxr
bzo
bAW
-bCC
+erd
bEr
bCC
bCC
@@ -146169,7 +146996,7 @@ cyh
czN
cBp
cCQ
-bZC
+erJ
cFs
cGK
cId
@@ -146356,7 +147183,7 @@ aib
atE
aib
aoQ
-axa
+eqA
ayn
azr
aAr
@@ -146436,7 +147263,7 @@ cNb
cOP
cQK
cLI
-cLH
+erX
cLI
cLH
cLI
@@ -146634,7 +147461,7 @@ aqc
aWF
aYk
aZG
-bbf
+eqM
aWB
bdN
bfF
@@ -147111,7 +147938,7 @@ aaf
abT
adr
agl
-agN
+equ
ahv
aih
aje
@@ -147213,7 +148040,7 @@ cXi
cTO
cZZ
cNp
-cLE
+esb
dez
dgn
dhz
@@ -147417,7 +148244,7 @@ boD
bqr
brI
brI
-brI
+eqY
bvK
brI
bzs
@@ -147448,7 +148275,7 @@ cpm
brO
brO
brO
-brO
+eri
brO
brO
brO
@@ -147503,7 +148330,7 @@ dNI
dOw
dPn
dQc
-dQV
+ess
dRP
dSI
dRP
@@ -147651,7 +148478,7 @@ aDV
aFu
aGQ
aIe
-aJs
+eqE
aJs
aMB
aOl
@@ -148424,7 +149251,7 @@ aGS
aAx
eeX
aKT
-aKT
+eqH
aOo
aPU
aKT
@@ -148477,7 +149304,7 @@ cqH
crW
ctD
cvk
-cwC
+erD
cwC
czR
cBr
@@ -148526,7 +149353,7 @@ dIU
dJP
cJO
dLJ
-dIi
+esp
dNI
dOA
dPn
@@ -148536,7 +149363,7 @@ dRQ
dSH
dRQ
dQU
-dTq
+est
dVg
dVP
dQc
@@ -148770,7 +149597,7 @@ dqR
dmG
dqR
dpr
-dqR
+esl
dAb
dBv
dCL
@@ -148928,7 +149755,7 @@ art
art
art
ayw
-aqb
+eqC
aAx
aBz
aCL
@@ -149234,7 +150061,7 @@ bUF
bWr
bUF
bWr
-bUF
+erq
bWr
cfa
cgu
@@ -149261,7 +150088,7 @@ cJT
cLD
cNk
cPa
-cLI
+erS
cSh
cTU
cVz
@@ -149511,7 +150338,7 @@ czV
cBv
cCV
cDM
-bmX
+eqV
boR
cIi
cJU
@@ -149720,7 +150547,7 @@ aUQ
aZT
bbp
bcA
-aZU
+eqR
bfR
bhG
bjA
@@ -149971,7 +150798,7 @@ aGY
aJA
aRE
aGY
-aGY
+eqF
aGX
aYu
aZU
@@ -150271,7 +151098,7 @@ bQn
bQn
bQn
cnM
-cpp
+erx
cqH
csc
ctK
@@ -150496,7 +151323,7 @@ bfS
bhJ
bjA
bkP
-bmL
+eqU
boH
bqt
aaa
@@ -150567,7 +151394,7 @@ dqX
dsB
dtZ
dvg
-dwH
+esj
dxN
dyR
dAh
@@ -150992,7 +151819,7 @@ aEh
aFB
aGZ
aGY
-aGY
+eqF
aJA
aML
aGY
@@ -151099,14 +151926,14 @@ dLS
dMT
dNO
dPx
-dPx
+esq
dOI
dPx
dQl
dRc
dRV
dSP
-dPx
+esq
dQl
dRc
dRV
@@ -151742,7 +152569,7 @@ ahG
aax
ajs
akt
-akt
+eqx
amr
anB
aaD
@@ -152011,7 +152838,7 @@ atW
avo
awn
axl
-axl
+eqB
azB
axl
aBK
@@ -152031,7 +152858,7 @@ aUU
axl
aYz
axl
-axl
+eqB
bcE
beb
bfX
@@ -152089,7 +152916,7 @@ cKe
cNs
cPh
cKe
-cKe
+erV
cKe
cVJ
cKe
@@ -152103,7 +152930,7 @@ cKe
cKe
dly
cKe
-cKe
+erV
cKe
drc
dgz
@@ -152114,7 +152941,7 @@ eiK
dyV
eiK
eiK
-eiK
+esn
eiK
dES
dGr
@@ -152302,7 +153129,7 @@ aaa
bsY
bul
bvQ
-bvP
+eqZ
bzE
bBq
bCY
@@ -152310,7 +153137,7 @@ bEH
bGx
bIt
bKz
-bMw
+erl
bOu
bQu
bQu
@@ -152612,12 +153439,12 @@ daj
dbI
dda
deO
-dgB
-dgB
+eqg
+eqg
djM
-dgB
-dgB
-doa
+eqg
+eqg
+eqg
doa
dre
doa
@@ -152869,12 +153696,12 @@ cXz
dbJ
ddb
cVL
-dgB
+eqg
dhM
djN
dlz
dmR
-doa
+eqg
dpC
drf
doa
@@ -153126,12 +153953,12 @@ dak
dbK
ddc
deP
-dgB
+eqg
dhN
djO
dlA
-dhO
-doa
+eqo
+eqg
dpD
drg
dsG
@@ -153383,7 +154210,7 @@ cZb
dbL
ddd
deQ
-dgB
+eqg
dhO
djP
dlB
@@ -153536,7 +154363,7 @@ aaa
aaa
aaD
agv
-agN
+equ
ahL
aiv
ajy
@@ -153884,7 +154711,7 @@ bmX
cGY
cIs
cKj
-cLM
+erQ
cNx
cPo
cLO
@@ -153897,12 +154724,12 @@ dam
dbN
cZb
deS
-dgB
+eqg
dhQ
djR
dlD
dmU
-doa
+eqg
dpG
drj
dsJ
@@ -154173,7 +155000,7 @@ dBJ
egt
dwK
dFa
-dGz
+eso
dHQ
aaa
aaa
@@ -154596,13 +155423,13 @@ aMW
aOy
aQk
aRQ
-aTB
+eqI
aUZ
aWY
ehW
baf
bbz
-bcL
+eqQ
bei
bbz
bhV
@@ -154618,7 +155445,7 @@ bsV
bxO
bzK
bBv
-bCN
+ere
bEO
bGE
bIB
@@ -154908,13 +155735,13 @@ cAl
cBM
cqS
bkP
-bmX
+eqV
cGY
cIs
cKn
cLM
cNx
-cPp
+erR
cLL
cSz
cIs
@@ -155325,7 +156152,7 @@ acN
ade
adk
adv
-adR
+eqt
aef
adR
aeB
@@ -155411,7 +156238,7 @@ cjM
clm
cfi
cod
-cpG
+ery
cqV
cqS
ctY
@@ -155573,7 +156400,7 @@ aaZ
aaG
abk
abt
-abK
+esv
epT
acf
aaG
@@ -155849,7 +156676,7 @@ afq
afE
afU
agB
-ahg
+eqw
afE
aiD
ajG
@@ -155893,7 +156720,7 @@ bgd
bhZ
aXf
bkW
-bmX
+eqV
boU
boZ
brL
@@ -155951,7 +156778,7 @@ cXK
cZj
cKs
dbT
-ddj
+esc
deY
dgD
dhX
@@ -156103,7 +156930,7 @@ aeq
aaG
afc
afr
-afF
+eqd
afc
aeX
afc
@@ -156400,7 +157227,7 @@ aVg
aXf
aYH
bal
-bbF
+eqO
bcS
bep
bge
@@ -156639,7 +157466,7 @@ awD
axz
ayO
azR
-awD
+eqD
ayO
aDg
aEx
@@ -156677,7 +157504,7 @@ bBy
bCG
buq
brO
-brO
+eri
brO
brO
bqv
@@ -156692,7 +157519,7 @@ brO
brO
bta
boX
-brO
+eri
brO
bqv
bBy
@@ -156903,7 +157730,7 @@ awC
axA
aHp
awC
-awC
+eqG
aLm
aul
awC
@@ -157726,7 +158553,7 @@ caq
cbZ
bWN
crd
-csu
+erz
boH
cvF
cxa
@@ -157967,7 +158794,7 @@ bKN
bMN
bOH
bQF
-bSU
+ern
bUW
bWO
bYy
@@ -157994,7 +158821,7 @@ cDh
cEe
cFM
cHf
-cEd
+erP
cKv
cLU
cNG
@@ -158451,7 +159278,7 @@ aNf
aOJ
aQx
aSg
-aTL
+eqJ
aVo
aNf
aYN
@@ -158521,7 +159348,7 @@ cRb
cRb
dat
dcc
-ddj
+esc
deY
cIs
dib
@@ -158715,7 +159542,7 @@ aYO
bar
bbF
bcX
-bbF
+eqO
bgl
bii
aeX
@@ -159304,7 +160131,7 @@ dpX
drE
cXR
cWe
-cXR
+erZ
dfi
cXR
cWe
@@ -159529,7 +160356,7 @@ csu
cuh
cvF
cxg
-cyN
+erF
cAy
cvF
cvF
@@ -159761,7 +160588,7 @@ aaf
bDj
bEX
bGQ
-bIO
+erj
bKS
bMT
bDi
@@ -159802,7 +160629,7 @@ cRk
ega
cUt
cWe
-cXR
+erZ
cZr
dax
dbZ
@@ -160577,7 +161404,7 @@ cXT
cZt
cIs
dbY
-ddj
+esc
dfe
dgI
dik
@@ -161324,7 +162151,7 @@ cmM
cop
cpQ
crn
-cpQ
+erA
cun
cvI
cxm
@@ -161565,7 +162392,7 @@ bKY
bMZ
bDi
bQR
-bSU
+ern
bVh
bWU
bYL
@@ -162099,7 +162926,7 @@ csF
cuo
cvL
cxp
-cpQ
+erA
cAG
cCa
clx
@@ -162346,7 +163173,7 @@ efM
bdi
cgR
ciC
-cke
+eru
clx
ejB
cos
@@ -162839,7 +163666,7 @@ bsb
bto
buE
bwh
-bxY
+era
bzV
bBC
bDm
@@ -162911,7 +163738,7 @@ dCb
dDu
dEp
dFs
-dFs
+dHa
dHU
aaf
dJp
@@ -163357,7 +164184,7 @@ bxZ
bzX
bjQ
bDo
-bFj
+erg
bHb
bIZ
bLb
@@ -163417,7 +164244,7 @@ drP
dtj
dgP
dvU
-dxf
+esk
dyq
dzt
dAM
@@ -163654,7 +164481,7 @@ cyX
cNT
cPM
cvP
-cSU
+erW
cUF
cWo
cYa
@@ -163895,7 +164722,7 @@ cox
cmX
cmX
ciB
-ckc
+erB
cvP
cxv
cyU
@@ -163929,7 +164756,7 @@ doB
dkl
drQ
dtk
-duA
+eqf
dvV
dxg
dyr
@@ -164376,7 +165203,7 @@ bjS
bls
bno
bpo
-bqN
+eqW
bqN
bqN
bqN
@@ -165465,7 +166292,7 @@ dfy
cWm
diA
cWp
-cYg
+esf
ddH
doF
cWp
@@ -167753,7 +168580,7 @@ csQ
cuD
cvT
cxF
-czc
+erH
csQ
cCl
cDu
@@ -167765,7 +168592,7 @@ cKR
csQ
cNZ
cPV
-csQ
+erT
cTf
cUR
cWu
diff --git a/_maps/map_files/Deltastation/DeltaStation2.dmm.rej b/_maps/map_files/Deltastation/DeltaStation2.dmm.rej
deleted file mode 100644
index 4b97f76ae0..0000000000
--- a/_maps/map_files/Deltastation/DeltaStation2.dmm.rej
+++ /dev/null
@@ -1,37 +0,0 @@
-diff a/_maps/map_files/Deltastation/DeltaStation2.dmm b/_maps/map_files/Deltastation/DeltaStation2.dmm (rejected hunks)
-@@ -156131,16 +156132,16 @@ cim
- brN
- brN
- bqq
--coe
-+bkT
- cpL
--cqZ
-+brH
- csr
--cub
-+bmI
- cvE
- cwY
--cqZ
--cqZ
--cqZ
-+brH
-+brH
-+brH
- brH
- bkT
- cFG
-@@ -156166,10 +156167,10 @@ djZ
- dlM
- dnc
- doh
--dpQ
-+dnc
- drt
- dsT
--dpQ
-+dnc
- ego
- dwO
- dyc
diff --git a/_maps/map_files/MetaStation/MetaStation.dmm b/_maps/map_files/MetaStation/MetaStation.dmm
index 4c863df3c9..c1a7cc70a7 100644
--- a/_maps/map_files/MetaStation/MetaStation.dmm
+++ b/_maps/map_files/MetaStation/MetaStation.dmm
@@ -530,6 +530,11 @@
},
/obj/item/weapon/pen,
/obj/item/weapon/storage/crayons,
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
/turf/open/floor/plasteel/floorgrime,
/area/security/prison)
"abl" = (
@@ -1378,14 +1383,9 @@
pixel_y = 5
},
/obj/item/weapon/reagent_containers/dropper,
-/obj/machinery/airalarm{
- desc = "This particular atmos control unit appears to have no access restrictions.";
+/obj/machinery/airalarm/all_access{
dir = 4;
- locked = 0;
- name = "all-access air alarm";
- pixel_x = -24;
- req_access = "0";
- req_one_access = "0"
+ pixel_x = -24
},
/obj/machinery/button/ignition{
id = "executionburn";
@@ -2338,11 +2338,6 @@
d2 = 4;
icon_state = "1-4"
},
-/obj/structure/cable/yellow{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
/turf/open/floor/plasteel/red/corner{
dir = 2
},
@@ -2357,7 +2352,7 @@
dir = 5
},
/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'WARNING: Do Not Enter When Red Light Shows', detailing the penalties that any NanoTrasen employee or silicon will suffer if violating this rule.";
+ desc = "A warning sign which reads 'WARNING: Do Not Enter When Red Light Shows', detailing the penalties that any Nanotrasen employee or silicon will suffer if violating this rule.";
name = "WARNING: Do Not Enter When Red Light Shows";
pixel_y = 32
},
@@ -2953,11 +2948,6 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 5
},
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
/turf/open/floor/plasteel,
/area/security/prison)
"afG" = (
@@ -2977,6 +2967,7 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
+/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel/red/corner{
dir = 1
},
@@ -3044,6 +3035,7 @@
/obj/structure/extinguisher_cabinet{
pixel_y = -30
},
+/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel/red/corner{
dir = 1
},
@@ -3276,7 +3268,7 @@
/area/crew_quarters/heads/hos)
"agj" = (
/obj/item/weapon/phone{
- desc = "Supposedly a direct line to NanoTrasen Central Command. It's not even plugged in.";
+ desc = "Supposedly a direct line to Nanotrasen Central Command. It's not even plugged in.";
pixel_x = -3;
pixel_y = 3
},
@@ -3531,15 +3523,11 @@
/turf/open/floor/plasteel/vault,
/area/security/prison)
"agH" = (
-/obj/structure/closet/secure_closet/brig{
- anchored = 1
- },
+/obj/structure/closet/secure_closet/brig,
/turf/open/floor/plasteel/vault,
/area/security/prison)
"agI" = (
-/obj/structure/closet/secure_closet/brig{
- anchored = 1
- },
+/obj/structure/closet/secure_closet/brig,
/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
@@ -3706,7 +3694,7 @@
"aha" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/mob/living/simple_animal/hostile/retaliate/bat{
- desc = "A fierce companion for any person of power, this spider has been carefully trained by NanoTrasen specialists. Its beady, staring eyes send shivers down your spine.";
+ desc = "A fierce companion for any person of power, this spider has been carefully trained by Nanotrasen specialists. Its beady, staring eyes send shivers down your spine.";
emote_hear = list("chitters");
faction = list("spiders");
harm_intent_damage = 3;
@@ -4073,11 +4061,6 @@
d2 = 8;
icon_state = "4-8"
},
-/obj/structure/cable/yellow{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
/turf/open/floor/carpet,
/area/crew_quarters/heads/hos)
"ahM" = (
@@ -4104,11 +4087,6 @@
d2 = 8;
icon_state = "4-8"
},
-/obj/structure/cable/yellow{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
/turf/open/floor/carpet,
/area/crew_quarters/heads/hos)
"ahO" = (
@@ -4476,12 +4454,7 @@
},
/area/security/warden)
"aiz" = (
-/obj/structure/closet/secure_closet{
- anchored = 1;
- name = "Secure Evidence Closet";
- req_access_txt = "0";
- req_one_access_txt = "3,4"
- },
+/obj/structure/closet/secure_closet/evidence,
/obj/item/weapon/storage/secure/briefcase{
name = "Secure Evidence Briefcase";
pixel_x = 3;
@@ -4564,6 +4537,16 @@
req_access = null;
req_access_txt = "58"
},
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
/turf/open/floor/carpet,
/area/crew_quarters/heads/hos)
"aiH" = (
@@ -6855,6 +6838,7 @@
/turf/open/floor/plasteel/black,
/area/security/brig)
"ane" = (
+/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel/whitered/side{
dir = 8
},
@@ -7772,6 +7756,11 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 9
},
+/obj/structure/cable/yellow{
+ icon_state = "4-8";
+ d1 = 4;
+ d2 = 8
+ },
/turf/open/floor/plasteel/neutral/corner{
dir = 8
},
@@ -9021,7 +9010,7 @@
/area/security/main)
"arx" = (
/obj/item/weapon/phone{
- desc = "Supposedly a direct line to NanoTrasen Central Command. It's not even plugged in.";
+ desc = "Supposedly a direct line to Nanotrasen Central Command. It's not even plugged in.";
pixel_x = -3;
pixel_y = 3
},
@@ -9448,6 +9437,7 @@
d2 = 8;
icon_state = "2-8"
},
+/obj/effect/landmark/event_spawn,
/turf/open/floor/plating,
/area/maintenance/port/fore)
"asl" = (
@@ -9527,6 +9517,11 @@
d2 = 8;
icon_state = "1-8"
},
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
/turf/open/floor/plasteel/showroomfloor,
/area/security/warden)
"asr" = (
@@ -9539,11 +9534,6 @@
/turf/open/floor/plasteel/showroomfloor,
/area/security/warden)
"ass" = (
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
/obj/machinery/newscaster/security_unit{
pixel_y = -30
},
@@ -9566,10 +9556,6 @@
/obj/structure/reagent_dispensers/peppertank{
pixel_y = -32
},
-/obj/structure/cable/yellow{
- d2 = 4;
- icon_state = "0-4"
- },
/turf/open/floor/plasteel/showroomfloor,
/area/security/warden)
"asu" = (
@@ -11026,6 +11012,11 @@
/obj/item/weapon/paper,
/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
/turf/open/floor/plasteel/showroomfloor,
/area/security/warden)
"avb" = (
@@ -12223,6 +12214,7 @@
name = "Cell 2";
pixel_y = -32
},
+/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel/red/side,
/area/security/brig)
"axg" = (
@@ -12347,6 +12339,7 @@
pixel_y = -26;
req_access_txt = "1"
},
+/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel/red/corner{
dir = 2
},
@@ -12618,6 +12611,11 @@
dir = 4
},
/obj/machinery/holopad,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
/turf/open/floor/plasteel/red/corner{
dir = 4
},
@@ -12980,6 +12978,14 @@
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/cable/yellow{
+ icon_state = "0-4";
+ d2 = 4
+ },
+/obj/structure/cable/yellow{
+ d2 = 8;
+ icon_state = "0-8"
+ },
/turf/open/floor/plating,
/area/security/brig)
"ayE" = (
@@ -13557,6 +13563,7 @@
/area/security/brig)
"azO" = (
/obj/structure/chair,
+/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel/floorgrime,
/area/security/brig)
"azP" = (
@@ -14465,6 +14472,7 @@
/obj/machinery/shower{
dir = 8
},
+/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel/freezer,
/area/crew_quarters/toilet/restrooms)
"aBw" = (
@@ -14955,6 +14963,10 @@
id = "Secure Gate";
name = "brig shutters"
},
+/obj/structure/cable/yellow{
+ icon_state = "0-4";
+ d2 = 4
+ },
/turf/open/floor/plating,
/area/security/brig)
"aCp" = (
@@ -16572,6 +16584,7 @@
/area/crew_quarters/dorms)
"aFn" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel,
/area/crew_quarters/dorms)
"aFo" = (
@@ -17343,6 +17356,7 @@
/obj/machinery/light/small{
dir = 4
},
+/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel/freezer,
/area/crew_quarters/toilet/restrooms)
"aGD" = (
@@ -17526,6 +17540,8 @@
/obj/effect/turf_decal/bot{
dir = 1
},
+/obj/item/weapon/twohanded/rcl/pre_loaded,
+/obj/item/weapon/twohanded/rcl/pre_loaded,
/turf/open/floor/plasteel{
dir = 1
},
@@ -18401,6 +18417,7 @@
d2 = 8;
icon_state = "4-8"
},
+/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel/brown/corner{
dir = 4
},
@@ -18932,6 +18949,7 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 10
},
+/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel,
/area/quartermaster/storage)
"aJH" = (
@@ -20011,6 +20029,7 @@
d2 = 4;
icon_state = "2-4"
},
+/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel,
/area/engine/engineering)
"aMe" = (
@@ -20083,8 +20102,7 @@
/turf/open/floor/plasteel/black,
/area/engine/engineering)
"aMo" = (
-/obj/structure/reflector/box{
- anchored = 1;
+/obj/structure/reflector/box/anchored{
dir = 8
},
/turf/open/floor/plasteel/black,
@@ -21009,6 +21027,7 @@
d2 = 2;
icon_state = "1-2"
},
+/obj/effect/landmark/event_spawn,
/turf/open/floor/wood,
/area/lawoffice)
"aOq" = (
@@ -21414,9 +21433,7 @@
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/pod_2)
"aPb" = (
-/obj/structure/closet/secure_closet/miner{
- locked = 0
- },
+/obj/structure/closet/secure_closet/miner/unlocked,
/obj/effect/turf_decal/stripes/line{
dir = 6
},
@@ -22566,6 +22583,7 @@
/turf/open/floor/plasteel/neutral/side,
/area/hydroponics/garden)
"aRf" = (
+/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel/neutral/side{
dir = 6
},
@@ -26994,6 +27012,7 @@
charge = 100;
maxcharge = 15000
},
+/obj/item/weapon/twohanded/rcl/pre_loaded,
/turf/open/floor/plasteel/neutral/corner{
dir = 8
},
@@ -28593,11 +28612,6 @@
name = "Secure Tech Storage";
req_access_txt = "19;23"
},
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
/turf/open/floor/plasteel/vault{
dir = 8
},
@@ -30303,6 +30317,7 @@
name = "Auxiliary Tool Storage";
req_access_txt = "12"
},
+/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel,
/area/storage/tools)
"bfJ" = (
@@ -30871,6 +30886,7 @@
d1 = 4;
d2 = 8
},
+/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel,
/area/quartermaster/office)
"bgQ" = (
@@ -31787,6 +31803,7 @@
req_access = null;
req_access_txt = "1"
},
+/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel,
/area/security/checkpoint/customs)
"biz" = (
@@ -31795,6 +31812,7 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
+/obj/structure/cable/yellow,
/turf/open/floor/plating,
/area/security/checkpoint/customs)
"biA" = (
@@ -33335,6 +33353,10 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
+/obj/structure/cable/yellow{
+ d2 = 2;
+ icon_state = "0-2"
+ },
/turf/open/floor/plating,
/area/engine/break_room)
"blk" = (
@@ -33379,6 +33401,7 @@
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel,
/area/engine/break_room)
"blq" = (
@@ -34324,6 +34347,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
+/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel,
/area/engine/break_room)
"bnc" = (
@@ -34976,14 +35000,6 @@
"bol" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
-/obj/structure/cable/yellow{
- d2 = 4;
- icon_state = "0-4"
- },
-/obj/structure/cable/yellow{
- d2 = 8;
- icon_state = "0-8"
- },
/obj/structure/cable/yellow{
d2 = 4;
icon_state = "0-4"
@@ -36699,6 +36715,7 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
+/obj/effect/landmark/event_spawn,
/turf/open/floor/plating{
icon_state = "platingdmg1"
},
@@ -37581,12 +37598,7 @@
layer = 4;
pixel_y = 32
},
-/obj/structure/bed/dogbed{
- anchored = 1;
- desc = "Ian's bed! Looks comfy.";
- name = "Ian's bed";
- pixel_y = 2
- },
+/obj/structure/bed/dogbed/ian,
/turf/open/floor/wood,
/area/crew_quarters/heads/hop)
"bsQ" = (
@@ -37948,6 +37960,7 @@
/area/maintenance/starboard)
"btx" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel/caution{
dir = 8
},
@@ -39301,16 +39314,16 @@
/turf/open/floor/plasteel/black,
/area/engine/break_room)
"bwm" = (
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
/obj/machinery/computer/secure_data,
/turf/open/floor/wood,
/area/crew_quarters/heads/hop)
"bwn" = (
/obj/machinery/computer/card,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
/turf/open/floor/wood,
/area/crew_quarters/heads/hop)
"bwo" = (
@@ -40069,6 +40082,7 @@
dir = 1;
pixel_y = -22
},
+/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel/neutral/side{
dir = 10
},
@@ -40652,8 +40666,7 @@
},
/obj/structure/cable/yellow,
/obj/item/stack/sheet/mineral/plasma{
- amount = 35;
- layer = 3.1
+ amount = 35
},
/turf/open/floor/plasteel/black,
/area/ai_monitored/storage/satellite)
@@ -41207,6 +41220,7 @@
pixel_y = 21
},
/obj/effect/turf_decal/bot,
+/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel,
/area/hallway/secondary/command)
"bzP" = (
@@ -41541,6 +41555,10 @@
name = "Atmos Blast Door";
opacity = 0
},
+/obj/structure/cable/yellow{
+ d2 = 2;
+ icon_state = "0-2"
+ },
/turf/open/floor/plating,
/area/engine/atmos)
"bAB" = (
@@ -42290,6 +42308,7 @@
/turf/open/floor/carpet,
/area/crew_quarters/theatre)
"bCb" = (
+/obj/effect/landmark/event_spawn,
/turf/open/floor/carpet,
/area/crew_quarters/theatre)
"bCc" = (
@@ -42354,6 +42373,16 @@
opacity = 0
},
/obj/effect/turf_decal/delivery,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
/turf/open/floor/plasteel,
/area/engine/atmos)
"bCh" = (
@@ -42361,6 +42390,11 @@
dir = 8
},
/obj/effect/landmark/start/atmospheric_technician,
+/obj/structure/cable/yellow{
+ icon_state = "4-8";
+ d1 = 4;
+ d2 = 8
+ },
/turf/open/floor/plasteel/caution{
dir = 8
},
@@ -42372,6 +42406,11 @@
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 8
},
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
/turf/open/floor/plasteel,
/area/engine/atmos)
"bCk" = (
@@ -43144,9 +43183,19 @@
"bDP" = (
/obj/machinery/holopad,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
/turf/open/floor/plasteel,
/area/engine/atmos)
"bDQ" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8";
+ d1 = 4;
+ d2 = 8
+ },
/turf/open/floor/plasteel/caution{
dir = 4
},
@@ -43156,6 +43205,11 @@
name = "Atmospherics Monitoring";
req_access_txt = "24"
},
+/obj/structure/cable/yellow{
+ icon_state = "4-8";
+ d1 = 4;
+ d2 = 8
+ },
/turf/open/floor/plasteel,
/area/engine/atmos)
"bDS" = (
@@ -43169,6 +43223,12 @@
d2 = 2;
icon_state = "1-2"
},
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel,
/area/engine/atmos)
"bDU" = (
@@ -43253,10 +43313,7 @@
dir = 2;
network = list("SS13","tcomm")
},
-/turf/open/floor/circuit/green{
- name = "Mainframe Base";
- initial_gas_mix = "n2=100;TEMP=80"
- },
+/turf/open/floor/circuit/green/telecomms/mainframe,
/area/tcommsat/server)
"bEg" = (
/obj/structure/showcase{
@@ -43268,17 +43325,11 @@
name = "Cyborg Statue";
pixel_y = 20
},
-/turf/open/floor/plasteel/black{
- name = "Mainframe Floor";
- initial_gas_mix = "n2=100;TEMP=80"
- },
+/turf/open/floor/plasteel/black/telecomms/mainframe,
/area/tcommsat/server)
"bEh" = (
/obj/machinery/telecomms/receiver/preset_left,
-/turf/open/floor/circuit/green{
- name = "Mainframe Base";
- initial_gas_mix = "n2=100;TEMP=80"
- },
+/turf/open/floor/circuit/green/telecomms/mainframe,
/area/tcommsat/server)
"bEi" = (
/obj/structure/cable/yellow{
@@ -43291,10 +43342,7 @@
/area/tcommsat/server)
"bEj" = (
/obj/machinery/telecomms/receiver/preset_right,
-/turf/open/floor/circuit/green{
- name = "Mainframe Base";
- initial_gas_mix = "n2=100;TEMP=80"
- },
+/turf/open/floor/circuit/green/telecomms/mainframe,
/area/tcommsat/server)
"bEk" = (
/obj/machinery/telecomms/processor/preset_three,
@@ -43303,10 +43351,7 @@
dir = 2;
network = list("SS13","tcomm")
},
-/turf/open/floor/circuit/green{
- name = "Mainframe Base";
- initial_gas_mix = "n2=100;TEMP=80"
- },
+/turf/open/floor/circuit/green/telecomms/mainframe,
/area/tcommsat/server)
"bEl" = (
/obj/machinery/door/airlock/external{
@@ -43893,6 +43938,7 @@
d2 = 8;
icon_state = "4-8"
},
+/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel/neutral/corner{
dir = 2
},
@@ -44496,29 +44542,17 @@
/area/engine/atmos)
"bGc" = (
/obj/machinery/telecomms/bus/preset_one,
-/turf/open/floor/circuit/green{
- name = "Mainframe Base";
- initial_gas_mix = "n2=100;TEMP=80"
- },
+/turf/open/floor/circuit/green/telecomms/mainframe,
/area/tcommsat/server)
"bGd" = (
-/turf/open/floor/plasteel/black{
- name = "Mainframe Floor";
- initial_gas_mix = "n2=100;TEMP=80"
- },
+/turf/open/floor/plasteel/black/telecomms/mainframe,
/area/tcommsat/server)
"bGe" = (
-/turf/open/floor/circuit/green{
- name = "Mainframe Base";
- initial_gas_mix = "n2=100;TEMP=80"
- },
+/turf/open/floor/circuit/green/telecomms/mainframe,
/area/tcommsat/server)
"bGf" = (
/obj/machinery/telecomms/bus/preset_three,
-/turf/open/floor/circuit/green{
- name = "Mainframe Base";
- initial_gas_mix = "n2=100;TEMP=80"
- },
+/turf/open/floor/circuit/green/telecomms/mainframe,
/area/tcommsat/server)
"bGg" = (
/obj/structure/chair/wood/wings{
@@ -44681,11 +44715,6 @@
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
/obj/machinery/door/airlock/command{
name = "E.V.A. Storage";
req_access_txt = "18"
@@ -44744,6 +44773,7 @@
/turf/open/floor/plasteel,
/area/hallway/secondary/command)
"bGI" = (
+/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel,
/area/hallway/secondary/command)
"bGJ" = (
@@ -45163,19 +45193,13 @@
/obj/machinery/light/small{
dir = 8
},
-/turf/open/floor/plasteel/black{
- name = "Mainframe Floor";
- initial_gas_mix = "n2=100;TEMP=80"
- },
+/turf/open/floor/plasteel/black/telecomms/mainframe,
/area/tcommsat/server)
"bHD" = (
/obj/machinery/light/small{
dir = 1
},
-/turf/open/floor/plasteel/black{
- name = "Mainframe Floor";
- initial_gas_mix = "n2=100;TEMP=80"
- },
+/turf/open/floor/plasteel/black/telecomms/mainframe,
/area/tcommsat/server)
"bHE" = (
/obj/machinery/holopad,
@@ -45187,10 +45211,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 5
},
-/turf/open/floor/plasteel/black{
- name = "Mainframe Floor";
- initial_gas_mix = "n2=100;TEMP=80"
- },
+/turf/open/floor/plasteel/black/telecomms/mainframe,
/area/tcommsat/server)
"bHF" = (
/obj/structure/cable/yellow{
@@ -45204,19 +45225,13 @@
/obj/machinery/light/small{
dir = 1
},
-/turf/open/floor/plasteel/black{
- name = "Mainframe Floor";
- initial_gas_mix = "n2=100;TEMP=80"
- },
+/turf/open/floor/plasteel/black/telecomms/mainframe,
/area/tcommsat/server)
"bHG" = (
/obj/machinery/light/small{
dir = 4
},
-/turf/open/floor/plasteel/black{
- name = "Mainframe Floor";
- initial_gas_mix = "n2=100;TEMP=80"
- },
+/turf/open/floor/plasteel/black/telecomms/mainframe,
/area/tcommsat/server)
"bHH" = (
/obj/structure/closet/firecloset,
@@ -45944,10 +45959,7 @@
/area/space)
"bJg" = (
/obj/machinery/message_server,
-/turf/open/floor/circuit{
- name = "Mainframe Base";
- initial_gas_mix = "n2=100;TEMP=80"
- },
+/turf/open/floor/circuit/telecomms/mainframe,
/area/tcommsat/server)
"bJh" = (
/obj/item/weapon/twohanded/required/kirbyplants{
@@ -45989,10 +46001,7 @@
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/black{
- name = "Mainframe Floor";
- initial_gas_mix = "n2=100;TEMP=80"
- },
+/turf/open/floor/plasteel/black/telecomms/mainframe,
/area/tcommsat/server)
"bJl" = (
/obj/structure/lattice,
@@ -46003,17 +46012,11 @@
/area/space)
"bJm" = (
/obj/machinery/telecomms/bus/preset_two,
-/turf/open/floor/circuit{
- name = "Mainframe Base";
- initial_gas_mix = "n2=100;TEMP=80"
- },
+/turf/open/floor/circuit/telecomms/mainframe,
/area/tcommsat/server)
"bJn" = (
/obj/machinery/blackbox_recorder,
-/turf/open/floor/circuit{
- name = "Mainframe Base";
- initial_gas_mix = "n2=100;TEMP=80"
- },
+/turf/open/floor/circuit/telecomms/mainframe,
/area/tcommsat/server)
"bJo" = (
/obj/structure/cable/yellow{
@@ -46056,6 +46059,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
+/obj/effect/landmark/event_spawn,
/turf/open/floor/plating,
/area/maintenance/port)
"bJs" = (
@@ -46736,10 +46740,7 @@
/area/space)
"bKL" = (
/obj/machinery/telecomms/processor/preset_two,
-/turf/open/floor/circuit{
- name = "Mainframe Base";
- initial_gas_mix = "n2=100;TEMP=80"
- },
+/turf/open/floor/circuit/telecomms/mainframe,
/area/tcommsat/server)
"bKM" = (
/obj/structure/table/glass,
@@ -46750,31 +46751,19 @@
pixel_y = 2
},
/obj/item/weapon/pen,
-/turf/open/floor/circuit/green{
- name = "Mainframe Base";
- initial_gas_mix = "n2=100;TEMP=80"
- },
+/turf/open/floor/circuit/green/telecomms/mainframe,
/area/tcommsat/server)
"bKN" = (
/obj/machinery/telecomms/bus/preset_four,
-/turf/open/floor/circuit{
- name = "Mainframe Base";
- initial_gas_mix = "n2=100;TEMP=80"
- },
+/turf/open/floor/circuit/telecomms/mainframe,
/area/tcommsat/server)
"bKO" = (
/obj/machinery/telecomms/hub/preset,
-/turf/open/floor/circuit/green{
- name = "Mainframe Base";
- initial_gas_mix = "n2=100;TEMP=80"
- },
+/turf/open/floor/circuit/green/telecomms/mainframe,
/area/tcommsat/server)
"bKP" = (
/obj/machinery/telecomms/processor/preset_four,
-/turf/open/floor/circuit{
- name = "Mainframe Base";
- initial_gas_mix = "n2=100;TEMP=80"
- },
+/turf/open/floor/circuit/telecomms/mainframe,
/area/tcommsat/server)
"bKQ" = (
/obj/structure/lattice,
@@ -47541,19 +47530,13 @@
dir = 4;
network = list("SS13","tcomm")
},
-/turf/open/floor/plasteel/black{
- name = "Mainframe Floor";
- initial_gas_mix = "n2=100;TEMP=80"
- },
+/turf/open/floor/plasteel/black/telecomms/mainframe,
/area/tcommsat/server)
"bMp" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 6
},
-/turf/open/floor/plasteel/black{
- name = "Mainframe Floor";
- initial_gas_mix = "n2=100;TEMP=80"
- },
+/turf/open/floor/plasteel/black/telecomms/mainframe,
/area/tcommsat/server)
"bMq" = (
/obj/structure/cable/yellow{
@@ -47564,10 +47547,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 9
},
-/turf/open/floor/plasteel/black{
- name = "Mainframe Floor";
- initial_gas_mix = "n2=100;TEMP=80"
- },
+/turf/open/floor/plasteel/black/telecomms/mainframe,
/area/tcommsat/server)
"bMr" = (
/obj/structure/cable/yellow{
@@ -47575,10 +47555,7 @@
d2 = 8;
icon_state = "4-8"
},
-/turf/open/floor/plasteel/black{
- name = "Mainframe Floor";
- initial_gas_mix = "n2=100;TEMP=80"
- },
+/turf/open/floor/plasteel/black/telecomms/mainframe,
/area/tcommsat/server)
"bMs" = (
/obj/machinery/power/apc{
@@ -47599,10 +47576,7 @@
d2 = 8;
icon_state = "0-8"
},
-/turf/open/floor/plasteel/black{
- name = "Mainframe Floor";
- initial_gas_mix = "n2=100;TEMP=80"
- },
+/turf/open/floor/plasteel/black/telecomms/mainframe,
/area/tcommsat/server)
"bMt" = (
/obj/structure/window/reinforced{
@@ -47970,7 +47944,7 @@
/area/bridge/showroom/corporate)
"bNc" = (
/obj/structure/showcase{
- desc = "A stand with an empty old NanoTrasen Corporation combat mech bolted to it. It is described as the premier unit used to defend corporate interests and employees.";
+ desc = "A stand with an empty old Nanotrasen Corporation combat mech bolted to it. It is described as the premier unit used to defend corporate interests and employees.";
icon = 'icons/mecha/mecha.dmi';
icon_state = "marauder";
name = "combat mech exhibit"
@@ -47999,7 +47973,7 @@
"bNe" = (
/obj/structure/table/wood,
/obj/item/weapon/phone{
- desc = "Supposedly a direct line to NanoTrasen Central Command. It's not even plugged in.";
+ desc = "Supposedly a direct line to Nanotrasen Central Command. It's not even plugged in.";
pixel_x = -3;
pixel_y = 3
},
@@ -48065,7 +48039,7 @@
},
/obj/structure/window/reinforced,
/obj/structure/showcase{
- desc = "Signs describe how cloning pods like these ensure that every NanoTrasen employee can carry out their contracts in full, even in the unlikely event of their catastrophic death. Hopefully they aren't all made of cardboard, like this one.";
+ desc = "Signs describe how cloning pods like these ensure that every Nanotrasen employee can carry out their contracts in full, even in the unlikely event of their catastrophic death. Hopefully they aren't all made of cardboard, like this one.";
icon = 'icons/obj/cloning.dmi';
icon_state = "pod_0";
layer = 4;
@@ -48081,7 +48055,7 @@
name = "'Perfect Man' employee exhibit"
},
/obj/structure/sign/atmosplaque{
- desc = "A guide to the exhibit, explaining how recent developments in loyalty implant and cloning technologies by NanoTrasen Corporation have led to the development and the effective immortality of the 'perfect man', the loyal Nanotrasen Employee.";
+ desc = "A guide to the exhibit, explaining how recent developments in loyalty implant and cloning technologies by Nanotrasen Corporation have led to the development and the effective immortality of the 'perfect man', the loyal Nanotrasen Employee.";
icon_state = "kiddieplaque";
name = "\improper 'Perfect Man' sign";
pixel_y = 32
@@ -48098,11 +48072,11 @@
/obj/structure/window/reinforced,
/obj/effect/decal/cleanable/cobweb/cobweb2,
/obj/structure/showcase{
- desc = "A flimsy model of a standard NanoTrasen automated loyalty implant machine. With secure positioning harnesses and a robotic surgical injector, brain damage and other serious medical anomalies are now up to 60% less likely!";
+ desc = "A flimsy model of a standard Nanotrasen automated loyalty implant machine. With secure positioning harnesses and a robotic surgical injector, brain damage and other serious medical anomalies are now up to 60% less likely!";
icon = 'icons/obj/machines/implantchair.dmi';
icon_state = "implantchair";
layer = 2.7;
- name = "NanoTrasen automated loyalty implanter exhibit";
+ name = "Nanotrasen automated loyalty implanter exhibit";
pixel_y = 4
},
/turf/open/floor/carpet,
@@ -48470,17 +48444,11 @@
/area/aisat)
"bNX" = (
/obj/machinery/telecomms/server/presets/common,
-/turf/open/floor/circuit{
- name = "Mainframe Base";
- initial_gas_mix = "n2=100;TEMP=80"
- },
+/turf/open/floor/circuit/telecomms/mainframe,
/area/tcommsat/server)
"bNY" = (
/obj/machinery/telecomms/server/presets/engineering,
-/turf/open/floor/circuit{
- name = "Mainframe Base";
- initial_gas_mix = "n2=100;TEMP=80"
- },
+/turf/open/floor/circuit/telecomms/mainframe,
/area/tcommsat/server)
"bNZ" = (
/obj/machinery/light/small,
@@ -48491,31 +48459,19 @@
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/ntnet_relay,
-/turf/open/floor/plasteel/black{
- name = "Mainframe Floor";
- initial_gas_mix = "n2=100;TEMP=80"
- },
+/turf/open/floor/plasteel/black/telecomms/mainframe,
/area/tcommsat/server)
"bOa" = (
/obj/machinery/telecomms/server/presets/medical,
-/turf/open/floor/circuit{
- name = "Mainframe Base";
- initial_gas_mix = "n2=100;TEMP=80"
- },
+/turf/open/floor/circuit/telecomms/mainframe,
/area/tcommsat/server)
"bOb" = (
/obj/machinery/telecomms/server/presets/science,
-/turf/open/floor/circuit{
- name = "Mainframe Base";
- initial_gas_mix = "n2=100;TEMP=80"
- },
+/turf/open/floor/circuit/telecomms/mainframe,
/area/tcommsat/server)
"bOc" = (
/obj/machinery/telecomms/broadcaster/preset_left,
-/turf/open/floor/circuit{
- name = "Mainframe Base";
- initial_gas_mix = "n2=100;TEMP=80"
- },
+/turf/open/floor/circuit/telecomms/mainframe,
/area/tcommsat/server)
"bOd" = (
/obj/machinery/door/airlock/external{
@@ -48699,6 +48655,7 @@
/obj/effect/turf_decal/stripes/line{
dir = 8
},
+/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel,
/area/teleporter)
"bOv" = (
@@ -48796,17 +48753,22 @@
d2 = 2;
icon_state = "1-2"
},
-/turf/open/floor/wood{
- icon_state = "wood-broken6"
- },
-/area/bridge/showroom/corporate)
-"bOE" = (
/obj/structure/cable/yellow{
d1 = 2;
d2 = 4;
icon_state = "2-4"
},
+/turf/open/floor/wood{
+ icon_state = "wood-broken6"
+ },
+/area/bridge/showroom/corporate)
+"bOE" = (
/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable/yellow{
+ icon_state = "4-8";
+ d1 = 4;
+ d2 = 8
+ },
/turf/open/floor/wood,
/area/bridge/showroom/corporate)
"bOF" = (
@@ -48881,6 +48843,7 @@
d2 = 2;
icon_state = "1-2"
},
+/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel/vault,
/area/gateway)
"bOM" = (
@@ -49461,7 +49424,6 @@
/turf/open/floor/plasteel,
/area/ai_monitored/storage/eva)
"bQb" = (
-/obj/structure/cable/yellow,
/obj/machinery/shieldwallgen,
/obj/structure/window/reinforced{
dir = 1;
@@ -49493,7 +49455,6 @@
/turf/open/floor/plasteel,
/area/teleporter)
"bQe" = (
-/obj/structure/cable/yellow,
/obj/machinery/shieldwallgen,
/obj/structure/window/reinforced{
dir = 1;
@@ -49545,9 +49506,7 @@
/area/bridge/showroom/corporate)
"bQj" = (
/obj/machinery/cell_charger,
-/obj/item/weapon/stock_parts/cell/crap{
- name = "\improper NanoTrasen-brand rechargeable AA battery"
- },
+/obj/item/weapon/stock_parts/cell/crap,
/obj/structure/table/wood,
/turf/open/floor/carpet,
/area/bridge/showroom/corporate)
@@ -49560,16 +49519,11 @@
/obj/structure/table/wood,
/obj/item/toy/carpplushie{
color = "red";
- name = "NanoTrasen wildlife department space carp plushie"
+ name = "Nanotrasen wildlife department space carp plushie"
},
/turf/open/floor/carpet,
/area/bridge/showroom/corporate)
"bQm" = (
-/obj/structure/cable/yellow{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
@@ -49579,11 +49533,6 @@
/turf/open/floor/wood,
/area/bridge/showroom/corporate)
"bQn" = (
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
/turf/open/floor/wood,
/area/bridge/showroom/corporate)
"bQp" = (
@@ -50078,7 +50027,6 @@
/turf/open/floor/plasteel,
/area/ai_monitored/storage/eva)
"bRs" = (
-/obj/structure/cable/yellow,
/obj/machinery/shieldwallgen,
/turf/open/floor/plasteel/vault{
dir = 4
@@ -50097,7 +50045,6 @@
/turf/open/floor/plasteel,
/area/teleporter)
"bRv" = (
-/obj/structure/cable/yellow,
/obj/machinery/shieldwallgen,
/turf/open/floor/plasteel/vault{
dir = 1
@@ -50125,8 +50072,8 @@
"bRx" = (
/obj/structure/table/wood,
/obj/item/weapon/storage/secure/briefcase{
- desc = "A large briefcase with a digital locking system, and the NanoTrasen logo emblazoned on the sides.";
- name = "NanoTrasen-brand secure briefcase exhibit";
+ desc = "A large briefcase with a digital locking system, and the Nanotrasen logo emblazoned on the sides.";
+ name = "Nanotrasen-brand secure briefcase exhibit";
pixel_y = 2
},
/turf/open/floor/carpet,
@@ -50136,17 +50083,12 @@
/turf/open/floor/wood,
/area/bridge/showroom/corporate)
"bRz" = (
-/obj/structure/cable/yellow{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
/obj/structure/showcase{
- desc = "The famous NanoTrasen-brand microwave, the multi-purpose cooking appliance every station needs! This one appears to be drawn onto a cardboard box.";
+ desc = "The famous Nanotrasen-brand microwave, the multi-purpose cooking appliance every station needs! This one appears to be drawn onto a cardboard box.";
dir = 1;
icon = 'icons/obj/kitchen.dmi';
icon_state = "mw";
- name = "NanoTrasen-brand microwave";
+ name = "Nanotrasen-brand microwave";
pixel_y = 2
},
/obj/structure/table/wood,
@@ -50158,15 +50100,10 @@
d2 = 4;
icon_state = "2-4"
},
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
/obj/item/toy/beach_ball{
desc = "The simple beach ball is one of Nanotrasen's most popular products. 'Why do we make beach balls? Because we can! (TM)' - Nanotrasen";
item_state = "beachball";
- name = "NanoTrasen-brand beach ball";
+ name = "Nanotrasen-brand beach ball";
pixel_y = 7
},
/obj/structure/table/wood,
@@ -50184,10 +50121,10 @@
icon_state = "4-8"
},
/obj/structure/reagent_dispensers/beerkeg{
- desc = "One of the more successful achievements of the NanoTrasen Corporate Warfare Division, their nuclear fission explosives are renowned for being cheap to produce and devastatingly effective. Signs explain that though this particular device has been decommissioned, every NanoTrasen station is equipped with an equivalent one, just in case. All Captains carefully guard the disk needed to detonate them - at least, the sign says they do. There seems to be a tap on the back.";
+ desc = "One of the more successful achievements of the Nanotrasen Corporate Warfare Division, their nuclear fission explosives are renowned for being cheap to produce and devastatingly effective. Signs explain that though this particular device has been decommissioned, every Nanotrasen station is equipped with an equivalent one, just in case. All Captains carefully guard the disk needed to detonate them - at least, the sign says they do. There seems to be a tap on the back.";
icon = 'icons/obj/machines/nuke.dmi';
icon_state = "nuclearbomb_base";
- name = "NanoTrasen-brand nuclear fission explosive";
+ name = "Nanotrasen-brand nuclear fission explosive";
pixel_x = 2;
pixel_y = 6
},
@@ -50234,7 +50171,7 @@
dir = 1;
icon = 'icons/obj/computer.dmi';
icon_state = "television";
- name = "NanoTrasen corporate newsfeed";
+ name = "Nanotrasen corporate newsfeed";
pixel_x = 2;
pixel_y = 3
},
@@ -50277,7 +50214,7 @@
},
/obj/structure/table/wood,
/obj/item/toy/talking/AI{
- name = "NanoTrasen-brand toy AI";
+ name = "Nanotrasen-brand toy AI";
pixel_y = 6
},
/turf/open/floor/carpet,
@@ -51649,11 +51586,6 @@
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"bTZ" = (
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
/obj/structure/bookcase{
name = "bookcase"
},
@@ -52033,10 +51965,7 @@
/area/aisat)
"bUL" = (
/obj/machinery/telecomms/server/presets/security,
-/turf/open/floor/circuit{
- name = "Mainframe Base";
- initial_gas_mix = "n2=100;TEMP=80"
- },
+/turf/open/floor/circuit/telecomms/mainframe,
/area/tcommsat/server)
"bUM" = (
/obj/structure/window/reinforced,
@@ -52219,6 +52148,7 @@
d2 = 4;
icon_state = "2-4"
},
+/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"bVe" = (
@@ -53506,6 +53436,7 @@
d2 = 2;
icon_state = "1-2"
},
+/obj/effect/landmark/event_spawn,
/turf/open/floor/plating{
icon_state = "panelscorched"
},
@@ -53893,6 +53824,7 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 6
},
+/obj/effect/landmark/event_spawn,
/turf/open/floor/plating,
/area/maintenance/starboard)
"bYt" = (
@@ -56539,6 +56471,7 @@
d2 = 2;
icon_state = "1-2"
},
+/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel/white,
/area/medical/storage)
"cdu" = (
@@ -56607,7 +56540,7 @@
},
/mob/living/simple_animal/bot/medbot{
auto_patrol = 1;
- desc = "A little medical robot, officially part of the NanoTrasen medical inspectorate. He looks somewhat underwhelmed.";
+ desc = "A little medical robot, officially part of the Nanotrasen medical inspectorate. He looks somewhat underwhelmed.";
name = "Inspector Johnson"
},
/turf/open/floor/plasteel/white,
@@ -57148,10 +57081,7 @@
/area/medical/medbay/central)
"ceC" = (
/obj/machinery/telecomms/server/presets/command,
-/turf/open/floor/circuit{
- name = "Mainframe Base";
- initial_gas_mix = "n2=100;TEMP=80"
- },
+/turf/open/floor/circuit/telecomms/mainframe,
/area/tcommsat/server)
"ceD" = (
/obj/structure/cable/yellow{
@@ -57633,8 +57563,7 @@
/area/maintenance/disposal/incinerator)
"cfs" = (
/obj/machinery/atmospherics/pipe/manifold/general/visible{
- dir = 4;
-
+ dir = 4
},
/obj/machinery/meter,
/turf/open/floor/plasteel/floorgrime,
@@ -57970,6 +57899,7 @@
/obj/machinery/light{
dir = 8
},
+/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel/neutral/corner{
dir = 8
},
@@ -58173,10 +58103,7 @@
/area/maintenance/disposal/incinerator)
"cgy" = (
/obj/machinery/telecomms/server/presets/service,
-/turf/open/floor/circuit{
- name = "Mainframe Base";
- initial_gas_mix = "n2=100;TEMP=80"
- },
+/turf/open/floor/circuit/telecomms/mainframe,
/area/tcommsat/server)
"cgz" = (
/turf/closed/wall/r_wall,
@@ -58239,11 +58166,7 @@
/turf/open/floor/plasteel/showroomfloor,
/area/crew_quarters/kitchen)
"cgG" = (
-/obj/structure/closet/emcloset{
- anchored = 1;
- desc = "It's a storage unit for emergency breath masks and O2 tanks, and is securely bolted in place.";
- name = "anchored emergency closet"
- },
+/obj/structure/closet/emcloset/anchored,
/obj/effect/turf_decal/stripes/line{
dir = 1
},
@@ -58466,11 +58389,6 @@
/turf/open/floor/plasteel/whiteblue,
/area/medical/storage)
"cgX" = (
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/door/airlock/glass_medical{
@@ -58636,17 +58554,11 @@
/area/science/lab)
"chn" = (
/obj/machinery/telecomms/broadcaster/preset_right,
-/turf/open/floor/circuit{
- name = "Mainframe Base";
- initial_gas_mix = "n2=100;TEMP=80"
- },
+/turf/open/floor/circuit/telecomms/mainframe,
/area/tcommsat/server)
"cho" = (
/obj/machinery/telecomms/server/presets/supply,
-/turf/open/floor/circuit{
- name = "Mainframe Base";
- initial_gas_mix = "n2=100;TEMP=80"
- },
+/turf/open/floor/circuit/telecomms/mainframe,
/area/tcommsat/server)
"chp" = (
/turf/closed/wall/r_wall,
@@ -59007,6 +58919,7 @@
/turf/open/floor/plasteel/white,
/area/medical/sleeper)
"cig" = (
+/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel/white,
/area/medical/sleeper)
"cih" = (
@@ -59683,7 +59596,6 @@
"cjz" = (
/obj/structure/chair,
/obj/machinery/airalarm{
- frequency = 1439;
pixel_y = 23
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -59880,12 +59792,8 @@
},
/area/medical/medbay/central)
"cjS" = (
-/obj/item/stack/sheet/mineral/plasma{
- layer = 2.9
- },
-/obj/item/stack/sheet/mineral/plasma{
- layer = 2.9
- },
+/obj/item/stack/sheet/mineral/plasma,
+/obj/item/stack/sheet/mineral/plasma,
/obj/structure/table/glass,
/obj/item/weapon/reagent_containers/glass/bottle/epinephrine,
/obj/item/weapon/reagent_containers/glass/bottle/charcoal{
@@ -60558,6 +60466,7 @@
dir = 1;
pixel_y = -22
},
+/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel/whiteyellow/corner{
dir = 2
},
@@ -60685,6 +60594,7 @@
/turf/open/floor/plasteel,
/area/science/lab)
"clA" = (
+/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel/whitepurple/side{
dir = 8
},
@@ -60759,6 +60669,7 @@
/obj/effect/turf_decal/stripes/line{
dir = 6
},
+/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel/white,
/area/science/research)
"clI" = (
@@ -61233,6 +61144,7 @@
/obj/effect/turf_decal/stripes/line{
dir = 4
},
+/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel/white,
/area/science/lab)
"cmJ" = (
@@ -62090,7 +62002,6 @@
dir = 8
},
/obj/item/stack/sheet/mineral/plasma{
- layer = 2.9;
pixel_y = 4
},
/turf/open/floor/plasteel/white,
@@ -62998,13 +62909,9 @@
dir = 8;
network = list("SS13","Engine")
},
-/obj/machinery/airalarm{
+/obj/machinery/airalarm/engine{
dir = 8;
- locked = 0;
- name = "Engine Air Alarm";
- pixel_x = 24;
- req_access = null;
- req_one_access_txt = "24;10"
+ pixel_x = 24
},
/obj/machinery/atmospherics/pipe/manifold/green/visible{
dir = 8
@@ -63067,6 +62974,7 @@
d2 = 8;
icon_state = "4-8"
},
+/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel/white,
/area/medical/surgery)
"cpZ" = (
@@ -63212,6 +63120,7 @@
d2 = 8;
icon_state = "2-8"
},
+/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel/white,
/area/medical/medbay/central)
"cqk" = (
@@ -64971,10 +64880,10 @@
/turf/open/floor/plating,
/area/maintenance/port/aft)
"cto" = (
+/obj/machinery/vending/assist,
/obj/effect/turf_decal/stripes/line{
dir = 1
},
-/obj/machinery/vending/kink,
/turf/open/floor/plating,
/area/maintenance/port/aft)
"ctp" = (
@@ -67105,6 +67014,7 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
+/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel/whiteblue/corner{
dir = 1
},
@@ -67731,7 +67641,6 @@
dir = 8
},
/obj/machinery/airalarm{
- frequency = 1439;
pixel_y = 23
},
/obj/effect/turf_decal/stripes/line{
@@ -68292,14 +68201,9 @@
},
/area/science/mixing)
"czH" = (
-/obj/machinery/airalarm{
- desc = "This particular atmos control unit appears to have no access restrictions.";
+/obj/machinery/airalarm/all_access{
dir = 8;
- locked = 0;
- name = "all-access air alarm";
- pixel_x = 24;
- req_access = "0";
- req_one_access = "0"
+ pixel_x = 24
},
/obj/machinery/atmospherics/pipe/simple/general/visible,
/obj/structure/chair/stool{
@@ -68402,11 +68306,6 @@
},
/area/medical/medbay/aft)
"czU" = (
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -68429,11 +68328,6 @@
d2 = 4;
icon_state = "1-4"
},
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -68841,6 +68735,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 10
},
+/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel/white,
/area/science/mixing)
"cAC" = (
@@ -70279,9 +70174,7 @@
network = list("Toxins");
use_power = 0
},
-/obj/item/target/alien{
- anchored = 1
- },
+/obj/item/target/alien/anchored,
/obj/effect/turf_decal/stripes/line{
dir = 4
},
@@ -70307,6 +70200,11 @@
/area/medical/virology)
"cDC" = (
/obj/effect/landmark/blobstart,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
/turf/open/floor/plasteel/freezer,
/area/medical/virology)
"cDD" = (
@@ -70339,11 +70237,12 @@
d2 = 4;
icon_state = "0-4"
},
-/obj/structure/cable/yellow{
- d2 = 8;
- icon_state = "0-8"
- },
/obj/structure/table/glass,
+/obj/structure/cable/yellow{
+ icon_state = "4-8";
+ d1 = 4;
+ d2 = 8
+ },
/turf/open/floor/plasteel/whitegreen/side{
dir = 9
},
@@ -70361,6 +70260,11 @@
icon_state = "2-8"
},
/obj/structure/table/glass,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
/turf/open/floor/plasteel/whitegreen/side{
dir = 5
},
@@ -70368,7 +70272,6 @@
"cDH" = (
/obj/machinery/smartfridge/chemistry/virology/preloaded,
/obj/machinery/airalarm{
- frequency = 1439;
pixel_y = 23
},
/turf/open/floor/plasteel/whitegreen,
@@ -70378,6 +70281,11 @@
pixel_y = 8
},
/obj/structure/table/glass,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
/turf/open/floor/plasteel/whitegreen/side{
dir = 9
},
@@ -70947,8 +70855,8 @@
/obj/structure/window/reinforced/fulltile,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/cable/yellow{
- d2 = 2;
- icon_state = "0-2"
+ icon_state = "0-4";
+ d2 = 4
},
/turf/open/floor/plating,
/area/medical/virology)
@@ -70958,6 +70866,21 @@
name = "Test Subject Cell";
req_access_txt = "39"
},
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
/turf/open/floor/plasteel/freezer,
/area/medical/virology)
"cEH" = (
@@ -70965,8 +70888,8 @@
/obj/structure/window/reinforced/fulltile,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/cable/yellow{
- d2 = 2;
- icon_state = "0-2"
+ d2 = 8;
+ icon_state = "0-8"
},
/turf/open/floor/plating,
/area/medical/virology)
@@ -71011,6 +70934,11 @@
dir = 4
},
/obj/effect/landmark/start/virologist,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
/turf/open/floor/plasteel/whitegreen/corner{
dir = 1
},
@@ -71031,15 +70959,9 @@
pixel_x = 29;
receive_ore_updates = 1
},
-/obj/item/stack/sheet/mineral/plasma{
- layer = 2.9
- },
-/obj/item/stack/sheet/mineral/plasma{
- layer = 2.9
- },
-/obj/item/stack/sheet/mineral/plasma{
- layer = 2.9
- },
+/obj/item/stack/sheet/mineral/plasma,
+/obj/item/stack/sheet/mineral/plasma,
+/obj/item/stack/sheet/mineral/plasma,
/obj/structure/table/glass,
/turf/open/floor/plasteel/whitegreen/side{
dir = 4
@@ -71073,6 +70995,7 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 6
},
+/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel/white,
/area/medical/medbay/aft)
"cEQ" = (
@@ -71381,7 +71304,6 @@
/obj/item/weapon/hand_labeler,
/obj/item/device/radio/headset/headset_med,
/obj/machinery/airalarm{
- frequency = 1439;
pixel_y = 23
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -71398,11 +71320,6 @@
/area/medical/virology)
"cFz" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -71415,16 +71332,16 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/turf/open/floor/plasteel/whitegreen/side{
- dir = 1
- },
-/area/medical/virology)
-"cFB" = (
/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
+/turf/open/floor/plasteel/whitegreen/side{
+ dir = 1
+ },
+/area/medical/virology)
+"cFB" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 2
},
@@ -71486,6 +71403,11 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
/turf/open/floor/plasteel/white,
/area/medical/virology)
"cFI" = (
@@ -71666,6 +71588,7 @@
/area/hallway/primary/aft)
"cFZ" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel/neutral/corner{
dir = 1
},
@@ -71849,12 +71772,12 @@
pixel_y = -3
},
/obj/item/weapon/pen/red,
-/obj/structure/cable/yellow{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/cable/yellow{
+ icon_state = "4-8";
+ d1 = 4;
+ d2 = 8
+ },
/turf/open/floor/plasteel/whitegreen/side{
dir = 8
},
@@ -71864,16 +71787,16 @@
dir = 8
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
/turf/open/floor/plasteel/white,
/area/medical/virology)
"cGs" = (
@@ -71882,27 +71805,23 @@
d2 = 8;
icon_state = "4-8"
},
+/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel/white,
/area/medical/virology)
"cGt" = (
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"cGu" = (
/obj/structure/cable/yellow{
d1 = 2;
d2 = 4;
icon_state = "2-4"
},
+/turf/open/floor/plasteel/white,
+/area/medical/virology)
+"cGu" = (
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
@@ -71964,6 +71883,11 @@
},
/obj/effect/landmark/lightsout,
/obj/machinery/holopad,
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
/turf/open/floor/plasteel/white,
/area/medical/virology)
"cGz" = (
@@ -71973,6 +71897,11 @@
icon_state = "4-8"
},
/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
/turf/open/floor/plasteel/white,
/area/medical/virology)
"cGA" = (
@@ -72450,11 +72379,6 @@
pixel_x = -2;
pixel_y = 9
},
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
/obj/structure/extinguisher_cabinet{
pixel_x = -25
},
@@ -72467,6 +72391,11 @@
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 8
},
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
/turf/open/floor/plasteel/whitegreen/side,
/area/medical/virology)
"cHn" = (
@@ -72484,17 +72413,17 @@
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 1
},
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
/turf/open/floor/plasteel/whitegreen/side,
/area/medical/virology)
"cHp" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/sink{
dir = 4;
@@ -72532,6 +72461,11 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
/turf/open/floor/plasteel/whitegreen/side,
/area/medical/virology)
"cHu" = (
@@ -72748,6 +72682,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
+/obj/effect/landmark/event_spawn,
/turf/open/floor/plating,
/area/maintenance/aft)
"cHL" = (
@@ -73084,8 +73019,11 @@
"cIp" = (
/obj/structure/grille,
/obj/structure/window/fulltile,
-/obj/structure/cable/yellow,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/cable/yellow{
+ icon_state = "0-4";
+ d2 = 4
+ },
/turf/open/floor/plating,
/area/medical/virology)
"cIq" = (
@@ -73095,6 +73033,16 @@
name = "Isolation B";
req_access_txt = "39"
},
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
/turf/open/floor/plasteel/freezer,
/area/medical/virology)
"cIr" = (
@@ -73104,6 +73052,16 @@
name = "Isolation A";
req_access_txt = "39"
},
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
/turf/open/floor/plasteel/freezer,
/area/medical/virology)
"cIs" = (
@@ -73155,6 +73113,11 @@
/area/medical/virology)
"cIv" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
/turf/open/floor/plasteel/vault,
/area/medical/virology)
"cIw" = (
@@ -73512,6 +73475,11 @@
/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
dir = 1
},
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
/turf/open/floor/plasteel/freezer,
/area/medical/virology)
"cJi" = (
@@ -73532,6 +73500,11 @@
name = "Break Room";
req_access_txt = "39"
},
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
/turf/open/floor/plasteel/whitegreen,
/area/medical/virology)
"cJl" = (
@@ -73994,12 +73967,22 @@
/obj/machinery/light/small{
dir = 4
},
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
/turf/open/floor/plasteel/freezer,
/area/medical/virology)
"cKg" = (
/obj/machinery/light/small{
dir = 8
},
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
/turf/open/floor/plasteel/freezer,
/area/medical/virology)
"cKh" = (
@@ -74047,6 +74030,11 @@
/area/medical/virology)
"cKk" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
/turf/open/floor/plasteel/whitegreen/side{
dir = 1
},
@@ -74104,6 +74092,7 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
+/obj/effect/landmark/event_spawn,
/turf/open/floor/plating,
/area/maintenance/aft)
"cKq" = (
@@ -74395,6 +74384,11 @@
pixel_y = 4
},
/obj/item/weapon/pen/red,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
/turf/open/floor/plasteel/freezer,
/area/medical/virology)
"cKU" = (
@@ -74427,12 +74421,27 @@
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 8
},
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
/turf/open/floor/plasteel/white,
/area/medical/virology)
"cKY" = (
/obj/machinery/atmospherics/components/unary/vent_pump/on{
dir = 8
},
+/obj/structure/cable/yellow{
+ icon_state = "4-8";
+ d1 = 4;
+ d2 = 8
+ },
/turf/open/floor/plasteel/white,
/area/medical/virology)
"cKZ" = (
@@ -74440,6 +74449,11 @@
dir = 4;
pixel_x = 11
},
+/obj/structure/cable/yellow{
+ icon_state = "4-8";
+ d1 = 4;
+ d2 = 8
+ },
/turf/open/floor/plasteel/whitegreen/side{
dir = 4
},
@@ -74723,6 +74737,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
+/obj/effect/landmark/event_spawn,
/turf/open/floor/plating{
icon_state = "platingdmg3"
},
@@ -74950,6 +74965,11 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 9
},
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
/turf/open/floor/plasteel/whitegreen/side,
/area/medical/virology)
"cLR" = (
@@ -75249,12 +75269,21 @@
dir = 8;
icon_state = "pipe-c"
},
+/obj/structure/cable/yellow{
+ icon_state = "0-4";
+ d2 = 4
+ },
/turf/open/floor/plating,
/area/medical/virology)
"cMx" = (
/obj/machinery/atmospherics/components/unary/tank/air{
dir = 1
},
+/obj/structure/cable/yellow{
+ icon_state = "4-8";
+ d1 = 4;
+ d2 = 8
+ },
/turf/open/floor/plasteel/vault,
/area/medical/virology)
"cMy" = (
@@ -75263,11 +75292,21 @@
name = "virology air connector port"
},
/obj/machinery/portable_atmospherics/canister/air,
+/obj/structure/cable/yellow{
+ icon_state = "4-8";
+ d1 = 4;
+ d2 = 8
+ },
/turf/open/floor/plasteel/vault,
/area/medical/virology)
"cMz" = (
/obj/item/trash/popcorn,
/obj/structure/table/glass,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
/turf/open/floor/plasteel/vault,
/area/medical/virology)
"cMA" = (
@@ -75483,6 +75522,7 @@
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 8
},
+/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel,
/area/hallway/secondary/exit/departure_lounge)
"cMX" = (
@@ -76832,6 +76872,7 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
+/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel/chapel{
dir = 1
},
@@ -77934,7 +77975,6 @@
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/door/firedoor,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
@@ -77986,7 +78026,6 @@
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/effect/turf_decal/stripes/line{
dir = 1
},
@@ -78250,7 +78289,6 @@
dir = 4
},
/obj/machinery/airalarm{
- frequency = 1439;
pixel_y = 23
},
/obj/effect/turf_decal/stripes/line{
@@ -82437,9 +82475,7 @@
},
/area/maintenance/port/fore)
"daY" = (
-/obj/machinery/power/rad_collector{
- anchored = 1
- },
+/obj/machinery/power/rad_collector/anchored,
/obj/structure/cable,
/turf/open/floor/engine,
/area/engine/supermatter)
@@ -82513,6 +82549,7 @@
/turf/open/floor/plating,
/area/maintenance/starboard/aft)
"dbm" = (
+/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel,
/area/ai_monitored/storage/eva)
"dbn" = (
@@ -82929,7 +82966,6 @@
/area/science/xenobiology)
"dcb" = (
/obj/machinery/airalarm{
- frequency = 1439;
pixel_y = 23
},
/obj/machinery/camera{
@@ -82944,19 +82980,15 @@
"dcc" = (
/obj/structure/table/glass,
/obj/item/stack/sheet/mineral/plasma{
- layer = 2.9;
pixel_y = 4
},
/obj/item/stack/sheet/mineral/plasma{
- layer = 2.9;
pixel_y = 4
},
/obj/item/stack/sheet/mineral/plasma{
- layer = 2.9;
pixel_y = 4
},
/obj/item/stack/sheet/mineral/plasma{
- layer = 2.9;
pixel_y = 4
},
/obj/item/weapon/reagent_containers/glass/beaker{
@@ -83865,8 +83897,7 @@
/area/science/xenobiology)
"ddD" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 8;
-
+ dir = 8
},
/obj/machinery/deepfryer,
/turf/open/floor/plasteel/cafeteria{
@@ -84318,8 +84349,7 @@
/area/engine/engineering)
"deK" = (
/obj/structure/cable/white,
-/obj/machinery/power/emitter{
- anchored = 1;
+/obj/machinery/power/emitter/anchored{
dir = 2;
state = 2
},
@@ -84402,10 +84432,8 @@
/turf/open/floor/engine,
/area/engine/engineering)
"deY" = (
-/obj/structure/reflector/single{
- anchored = 1;
- dir = 1;
- icon_state = "reflector"
+/obj/structure/reflector/single/anchored{
+ dir = 1
},
/turf/open/floor/plating,
/area/engine/engineering)
@@ -84445,18 +84473,14 @@
/turf/open/floor/engine,
/area/engine/engineering)
"dff" = (
-/obj/structure/reflector/double{
- anchored = 1;
- dir = 1;
- icon_state = "reflector_double"
+/obj/structure/reflector/double/anchored{
+ dir = 1
},
/turf/open/floor/plasteel/black,
/area/engine/engineering)
"dfg" = (
-/obj/structure/reflector/single{
- anchored = 1;
- dir = 8;
- icon_state = "reflector"
+/obj/structure/reflector/single/anchored{
+ dir = 8
},
/turf/open/floor/plating,
/area/engine/engineering)
@@ -84505,9 +84529,7 @@
/turf/open/floor/plasteel/black,
/area/engine/engineering)
"dfq" = (
-/obj/machinery/power/rad_collector{
- anchored = 1
- },
+/obj/machinery/power/rad_collector/anchored,
/obj/structure/cable{
icon_state = "0-2";
d2 = 2
@@ -84557,8 +84579,7 @@
d2 = 2;
icon_state = "0-2"
},
-/obj/machinery/power/emitter{
- anchored = 1;
+/obj/machinery/power/emitter/anchored{
dir = 1;
state = 2
},
@@ -84569,8 +84590,7 @@
d2 = 2;
icon_state = "0-2"
},
-/obj/machinery/power/emitter{
- anchored = 1;
+/obj/machinery/power/emitter/anchored{
dir = 1;
state = 2
},
@@ -85416,6 +85436,7 @@
/obj/structure/sign/poster/contraband/random{
pixel_x = -32
},
+/obj/effect/landmark/event_spawn,
/turf/open/floor/plating,
/area/maintenance/port/fore)
"dhP" = (
@@ -85667,8 +85688,8 @@
/obj/item/weapon/poster/random_official,
/obj/item/weapon/poster/random_official,
/obj/item/device/paicard{
- desc = "A real NanoTrasen success, these personal AIs provide all of the companionship of an AI without any law related red-tape.";
- name = "NanoTrasen-brand personal AI device exhibit"
+ desc = "A real Nanotrasen success, these personal AIs provide all of the companionship of an AI without any law related red-tape.";
+ name = "Nanotrasen-brand personal AI device exhibit"
},
/turf/open/floor/carpet,
/area/bridge/showroom/corporate)
@@ -85727,6 +85748,7 @@
/obj/structure/sign/poster/contraband/random{
pixel_y = 32
},
+/obj/effect/landmark/event_spawn,
/turf/open/floor/plating,
/area/maintenance/port)
"diu" = (
@@ -85752,6 +85774,7 @@
/obj/structure/sign/poster/contraband/random{
pixel_y = 32
},
+/obj/effect/landmark/event_spawn,
/turf/open/floor/plating,
/area/maintenance/port)
"diw" = (
@@ -86971,9 +86994,7 @@
/turf/closed/wall/r_wall,
/area/engine/supermatter)
"dlS" = (
-/obj/machinery/power/rad_collector{
- anchored = 1
- },
+/obj/machinery/power/rad_collector/anchored,
/obj/structure/cable{
icon_state = "0-2";
d2 = 2
@@ -86981,9 +87002,7 @@
/turf/open/floor/engine,
/area/engine/supermatter)
"dlT" = (
-/obj/machinery/power/rad_collector{
- anchored = 1
- },
+/obj/machinery/power/rad_collector/anchored,
/obj/structure/cable{
icon_state = "0-2";
d2 = 2
@@ -88903,6 +88922,7 @@
/obj/structure/sign/poster/contraband/random{
pixel_y = 32
},
+/obj/effect/landmark/event_spawn,
/turf/open/floor/plating,
/area/maintenance/port/aft)
"dwd" = (
@@ -89734,6 +89754,7 @@
d2 = 2;
icon_state = "1-2"
},
+/obj/effect/landmark/event_spawn,
/turf/open/floor/plating,
/area/maintenance/starboard/aft)
"dzS" = (
@@ -90147,9 +90168,888 @@
/turf/closed/wall/r_wall,
/area/engine/atmos)
"dBD" = (
-/obj/machinery/vending/kink,
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable/yellow{
+ icon_state = "0-4";
+ d2 = 4
+ },
+/turf/open/floor/plating,
+/area/security/brig)
+"dBE" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable/yellow{
+ icon_state = "0-4";
+ d2 = 4
+ },
+/turf/open/floor/plating,
+/area/security/brig)
+"dBF" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable/yellow{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "0-4";
+ d2 = 4
+ },
+/turf/open/floor/plating,
+/area/security/brig)
+"dBG" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable/yellow{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/turf/open/floor/plating,
+/area/security/brig)
+"dBH" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/cable/yellow{
+ icon_state = "0-4";
+ d2 = 4
+ },
+/turf/open/floor/plating,
+/area/security/brig)
+"dBI" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable/yellow,
+/turf/open/floor/plating,
+/area/engine/break_room)
+"dBJ" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8";
+ d1 = 4;
+ d2 = 8
+ },
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"dBK" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id = "atmos";
+ name = "Atmos Blast Door";
+ opacity = 0
+ },
+/obj/structure/cable/yellow,
+/turf/open/floor/plating,
+/area/engine/atmos)
+"dBL" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8";
+ d1 = 4;
+ d2 = 8
+ },
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"dBM" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8";
+ d1 = 4;
+ d2 = 8
+ },
+/turf/open/floor/plasteel/caution{
+ dir = 8
+ },
+/area/engine/atmos)
+"dBN" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable/yellow{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/turf/open/floor/plating,
+/area/medical/virology)
+"dBO" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/mob/living/carbon/monkey,
+/turf/open/floor/plasteel/freezer,
+/area/medical/virology)
+"dBP" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable/yellow{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/turf/open/floor/plating,
+/area/medical/virology)
+"dBQ" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable/yellow{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/turf/open/floor/plating,
+/area/medical/virology)
+"dBR" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable/yellow{
+ icon_state = "0-4";
+ d2 = 4
+ },
+/turf/open/floor/plating,
+/area/medical/virology)
+"dBS" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/virology)
+"dBT" = (
+/obj/structure/grille,
+/obj/structure/window/fulltile,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/cable/yellow{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/turf/open/floor/plating,
+/area/medical/virology)
+"dBU" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable/yellow{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/turf/open/floor/plating,
+/area/medical/virology)
+"dBV" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable/yellow,
+/turf/open/floor/plating,
+/area/medical/virology)
+"dBW" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable/yellow,
+/turf/open/floor/plating,
+/area/medical/virology)
+"dBX" = (
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel/black,
+/area/ai_monitored/security/armory)
+"dBY" = (
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 8
+ },
+/area/crew_quarters/fitness/recreation)
+"dBZ" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/security/warden)
+"dCa" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8";
+ d1 = 4;
+ d2 = 8
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel,
+/area/security/warden)
+"dCb" = (
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel/red,
+/area/security/main)
+"dCc" = (
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 4
+ },
+/area/crew_quarters/fitness/recreation)
+"dCd" = (
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel/red,
+/area/security/main)
+"dCe" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"dCf" = (
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel/showroomfloor,
+/area/security/warden)
+"dCg" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel/red/corner{
+ dir = 1
+ },
+/area/security/brig)
+"dCh" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel/showroomfloor,
+/area/security/warden)
+"dCi" = (
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plating{
+ icon_state = "platingdmg3"
+ },
+/area/maintenance/starboard/fore)
+"dCj" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel/floorgrime,
+/area/security/brig)
+"dCk" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"dCl" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plating,
+/area/maintenance/port/fore)
+"dCm" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"dCn" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel,
+/area/quartermaster/miningoffice)
+"dCo" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel,
+/area/hallway/primary/fore)
+"dCp" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plating{
+ icon_state = "platingdmg2"
+ },
+/area/maintenance/fore)
+"dCq" = (
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel,
+/area/security/courtroom)
+"dCr" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel,
+/area/hallway/primary/fore)
+"dCs" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/effect/landmark/event_spawn,
/turf/open/floor/plating,
/area/maintenance/starboard/fore)
+"dCt" = (
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel,
+/area/storage/primary)
+"dCu" = (
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel,
+/area/storage/primary)
+"dCv" = (
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel/floorgrime,
+/area/crew_quarters/locker)
+"dCw" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"dCx" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plating{
+ icon_state = "panelscorched"
+ },
+/area/maintenance/port/fore)
+"dCy" = (
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel/floorgrime,
+/area/crew_quarters/locker)
+"dCz" = (
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel/black,
+/area/security/courtroom)
+"dCA" = (
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 1
+ },
+/area/crew_quarters/locker)
+"dCB" = (
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"dCC" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plating,
+/area/maintenance/starboard/fore)
+"dCD" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plating,
+/area/maintenance/starboard/fore)
+"dCE" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"dCF" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"dCG" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"dCH" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"dCI" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel,
+/area/hallway/primary/port)
+"dCJ" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel/yellow/corner{
+ dir = 1
+ },
+/area/hallway/primary/starboard)
+"dCK" = (
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel/black,
+/area/bridge)
+"dCL" = (
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel/black,
+/area/bridge)
+"dCM" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_y = -30
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel/caution/corner{
+ dir = 8
+ },
+/area/hallway/primary/starboard)
+"dCN" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel,
+/area/hallway/primary/port)
+"dCO" = (
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/carpet,
+/area/crew_quarters/heads/hop)
+"dCP" = (
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/carpet,
+/area/crew_quarters/heads/captain/private)
+"dCQ" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"dCR" = (
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel/black,
+/area/bridge)
+"dCS" = (
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel/bar,
+/area/crew_quarters/bar)
+"dCT" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"dCU" = (
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/wood,
+/area/crew_quarters/bar)
+"dCV" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"dCW" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plating,
+/area/maintenance/port)
+"dCX" = (
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/carpet,
+/area/library)
+"dCY" = (
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"dCZ" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/carpet,
+/area/library)
+"dDa" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 8
+ },
+/area/hallway/secondary/command)
+"dDb" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel/bar,
+/area/crew_quarters/bar)
+"dDc" = (
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/wood,
+/area/crew_quarters/bar)
+"dDd" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"dDe" = (
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel/cafeteria{
+ dir = 5
+ },
+/area/crew_quarters/kitchen)
+"dDf" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/wood,
+/area/bridge/showroom/corporate)
+"dDg" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/wood,
+/area/bridge/showroom/corporate)
+"dDh" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"dDi" = (
+/obj/machinery/newscaster{
+ pixel_x = -32
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/wood,
+/area/library)
+"dDj" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"dDk" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"dDl" = (
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel/green/side{
+ dir = 8
+ },
+/area/hydroponics)
+"dDm" = (
+/obj/machinery/atmospherics/pipe/simple/dark/visible{
+ dir = 4
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"dDn" = (
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel/green/side{
+ dir = 8
+ },
+/area/hydroponics)
+"dDo" = (
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/central)
+"dDp" = (
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel/white,
+/area/science/research)
+"dDq" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plating,
+/area/maintenance/starboard/aft)
+"dDr" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plating,
+/area/maintenance/starboard/aft)
+"dDs" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"dDt" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel/barber{
+ dir = 8
+ },
+/area/crew_quarters/heads/cmo)
+"dDu" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plating,
+/area/maintenance/starboard/aft)
+"dDv" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel/blue/side{
+ dir = 8
+ },
+/area/hallway/primary/aft)
+"dDw" = (
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plating,
+/area/maintenance/port/aft)
+"dDx" = (
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plating,
+/area/maintenance/port/aft)
+"dDy" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel/white,
+/area/science/research)
+"dDz" = (
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/circuit,
+/area/science/robotics/mechbay)
+"dDA" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel/white,
+/area/science/mixing)
+"dDB" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plating,
+/area/maintenance/port/aft)
+"dDC" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel/black,
+/area/medical/morgue)
+"dDD" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel/white,
+/area/science/research)
+"dDE" = (
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel,
+/area/science/robotics/lab)
+"dDF" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plating,
+/area/maintenance/starboard/aft)
+"dDG" = (
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit/departure_lounge)
+"dDH" = (
+/obj/structure/chair{
+ pixel_y = -2
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel/vault,
+/area/chapel/main)
+"dDI" = (
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel/white,
+/area/science/xenobiology)
(1,1,1) = {"
aaa
@@ -106234,7 +107134,7 @@ dux
cbq
dux
dux
-cfA
+cek
dux
dux
cjq
@@ -106259,7 +107159,7 @@ cBR
cBR
cBR
cBR
-cBS
+dBR
cBR
cBR
cBR
@@ -106779,7 +107679,7 @@ cIq
cJh
cKf
cKT
-cBS
+dBV
aaf
aaa
aaa
@@ -107025,12 +107925,12 @@ dux
aaf
aaf
aaf
-cBS
-cCK
+dBN
+dBO
cDC
cEG
cFA
-cGs
+dBS
cHn
cEE
cEE
@@ -107293,7 +108193,7 @@ cIr
cJh
cKg
cKT
-cBS
+dBV
cMu
aaf
aaa
@@ -107546,7 +108446,7 @@ cEE
cFC
cGu
cHp
-cIp
+dBT
cJi
cKh
cKS
@@ -107723,7 +108623,7 @@ ayk
azo
aAH
aBW
-aBW
+dCn
aEy
aFI
aHd
@@ -107993,7 +108893,7 @@ aMv
aQj
aMv
aKS
-aMv
+dCB
aMv
aMv
aYM
@@ -108311,7 +109211,7 @@ dux
aaf
aaf
aaf
-cBS
+dBN
cDG
cEJ
cFF
@@ -108527,7 +109427,7 @@ bvY
bxT
bzC
bzC
-bzC
+dCW
bOv
alC
bSw
@@ -108561,7 +109461,7 @@ csj
cia
cug
dyg
-bXE
+dDw
bXE
cNg
dux
@@ -108825,7 +109725,7 @@ dux
aaa
aaa
aaa
-cBS
+dBN
cDI
cEL
cFH
@@ -109308,7 +110208,7 @@ bMH
bue
bPO
bRg
-bSx
+dDi
bTw
bue
bSr
@@ -109348,7 +110248,7 @@ cBR
cBR
cBR
cBR
-cBS
+dBU
cBR
cBR
cBR
@@ -109548,7 +110448,7 @@ biL
bko
bbN
bnV
-bql
+dCN
apA
bue
bwb
@@ -110034,7 +110934,7 @@ avT
awV
ayn
ayn
-ayn
+dCl
ayn
ayn
ayn
@@ -110327,7 +111227,7 @@ bwe
bGv
bHT
bwc
-bEz
+dCZ
bGs
bHS
bzE
@@ -110874,7 +111774,7 @@ cia
cia
cuj
cbx
-bXE
+dDx
bXE
cxU
cxU
@@ -111084,7 +111984,7 @@ dne
baA
bbX
bds
-bbX
+dCI
bgV
biO
bkt
@@ -111139,7 +112039,7 @@ czO
cAS
cBU
cxU
-cDL
+dDB
dzK
cFN
cGH
@@ -111156,7 +112056,7 @@ cOG
cLa
cPE
cQb
-cQx
+dDH
cQb
cRI
cPA
@@ -111332,7 +112232,7 @@ avT
bfU
aPl
avT
-avM
+dCx
aSY
avT
avT
@@ -111611,7 +112511,7 @@ bwf
bxW
bzH
bzE
-bwc
+dCX
bwc
bzE
cVb
@@ -112358,7 +113258,7 @@ aJQ
aLh
aMC
aNU
-aMB
+dCt
aMB
aRP
aTb
@@ -112635,7 +113535,7 @@ bok
bqz
bsL
buk
-baG
+dCQ
bdP
baG
baG
@@ -112644,7 +113544,7 @@ bEB
baG
bHW
baG
-baG
+dDd
baG
bdP
baG
@@ -112961,16 +113861,16 @@ cRo
cMI
cZe
cZe
+cYF
+cYF
+cYF
cZe
+cYF
+cYF
cZe
-cZe
-cZe
-cZe
-cZe
-cZe
-cZe
-cZe
-cZe
+cYF
+cYF
+cYF
cZe
cZe
aaa
@@ -113129,14 +114029,14 @@ aJN
dhI
aME
aNW
-aMB
+dCu
aQx
aMB
aTe
aUs
aJR
aXy
-aYX
+dCE
baI
bcd
bcd
@@ -113165,7 +114065,7 @@ bGy
bGy
bGy
bTG
-aYX
+dDj
bWk
bXK
bYV
@@ -114209,7 +115109,7 @@ clo
cmw
cnE
coQ
-cqn
+dDt
crA
csz
ctz
@@ -114432,7 +115332,7 @@ bcg
bmr
bkz
bqE
-bsQ
+dCO
bup
bwm
bkz
@@ -114692,7 +115592,7 @@ btC
bsR
bur
bwn
-bya
+bxZ
bzL
bBB
bDb
@@ -114909,7 +115809,7 @@ alQ
anh
aor
apE
-anh
+dCg
anh
anh
auU
@@ -115210,7 +116110,7 @@ bkz
bzQ
bzR
bDa
-bEE
+dDa
bGC
bIf
bJJ
@@ -115508,7 +116408,7 @@ cAd
ctA
dbr
cCj
-cDY
+dDC
cCj
cFU
cCe
@@ -115963,7 +116863,7 @@ aJS
aUx
aUx
aXI
-aYX
+dCF
baQ
bci
aaf
@@ -116036,7 +116936,7 @@ cLm
cNM
cOr
cOU
-cLm
+dDG
cPQ
cQn
cQK
@@ -116188,7 +117088,7 @@ afV
agP
ahB
aiy
-ajr
+dBZ
ajr
alT
anl
@@ -116201,11 +117101,11 @@ axR
awe
axe
ayz
-azE
+dCj
azE
aCl
aDx
-aEO
+dCo
aGg
aHx
aaa
@@ -116255,7 +117155,7 @@ bXN
bZa
can
cbY
-cca
+dDo
ceI
cfY
chd
@@ -116708,7 +117608,7 @@ alV
adY
adY
apL
-ard
+dCh
ass
adY
auW
@@ -116998,7 +117898,7 @@ aaf
bfv
bhk
bjc
-bjc
+dCK
bmB
bou
bqL
@@ -117015,7 +117915,7 @@ bGH
bJO
bLw
bTZ
-bOA
+dDf
bQi
bRz
bLw
@@ -117218,7 +118118,7 @@ ahE
aiA
akD
akD
-alU
+dCa
ano
apH
apN
@@ -117297,7 +118197,7 @@ coZ
crF
csJ
ctE
-cuA
+dDv
cuA
cwF
cxz
@@ -117496,7 +118396,7 @@ aHA
aIJ
aJU
aGk
-aHA
+dCr
aHA
aPz
aJU
@@ -117518,7 +118418,7 @@ bov
bqN
bsX
buA
-bjc
+dCR
byg
bzW
bBJ
@@ -117994,7 +118894,7 @@ anr
adY
adY
dhv
-aoA
+anr
adY
avb
awh
@@ -118043,7 +118943,7 @@ bGH
bJP
bLw
bTZ
-bOz
+dDg
bQg
bRD
bLw
@@ -118249,14 +119149,14 @@ akH
amb
ans
amf
-ajz
+dCf
ajz
ajz
atS
auW
awi
axj
-ajo
+dBD
azJ
aBd
aCo
@@ -118283,7 +119183,7 @@ aaf
bfw
bhp
bjb
-bjc
+dCL
bmE
boy
bqP
@@ -118498,7 +119398,7 @@ aeq
aeq
afX
agc
-agc
+dBX
agc
ajs
ajz
@@ -118825,7 +119725,7 @@ bXV
bZj
cav
ccf
-ccd
+dDp
ceO
cgd
chk
@@ -118843,7 +119743,7 @@ cuD
cvH
cwI
cxF
-cyr
+dDz
czj
cAn
cBh
@@ -119027,7 +119927,7 @@ ahB
ave
awl
axm
-ajo
+dBD
azL
aBf
ajm
@@ -119287,7 +120187,7 @@ axn
ayD
azM
aBg
-ayD
+dBH
aDG
aEX
aGr
@@ -119366,7 +120266,7 @@ cDe
cEm
cFg
cFg
-cFg
+dDE
cHR
cIM
cJL
@@ -119551,13 +120451,13 @@ aGs
aHE
aIQ
aKb
-aIR
+dCq
aIR
aOi
aPB
aQH
aQH
-aIT
+dCz
aUH
aTk
aXT
@@ -119798,7 +120698,7 @@ atU
avg
awn
axp
-ajo
+dBF
azO
aBi
ajm
@@ -119847,7 +120747,7 @@ bQr
bRJ
bGM
bTW
-aYX
+dDk
bWA
bXV
bZk
@@ -120045,7 +120945,7 @@ ahK
aiE
ajE
akO
-amh
+dCb
amh
aoD
apT
@@ -120055,7 +120955,7 @@ atV
avh
awo
axq
-ajo
+dBG
azP
aBj
aCr
@@ -120075,7 +120975,7 @@ aTp
aIT
aTk
aXS
-aYX
+dCG
baV
bcj
bdH
@@ -120304,7 +121204,7 @@ ajF
akP
ami
anx
-amh
+dCd
apU
arp
asF
@@ -120601,7 +121501,7 @@ bjg
boF
bqX
bte
-bfA
+dCP
bwD
byr
bAe
@@ -120842,7 +121742,7 @@ aOn
aHG
aQK
aLK
-aLK
+dCA
aLK
aSe
aXS
@@ -120897,7 +121797,7 @@ csW
ctO
cuJ
cvN
-cwN
+dDy
cwN
cyw
czp
@@ -120905,7 +121805,7 @@ cAu
cBo
crL
cwN
-cwN
+dDD
cFl
cGh
cHb
@@ -121909,7 +122809,7 @@ bYb
cmZ
diA
crJ
-cJb
+dDq
ceY
cgm
chr
@@ -122117,7 +123017,7 @@ ayJ
ayJ
ayJ
ayJ
-aoR
+dCp
aHG
aHG
aHG
@@ -122390,7 +123290,7 @@ aWq
aXY
aZr
bba
-baG
+dCH
bdP
baG
bhB
@@ -122403,7 +123303,7 @@ btk
aWf
bwI
aWf
-aWf
+dCT
bBR
bDA
bFh
@@ -122414,7 +123314,7 @@ aWf
aWf
aWf
aWf
-aWf
+dDh
aWf
aWf
bVo
@@ -122443,7 +123343,7 @@ cwS
crQ
cyC
czv
-cAA
+dDA
cBu
cCv
cyK
@@ -122897,7 +123797,7 @@ aMY
aOu
aOv
aQR
-aOv
+dCy
aTw
aUM
aWs
@@ -122969,7 +123869,7 @@ cIf
cIZ
cJW
cIg
-dxQ
+dDF
dvY
cNj
dwN
@@ -123902,7 +124802,7 @@ aje
alc
aje
agq
-aoP
+dCe
agq
agq
asQ
@@ -123948,7 +124848,7 @@ byz
bAj
bBU
bDE
-bFm
+dDb
bHb
bMP
bKg
@@ -123962,7 +124862,7 @@ bUh
bVs
bWN
bWR
-bWR
+dDn
caM
ccu
bST
@@ -124015,7 +124915,7 @@ cRk
dcH
cSf
cSl
-cSu
+cSJ
cSa
cSJ
cSJ
@@ -124186,7 +125086,7 @@ aOv
aTt
aUP
aUM
-aYe
+dCD
aZt
bbg
bcr
@@ -124200,7 +125100,7 @@ boP
brg
bto
buN
-bwO
+dCS
bwO
bAl
bBT
@@ -124223,7 +125123,7 @@ bWT
caN
ccv
bST
-ceZ
+dDr
cgq
chx
chx
@@ -124467,7 +125367,7 @@ bwO
bBT
bKi
bLN
-bLK
+dDe
bOV
bQE
bRT
@@ -124524,7 +125424,7 @@ aaa
cRi
dcb
cZa
-cSt
+dDI
dcB
dcJ
cRa
@@ -124951,7 +125851,7 @@ axC
aLQ
aNc
aOC
-aOv
+dCv
aQY
aOw
aTt
@@ -124988,7 +125888,7 @@ bRU
bSW
bUh
bVw
-bWR
+dDl
bWR
bZu
caM
@@ -125222,7 +126122,7 @@ dnh
dnh
bhE
bjp
-bkY
+dCM
bmP
boT
brk
@@ -125957,7 +126857,7 @@ aiS
ajT
aiS
amw
-agz
+dCc
aoV
aqf
arB
@@ -126002,11 +126902,11 @@ bmP
bwU
byE
bAq
-byC
+dCU
byC
bwX
bHe
-byC
+dDc
bKm
bKe
bNE
@@ -126289,7 +127189,7 @@ cIk
cJa
cpG
cJa
-cJa
+dDu
ctk
cuc
cvb
@@ -127050,7 +127950,7 @@ bST
caT
ccC
bST
-bXa
+dDs
apc
apb
dvY
@@ -127236,7 +128136,7 @@ acP
acP
afz
agz
-ahl
+dBY
ahl
aiW
aja
@@ -127268,7 +128168,7 @@ aNj
aRf
aSn
aJh
-avB
+dCC
aWv
aYi
aZx
@@ -127276,7 +128176,7 @@ bbm
bcy
bdZ
aWv
-bhE
+dCJ
bjp
blc
bmR
@@ -128547,7 +129447,7 @@ aHW
dhH
aCM
aCM
-aCM
+dCs
aCM
aPT
aRi
@@ -128572,7 +129472,7 @@ buX
bwY
bGp
btw
-bwY
+dCV
bwY
bFB
bHl
@@ -129561,7 +130461,7 @@ aqp
dnh
dnR
aus
-dBD
+dnS
dnh
aAm
dnS
@@ -129824,7 +130724,7 @@ axQ
ayR
axY
aBG
-aCP
+dCm
aEk
aFs
aGT
@@ -129850,7 +130750,7 @@ bhT
bhT
blj
bmY
-bie
+dBI
bhT
bhT
bvc
@@ -129858,7 +130758,7 @@ bxc
bxc
bAA
bCg
-bAA
+dBK
bFF
bxk
bxg
@@ -130074,7 +130974,7 @@ dnS
doh
dnS
dnS
-dpL
+dCi
dnS
dnS
axO
@@ -130371,8 +131271,8 @@ bve
bxd
byS
bAC
-bCi
-bCi
+dBJ
+dCY
bFH
bHq
bIJ
@@ -130862,7 +131762,7 @@ aKB
aMd
aNr
aOP
-aNr
+dCw
aRq
aSw
aTI
@@ -130886,7 +131786,7 @@ bxd
byU
bAE
bCk
-bCi
+dBJ
bFJ
bHs
bIL
@@ -131621,7 +132521,7 @@ avv
axY
axU
ayS
-aCP
+dCk
ddY
deb
deh
@@ -131657,7 +132557,7 @@ bxc
byW
bAG
bCn
-bDS
+dBM
bFL
bHt
bIO
@@ -133212,7 +134112,7 @@ bCi
bCi
bUD
bCi
-bXm
+dDm
bIS
bZK
cbk
diff --git a/_maps/map_files/MetaStation/MetaStation.dmm.rej b/_maps/map_files/MetaStation/MetaStation.dmm.rej
deleted file mode 100644
index 553b988622..0000000000
--- a/_maps/map_files/MetaStation/MetaStation.dmm.rej
+++ /dev/null
@@ -1,37 +0,0 @@
-diff a/_maps/map_files/MetaStation/MetaStation.dmm b/_maps/map_files/MetaStation/MetaStation.dmm (rejected hunks)
-@@ -45922,7 +45922,7 @@
- /obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{
- dir = 8;
- frequency = 1441;
-- id_tag = "n2o_out"
-+ id_tag = "n2o_out";
- name = "n2o out"
- },
- /turf/open/floor/engine/n2o,
-@@ -49223,7 +49223,7 @@
- /obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{
- dir = 8;
- frequency = 1441;
-- id_tag = "tox_out"
-+ id_tag = "tox_out";
- name = "toxin out"
- },
- /turf/open/floor/engine/plasma,
-@@ -52023,7 +52023,7 @@
- /obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{
- dir = 8;
- frequency = 1441;
-- id_tag = "co2_out"
-+ id_tag = "co2_out";
- name = "co2 out"
- },
- /turf/open/floor/engine/co2,
-@@ -58890,7 +58890,7 @@
- /obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{
- dir = 1;
- frequency = 1441;
-- id_tag = "n2_out"
-+ id_tag = "n2_out";
- name = "n2 out"
- },
- /turf/open/floor/engine/n2,
diff --git a/_maps/map_files/OmegaStation/OmegaStation.dmm b/_maps/map_files/OmegaStation/OmegaStation.dmm
index d0952a4385..60495dcf55 100644
--- a/_maps/map_files/OmegaStation/OmegaStation.dmm
+++ b/_maps/map_files/OmegaStation/OmegaStation.dmm
@@ -247,6 +247,9 @@
/area/bridge)
"aaz" = (
/obj/machinery/computer/card,
+/obj/structure/cable/white{
+ icon_state = "1-2"
+ },
/turf/open/floor/plasteel/darkred/side{
icon_state = "darkred";
dir = 9
@@ -386,6 +389,9 @@
/area/bridge)
"aaL" = (
/obj/machinery/computer/monitor,
+/obj/structure/cable/white{
+ icon_state = "1-2"
+ },
/turf/open/floor/plasteel/darkyellow/side{
icon_state = "darkyellow";
dir = 5
@@ -408,6 +414,9 @@
dir = 4;
name = "command camera"
},
+/obj/structure/cable/white{
+ icon_state = "1-2"
+ },
/turf/open/floor/plasteel/vault{
dir = 8
},
@@ -500,6 +509,9 @@
dir = 8;
name = "command camera"
},
+/obj/structure/cable/white{
+ icon_state = "1-2"
+ },
/turf/open/floor/plasteel/vault{
dir = 8
},
@@ -528,6 +540,9 @@
icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/cable/white{
+ icon_state = "1-2"
+ },
/turf/open/floor/plasteel/vault{
dir = 8
},
@@ -628,6 +643,7 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
+/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel/vault{
dir = 5
},
@@ -697,6 +713,9 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 10
},
+/obj/structure/cable/white{
+ icon_state = "1-2"
+ },
/turf/open/floor/plasteel/vault{
dir = 8
},
@@ -1036,9 +1055,7 @@
name = "Primary Hallway"
})
"abO" = (
-/obj/structure/closet/emcloset{
- anchored = 1
- },
+/obj/structure/closet/emcloset/anchored,
/obj/effect/decal/cleanable/dirt,
/obj/machinery/light/small{
dir = 1
@@ -1082,7 +1099,6 @@
id = "detectivewindows";
name = "Detective Privacy Blast door"
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
/area/security/detectives_office)
"abV" = (
@@ -1563,7 +1579,6 @@
})
"acO" = (
/obj/structure/mirror{
- desc = "Mirror mirror on the wall, who is the most robust of them all?";
pixel_x = -26
},
/obj/structure/sink{
@@ -1784,6 +1799,9 @@
/obj/effect/turf_decal/stripes/line{
dir = 8
},
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
/turf/open/floor/plasteel,
/area/bridge)
"ade" = (
@@ -1899,7 +1917,6 @@
/area/crew_quarters/heads/hop)
"adl" = (
/obj/structure/mirror{
- desc = "Mirror mirror on the wall, who is the most robust of them all?";
pixel_x = 26
},
/obj/structure/sink{
@@ -2036,7 +2053,6 @@
/area/security/detectives_office)
"adE" = (
/obj/structure/mirror{
- desc = "Mirror mirror on the wall, who is the most robust of them all?";
pixel_x = 26
},
/obj/structure/sink{
@@ -2400,11 +2416,6 @@
dir = 8;
id = "cargounload"
},
-/obj/structure/cable/white{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
/obj/machinery/door/poddoor{
id = "cargounload";
name = "supply dock unloading door"
@@ -2756,12 +2767,7 @@
/area/crew_quarters/heads/hop)
"aeJ" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
-/obj/structure/bed/dogbed{
- anchored = 1;
- desc = "Ian's bed! Looks comfy.";
- name = "Ian's bed";
- pixel_y = 2
- },
+/obj/structure/bed/dogbed/ian,
/mob/living/simple_animal/pet/dog/corgi/Ian,
/turf/open/floor/plasteel/vault{
dir = 5
@@ -3321,6 +3327,7 @@
/area/quartermaster/storage)
"afD" = (
/obj/effect/decal/cleanable/dirt,
+/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel/neutral,
/area/quartermaster/storage)
"afE" = (
@@ -3490,6 +3497,7 @@
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/effect/turf_decal/delivery,
+/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel,
/area/hallway/primary/central{
name = "Primary Hallway"
@@ -3541,6 +3549,7 @@
/turf/open/floor/carpet,
/area/crew_quarters/heads/captain/private)
"afZ" = (
+/obj/effect/landmark/event_spawn,
/turf/open/floor/carpet,
/area/crew_quarters/heads/captain/private)
"aga" = (
@@ -4542,6 +4551,11 @@
d2 = 8;
icon_state = "2-8"
},
+/obj/structure/cable/white{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
/turf/open/floor/plasteel/grimy,
/area/security/detectives_office)
"ahE" = (
@@ -4996,7 +5010,6 @@
id = "detectivewindows";
name = "Detective Privacy Blast door"
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
/area/security/detectives_office)
"aiv" = (
@@ -5504,6 +5517,7 @@
/obj/machinery/newscaster{
pixel_y = 32
},
+/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel/neutral/corner{
dir = 1
},
@@ -5655,6 +5669,7 @@
/obj/machinery/firealarm{
pixel_y = 24
},
+/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel/neutral/corner{
dir = 4
},
@@ -6031,11 +6046,6 @@
d2 = 4;
icon_state = "1-4"
},
-/obj/structure/cable/white{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
/obj/structure/cable/white{
d1 = 4;
d2 = 8;
@@ -6738,6 +6748,7 @@
},
/area/quartermaster/storage)
"akM" = (
+/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel/brown/corner{
dir = 4
},
@@ -7587,6 +7598,7 @@
d2 = 2;
icon_state = "1-2"
},
+/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel/neutral,
/area/hallway/primary/central{
name = "Primary Hallway"
@@ -7937,11 +7949,6 @@
d2 = 4;
icon_state = "1-4"
},
-/obj/structure/cable/white{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
/obj/structure/cable/white{
d1 = 4;
d2 = 8;
@@ -7960,7 +7967,6 @@
/area/security/brig)
"amO" = (
/obj/structure/mirror{
- desc = "Mirror mirror on the wall, who is the most robust of them all?";
pixel_x = -26
},
/obj/structure/sink{
@@ -8427,6 +8433,7 @@
/area/security/brig)
"anD" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel/neutral/side{
dir = 4
},
@@ -9411,6 +9418,7 @@
d2 = 8;
icon_state = "4-8"
},
+/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel/brown,
/area/hallway/primary/central{
name = "Primary Hallway"
@@ -11053,6 +11061,16 @@
/obj/effect/turf_decal/stripes/line{
dir = 8
},
+/obj/structure/cable/white{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/cable/white{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
/turf/open/floor/plasteel,
/area/security/brig)
"arH" = (
@@ -12163,6 +12181,7 @@
dir = 4
},
/obj/effect/turf_decal/bot,
+/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel,
/area/hallway/primary/central{
name = "Primary Hallway"
@@ -12924,6 +12943,7 @@
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 1
},
+/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel/red/corner,
/area/hallway/primary/central{
name = "Primary Hallway"
@@ -12956,6 +12976,7 @@
},
/obj/effect/decal/cleanable/blood/splatter,
/obj/effect/landmark/revenantspawn,
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
/turf/open/floor/plating,
/area/hallway/primary/central{
name = "Primary Hallway"
@@ -13140,6 +13161,7 @@
/area/storage/primary)
"auW" = (
/obj/effect/decal/cleanable/dirt,
+/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel/yellow/side{
dir = 6
},
@@ -13280,6 +13302,9 @@
"avm" = (
/obj/structure/table/wood,
/obj/machinery/chem_dispenser/drinks/beer,
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 1
+ },
/turf/open/floor/plasteel/vault{
dir = 8
},
@@ -13558,7 +13583,7 @@
dir = 4
},
/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 8
+ dir = 1
},
/turf/open/floor/plating,
/area/hallway/primary/central{
@@ -13771,10 +13796,6 @@
pixel_y = 3
},
/obj/item/stack/cable_coil/white,
-/obj/structure/cable/white{
- d2 = 4;
- icon_state = "0-4"
- },
/obj/effect/decal/cleanable/dirt,
/obj/machinery/newscaster{
pixel_x = 32
@@ -14020,6 +14041,7 @@
name = "Station Intercom";
pixel_x = -26
},
+/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel/neutral/corner{
dir = 8;
heat_capacity = 1e+006
@@ -14272,6 +14294,7 @@
d2 = 2;
icon_state = "1-2"
},
+/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel/vault{
dir = 5
},
@@ -14316,7 +14339,6 @@
/obj/item/stack/cable_coil/random,
/obj/item/stack/cable_coil/random,
/obj/machinery/light,
-/obj/structure/cable/white,
/turf/open/floor/plasteel/black,
/area/crew_quarters/bar)
"axd" = (
@@ -17625,6 +17647,7 @@
d2 = 2;
icon_state = "1-2"
},
+/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel/neutral/corner{
dir = 1
},
@@ -17932,7 +17955,6 @@
},
/obj/item/weapon/lipstick/random,
/obj/structure/mirror{
- desc = "Mirror mirror on the wall, who is the most robust of them all?";
pixel_x = -28
},
/turf/open/floor/plasteel/vault{
@@ -19116,6 +19138,7 @@
d2 = 8;
icon_state = "4-8"
},
+/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel/neutral,
/area/hallway/primary/central{
name = "Primary Hallway"
@@ -19294,6 +19317,7 @@
d2 = 2;
icon_state = "1-2"
},
+/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel/white,
/area/crew_quarters/kitchen)
"aFU" = (
@@ -19348,6 +19372,7 @@
name = "\improper Departure Lounge"
})
"aGa" = (
+/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel/neutral,
/area/hallway/secondary/exit{
name = "\improper Departure Lounge"
@@ -19723,9 +19748,6 @@
/turf/open/floor/plasteel,
/area/maintenance/port/central)
"aGJ" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
/obj/structure/cable/white{
d1 = 4;
d2 = 8;
@@ -19737,6 +19759,9 @@
icon_state = "2-8"
},
/obj/effect/turf_decal/delivery,
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
+ },
/turf/open/floor/plasteel,
/area/maintenance/port/central)
"aGK" = (
@@ -19994,6 +20019,9 @@
/obj/effect/turf_decal/stripes/line{
dir = 9
},
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 6
+ },
/turf/open/floor/plasteel,
/area/engine/engineering)
"aHj" = (
@@ -20272,6 +20300,7 @@
d2 = 4;
icon_state = "0-4"
},
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
/area/engine/engineering)
"aHz" = (
@@ -20897,6 +20926,7 @@
/obj/item/weapon/paper_bin,
/obj/item/weapon/pen,
/obj/effect/turf_decal/bot,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel,
/area/engine/engineering)
"aIw" = (
@@ -21321,12 +21351,12 @@
},
/area/engine/gravity_generator)
"aJj" = (
-/obj/structure/cable/white{
- d2 = 2;
- icon_state = "0-2"
- },
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable{
+ icon_state = "0-2";
+ d2 = 2
+ },
/turf/open/floor/plating,
/area/engine/gravity_generator)
"aJk" = (
@@ -21871,7 +21901,6 @@
/area/crew_quarters/kitchen)
"aKf" = (
/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/cable/white{
d1 = 1;
d2 = 2;
@@ -21887,6 +21916,9 @@
d2 = 8;
icon_state = "2-8"
},
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 4
+ },
/turf/open/floor/plating,
/area/maintenance/starboard/central)
"aKg" = (
@@ -21981,16 +22013,6 @@
/area/engine/gravity_generator)
"aKs" = (
/obj/machinery/door/firedoor,
-/obj/structure/cable/white{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/structure/cable/white{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
/obj/machinery/door/airlock/glass_command{
name = "Gravity Generator Chamber";
req_access_txt = "19; 61"
@@ -21999,6 +22021,16 @@
/obj/effect/turf_decal/stripes/line{
dir = 8
},
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
/turf/open/floor/plasteel,
/area/engine/gravity_generator)
"aKt" = (
@@ -22010,6 +22042,11 @@
/obj/effect/turf_decal/stripes/line{
dir = 8
},
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
/turf/open/floor/plasteel,
/area/engine/gravity_generator)
"aKu" = (
@@ -22028,6 +22065,11 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 9
},
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
/turf/open/floor/plasteel/neutral,
/area/engine/gravity_generator)
"aKv" = (
@@ -22270,6 +22312,8 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
+/obj/item/weapon/twohanded/rcl/pre_loaded,
+/obj/item/weapon/twohanded/rcl/pre_loaded,
/turf/open/floor/plasteel/neutral,
/area/engine/engineering)
"aKM" = (
@@ -22401,6 +22445,7 @@
/turf/open/floor/plasteel,
/area/hydroponics)
"aKW" = (
+/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel/greenblue/side{
icon_state = "greenblue";
dir = 8
@@ -22565,6 +22610,7 @@
pixel_x = -24
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel/neutral/corner{
dir = 1
},
@@ -22712,12 +22758,12 @@
/turf/open/floor/plasteel,
/area/engine/gravity_generator)
"aLG" = (
-/obj/structure/cable/white,
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
+/obj/structure/cable,
/turf/open/floor/plating,
/area/engine/gravity_generator)
"aLH" = (
@@ -22866,6 +22912,7 @@
dir = 8
},
/obj/machinery/atmospherics/pipe/simple/cyan/visible,
+/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel,
/area/engine/engineering)
"aLW" = (
@@ -23360,9 +23407,7 @@
/turf/open/floor/plating,
/area/engine/supermatter)
"aMR" = (
-/obj/machinery/power/rad_collector{
- anchored = 1
- },
+/obj/machinery/power/rad_collector/anchored,
/obj/structure/cable{
d2 = 8;
icon_state = "0-8"
@@ -23407,9 +23452,7 @@
/turf/open/floor/plating,
/area/engine/supermatter)
"aMX" = (
-/obj/machinery/power/rad_collector{
- anchored = 1
- },
+/obj/machinery/power/rad_collector/anchored,
/obj/structure/cable{
icon_state = "0-4";
d2 = 4
@@ -25586,6 +25629,7 @@
/area/hallway/primary/central)
"aQo" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
+/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel{
icon_state = "L6"
},
@@ -25659,6 +25703,7 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
+/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel/neutral/corner,
/area/hallway/primary/central{
name = "Primary Hallway"
@@ -25682,8 +25727,8 @@
pixel_y = -32
},
/obj/machinery/light,
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 4
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 9
},
/turf/open/floor/plasteel/neutral/corner,
/area/hallway/primary/central{
@@ -25753,10 +25798,8 @@
/obj/machinery/atmospherics/pipe/simple/general/visible{
dir = 6
},
-/turf/open/floor/plasteel/vault{
- dir = 5;
- initial_gas_mix = "n2=100;TEMP=80";
- temperature = 80
+/turf/open/floor/plasteel/vault/telecomms{
+ dir = 5
},
/area/tcommsat/server)
"aQH" = (
@@ -26173,10 +26216,8 @@
/turf/open/floor/plasteel,
/area/maintenance/starboard)
"aRB" = (
-/turf/open/floor/plasteel/vault{
- dir = 5;
- initial_gas_mix = "n2=100;TEMP=80";
- temperature = 80
+/turf/open/floor/plasteel/vault/telecomms{
+ dir = 5
},
/area/tcommsat/server)
"aRC" = (
@@ -26196,10 +26237,8 @@
icon_state = "1-2"
},
/obj/structure/fans/tiny,
-/turf/open/floor/plasteel/vault{
- dir = 5;
- initial_gas_mix = "n2=100;TEMP=80";
- temperature = 80
+/turf/open/floor/plasteel/vault/telecomms{
+ dir = 5
},
/area/tcommsat/server)
"aRE" = (
@@ -26209,10 +26248,8 @@
on = 1;
target_temperature = 80
},
-/turf/open/floor/plasteel/vault{
- dir = 5;
- initial_gas_mix = "n2=100;TEMP=80";
- temperature = 80
+/turf/open/floor/plasteel/vault/telecomms{
+ dir = 5
},
/area/tcommsat/server)
"aRF" = (
@@ -26813,10 +26850,8 @@
/obj/effect/turf_decal/stripes/line{
dir = 2
},
-/turf/open/floor/plasteel/vault{
- dir = 5;
- initial_gas_mix = "n2=100;TEMP=80";
- temperature = 80
+/turf/open/floor/plasteel/vault/telecomms{
+ dir = 5
},
/area/tcommsat/server)
"aSN" = (
@@ -26881,10 +26916,8 @@
/turf/open/floor/plasteel,
/area/engine/engineering)
"aSV" = (
-/obj/machinery/power/emitter{
- icon_state = "emitter";
+/obj/machinery/power/emitter/anchored{
dir = 1;
- anchored = 1;
state = 2
},
/obj/structure/cable/white,
@@ -27406,10 +27439,8 @@
/obj/machinery/light{
dir = 8
},
-/turf/open/floor/plasteel/vault{
- dir = 5;
- initial_gas_mix = "n2=100;TEMP=80";
- temperature = 80
+/turf/open/floor/plasteel/vault/telecomms{
+ dir = 5
},
/area/tcommsat/server)
"aTY" = (
@@ -27421,10 +27452,8 @@
/obj/machinery/atmospherics/pipe/simple/general/visible{
dir = 4
},
-/turf/open/floor/plasteel/vault{
- dir = 5;
- initial_gas_mix = "n2=100;TEMP=80";
- temperature = 80
+/turf/open/floor/plasteel/vault/telecomms{
+ dir = 5
},
/area/tcommsat/server)
"aTZ" = (
@@ -27434,10 +27463,8 @@
/obj/machinery/atmospherics/pipe/simple/general/visible{
dir = 9
},
-/turf/open/floor/plasteel/vault{
- dir = 5;
- initial_gas_mix = "n2=100;TEMP=80";
- temperature = 80
+/turf/open/floor/plasteel/vault/telecomms{
+ dir = 5
},
/area/tcommsat/server)
"aUa" = (
@@ -27678,6 +27705,7 @@
/turf/open/floor/plasteel,
/area/science/lab)
"aUD" = (
+/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel/whitepurple/side{
dir = 4
},
@@ -27803,10 +27831,8 @@
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/general/visible,
-/turf/open/floor/plasteel/vault{
- dir = 5;
- initial_gas_mix = "n2=100;TEMP=80";
- temperature = 80
+/turf/open/floor/plasteel/vault/telecomms{
+ dir = 5
},
/area/tcommsat/server)
"aUP" = (
@@ -27816,10 +27842,7 @@
d2 = 8;
icon_state = "1-8"
},
-/turf/open/floor/circuit/green{
- initial_gas_mix = "n2=100;TEMP=80";
- temperature = 80
- },
+/turf/open/floor/circuit/green/telecomms,
/area/tcommsat/server)
"aUQ" = (
/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
@@ -28158,15 +28181,11 @@
name = "server vent";
pressure_checks = 0
},
-/turf/open/floor/circuit/green{
- name = "Mainframe Base";
- initial_gas_mix = "n2=100;TEMP=80"
- },
+/turf/open/floor/circuit/green/telecomms/mainframe,
/area/science/research)
"aVC" = (
-/turf/open/floor/plasteel/vault{
- dir = 8;
- initial_gas_mix = "n2=100;TEMP=80"
+/turf/open/floor/plasteel/vault/telecomms{
+ dir = 8
},
/area/science/research)
"aVD" = (
@@ -28181,10 +28200,7 @@
network = list("SS13","RD");
pixel_x = 22
},
-/turf/open/floor/circuit/green{
- name = "Mainframe Base";
- initial_gas_mix = "n2=100;TEMP=80"
- },
+/turf/open/floor/circuit/green/telecomms/mainframe,
/area/science/research)
"aVE" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -28584,18 +28600,14 @@
/obj/machinery/atmospherics/pipe/manifold/general/visible{
dir = 8
},
-/turf/open/floor/circuit/green{
- name = "Mainframe Base";
- initial_gas_mix = "n2=100;TEMP=80"
- },
+/turf/open/floor/circuit/green/telecomms/mainframe,
/area/science/research)
"aWt" = (
/obj/machinery/atmospherics/pipe/simple/general/hidden{
dir = 4
},
-/turf/open/floor/plasteel/vault{
- dir = 8;
- initial_gas_mix = "n2=100;TEMP=80"
+/turf/open/floor/plasteel/vault/telecomms{
+ dir = 8
},
/area/science/research)
"aWu" = (
@@ -28603,10 +28615,7 @@
/obj/machinery/atmospherics/pipe/simple/general/hidden{
dir = 9
},
-/turf/open/floor/circuit/green{
- name = "Mainframe Base";
- initial_gas_mix = "n2=100;TEMP=80"
- },
+/turf/open/floor/circuit/green/telecomms/mainframe,
/area/science/research)
"aWv" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -29656,17 +29665,22 @@
/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
dir = 8
},
+/obj/structure/cable/white{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
/turf/open/floor/plasteel/vault{
dir = 5
},
/area/science/research)
"aYs" = (
-/obj/structure/cable/white{
- d2 = 4;
- icon_state = "0-4"
- },
/obj/machinery/computer/rdservercontrol,
/obj/machinery/light,
+/obj/structure/cable/white{
+ d2 = 8;
+ icon_state = "0-8"
+ },
/turf/open/floor/plasteel/vault{
dir = 8
},
@@ -30411,6 +30425,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel/blue,
/area/medical/medbay/zone3)
"aZO" = (
@@ -31375,6 +31390,7 @@
/obj/effect/turf_decal/stripes/line{
dir = 8
},
+/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"bby" = (
@@ -32071,7 +32087,6 @@
},
/obj/structure/table/reinforced,
/obj/structure/mirror{
- desc = "Mirror mirror on the wall, who is the most robust of them all?";
pixel_x = -28
},
/turf/open/floor/plasteel/vault{
@@ -32880,7 +32895,6 @@
pixel_y = -32
},
/obj/structure/mirror{
- desc = "Mirror mirror on the wall, who is the most robust of them all?";
pixel_x = 28
},
/obj/effect/turf_decal/bot,
@@ -33708,6 +33722,7 @@
},
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
+/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel/neutral,
/area/maintenance/port)
"bfG" = (
@@ -33847,21 +33862,6 @@
/turf/closed/wall/r_wall,
/area/science/xenobiology)
"bfQ" = (
-/obj/structure/cable/white{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/structure/cable/white{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/structure/cable/white{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
/obj/machinery/door/poddoor/preopen{
id = "rdxeno";
name = "Xenobiology Containment Door"
@@ -34244,7 +34244,6 @@
/area/maintenance/starboard)
"bgB" = (
/obj/structure/mirror{
- desc = "Mirror mirror on the wall, who is the most robust of them all?";
pixel_x = 26
},
/obj/structure/sink{
@@ -34852,6 +34851,7 @@
d2 = 2;
icon_state = "1-2"
},
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/neutral/side,
/area/hallway/secondary/entry)
"bhG" = (
@@ -34944,6 +34944,7 @@
d2 = 2;
icon_state = "1-2"
},
+/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel/whitepurple/side{
dir = 4
},
@@ -35158,6 +35159,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
+/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel{
dir = 4;
icon_state = "chapel"
@@ -35275,14 +35277,12 @@
},
/area/hallway/secondary/entry)
"biv" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
/obj/structure/cable/white{
d1 = 1;
d2 = 8;
icon_state = "1-8"
},
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
/turf/open/floor/plasteel/arrival{
dir = 1
},
@@ -35482,9 +35482,7 @@
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
/turf/open/floor/plasteel/vault{
dir = 5
},
@@ -35658,10 +35656,7 @@
name = "server vent";
pressure_checks = 0
},
-/turf/open/floor/circuit/green{
- name = "Mainframe Base";
- initial_gas_mix = "n2=100;TEMP=80"
- },
+/turf/open/floor/circuit/green/telecomms/mainframe,
/area/science/xenobiology)
"bje" = (
/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{
@@ -35675,10 +35670,7 @@
name = "science camera";
network = list("SS13","RD")
},
-/turf/open/floor/circuit/green{
- name = "Mainframe Base";
- initial_gas_mix = "n2=100;TEMP=80"
- },
+/turf/open/floor/circuit/green/telecomms/mainframe,
/area/science/xenobiology)
"bjf" = (
/obj/structure/dresser,
@@ -35837,18 +35829,16 @@
/area/science/xenobiology)
"bjw" = (
/obj/machinery/atmospherics/pipe/manifold/general/hidden,
-/turf/open/floor/plasteel/vault{
- dir = 8;
- initial_gas_mix = "n2=100;TEMP=80"
+/turf/open/floor/plasteel/vault/telecomms{
+ dir = 8
},
/area/science/xenobiology)
"bjx" = (
/obj/machinery/atmospherics/pipe/simple/general/hidden{
dir = 9
},
-/turf/open/floor/plasteel/vault{
- dir = 8;
- initial_gas_mix = "n2=100;TEMP=80"
+/turf/open/floor/plasteel/vault/telecomms{
+ dir = 8
},
/area/science/xenobiology)
"bjy" = (
@@ -35934,10 +35924,7 @@
/turf/open/floor/plasteel,
/area/science/xenobiology)
"bjI" = (
-/turf/open/floor/circuit/green{
- name = "Mainframe Base";
- initial_gas_mix = "n2=100;TEMP=80"
- },
+/turf/open/floor/circuit/green/telecomms/mainframe,
/area/science/xenobiology)
"bjJ" = (
/obj/machinery/photocopier,
@@ -36795,6 +36782,9 @@
dir = 2;
network = list("SS13")
},
+/obj/structure/cable/white{
+ icon_state = "2-8"
+ },
/turf/open/floor/plasteel/neutral/corner{
dir = 4
},
@@ -36813,11 +36803,7 @@
/area/hallway/primary/central)
"blq" = (
/obj/machinery/telecomms/broadcaster/preset_left/birdstation,
-/turf/open/floor/circuit{
- initial_gas_mix = "n2=100;TEMP=80";
- name = "Mainframe Base";
- temperature = 80
- },
+/turf/open/floor/circuit/telecomms/mainframe,
/area/tcommsat/server)
"blr" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -36832,6 +36818,7 @@
c_tag = "Research Division North";
dir = 2
},
+/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel/whitepurple/corner{
dir = 1
},
@@ -39613,10 +39600,8 @@
/obj/machinery/atmospherics/pipe/manifold/general/visible{
dir = 1
},
-/turf/open/floor/plasteel/vault{
- dir = 5;
- initial_gas_mix = "n2=100;TEMP=80";
- temperature = 80
+/turf/open/floor/plasteel/vault/telecomms{
+ dir = 5
},
/area/tcommsat/server)
"buH" = (
@@ -39630,51 +39615,36 @@
icon_state = "0-4";
d2 = 4
},
-/turf/open/floor/circuit/green{
- initial_gas_mix = "n2=100;TEMP=80";
- temperature = 80
- },
+/turf/open/floor/circuit/green/telecomms,
/area/tcommsat/server)
"buI" = (
/obj/machinery/atmospherics/pipe/simple/general/visible,
-/turf/open/floor/plasteel/vault{
- dir = 5;
- initial_gas_mix = "n2=100;TEMP=80";
- temperature = 80
+/turf/open/floor/plasteel/vault/telecomms{
+ dir = 5
},
/area/tcommsat/server)
"buJ" = (
/obj/machinery/telecomms/server/presets/common/birdstation,
-/turf/open/floor/circuit/green{
- initial_gas_mix = "n2=100;TEMP=80";
- temperature = 80
- },
+/turf/open/floor/circuit/green/telecomms,
/area/tcommsat/server)
"buK" = (
/obj/machinery/atmospherics/components/unary/vent_pump/on{
dir = 1
},
-/turf/open/floor/plasteel/vault{
- dir = 5;
- initial_gas_mix = "n2=100;TEMP=80";
- temperature = 80
+/turf/open/floor/plasteel/vault/telecomms{
+ dir = 5
},
/area/tcommsat/server)
"buL" = (
/obj/machinery/telecomms/hub/preset,
-/turf/open/floor/circuit/green{
- initial_gas_mix = "n2=100;TEMP=80";
- temperature = 80
- },
+/turf/open/floor/circuit/green/telecomms,
/area/tcommsat/server)
"buM" = (
/obj/machinery/atmospherics/components/unary/vent_pump/on{
dir = 1
},
-/turf/open/floor/plasteel/vault{
- dir = 5;
- initial_gas_mix = "n2=100;TEMP=80";
- temperature = 80
+/turf/open/floor/plasteel/vault/telecomms{
+ dir = 5
},
/area/tcommsat/server)
"buN" = (
@@ -39682,11 +39652,7 @@
/obj/machinery/ai_status_display{
pixel_x = 32
},
-/turf/open/floor/circuit{
- initial_gas_mix = "n2=100;TEMP=80";
- name = "Mainframe Base";
- temperature = 80
- },
+/turf/open/floor/circuit/telecomms/mainframe,
/area/tcommsat/server)
"buO" = (
/obj/machinery/telecomms/receiver/preset_left/birdstation,
@@ -39694,52 +39660,36 @@
dir = 4;
pixel_x = -23
},
-/turf/open/floor/circuit/green{
- initial_gas_mix = "n2=100;TEMP=80";
- temperature = 80
- },
+/turf/open/floor/circuit/green/telecomms,
/area/tcommsat/server)
"buP" = (
/obj/machinery/message_server,
-/turf/open/floor/circuit/green{
- initial_gas_mix = "n2=100;TEMP=80";
- temperature = 80
- },
+/turf/open/floor/circuit/green/telecomms,
/area/tcommsat/server)
"buQ" = (
/obj/machinery/telecomms/processor/preset_one/birdstation,
-/turf/open/floor/circuit{
- initial_gas_mix = "n2=100;TEMP=80";
- name = "Mainframe Base";
- temperature = 80
- },
+/turf/open/floor/circuit/telecomms/mainframe,
/area/tcommsat/server)
"buR" = (
/obj/machinery/status_display{
pixel_y = -32
},
-/turf/open/floor/plasteel/vault{
- dir = 5;
- initial_gas_mix = "n2=100;TEMP=80";
- temperature = 80
+/turf/open/floor/plasteel/vault/telecomms{
+ dir = 5
},
/area/tcommsat/server)
"buS" = (
/obj/machinery/ntnet_relay,
-/turf/open/floor/plasteel/vault{
- dir = 5;
- initial_gas_mix = "n2=100;TEMP=80";
- temperature = 80
+/turf/open/floor/plasteel/vault/telecomms{
+ dir = 5
},
/area/tcommsat/server)
"buT" = (
/obj/machinery/status_display{
pixel_y = -32
},
-/turf/open/floor/plasteel/vault{
- dir = 5;
- initial_gas_mix = "n2=100;TEMP=80";
- temperature = 80
+/turf/open/floor/plasteel/vault/telecomms{
+ dir = 5
},
/area/tcommsat/server)
"buU" = (
@@ -39748,10 +39698,8 @@
dir = 8;
network = list("MINE")
},
-/turf/open/floor/plasteel/vault{
- dir = 5;
- initial_gas_mix = "n2=100;TEMP=80";
- temperature = 80
+/turf/open/floor/plasteel/vault/telecomms{
+ dir = 5
},
/area/tcommsat/server)
"buV" = (
@@ -39774,9 +39722,7 @@
/turf/closed/wall/r_wall,
/area/engine/supermatter)
"buZ" = (
-/obj/machinery/power/rad_collector{
- anchored = 1
- },
+/obj/machinery/power/rad_collector/anchored,
/obj/structure/cable{
d2 = 8;
icon_state = "0-8"
@@ -39784,9 +39730,7 @@
/turf/open/floor/circuit/green,
/area/engine/supermatter)
"bva" = (
-/obj/machinery/power/rad_collector{
- anchored = 1
- },
+/obj/machinery/power/rad_collector/anchored,
/obj/structure/cable{
d2 = 8;
icon_state = "0-8"
@@ -40464,6 +40408,281 @@
/obj/machinery/atmospherics/pipe/simple/general/visible,
/turf/open/floor/plasteel/caution,
/area/engine/engineering)
+"bxv" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/orange/visible{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"bxw" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plating,
+/area/hallway/primary/central{
+ name = "Primary Hallway"
+ })
+"bxx" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/cable/white{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel/vault{
+ dir = 5
+ },
+/area/bridge)
+"bxy" = (
+/obj/structure/cable/white{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel/vault{
+ dir = 5
+ },
+/area/crew_quarters/heads/hop)
+"bxz" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 1
+ },
+/area/hallway/primary/central{
+ name = "Primary Hallway"
+ })
+"bxA" = (
+/obj/structure/cable/white{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/cable/white{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel/red/side{
+ dir = 6
+ },
+/area/security/brig)
+"bxB" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel,
+/area/teleporter)
+"bxC" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable/white{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel/neutral/corner,
+/area/maintenance/starboard/central)
+"bxD" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel/red/corner{
+ dir = 1
+ },
+/area/hallway/primary/central{
+ name = "Primary Hallway"
+ })
+"bxE" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable/white{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plating,
+/area/maintenance/port/central)
+"bxF" = (
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/carpet,
+/area/crew_quarters/theatre)
+"bxG" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel/redyellow,
+/area/crew_quarters/bar{
+ name = "Atrium"
+ })
+"bxH" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel/neutral,
+/area/engine/atmos)
+"bxI" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel/neutral,
+/area/engine/atmos)
+"bxJ" = (
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel/neutral/side{
+ dir = 4
+ },
+/area/crew_quarters/dorms)
+"bxK" = (
+/obj/structure/cable/white{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel/neutral/corner,
+/area/crew_quarters/dorms)
+"bxL" = (
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel/redyellow,
+/area/crew_quarters/bar{
+ name = "Atrium"
+ })
+"bxM" = (
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit{
+ name = "\improper Departure Lounge"
+ })
+"bxN" = (
+/obj/structure/cable/white{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plating,
+/area/maintenance/port/central)
+"bxO" = (
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel/redyellow,
+/area/crew_quarters/bar{
+ name = "Atrium"
+ })
+"bxP" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel/neutral/corner,
+/area/hallway/primary/central{
+ name = "Primary Hallway"
+ })
+"bxQ" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 8;
+ heat_capacity = 1e+006
+ },
+/area/hallway/primary/central{
+ name = "Primary Hallway"
+ })
+"bxR" = (
+/obj/structure/cable/white{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 1
+ },
+/area/maintenance/port)
+"bxS" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel/grimy,
+/area/library)
+"bxT" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel/whiteblue/corner{
+ dir = 1
+ },
+/area/medical/medbay/zone3)
+"bxU" = (
+/obj/structure/cable/white{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel/neutral/corner,
+/area/maintenance/port)
+"bxV" = (
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/circuit,
+/area/science/robotics/mechbay)
+"bxW" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel,
+/area/science/robotics/lab)
+"bxX" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable/white{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"bxY" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel/neutral/side{
+ dir = 1;
+ heat_capacity = 1e+006
+ },
+/area/hallway/secondary/entry)
(1,1,1) = {"
aaa
@@ -70653,7 +70872,7 @@ aIg
aJq
bxb
aLN
-aMP
+bxv
aNZ
aMP
aPJ
@@ -72439,7 +72658,7 @@ avF
awJ
axo
ayi
-azo
+bxI
aAp
aBx
aCB
@@ -73998,7 +74217,7 @@ aNa
aEt
aOI
aPP
-aQV
+bxR
aRS
aTb
aUb
@@ -75265,7 +75484,7 @@ auL
avQ
aqz
axz
-asB
+bxH
azy
aAA
aBI
@@ -75801,7 +76020,7 @@ aQW
aRY
aTg
aUf
-aUX
+bxS
aVS
aWE
aXh
@@ -76281,7 +76500,7 @@ ajb
akb
ala
alQ
-akb
+bxA
ala
aoz
apE
@@ -76305,7 +76524,7 @@ aGx
aHD
aIA
aCM
-aCM
+bxP
aCM
aNi
anH
@@ -76801,7 +77020,7 @@ aoB
apG
akc
akc
-akc
+bxD
atM
auR
avW
@@ -77092,7 +77311,7 @@ aWG
aXl
aQW
aYF
-aXd
+bxU
aRS
bbo
bcb
@@ -77105,7 +77324,7 @@ bfT
bgD
bhq
bie
-biK
+biG
bjk
bjA
bjL
@@ -77579,7 +77798,7 @@ avY
awQ
axG
ayy
-azC
+bxJ
aAH
aBQ
azC
@@ -77838,7 +78057,7 @@ awQ
awQ
awQ
aAH
-aBQ
+bxK
awQ
awQ
awQ
@@ -78614,7 +78833,7 @@ awQ
awQ
awQ
awQ
-arY
+bxN
aHM
aHM
aHM
@@ -78623,7 +78842,7 @@ aHM
aHM
aHM
aOZ
-aQd
+bxQ
ayV
aSh
aTm
@@ -78889,7 +79108,7 @@ aVh
aWd
aWL
aXn
-aXn
+bxT
aYL
aZH
bay
@@ -79366,7 +79585,7 @@ akm
ali
alZ
amU
-anM
+bxB
anM
apL
alg
@@ -79632,7 +79851,7 @@ atd
atW
atd
atd
-atd
+bxE
axL
ayD
atd
@@ -80403,7 +80622,7 @@ atf
atY
avb
awg
-awg
+bxF
awg
ayF
azF
@@ -80641,7 +80860,7 @@ acd
acU
adM
adM
-adM
+bxx
age
agV
aby
@@ -81688,7 +81907,7 @@ asg
asg
asg
asg
-awT
+bxG
asg
avi
awn
@@ -81700,7 +81919,7 @@ asg
awT
aAR
avi
-asg
+bxO
asg
aLf
aMt
@@ -81730,7 +81949,7 @@ bfK
bgg
bgT
bhG
-biw
+bxY
bgU
aaa
aaa
@@ -82721,7 +82940,7 @@ axP
ayL
asg
aAR
-asg
+bxL
avi
asg
asg
@@ -84034,7 +84253,7 @@ aZc
aZV
baO
bbD
-bcu
+bxV
bdm
beh
beL
@@ -84253,7 +84472,7 @@ anU
aoW
aqc
alu
-asn
+bxC
atm
auj
avo
@@ -84753,7 +84972,7 @@ acq
adi
adW
aeL
-afw
+bxy
agq
ahh
aia
@@ -85788,7 +86007,7 @@ abt
abt
ajF
akJ
-aly
+bxz
amt
ank
anZ
@@ -85820,8 +86039,8 @@ aNF
ank
aPw
aQz
-aRw
-aRw
+aVA
+aVA
aTO
aUH
aVA
@@ -86036,7 +86255,7 @@ abt
abL
acu
adm
-adY
+bxw
adm
afB
agu
@@ -86604,7 +86823,7 @@ aZj
bae
baY
bbM
-bcA
+bxW
bdw
bep
aZl
@@ -87122,7 +87341,7 @@ bcC
bdy
ber
aZl
-bfq
+bxX
bfP
bfP
bfP
@@ -87865,7 +88084,7 @@ aaa
aaa
azb
blM
-blZ
+bxM
bsC
azb
aaa
@@ -88864,10 +89083,10 @@ aaa
aaa
ado
aeh
-aeY
-afJ
-aeY
-ahs
+aeW
+ado
+aeW
+ahq
ado
aaa
aaa
@@ -91210,7 +91429,7 @@ aGc
azb
azb
aDi
-aKl
+aCn
aDi
azb
azb
diff --git a/_maps/map_files/PubbyStation/PubbyStation.dmm b/_maps/map_files/PubbyStation/PubbyStation.dmm
index be4b4d2c66..b46901c890 100644
--- a/_maps/map_files/PubbyStation/PubbyStation.dmm
+++ b/_maps/map_files/PubbyStation/PubbyStation.dmm
@@ -3,96 +3,375 @@
/turf/open/space/basic,
/area/space)
"aab" = (
-/obj/effect/landmark/carpspawn,
/turf/open/space,
-/area/space)
+/obj/machinery/porta_turret/syndicate{
+ dir = 9
+ },
+/turf/closed/wall/mineral/plastitanium{
+ dir = 8;
+ icon_state = "diagonalWall3"
+ },
+/area/shuttle/syndicate)
"aac" = (
-/obj/structure/lattice,
-/obj/structure/grille,
-/turf/open/space,
-/area/space)
+/turf/closed/wall/mineral/plastitanium,
+/area/shuttle/syndicate)
"aad" = (
-/obj/structure/lattice,
-/turf/open/space,
-/area/space)
+/obj/structure/grille,
+/obj/machinery/door/poddoor/shutters{
+ id = "syndieshutters";
+ name = "blast shutters"
+ },
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/shuttle/syndicate)
"aae" = (
-/obj/structure/lattice,
-/obj/machinery/camera/motion{
- c_tag = "MiniSat External Fore";
- dir = 1;
- network = list("MiniSat")
- },
/turf/open/space,
-/area/space)
+/obj/machinery/porta_turret/syndicate{
+ dir = 5
+ },
+/turf/closed/wall/mineral/plastitanium{
+ dir = 1;
+ icon_state = "diagonalWall3"
+ },
+/area/shuttle/syndicate)
"aaf" = (
-/turf/closed/wall/r_wall,
-/area/wreck/ai)
+/obj/machinery/computer/med_data/syndie,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/shuttle/syndicate)
"aag" = (
-/obj/effect/turf_decal/stripes/corner,
-/turf/open/floor/plasteel/white,
-/area/wreck/ai)
+/obj/machinery/computer/crew/syndie,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/shuttle/syndicate)
"aah" = (
-/obj/effect/turf_decal/stripes/line,
-/turf/open/floor/plasteel/white,
-/area/wreck/ai)
+/obj/structure/table/reinforced,
+/obj/item/weapon/folder/red,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/shuttle/syndicate)
"aai" = (
-/obj/effect/turf_decal/stripes/corner{
- dir = 1
+/obj/machinery/computer/shuttle/syndicate,
+/turf/open/floor/plasteel/vault{
+ dir = 8
},
-/turf/open/floor/plasteel/white,
-/area/wreck/ai)
+/area/shuttle/syndicate)
"aaj" = (
-/turf/open/floor/plasteel/white,
-/area/wreck/ai)
-"aak" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 4
+/obj/structure/table/reinforced,
+/turf/open/floor/plasteel/vault{
+ dir = 8
},
-/turf/open/floor/plasteel/white,
-/area/wreck/ai)
+/area/shuttle/syndicate)
+"aak" = (
+/obj/machinery/computer/camera_advanced/syndie,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/shuttle/syndicate)
"aal" = (
-/obj/machinery/porta_turret/ai{
- dir = 4
+/obj/machinery/computer/secure_data/syndie,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/shuttle/syndicate)
+"aam" = (
+/obj/structure/table/reinforced,
+/obj/machinery/status_display{
+ pixel_x = -32
+ },
+/obj/item/weapon/clipboard,
+/obj/item/toy/figure/syndie,
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/shuttle/syndicate)
+"aan" = (
+/obj/structure/chair/office/dark{
+ dir = 8;
+ name = "tactical swivel chair"
},
/turf/open/floor/plasteel/black,
-/area/wreck/ai)
-"aam" = (
-/turf/open/floor/circuit,
-/area/wreck/ai)
-"aan" = (
-/obj/machinery/camera/motion{
- c_tag = "MiniSat AI Chamber North";
- dir = 1;
- network = list("MiniSat")
- },
-/obj/machinery/light,
-/obj/machinery/flasher{
- id = "AI";
- pixel_y = -24
- },
-/turf/open/floor/circuit,
-/area/wreck/ai)
+/area/shuttle/syndicate)
"aao" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/wreck/ai)
+/turf/open/floor/plasteel/black,
+/area/shuttle/syndicate)
"aap" = (
-/obj/effect/turf_decal/stripes/corner{
- dir = 8
+/obj/structure/chair/office/dark{
+ dir = 1;
+ name = "tactical swivel chair"
},
-/turf/open/floor/plasteel/white,
-/area/wreck/ai)
+/obj/machinery/button/door{
+ id = "syndieshutters";
+ name = "Cockpit View Control";
+ pixel_x = 32;
+ pixel_y = 32;
+ req_access_txt = "150"
+ },
+/turf/open/floor/plasteel/black,
+/area/shuttle/syndicate)
"aaq" = (
-/obj/effect/turf_decal/stripes/corner{
+/obj/structure/chair/office/dark{
+ dir = 4;
+ name = "tactical swivel chair"
+ },
+/turf/open/floor/plasteel/black,
+/area/shuttle/syndicate)
+"aar" = (
+/obj/structure/table/reinforced,
+/obj/machinery/ai_status_display{
+ pixel_x = 32
+ },
+/obj/item/weapon/storage/fancy/donut_box,
+/obj/machinery/light{
dir = 4
},
-/turf/open/floor/plasteel/white{
- heat_capacity = 1e+006
+/turf/open/floor/plasteel/vault{
+ dir = 8
},
-/area/wreck/ai)
-"aar" = (
+/area/shuttle/syndicate)
+"aas" = (
+/turf/open/floor/plasteel/vault,
+/area/shuttle/syndicate)
+"aat" = (
+/turf/open/space,
+/turf/closed/wall/mineral/plastitanium{
+ icon_state = "diagonalWall3"
+ },
+/area/shuttle/syndicate)
+"aau" = (
+/obj/machinery/status_display,
+/turf/closed/wall/mineral/plastitanium,
+/area/shuttle/syndicate)
+"aav" = (
+/obj/machinery/door/airlock/hatch{
+ name = "Cockpit";
+ req_access_txt = "150"
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/shuttle/syndicate)
+"aaw" = (
+/turf/open/space,
+/turf/closed/wall/mineral/plastitanium{
+ dir = 4;
+ icon_state = "diagonalWall3"
+ },
+/area/shuttle/syndicate)
+"aax" = (
+/turf/open/space,
+/obj/machinery/porta_turret/syndicate{
+ dir = 10
+ },
+/turf/closed/wall/mineral/plastitanium{
+ icon_state = "diagonalWall3"
+ },
+/area/shuttle/syndicate)
+"aay" = (
+/obj/structure/table/reinforced,
+/obj/item/stack/cable_coil/white,
+/obj/item/stack/cable_coil/white,
+/obj/item/weapon/crowbar/red,
+/turf/open/floor/plasteel/vault{
+ dir = 5
+ },
+/area/shuttle/syndicate)
+"aaz" = (
+/turf/open/floor/plasteel/vault{
+ dir = 5
+ },
+/area/shuttle/syndicate)
+"aaA" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/storage/box/handcuffs{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/weapon/storage/box/zipties,
+/turf/open/floor/plasteel/vault{
+ dir = 5
+ },
+/area/shuttle/syndicate)
+"aaB" = (
+/turf/open/space,
+/obj/machinery/porta_turret/syndicate{
+ dir = 6
+ },
+/turf/closed/wall/mineral/plastitanium{
+ dir = 4;
+ icon_state = "diagonalWall3"
+ },
+/area/shuttle/syndicate)
+"aaC" = (
+/obj/structure/chair{
+ dir = 4;
+ name = "tactical chair"
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 5
+ },
+/area/shuttle/syndicate)
+"aaD" = (
+/obj/structure/chair{
+ dir = 8;
+ name = "tactical chair"
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 5
+ },
+/area/shuttle/syndicate)
+"aaE" = (
+/obj/structure/chair{
+ dir = 4;
+ name = "tactical chair"
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 5
+ },
+/area/shuttle/syndicate)
+"aaF" = (
+/obj/structure/chair{
+ dir = 8;
+ name = "tactical chair"
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 5
+ },
+/area/shuttle/syndicate)
+"aaG" = (
+/obj/machinery/porta_turret/syndicate{
+ dir = 4
+ },
+/turf/closed/wall/mineral/plastitanium,
+/area/shuttle/syndicate)
+"aaH" = (
+/obj/machinery/suit_storage_unit/syndicate,
+/turf/open/floor/plasteel/podhatch{
+ dir = 5
+ },
+/area/shuttle/syndicate)
+"aaI" = (
+/obj/machinery/portable_atmospherics/canister/oxygen,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/shuttle/syndicate)
+"aaJ" = (
+/obj/machinery/suit_storage_unit/syndicate,
+/turf/open/floor/plasteel/podhatch{
+ dir = 4
+ },
+/area/shuttle/syndicate)
+"aaK" = (
+/obj/structure/tank_dispenser/oxygen,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/shuttle/syndicate)
+"aaL" = (
+/obj/machinery/door/poddoor{
+ id = "smindicate";
+ name = "outer blast door"
+ },
+/obj/machinery/button/door{
+ id = "smindicate";
+ name = "external door control";
+ pixel_x = -26;
+ req_access_txt = "150"
+ },
+/obj/docking_port/mobile{
+ dheight = 9;
+ dir = 2;
+ dwidth = 5;
+ height = 24;
+ id = "syndicate";
+ name = "syndicate infiltrator";
+ port_angle = 0;
+ roundstart_move = "syndicate_away";
+ width = 18
+ },
+/obj/docking_port/stationary{
+ dheight = 9;
+ dir = 2;
+ dwidth = 5;
+ height = 24;
+ id = "syndicate_nw";
+ name = "northwest of station";
+ turf_type = /turf/open/space;
+ width = 18
+ },
+/obj/structure/fans/tiny,
+/turf/open/floor/plasteel/podhatch{
+ dir = 1
+ },
+/area/shuttle/syndicate)
+"aaM" = (
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
+ icon_state = "space";
+ layer = 4;
+ name = "EXTERNAL AIRLOCK"
+ },
+/turf/closed/wall/mineral/plastitanium,
+/area/shuttle/syndicate)
+"aaN" = (
+/obj/machinery/portable_atmospherics/canister/oxygen,
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/shuttle/syndicate)
+"aaO" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/shuttle/syndicate)
+"aaP" = (
+/obj/machinery/door/airlock/external{
+ name = "Ready Room";
+ req_access_txt = "150"
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/shuttle/syndicate)
+"aaQ" = (
+/obj/item/weapon/storage/toolbox/syndicate,
+/obj/item/weapon/crowbar/red,
+/obj/structure/table/reinforced,
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/plasteel/podhatch{
+ dir = 10
+ },
+/area/shuttle/syndicate)
+"aaR" = (
+/turf/open/floor/plasteel/podhatch,
+/area/shuttle/syndicate)
+"aaS" = (
+/obj/structure/chair{
+ name = "tactical chair"
+ },
+/turf/open/floor/plasteel/podhatch{
+ dir = 6
+ },
+/area/shuttle/syndicate)
+"aaT" = (
/obj/docking_port/stationary{
dheight = 9;
dir = 2;
@@ -105,18 +384,542 @@
},
/turf/open/space,
/area/space)
-"aas" = (
-/obj/structure/table/wood,
-/obj/machinery/light/small{
+"aaU" = (
+/turf/open/floor/plasteel/vault{
dir = 8
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+/area/shuttle/syndicate)
+"aaV" = (
+/obj/machinery/door/airlock/external{
+ name = "E.V.A. Gear Storage";
+ req_access_txt = "150"
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/shuttle/syndicate)
+"aaW" = (
+/obj/machinery/door/airlock/external{
+ req_access_txt = "150"
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate)
+"aaX" = (
+/obj/machinery/suit_storage_unit/syndicate,
+/turf/open/floor/plasteel/podhatch{
+ dir = 6
+ },
+/area/shuttle/syndicate)
+"aaY" = (
+/obj/structure/reagent_dispensers/fueltank,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/shuttle/syndicate)
+"aaZ" = (
+/obj/structure/chair{
+ dir = 1;
+ name = "tactical chair"
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/shuttle/syndicate)
+"aba" = (
+/obj/structure/rack,
+/obj/item/clothing/suit/space/syndicate/black/red,
+/obj/item/clothing/head/helmet/space/syndicate/black/red,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/shuttle/syndicate)
+"abb" = (
+/turf/open/space,
+/turf/closed/wall/mineral/plastitanium{
+ dir = 1;
+ icon_state = "diagonalWall3"
+ },
+/area/shuttle/syndicate)
+"abc" = (
+/obj/machinery/ai_status_display,
+/turf/closed/wall/mineral/plastitanium,
+/area/shuttle/syndicate)
+"abd" = (
+/obj/machinery/sleeper/syndie{
dir = 4
},
-/obj/item/weapon/storage/crayons,
-/turf/open/floor/plasteel/grimy,
-/area/chapel/main/monastery)
-"aat" = (
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/shuttle/syndicate)
+"abe" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/shuttle/syndicate)
+"abf" = (
+/obj/item/weapon/reagent_containers/glass/bottle/epinephrine{
+ pixel_x = 6
+ },
+/obj/item/weapon/reagent_containers/glass/bottle/charcoal{
+ pixel_x = -3
+ },
+/obj/item/weapon/reagent_containers/glass/bottle/epinephrine{
+ pixel_x = -3;
+ pixel_y = 8
+ },
+/obj/item/weapon/reagent_containers/glass/bottle/charcoal{
+ pixel_x = 6;
+ pixel_y = 8
+ },
+/obj/item/weapon/reagent_containers/syringe/epinephrine{
+ pixel_x = 3;
+ pixel_y = -2
+ },
+/obj/item/weapon/reagent_containers/syringe/epinephrine{
+ pixel_x = 4;
+ pixel_y = 1
+ },
+/obj/item/weapon/reagent_containers/syringe/epinephrine{
+ pixel_x = -2;
+ pixel_y = 5
+ },
+/obj/item/weapon/reagent_containers/syringe/epinephrine{
+ pixel_x = 2;
+ pixel_y = 8
+ },
+/obj/structure/table/reinforced,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/shuttle/syndicate)
+"abg" = (
+/obj/structure/table/reinforced,
+/obj/item/stack/medical/gauze,
+/obj/item/stack/medical/bruise_pack,
+/obj/item/stack/medical/ointment,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/shuttle/syndicate)
+"abh" = (
+/obj/item/weapon/stock_parts/cell/high{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/item/weapon/stock_parts/cell/high,
+/obj/structure/table/reinforced,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/shuttle/syndicate)
+"abi" = (
+/obj/item/weapon/screwdriver{
+ pixel_y = 9
+ },
+/obj/item/device/assembly/voice{
+ pixel_y = 3
+ },
+/obj/structure/table/reinforced,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/shuttle/syndicate)
+"abj" = (
+/obj/item/weapon/wrench,
+/obj/item/device/assembly/infra,
+/obj/structure/table/reinforced,
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/shuttle/syndicate)
+"abk" = (
+/obj/item/device/assembly/signaler,
+/obj/item/device/assembly/signaler,
+/obj/item/device/assembly/prox_sensor{
+ pixel_x = -8;
+ pixel_y = 4
+ },
+/obj/item/device/assembly/prox_sensor{
+ pixel_x = -8;
+ pixel_y = 4
+ },
+/obj/structure/table/reinforced,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/shuttle/syndicate)
+"abl" = (
+/obj/item/weapon/weldingtool/largetank{
+ pixel_y = 3
+ },
+/obj/item/device/multitool,
+/obj/structure/table/reinforced,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/shuttle/syndicate)
+"abm" = (
+/obj/structure/bed/roller,
+/obj/machinery/iv_drip,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/shuttle/syndicate)
+"abn" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 5
+ },
+/area/shuttle/syndicate)
+"abo" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 5
+ },
+/area/shuttle/syndicate)
+"abp" = (
+/turf/open/floor/plasteel/podhatch{
+ dir = 9
+ },
+/area/shuttle/syndicate)
+"abq" = (
+/turf/open/floor/plasteel/podhatch{
+ dir = 1
+ },
+/area/shuttle/syndicate)
+"abr" = (
+/obj/machinery/door/airlock/hatch{
+ req_access_txt = "150"
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/shuttle/syndicate)
+"abs" = (
+/turf/open/floor/plasteel/podhatch{
+ dir = 5
+ },
+/area/shuttle/syndicate)
+"abt" = (
+/obj/structure/closet/syndicate/personal,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/shuttle/syndicate)
+"abu" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/reagent_containers/glass/beaker/large,
+/obj/item/weapon/reagent_containers/glass/beaker,
+/obj/item/weapon/reagent_containers/dropper,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/shuttle/syndicate)
+"abv" = (
+/turf/open/floor/plasteel/podhatch{
+ dir = 10
+ },
+/area/shuttle/syndicate)
+"abw" = (
+/turf/open/floor/plasteel/podhatch{
+ dir = 6
+ },
+/area/shuttle/syndicate)
+"abx" = (
+/obj/structure/closet/syndicate/nuclear,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/shuttle/syndicate)
+"aby" = (
+/obj/structure/lattice,
+/obj/structure/grille,
+/turf/open/space,
+/area/space)
+"abz" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/item/bodypart/r_arm/robot,
+/obj/item/bodypart/l_arm/robot,
+/obj/structure/table/reinforced,
+/turf/open/floor/plasteel/vault,
+/area/shuttle/syndicate)
+"abA" = (
+/obj/machinery/door/window{
+ dir = 1;
+ name = "Surgery";
+ req_access_txt = "150"
+ },
+/turf/open/floor/plasteel/vault,
+/area/shuttle/syndicate)
+"abB" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/turf/open/floor/plasteel/vault,
+/area/shuttle/syndicate)
+"abC" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/item/weapon/storage/firstaid/regular{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/weapon/storage/firstaid/brute,
+/obj/item/weapon/storage/firstaid/regular{
+ pixel_x = -3;
+ pixel_y = -3
+ },
+/obj/structure/table/reinforced,
+/turf/open/floor/plasteel/vault,
+/area/shuttle/syndicate)
+"abD" = (
+/obj/item/weapon/storage/firstaid/regular{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/weapon/storage/firstaid/fire,
+/obj/item/weapon/storage/firstaid/regular{
+ pixel_x = -3;
+ pixel_y = -3
+ },
+/obj/structure/table/reinforced,
+/turf/open/floor/plasteel/vault,
+/area/shuttle/syndicate)
+"abE" = (
+/obj/item/device/sbeacondrop/bomb{
+ pixel_y = 5
+ },
+/obj/item/device/sbeacondrop/bomb,
+/obj/structure/table/reinforced,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/shuttle/syndicate)
+"abF" = (
+/obj/item/weapon/grenade/syndieminibomb{
+ pixel_x = 4;
+ pixel_y = 2
+ },
+/obj/item/weapon/grenade/syndieminibomb{
+ pixel_x = -1
+ },
+/obj/structure/table/reinforced,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/item/weapon/grenade/plastic/c4,
+/obj/item/weapon/grenade/plastic/c4,
+/obj/item/weapon/grenade/plastic/c4,
+/obj/item/weapon/grenade/plastic/c4,
+/obj/item/weapon/grenade/plastic/c4,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/shuttle/syndicate)
+"abG" = (
+/obj/machinery/door/window{
+ dir = 1;
+ name = "Technological Storage";
+ req_access_txt = "150"
+ },
+/turf/open/floor/plasteel/vault,
+/area/shuttle/syndicate)
+"abH" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/table/reinforced,
+/obj/item/device/aicard,
+/turf/open/floor/plasteel/vault,
+/area/shuttle/syndicate)
+"abI" = (
+/obj/structure/lattice,
+/turf/open/space,
+/area/space)
+"abJ" = (
+/obj/structure/lattice,
+/obj/machinery/camera/motion{
+ c_tag = "MiniSat External Fore";
+ dir = 1;
+ network = list("MiniSat")
+ },
+/turf/open/space,
+/area/space)
+"abK" = (
+/obj/item/weapon/surgicaldrill,
+/obj/item/weapon/circular_saw,
+/obj/structure/table/reinforced,
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/shuttle/syndicate)
+"abL" = (
+/obj/structure/sink{
+ dir = 4;
+ pixel_x = 11
+ },
+/obj/structure/mirror{
+ pixel_x = 30
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 5
+ },
+/area/shuttle/syndicate)
+"abM" = (
+/obj/machinery/nuclearbomb/syndicate,
+/obj/machinery/door/window{
+ dir = 1;
+ name = "Theatre Stage";
+ req_access_txt = "0"
+ },
+/turf/open/floor/circuit/red,
+/area/shuttle/syndicate)
+"abN" = (
+/obj/effect/landmark/carpspawn,
+/turf/open/space,
+/area/space)
+"abO" = (
+/turf/closed/wall/r_wall,
+/area/wreck/ai)
+"abP" = (
+/obj/item/weapon/cautery,
+/obj/item/weapon/scalpel,
+/obj/structure/table/reinforced,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/shuttle/syndicate)
+"abQ" = (
+/obj/structure/table/optable,
+/obj/item/weapon/surgical_drapes,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/shuttle/syndicate)
+"abR" = (
+/obj/item/weapon/retractor,
+/obj/item/weapon/hemostat,
+/obj/structure/table/reinforced,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/shuttle/syndicate)
+"abS" = (
+/obj/structure/shuttle/engine/heater,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plating/airless,
+/area/shuttle/syndicate)
+"abT" = (
+/obj/machinery/recharge_station,
+/turf/open/floor/circuit/red,
+/area/shuttle/syndicate)
+"abU" = (
+/obj/machinery/telecomms/allinone{
+ intercept = 1
+ },
+/turf/open/floor/circuit/red,
+/area/shuttle/syndicate)
+"abV" = (
+/obj/effect/turf_decal/stripes/corner,
+/turf/open/floor/plasteel/white,
+/area/wreck/ai)
+"abW" = (
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel/white,
+/area/wreck/ai)
+"abX" = (
+/obj/effect/turf_decal/stripes/corner{
+ dir = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/wreck/ai)
+"abY" = (
+/turf/open/floor/plasteel/white,
+/area/wreck/ai)
+"abZ" = (
+/obj/structure/shuttle/engine/propulsion/left,
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plating/airless,
+/area/shuttle/syndicate)
+"aca" = (
+/obj/structure/shuttle/engine/propulsion,
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plating/airless,
+/area/shuttle/syndicate)
+"acb" = (
+/obj/structure/shuttle/engine/propulsion/right,
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plating/airless,
+/area/shuttle/syndicate)
+"acc" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/wreck/ai)
+"acd" = (
+/obj/machinery/porta_turret/ai{
+ dir = 4
+ },
+/turf/open/floor/plasteel/black,
+/area/wreck/ai)
+"ace" = (
+/turf/open/floor/circuit,
+/area/wreck/ai)
+"acf" = (
+/obj/machinery/camera/motion{
+ c_tag = "MiniSat AI Chamber North";
+ dir = 1;
+ network = list("MiniSat")
+ },
+/obj/machinery/light,
+/obj/machinery/flasher{
+ id = "AI";
+ pixel_y = -24
+ },
+/turf/open/floor/circuit,
+/area/wreck/ai)
+"acg" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel/white,
+/area/wreck/ai)
+"ach" = (
+/obj/effect/turf_decal/stripes/corner{
+ dir = 8
+ },
+/turf/open/floor/plasteel/white,
+/area/wreck/ai)
+"aci" = (
+/obj/effect/turf_decal/stripes/corner{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white{
+ heat_capacity = 1e+006
+ },
+/area/wreck/ai)
+"acj" = (
/obj/structure/cable/yellow{
d1 = 2;
d2 = 4;
@@ -137,7 +940,7 @@
},
/turf/open/floor/circuit,
/area/wreck/ai)
-"aau" = (
+"ack" = (
/obj/machinery/power/smes{
charge = 5e+006
},
@@ -162,7 +965,7 @@
},
/turf/open/floor/circuit,
/area/wreck/ai)
-"aav" = (
+"acl" = (
/obj/structure/cable{
d2 = 8;
icon_state = "0-8"
@@ -184,15 +987,15 @@
},
/turf/open/floor/circuit,
/area/wreck/ai)
-"aaw" = (
-/obj/structure/bed,
-/obj/item/weapon/bedsheet/yellow,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 9
+"acm" = (
+/obj/machinery/camera/motion{
+ c_tag = "MiniSat External Port";
+ dir = 8;
+ network = list("MiniSat")
},
-/turf/open/floor/plasteel/grimy,
-/area/chapel/main/monastery)
-"aax" = (
+/turf/open/space,
+/area/space)
+"acn" = (
/obj/machinery/porta_turret/ai{
dir = 4
},
@@ -206,7 +1009,7 @@
},
/turf/open/floor/plasteel/black,
/area/wreck/ai)
-"aay" = (
+"aco" = (
/obj/structure/cable/yellow{
d1 = 2;
d2 = 4;
@@ -214,7 +1017,7 @@
},
/turf/open/floor/circuit,
/area/wreck/ai)
-"aaz" = (
+"acp" = (
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
@@ -227,19 +1030,7 @@
},
/turf/open/floor/plasteel/white,
/area/wreck/ai)
-"aaA" = (
-/obj/machinery/shower{
- dir = 8;
- pixel_y = -4
- },
-/obj/machinery/light/small{
- brightness = 3;
- dir = 8
- },
-/obj/item/weapon/bikehorn/rubberducky,
-/turf/open/floor/plasteel/showroomfloor,
-/area/chapel/main/monastery)
-"aaB" = (
+"acq" = (
/obj/structure/cable/yellow{
d1 = 1;
d2 = 8;
@@ -252,7 +1043,7 @@
},
/turf/open/floor/plasteel/white,
/area/wreck/ai)
-"aaC" = (
+"acr" = (
/obj/machinery/ai_slipper{
uses = 8
},
@@ -262,7 +1053,7 @@
/obj/machinery/holopad,
/turf/open/floor/plasteel/white,
/area/wreck/ai)
-"aaD" = (
+"acs" = (
/obj/machinery/turretid{
name = "AI Chamber turret control";
pixel_x = -5;
@@ -270,13 +1061,15 @@
},
/turf/open/floor/plasteel/white,
/area/wreck/ai)
-"aaE" = (
-/obj/structure/shuttle/engine/propulsion/burst{
- dir = 8
+"act" = (
+/obj/machinery/door/firedoor/heavy,
+/obj/machinery/door/airlock/glass_command{
+ name = "AI Core";
+ req_access_txt = "65"
},
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/abandoned)
-"aaF" = (
+/turf/open/floor/plasteel/white,
+/area/wreck/ai)
+"acu" = (
/obj/machinery/porta_turret/ai{
dir = 4
},
@@ -290,13 +1083,21 @@
},
/turf/open/floor/plasteel/black,
/area/wreck/ai)
-"aaG" = (
+"acv" = (
+/obj/machinery/camera/motion{
+ c_tag = "MiniSat External Starboard";
+ dir = 4;
+ network = list("MiniSat")
+ },
+/turf/open/space,
+/area/space)
+"acw" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
},
/turf/open/floor/plasteel/white,
/area/wreck/ai)
-"aaH" = (
+"acx" = (
/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
@@ -304,7 +1105,7 @@
},
/turf/open/floor/circuit,
/area/wreck/ai)
-"aaI" = (
+"acy" = (
/obj/effect/landmark/start/ai,
/obj/item/device/radio/intercom{
broadcasting = 0;
@@ -342,10 +1143,7 @@
},
/turf/open/floor/circuit,
/area/wreck/ai)
-"aaJ" = (
-/turf/open/space,
-/area/shuttle/syndicate)
-"aaK" = (
+"acz" = (
/obj/structure/cable/yellow{
d1 = 1;
d2 = 4;
@@ -353,7 +1151,7 @@
},
/turf/open/floor/circuit,
/area/wreck/ai)
-"aaL" = (
+"acA" = (
/obj/structure/cable/yellow{
d1 = 2;
d2 = 8;
@@ -361,17 +1159,17 @@
},
/turf/open/floor/circuit,
/area/wreck/ai)
-"aaM" = (
+"acB" = (
/obj/machinery/door/firedoor/heavy,
/turf/open/floor/circuit,
/area/wreck/ai)
-"aaN" = (
+"acC" = (
/obj/machinery/airalarm{
pixel_y = 22
},
/turf/open/floor/circuit,
/area/wreck/ai)
-"aaO" = (
+"acD" = (
/obj/machinery/camera/motion{
c_tag = "MiniSat AI Chamber South";
dir = 2;
@@ -389,11 +1187,21 @@
},
/turf/open/floor/circuit,
/area/wreck/ai)
-"aaP" = (
+"acE" = (
+/obj/item/device/radio/intercom{
+ broadcasting = 1;
+ frequency = 1447;
+ listening = 0;
+ name = "Station Intercom (AI Private)";
+ pixel_y = 24
+ },
+/turf/open/floor/circuit,
+/area/wreck/ai)
+"acF" = (
/obj/machinery/atmospherics/components/unary/outlet_injector/on,
/turf/open/floor/plating/airless,
/area/space)
-"aaQ" = (
+"acG" = (
/obj/structure/cable/yellow{
d1 = 2;
d2 = 4;
@@ -404,7 +1212,7 @@
},
/turf/open/floor/plasteel/white,
/area/wreck/ai)
-"aaR" = (
+"acH" = (
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
@@ -415,7 +1223,7 @@
},
/turf/open/floor/plasteel/white,
/area/wreck/ai)
-"aaS" = (
+"acI" = (
/obj/structure/cable/yellow{
d1 = 1;
d2 = 4;
@@ -433,7 +1241,7 @@
heat_capacity = 1e+006
},
/area/wreck/ai)
-"aaT" = (
+"acJ" = (
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
@@ -442,7 +1250,7 @@
/obj/machinery/door/firedoor/heavy,
/turf/open/floor/plasteel/white,
/area/wreck/ai)
-"aaU" = (
+"acK" = (
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
@@ -450,7 +1258,7 @@
},
/turf/open/floor/plasteel/white,
/area/wreck/ai)
-"aaV" = (
+"acL" = (
/obj/structure/cable/yellow{
d1 = 2;
d2 = 8;
@@ -461,23 +1269,23 @@
},
/turf/open/floor/plasteel/white,
/area/wreck/ai)
-"aaW" = (
+"acM" = (
/obj/machinery/door/firedoor/heavy,
/turf/open/floor/plasteel/white,
/area/wreck/ai)
-"aaX" = (
+"acN" = (
/obj/structure/lattice,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/space,
/area/space)
-"aaY" = (
+"acO" = (
/obj/structure/grille/broken,
/turf/open/space,
/area/space)
-"aaZ" = (
+"acP" = (
/turf/closed/wall/r_wall,
/area/ai_monitored/turret_protected/AIsatextAP)
-"aba" = (
+"acQ" = (
/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
@@ -485,7 +1293,43 @@
},
/turf/closed/wall/r_wall,
/area/ai_monitored/turret_protected/AIsatextAP)
-"abb" = (
+"acR" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on,
+/turf/open/floor/plasteel/black,
+/area/wreck/ai)
+"acS" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/black,
+/area/wreck/ai)
+"acT" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
+/turf/open/floor/plasteel/black,
+/area/wreck/ai)
+"acU" = (
+/turf/closed/wall/r_wall,
+/area/ai_monitored/turret_protected/AIsatextAS)
+"acV" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/closed/wall/r_wall,
+/area/ai_monitored/turret_protected/AIsatextAS)
+"acW" = (
+/obj/machinery/computer/station_alert,
+/turf/open/floor/plating,
+/area/ai_monitored/turret_protected/AIsatextAP)
+"acX" = (
+/obj/machinery/computer/monitor,
+/obj/structure/cable/yellow,
+/turf/open/floor/plating,
+/area/ai_monitored/turret_protected/AIsatextAP)
+"acY" = (
+/obj/machinery/computer/atmos_alert,
+/turf/open/floor/plating,
+/area/ai_monitored/turret_protected/AIsatextAP)
+"acZ" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -493,47 +1337,7 @@
},
/turf/open/floor/plating,
/area/wreck/ai)
-"abc" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on,
-/turf/open/floor/plasteel/black,
-/area/wreck/ai)
-"abd" = (
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/black,
-/area/wreck/ai)
-"abe" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 10
- },
-/turf/open/floor/plating,
-/area/wreck/ai)
-"abf" = (
-/turf/closed/wall/r_wall,
-/area/ai_monitored/turret_protected/AIsatextAS)
-"abg" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/closed/wall/r_wall,
-/area/ai_monitored/turret_protected/AIsatextAS)
-"abh" = (
-/obj/machinery/computer/station_alert,
-/turf/open/floor/plating,
-/area/ai_monitored/turret_protected/AIsatextAP)
-"abi" = (
-/obj/machinery/computer/monitor,
-/obj/structure/cable/yellow,
-/turf/open/floor/plating,
-/area/ai_monitored/turret_protected/AIsatextAP)
-"abj" = (
-/obj/machinery/computer/atmos_alert,
-/turf/open/floor/plating,
-/area/ai_monitored/turret_protected/AIsatextAP)
-"abk" = (
+"ada" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -541,7 +1345,7 @@
},
/turf/open/floor/plating,
/area/wreck/ai)
-"abl" = (
+"adb" = (
/obj/machinery/door/firedoor,
/obj/structure/cable/yellow{
d1 = 1;
@@ -556,7 +1360,23 @@
dir = 8
},
/area/wreck/ai)
-"abm" = (
+"adc" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 5
+ },
+/turf/open/floor/plating,
+/area/wreck/ai)
+"add" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 10
+ },
+/turf/open/floor/plating,
+/area/wreck/ai)
+"ade" = (
/obj/structure/table/glass,
/obj/item/stack/sheet/metal,
/obj/item/stack/sheet/glass{
@@ -573,32 +1393,32 @@
},
/turf/open/floor/plating,
/area/ai_monitored/turret_protected/AIsatextAS)
-"abn" = (
+"adf" = (
/obj/machinery/light/small{
dir = 1
},
/obj/machinery/computer/rdconsole/robotics,
/turf/open/floor/plating,
/area/ai_monitored/turret_protected/AIsatextAS)
-"abo" = (
+"adg" = (
/obj/machinery/mecha_part_fabricator,
/turf/open/floor/plating,
/area/ai_monitored/turret_protected/AIsatextAS)
-"abp" = (
+"adh" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
/turf/open/floor/plating,
/area/ai_monitored/turret_protected/AIsatextAP)
-"abq" = (
+"adi" = (
/obj/structure/chair/office/dark{
dir = 1
},
/turf/open/floor/plating,
/area/ai_monitored/turret_protected/AIsatextAP)
-"abr" = (
+"adj" = (
/obj/machinery/atmospherics/components/unary/vent_pump/on,
/turf/open/floor/plating,
/area/ai_monitored/turret_protected/AIsatextAP)
-"abs" = (
+"adk" = (
/obj/structure/table,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/cable/yellow{
@@ -613,7 +1433,7 @@
/obj/machinery/recharger,
/turf/open/floor/plasteel/grimy,
/area/ai_monitored/turret_protected/aisat_interior)
-"abt" = (
+"adl" = (
/obj/structure/chair/office/dark{
dir = 1
},
@@ -624,7 +1444,7 @@
},
/turf/open/floor/plasteel/grimy,
/area/ai_monitored/turret_protected/aisat_interior)
-"abu" = (
+"adm" = (
/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
@@ -637,13 +1457,13 @@
},
/turf/open/floor/plasteel/grimy,
/area/ai_monitored/turret_protected/aisat_interior)
-"abv" = (
+"adn" = (
/obj/structure/chair/office/dark{
dir = 4
},
/turf/open/floor/plasteel/grimy,
/area/ai_monitored/turret_protected/aisat_interior)
-"abw" = (
+"ado" = (
/obj/structure/table,
/obj/item/weapon/pen,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -651,30 +1471,28 @@
dir = 4;
pixel_x = 28
},
-/obj/item/weapon/paper_bin{
- layer = 2.9
- },
+/obj/item/weapon/paper_bin,
/turf/open/floor/plasteel/grimy,
/area/ai_monitored/turret_protected/aisat_interior)
-"abx" = (
+"adp" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
/turf/open/floor/plating,
/area/ai_monitored/turret_protected/AIsatextAS)
-"aby" = (
+"adq" = (
/obj/structure/chair/office/dark{
dir = 1
},
/turf/open/floor/plating,
/area/ai_monitored/turret_protected/AIsatextAS)
-"abz" = (
+"adr" = (
/obj/machinery/atmospherics/components/unary/vent_pump/on,
/turf/open/floor/plating,
/area/ai_monitored/turret_protected/AIsatextAS)
-"abA" = (
+"ads" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating,
/area/ai_monitored/turret_protected/AIsatextAP)
-"abB" = (
+"adt" = (
/obj/machinery/camera{
c_tag = "MiniSat Maintenance Port Fore";
dir = 1;
@@ -682,13 +1500,13 @@
},
/turf/open/floor/plating,
/area/ai_monitored/turret_protected/AIsatextAP)
-"abC" = (
+"adu" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 8
},
/turf/open/floor/plating,
/area/ai_monitored/turret_protected/AIsatextAP)
-"abD" = (
+"adv" = (
/obj/machinery/door/airlock/maintenance_hatch{
name = "MiniSat Maintenance";
req_access_txt = "65"
@@ -698,7 +1516,7 @@
},
/turf/open/floor/plating,
/area/ai_monitored/turret_protected/AIsatextAP)
-"abE" = (
+"adw" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
/obj/machinery/airalarm{
dir = 1;
@@ -706,14 +1524,14 @@
},
/turf/open/floor/plasteel/grimy,
/area/ai_monitored/turret_protected/aisat_interior)
-"abF" = (
+"adx" = (
/obj/machinery/light/small,
/obj/machinery/atmospherics/components/unary/vent_pump/on{
dir = 8
},
/turf/open/floor/plasteel/grimy,
/area/ai_monitored/turret_protected/aisat_interior)
-"abG" = (
+"ady" = (
/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
@@ -721,7 +1539,7 @@
},
/turf/open/floor/plasteel/grimy,
/area/ai_monitored/turret_protected/aisat_interior)
-"abH" = (
+"adz" = (
/obj/machinery/light/small,
/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
dir = 4
@@ -740,11 +1558,11 @@
},
/turf/open/floor/plasteel/grimy,
/area/ai_monitored/turret_protected/aisat_interior)
-"abI" = (
+"adA" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
/turf/open/floor/plasteel/grimy,
/area/ai_monitored/turret_protected/aisat_interior)
-"abJ" = (
+"adB" = (
/obj/machinery/door/airlock/maintenance_hatch{
name = "MiniSat Maintenance";
req_access_txt = "65"
@@ -754,11 +1572,11 @@
},
/turf/open/floor/plating,
/area/ai_monitored/turret_protected/AIsatextAS)
-"abK" = (
+"adC" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
/turf/open/floor/plating,
/area/ai_monitored/turret_protected/AIsatextAS)
-"abL" = (
+"adD" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 4;
name = "Waste Out";
@@ -771,26 +1589,26 @@
},
/turf/open/floor/plating,
/area/ai_monitored/turret_protected/AIsatextAS)
-"abM" = (
+"adE" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plating,
/area/ai_monitored/turret_protected/AIsatextAS)
-"abN" = (
+"adF" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 9
},
/turf/closed/wall/r_wall,
/area/ai_monitored/turret_protected/AIsatextAS)
-"abO" = (
+"adG" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 6
},
/turf/closed/wall/r_wall,
/area/ai_monitored/turret_protected/AIsatextAP)
-"abP" = (
+"adH" = (
/obj/machinery/door/airlock/maintenance_hatch{
name = "MiniSat Maintenance";
req_access_txt = "65"
@@ -800,29 +1618,29 @@
},
/turf/open/floor/plating,
/area/ai_monitored/turret_protected/AIsatextAP)
-"abQ" = (
+"adI" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 6
},
/turf/closed/wall/r_wall,
/area/ai_monitored/turret_protected/AIsatextAP)
-"abR" = (
+"adJ" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
/turf/closed/wall/r_wall,
/area/ai_monitored/turret_protected/AIsatextAP)
-"abS" = (
+"adK" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 1
},
/turf/closed/wall/r_wall,
/area/ai_monitored/turret_protected/AIsatextAP)
-"abT" = (
+"adL" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/closed/wall/r_wall,
/area/ai_monitored/turret_protected/aisat_interior)
-"abU" = (
+"adM" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/hatch{
name = "MiniSat Chamber Observation";
@@ -838,26 +1656,26 @@
},
/turf/open/floor/plasteel/black,
/area/ai_monitored/turret_protected/aisat_interior)
-"abV" = (
+"adN" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/closed/wall/r_wall,
/area/ai_monitored/turret_protected/AIsatextAS)
-"abW" = (
+"adO" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/closed/wall/r_wall,
/area/ai_monitored/turret_protected/AIsatextAS)
-"abX" = (
+"adP" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 1
},
/turf/closed/wall/r_wall,
/area/ai_monitored/turret_protected/AIsatextAS)
-"abY" = (
+"adQ" = (
/obj/machinery/door/airlock/maintenance_hatch{
name = "MiniSat Maintenance";
req_access_txt = "65"
@@ -867,31 +1685,31 @@
},
/turf/open/floor/plating,
/area/ai_monitored/turret_protected/AIsatextAS)
-"abZ" = (
+"adR" = (
/obj/structure/grille,
/obj/structure/lattice,
/turf/open/space,
/area/space)
-"aca" = (
+"adS" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/closed/wall/r_wall,
/area/ai_monitored/turret_protected/AIsatextAP)
-"acb" = (
+"adT" = (
/obj/machinery/atmospherics/components/unary/vent_pump/on{
dir = 4
},
/turf/open/floor/plating,
/area/ai_monitored/turret_protected/AIsatextAP)
-"acc" = (
+"adU" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 9
},
/turf/closed/wall/r_wall,
/area/ai_monitored/turret_protected/AIsatextAP)
-"acd" = (
+"adV" = (
/turf/open/space,
/area/ai_monitored/turret_protected/AIsatextAP)
-"ace" = (
+"adW" = (
/obj/structure/lattice,
/obj/machinery/light/small{
dir = 1
@@ -904,10 +1722,10 @@
},
/turf/open/space,
/area/ai_monitored/turret_protected/AIsatextAP)
-"acf" = (
+"adX" = (
/turf/closed/wall/r_wall,
/area/ai_monitored/turret_protected/aisat_interior)
-"acg" = (
+"adY" = (
/obj/machinery/atmospherics/components/unary/vent_pump/on{
dir = 1
},
@@ -918,10 +1736,10 @@
},
/turf/open/floor/plasteel/black,
/area/ai_monitored/turret_protected/aisat_interior)
-"ach" = (
+"adZ" = (
/turf/open/space,
/area/ai_monitored/turret_protected/AIsatextAS)
-"aci" = (
+"aea" = (
/obj/structure/lattice,
/obj/machinery/light/small{
dir = 1
@@ -934,37 +1752,40 @@
},
/turf/open/space,
/area/ai_monitored/turret_protected/AIsatextAS)
-"acj" = (
+"aeb" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 5
},
/turf/closed/wall/r_wall,
/area/ai_monitored/turret_protected/AIsatextAS)
-"ack" = (
+"aec" = (
/obj/machinery/atmospherics/components/unary/vent_pump/on{
dir = 8
},
/turf/open/floor/plating,
/area/ai_monitored/turret_protected/AIsatextAS)
-"acl" = (
+"aed" = (
/obj/structure/lattice,
/obj/structure/grille/broken,
/turf/open/space,
/area/space)
-"acm" = (
+"aee" = (
+/turf/open/floor/plating,
+/area/ai_monitored/turret_protected/AIsatextAP)
+"aef" = (
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/ai_monitored/turret_protected/AIsatextAP)
-"acn" = (
+"aeg" = (
/obj/structure/lattice,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/space,
/area/ai_monitored/turret_protected/AIsatextAP)
-"aco" = (
+"aeh" = (
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/ai_monitored/turret_protected/aisat_interior)
-"acp" = (
+"aei" = (
/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
@@ -972,22 +1793,22 @@
},
/turf/open/floor/plasteel/black,
/area/ai_monitored/turret_protected/aisat_interior)
-"acq" = (
+"aej" = (
/obj/structure/lattice,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/space,
/area/ai_monitored/turret_protected/AIsatextAS)
-"acr" = (
+"aek" = (
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/ai_monitored/turret_protected/AIsatextAS)
-"acs" = (
+"ael" = (
/turf/open/floor/plating,
/area/ai_monitored/turret_protected/AIsatextAS)
-"act" = (
+"aem" = (
/turf/closed/wall/r_wall,
/area/security/prison)
-"acu" = (
+"aen" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/structure/cable{
@@ -997,7 +1818,7 @@
},
/turf/open/floor/plating,
/area/security/prison)
-"acv" = (
+"aeo" = (
/obj/machinery/hydroponics/constructable,
/obj/item/seeds/potato,
/obj/item/seeds/carrot,
@@ -1007,7 +1828,7 @@
},
/turf/open/floor/plasteel/black,
/area/security/prison)
-"acw" = (
+"aep" = (
/obj/item/weapon/cultivator,
/obj/structure/cable{
d1 = 1;
@@ -1016,7 +1837,7 @@
},
/turf/open/floor/plasteel/black,
/area/security/prison)
-"acx" = (
+"aeq" = (
/obj/machinery/hydroponics/constructable,
/obj/structure/cable{
d1 = 4;
@@ -1033,7 +1854,7 @@
},
/turf/open/floor/plasteel/black,
/area/security/prison)
-"acy" = (
+"aer" = (
/obj/item/weapon/reagent_containers/glass/bucket,
/obj/structure/cable{
d1 = 1;
@@ -1047,7 +1868,7 @@
},
/turf/open/floor/plasteel/black,
/area/security/prison)
-"acz" = (
+"aes" = (
/obj/structure/easel,
/obj/item/weapon/canvas/nineteenXnineteen,
/obj/structure/cable{
@@ -1060,7 +1881,7 @@
},
/turf/open/floor/plasteel/black,
/area/security/prison)
-"acA" = (
+"aet" = (
/obj/structure/cable{
d1 = 2;
d2 = 8;
@@ -1073,7 +1894,7 @@
},
/turf/open/floor/plasteel/black,
/area/security/prison)
-"acB" = (
+"aeu" = (
/obj/machinery/biogenerator,
/obj/structure/sign/poster/official/random{
pixel_y = 32
@@ -1082,19 +1903,19 @@
dir = 8
},
/area/security/prison)
-"acC" = (
+"aev" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
dir = 4
},
/turf/open/floor/plating,
/area/ai_monitored/turret_protected/AIsatextAP)
-"acD" = (
+"aew" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 10
},
/turf/closed/wall/r_wall,
/area/ai_monitored/turret_protected/AIsatextAP)
-"acE" = (
+"aex" = (
/obj/structure/lattice,
/obj/machinery/light/small,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -1105,7 +1926,7 @@
},
/turf/open/space,
/area/ai_monitored/turret_protected/AIsatextAP)
-"acF" = (
+"aey" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
/obj/structure/cable/yellow{
d1 = 1;
@@ -1114,7 +1935,7 @@
},
/turf/open/floor/plasteel/black,
/area/ai_monitored/turret_protected/aisat_interior)
-"acG" = (
+"aez" = (
/obj/structure/lattice,
/obj/machinery/light/small,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -1125,42 +1946,42 @@
},
/turf/open/space,
/area/ai_monitored/turret_protected/AIsatextAS)
-"acH" = (
+"aeA" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 6
},
/turf/closed/wall/r_wall,
/area/ai_monitored/turret_protected/AIsatextAS)
-"acI" = (
+"aeB" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
dir = 8
},
/turf/open/floor/plating,
/area/ai_monitored/turret_protected/AIsatextAS)
-"acJ" = (
+"aeC" = (
/obj/machinery/hydroponics/constructable,
/obj/item/seeds/grass,
/turf/open/floor/plasteel/black,
/area/security/prison)
-"acK" = (
+"aeD" = (
/obj/item/device/plant_analyzer,
/turf/open/floor/plasteel/black,
/area/security/prison)
-"acL" = (
+"aeE" = (
/obj/machinery/hydroponics/constructable,
/obj/item/seeds/sunflower,
/obj/item/seeds/poppy,
/turf/open/floor/plasteel/black,
/area/security/prison)
-"acM" = (
+"aeF" = (
/obj/machinery/holopad,
/turf/open/floor/plasteel/black,
/area/security/prison)
-"acN" = (
+"aeG" = (
/obj/item/weapon/storage/crayons,
/turf/open/floor/plasteel/black,
/area/security/prison)
-"acO" = (
+"aeH" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -1168,7 +1989,7 @@
},
/turf/open/floor/plasteel/black,
/area/security/prison)
-"acP" = (
+"aeI" = (
/obj/machinery/seed_extractor,
/obj/machinery/light{
dir = 4
@@ -1177,36 +1998,36 @@
dir = 8
},
/area/security/prison)
-"acQ" = (
+"aeJ" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 8
},
/turf/closed/wall/r_wall,
/area/ai_monitored/turret_protected/AIsatextAP)
-"acR" = (
+"aeK" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
/turf/closed/wall/r_wall,
/area/ai_monitored/turret_protected/AIsatextAP)
-"acS" = (
+"aeL" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/closed/wall/r_wall,
/area/ai_monitored/turret_protected/AIsatextAP)
-"acT" = (
+"aeM" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/closed/wall/r_wall,
/area/ai_monitored/turret_protected/AIsatextAP)
-"acU" = (
+"aeN" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/closed/wall/r_wall,
/area/ai_monitored/turret_protected/aisat_interior)
-"acV" = (
+"aeO" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/hatch{
name = "MiniSat Chamber Hallway";
@@ -1220,51 +2041,51 @@
},
/turf/open/floor/plasteel/black,
/area/ai_monitored/turret_protected/aisat_interior)
-"acW" = (
+"aeP" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 1
},
/turf/closed/wall/r_wall,
/area/ai_monitored/turret_protected/aisat_interior)
-"acX" = (
+"aeQ" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
/turf/closed/wall/r_wall,
/area/ai_monitored/turret_protected/AIsatextAS)
-"acY" = (
+"aeR" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/closed/wall/r_wall,
/area/ai_monitored/turret_protected/AIsatextAS)
-"acZ" = (
+"aeS" = (
/obj/machinery/door/airlock/maintenance_hatch{
name = "MiniSat Maintenance";
req_access_txt = "65"
},
/turf/open/floor/plating,
/area/ai_monitored/turret_protected/AIsatextAS)
-"ada" = (
+"aeT" = (
/obj/structure/bookcase,
/turf/open/floor/plasteel/black,
/area/security/prison)
-"adb" = (
+"aeU" = (
/turf/open/floor/plasteel/black,
/area/security/prison)
-"adc" = (
+"aeV" = (
/obj/effect/landmark/xeno_spawn,
/turf/open/floor/plasteel/black,
/area/security/prison)
-"add" = (
+"aeW" = (
/obj/structure/sink{
pixel_y = 30
},
/turf/open/floor/plasteel/barber,
/area/security/prison)
-"ade" = (
+"aeX" = (
/obj/machinery/washing_machine,
/turf/open/floor/plasteel/barber,
/area/security/prison)
-"adf" = (
+"aeY" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
dir = 1
},
@@ -1279,7 +2100,7 @@
},
/turf/open/floor/plating,
/area/ai_monitored/turret_protected/AIsatextAP)
-"adg" = (
+"aeZ" = (
/obj/machinery/atmospherics/components/unary/vent_pump/on{
dir = 4
},
@@ -1290,7 +2111,7 @@
},
/turf/open/floor/plating,
/area/ai_monitored/turret_protected/AIsatextAP)
-"adh" = (
+"afa" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 1
},
@@ -1309,7 +2130,7 @@
},
/turf/open/floor/plating,
/area/ai_monitored/turret_protected/AIsatextAP)
-"adi" = (
+"afb" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -1320,7 +2141,7 @@
},
/turf/open/floor/plating,
/area/ai_monitored/turret_protected/AIsatextAP)
-"adj" = (
+"afc" = (
/obj/machinery/door/airlock/maintenance_hatch{
name = "MiniSat Maintenance";
req_access_txt = "65"
@@ -1333,7 +2154,7 @@
},
/turf/open/floor/plating,
/area/ai_monitored/turret_protected/AIsatextAP)
-"adk" = (
+"afd" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 10
},
@@ -1344,7 +2165,7 @@
},
/turf/open/floor/plasteel/black,
/area/ai_monitored/turret_protected/aisat_interior)
-"adl" = (
+"afe" = (
/obj/item/weapon/twohanded/required/kirbyplants{
icon_state = "plant-09";
name = "Photosynthetic Potted plant";
@@ -1359,7 +2180,7 @@
dir = 8
},
/area/ai_monitored/turret_protected/aisat_interior)
-"adm" = (
+"aff" = (
/obj/structure/cable/yellow{
d1 = 1;
d2 = 4;
@@ -1374,7 +2195,7 @@
dir = 1
},
/area/ai_monitored/turret_protected/aisat_interior)
-"adn" = (
+"afg" = (
/obj/item/weapon/twohanded/required/kirbyplants{
icon_state = "plant-09";
name = "Photosynthetic Potted plant";
@@ -1394,7 +2215,7 @@
dir = 4
},
/area/ai_monitored/turret_protected/aisat_interior)
-"ado" = (
+"afh" = (
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
@@ -1405,7 +2226,7 @@
},
/turf/open/floor/plasteel/black,
/area/ai_monitored/turret_protected/aisat_interior)
-"adp" = (
+"afi" = (
/obj/machinery/door/airlock/maintenance_hatch{
name = "MiniSat Maintenance";
req_access_txt = "65"
@@ -1420,7 +2241,7 @@
},
/turf/open/floor/plating,
/area/ai_monitored/turret_protected/AIsatextAS)
-"adq" = (
+"afj" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -1431,7 +2252,7 @@
},
/turf/open/floor/plating,
/area/ai_monitored/turret_protected/AIsatextAS)
-"adr" = (
+"afk" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
dir = 8
},
@@ -1450,7 +2271,7 @@
},
/turf/open/floor/plating,
/area/ai_monitored/turret_protected/AIsatextAS)
-"ads" = (
+"afl" = (
/obj/machinery/atmospherics/components/unary/vent_pump/on{
dir = 1
},
@@ -1461,7 +2282,7 @@
},
/turf/open/floor/plating,
/area/ai_monitored/turret_protected/AIsatextAS)
-"adt" = (
+"afm" = (
/obj/structure/reagent_dispensers/fueltank,
/obj/structure/cable/yellow{
d2 = 8;
@@ -1474,7 +2295,7 @@
},
/turf/open/floor/plating,
/area/ai_monitored/turret_protected/AIsatextAS)
-"adu" = (
+"afn" = (
/obj/machinery/computer/libraryconsole/bookmanagement,
/obj/structure/table,
/obj/machinery/newscaster{
@@ -1482,30 +2303,30 @@
},
/turf/open/floor/plasteel/black,
/area/security/prison)
-"adv" = (
+"afo" = (
/obj/structure/chair/stool,
/turf/open/floor/plasteel/black,
/area/security/prison)
-"adw" = (
+"afp" = (
/obj/item/weapon/storage/pill_bottle/dice,
/obj/structure/table,
/turf/open/floor/plasteel/black,
/area/security/prison)
-"adx" = (
+"afq" = (
/obj/item/device/camera,
/obj/structure/table,
/turf/open/floor/plasteel/black,
/area/security/prison)
-"ady" = (
+"afr" = (
/obj/machinery/light/small,
/turf/open/floor/plasteel/barber,
/area/security/prison)
-"adz" = (
+"afs" = (
/obj/structure/table,
/obj/structure/bedsheetbin,
/turf/open/floor/plasteel/barber,
/area/security/prison)
-"adA" = (
+"aft" = (
/obj/machinery/light/small{
dir = 8
},
@@ -1514,7 +2335,7 @@
},
/turf/open/floor/plating,
/area/ai_monitored/turret_protected/AIsatextAP)
-"adB" = (
+"afu" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 4;
name = "Air Out";
@@ -1522,43 +2343,43 @@
},
/turf/open/floor/plating,
/area/ai_monitored/turret_protected/AIsatextAP)
-"adC" = (
+"afv" = (
/obj/structure/chair/stool,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 9
},
/turf/open/floor/plating,
/area/ai_monitored/turret_protected/AIsatextAP)
-"adD" = (
+"afw" = (
/obj/machinery/light/small{
dir = 8
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/black,
/area/ai_monitored/turret_protected/aisat_interior)
-"adE" = (
+"afx" = (
/turf/open/floor/plasteel/darkblue/side{
dir = 8
},
/area/ai_monitored/turret_protected/aisat_interior)
-"adF" = (
+"afy" = (
/obj/effect/landmark/start/cyborg,
/obj/item/device/radio/beacon,
/turf/open/floor/plasteel/black,
/area/ai_monitored/turret_protected/aisat_interior)
-"adG" = (
+"afz" = (
/turf/open/floor/plasteel/darkblue/side{
dir = 4
},
/area/ai_monitored/turret_protected/aisat_interior)
-"adH" = (
+"afA" = (
/obj/machinery/light/small{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/black,
/area/ai_monitored/turret_protected/aisat_interior)
-"adI" = (
+"afB" = (
/obj/structure/table,
/obj/machinery/cell_charger,
/obj/item/weapon/stock_parts/cell/high,
@@ -1568,7 +2389,7 @@
/obj/item/stack/cable_coil,
/turf/open/floor/plating,
/area/ai_monitored/turret_protected/AIsatextAS)
-"adJ" = (
+"afC" = (
/obj/machinery/light{
dir = 8
},
@@ -1577,19 +2398,19 @@
},
/turf/open/floor/plasteel/black,
/area/security/prison)
-"adK" = (
+"afD" = (
/obj/structure/chair/stool,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 10
},
/turf/open/floor/plasteel/black,
/area/security/prison)
-"adL" = (
+"afE" = (
/obj/item/toy/cards/deck,
/obj/structure/table,
/turf/open/floor/plasteel/black,
/area/security/prison)
-"adM" = (
+"afF" = (
/obj/item/weapon/paper_bin{
pixel_x = -3;
pixel_y = 7
@@ -1601,14 +2422,14 @@
},
/turf/open/floor/plasteel/black,
/area/security/prison)
-"adN" = (
+"afG" = (
/obj/structure/chair/stool,
/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
dir = 4
},
/turf/open/floor/plasteel/black,
/area/security/prison)
-"adO" = (
+"afH" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -1619,63 +2440,67 @@
},
/turf/open/floor/plasteel/black,
/area/security/prison)
-"adP" = (
+"afI" = (
/obj/machinery/computer/arcade,
/turf/open/floor/plasteel/black,
/area/security/prison)
-"adQ" = (
+"afJ" = (
+/obj/effect/landmark/carpspawn,
+/turf/open/space/basic,
+/area/space)
+"afK" = (
/obj/machinery/atmospherics/components/unary/tank/air{
dir = 1
},
/turf/open/floor/plating,
/area/ai_monitored/turret_protected/AIsatextAP)
-"adR" = (
+"afL" = (
/obj/structure/table,
/obj/item/weapon/wrench,
/obj/item/weapon/tank/internals/emergency_oxygen,
/turf/open/floor/plating,
/area/ai_monitored/turret_protected/AIsatextAP)
-"adS" = (
+"afM" = (
/obj/structure/table,
/obj/item/weapon/crowbar,
/obj/item/clothing/mask/gas,
/turf/open/floor/plating,
/area/ai_monitored/turret_protected/AIsatextAP)
-"adT" = (
+"afN" = (
/obj/machinery/teleport/hub,
/obj/effect/turf_decal/stripes/line{
dir = 5
},
/turf/open/floor/plating,
/area/ai_monitored/turret_protected/aisat_interior)
-"adU" = (
+"afO" = (
/obj/machinery/atmospherics/components/unary/vent_pump/on{
dir = 1
},
/turf/open/floor/plasteel/black,
/area/ai_monitored/turret_protected/aisat_interior)
-"adV" = (
+"afP" = (
/obj/machinery/holopad,
/mob/living/simple_animal/bot/secbot/pingsky,
/turf/open/floor/plasteel/black,
/area/ai_monitored/turret_protected/aisat_interior)
-"adW" = (
+"afQ" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
dir = 1
},
/turf/open/floor/plasteel/black,
/area/ai_monitored/turret_protected/aisat_interior)
-"adX" = (
+"afR" = (
/obj/effect/turf_decal/stripes/line{
dir = 9
},
/turf/open/floor/plating,
/area/ai_monitored/turret_protected/aisat_interior)
-"adY" = (
+"afS" = (
/obj/machinery/recharge_station,
/turf/open/floor/plating,
/area/ai_monitored/turret_protected/AIsatextAS)
-"adZ" = (
+"afT" = (
/obj/structure/rack,
/obj/item/weapon/storage/toolbox/electrical{
pixel_x = -3;
@@ -1690,46 +2515,46 @@
},
/turf/open/floor/plating,
/area/ai_monitored/turret_protected/AIsatextAS)
-"aea" = (
+"afU" = (
/turf/closed/wall,
/area/security/transfer)
-"aeb" = (
+"afV" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 6
},
/turf/closed/wall,
/area/security/transfer)
-"aec" = (
+"afW" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/closed/wall,
/area/security/transfer)
-"aed" = (
+"afX" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 1
},
/turf/closed/wall,
/area/security/transfer)
-"aee" = (
+"afY" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 10
},
/turf/closed/wall/r_wall,
/area/security/transfer)
-"aef" = (
+"afZ" = (
/obj/machinery/vending/sustenance,
/turf/open/floor/plasteel/black,
/area/security/prison)
-"aeg" = (
+"aga" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/black,
/area/security/prison)
-"aeh" = (
+"agb" = (
/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
/turf/open/floor/plasteel/black,
/area/security/prison)
-"aei" = (
+"agc" = (
/obj/machinery/light/small{
dir = 1
},
@@ -1738,24 +2563,24 @@
},
/turf/open/floor/plasteel/freezer,
/area/security/prison)
-"aej" = (
+"agd" = (
/obj/machinery/shower{
dir = 8
},
/obj/item/weapon/soap/nanotrasen,
/turf/open/floor/plasteel/freezer,
/area/security/prison)
-"aek" = (
+"age" = (
/obj/machinery/teleport/station,
/obj/effect/turf_decal/stripes/line{
dir = 4
},
/turf/open/floor/plating,
/area/ai_monitored/turret_protected/aisat_interior)
-"ael" = (
+"agf" = (
/turf/open/floor/plasteel/black,
/area/ai_monitored/turret_protected/aisat_interior)
-"aem" = (
+"agg" = (
/obj/item/device/radio/intercom{
name = "Station Intercom (General)";
pixel_y = -28
@@ -1764,7 +2589,7 @@
dir = 4
},
/area/ai_monitored/turret_protected/aisat_interior)
-"aen" = (
+"agh" = (
/obj/structure/transit_tube/station/reverse/flipped{
dir = 4
},
@@ -1773,14 +2598,14 @@
},
/turf/open/floor/plating,
/area/ai_monitored/turret_protected/aisat_interior)
-"aeo" = (
+"agi" = (
/obj/machinery/door/poddoor{
id = "executionspaceblast";
name = "blast door"
},
/turf/open/floor/plating,
/area/security/transfer)
-"aep" = (
+"agj" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
dir = 1
},
@@ -1789,7 +2614,7 @@
},
/turf/open/floor/plasteel/black,
/area/security/transfer)
-"aeq" = (
+"agk" = (
/obj/machinery/light/small{
dir = 1
},
@@ -1802,7 +2627,7 @@
},
/turf/open/floor/plasteel/black,
/area/security/transfer)
-"aer" = (
+"agl" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
dir = 1
},
@@ -1811,15 +2636,15 @@
},
/turf/open/floor/plasteel/black,
/area/security/transfer)
-"aes" = (
+"agm" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/closed/wall/r_wall,
/area/security/transfer)
-"aet" = (
+"agn" = (
/obj/machinery/vending/cola,
/turf/open/floor/plasteel/black,
/area/security/prison)
-"aeu" = (
+"ago" = (
/obj/machinery/door/window/westleft{
base_state = "right";
dir = 8;
@@ -1829,26 +2654,26 @@
},
/turf/open/floor/plasteel/freezer,
/area/security/prison)
-"aev" = (
+"agp" = (
/turf/open/floor/plasteel/freezer,
/area/security/prison)
-"aew" = (
+"agq" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/ai_monitored/turret_protected/aisat_interior)
-"aex" = (
+"agr" = (
/obj/machinery/computer/teleporter,
/obj/effect/turf_decal/stripes/line{
dir = 4
},
/turf/open/floor/plating,
/area/ai_monitored/turret_protected/aisat_interior)
-"aey" = (
+"ags" = (
/obj/machinery/light,
/turf/open/floor/plasteel/black,
/area/ai_monitored/turret_protected/aisat_interior)
-"aez" = (
+"agt" = (
/obj/machinery/door/airlock/external{
cyclelinkeddir = 2;
name = "MiniSat External Access";
@@ -1857,25 +2682,25 @@
},
/turf/open/floor/plating,
/area/ai_monitored/turret_protected/aisat_interior)
-"aeA" = (
+"agu" = (
/obj/structure/transit_tube,
/obj/effect/turf_decal/stripes/line{
dir = 8
},
/turf/open/floor/plating,
/area/ai_monitored/turret_protected/aisat_interior)
-"aeB" = (
+"agv" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
},
/turf/open/floor/plasteel/black,
/area/security/transfer)
-"aeC" = (
+"agw" = (
/obj/structure/bed,
/obj/effect/landmark/revenantspawn,
/turf/open/floor/plasteel/black,
/area/security/transfer)
-"aeD" = (
+"agx" = (
/obj/machinery/sparker{
dir = 2;
id = "executionburn";
@@ -1886,10 +2711,10 @@
},
/turf/open/floor/plasteel/black,
/area/security/transfer)
-"aeE" = (
+"agy" = (
/turf/closed/wall,
/area/security/prison)
-"aeF" = (
+"agz" = (
/obj/machinery/door/poddoor/preopen{
id = "permacell2";
name = "cell blast door"
@@ -1901,11 +2726,11 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/vault,
/area/security/prison)
-"aeG" = (
+"agA" = (
/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
/turf/closed/wall,
/area/security/prison)
-"aeH" = (
+"agB" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -1921,14 +2746,14 @@
},
/turf/open/floor/plasteel/vault,
/area/security/prison)
-"aeI" = (
+"agC" = (
/obj/machinery/door/airlock{
name = "Unisex Restroom";
req_access_txt = "0"
},
/turf/open/floor/plasteel/freezer,
/area/security/prison)
-"aeJ" = (
+"agD" = (
/obj/machinery/light/small{
dir = 8
},
@@ -1948,25 +2773,25 @@
},
/turf/open/floor/plating,
/area/ai_monitored/turret_protected/aisat_interior)
-"aeK" = (
+"agE" = (
/obj/structure/window/reinforced/fulltile,
/obj/structure/transit_tube,
/turf/open/floor/plating,
/area/ai_monitored/turret_protected/aisat_interior)
-"aeL" = (
+"agF" = (
/obj/machinery/atmospherics/components/unary/vent_pump/on,
/obj/effect/turf_decal/stripes/line{
dir = 10
},
/turf/open/floor/plasteel/black,
/area/security/transfer)
-"aeM" = (
+"agG" = (
/obj/effect/turf_decal/stripes/line{
dir = 2
},
/turf/open/floor/plasteel/black,
/area/security/transfer)
-"aeN" = (
+"agH" = (
/obj/machinery/atmospherics/components/unary/outlet_injector/on{
dir = 2
},
@@ -1975,7 +2800,7 @@
},
/turf/open/floor/plasteel/black,
/area/security/transfer)
-"aeO" = (
+"agI" = (
/obj/structure/bed,
/obj/machinery/camera{
c_tag = "Permabrig Cell 2";
@@ -1993,13 +2818,13 @@
},
/turf/open/floor/plasteel/floorgrime,
/area/security/prison)
-"aeP" = (
+"agJ" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 8
},
/turf/open/floor/plasteel/floorgrime,
/area/security/prison)
-"aeQ" = (
+"agK" = (
/obj/machinery/light/small{
dir = 1
},
@@ -2017,7 +2842,7 @@
/obj/structure/chair,
/turf/open/floor/plasteel/floorgrime,
/area/security/prison)
-"aeR" = (
+"agL" = (
/obj/structure/bed,
/obj/machinery/camera{
c_tag = "Permabrig Cell 1";
@@ -2035,7 +2860,7 @@
},
/turf/open/floor/plasteel/floorgrime,
/area/security/prison)
-"aeS" = (
+"agM" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -2046,7 +2871,7 @@
},
/turf/open/floor/plasteel/floorgrime,
/area/security/prison)
-"aeT" = (
+"agN" = (
/obj/machinery/light/small{
dir = 1
},
@@ -2064,7 +2889,7 @@
/obj/structure/chair,
/turf/open/floor/plasteel/floorgrime,
/area/security/prison)
-"aeU" = (
+"agO" = (
/obj/structure/sink{
dir = 8;
pixel_x = -12;
@@ -2075,19 +2900,15 @@
},
/turf/open/floor/plasteel/freezer,
/area/security/prison)
-"aeV" = (
-/obj/structure/grille,
-/turf/open/space,
-/area/space)
-"aeW" = (
+"agP" = (
/turf/closed/wall,
/area/security/main)
-"aeX" = (
+"agQ" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/security/main)
-"aeY" = (
+"agR" = (
/obj/machinery/door/airlock/external{
cyclelinkeddir = 1;
name = "MiniSat External Access";
@@ -2096,11 +2917,12 @@
},
/turf/open/floor/plating,
/area/ai_monitored/turret_protected/aisat_interior)
-"aeZ" = (
+"agS" = (
/obj/structure/transit_tube,
-/turf/open/floor/plating/airless,
+/obj/structure/lattice/catwalk,
+/turf/open/space/basic,
/area/space)
-"afa" = (
+"agT" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/door/poddoor/preopen{
@@ -2112,7 +2934,7 @@
/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
/turf/open/floor/plating,
/area/security/transfer)
-"afb" = (
+"agU" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/door/poddoor/preopen{
@@ -2123,7 +2945,7 @@
/obj/machinery/door/firedoor,
/turf/open/floor/plating,
/area/security/transfer)
-"afc" = (
+"agV" = (
/obj/machinery/door/poddoor/preopen{
id = "executionfireblast";
layer = 2.9;
@@ -2140,7 +2962,7 @@
dir = 8
},
/area/security/transfer)
-"afd" = (
+"agW" = (
/obj/machinery/flasher{
id = "PCell 2";
pixel_x = -28
@@ -2148,17 +2970,17 @@
/obj/machinery/atmospherics/components/unary/vent_pump/on,
/turf/open/floor/plasteel/floorgrime,
/area/security/prison)
-"afe" = (
+"agX" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/floorgrime,
/area/security/prison)
-"aff" = (
+"agY" = (
/obj/structure/table,
/obj/item/weapon/paper,
/obj/item/weapon/pen,
/turf/open/floor/plasteel/floorgrime,
/area/security/prison)
-"afg" = (
+"agZ" = (
/obj/machinery/flasher{
id = "PCell 1";
pixel_x = -28
@@ -2166,7 +2988,7 @@
/obj/machinery/atmospherics/components/unary/vent_pump/on,
/turf/open/floor/plasteel/floorgrime,
/area/security/prison)
-"afh" = (
+"aha" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -2175,21 +2997,21 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/floorgrime,
/area/security/prison)
-"afi" = (
+"ahb" = (
/obj/structure/toilet{
- dir = 1
+ dir = 8
},
/turf/open/floor/plasteel/freezer,
/area/security/prison)
-"afj" = (
+"ahc" = (
/obj/structure/closet/wardrobe/red,
/turf/open/floor/plasteel/showroomfloor,
/area/security/main)
-"afk" = (
+"ahd" = (
/obj/structure/closet/secure_closet/security/sec,
/turf/open/floor/plasteel/showroomfloor,
/area/security/main)
-"afl" = (
+"ahe" = (
/obj/structure/closet/secure_closet/security/sec,
/obj/machinery/camera{
c_tag = "Brig Equipment Room";
@@ -2201,15 +3023,15 @@
},
/turf/open/floor/plasteel/showroomfloor,
/area/security/main)
-"afm" = (
+"ahf" = (
/obj/machinery/vending/security,
/turf/open/floor/plasteel/showroomfloor,
/area/security/main)
-"afn" = (
+"ahg" = (
/obj/machinery/suit_storage_unit/security,
/turf/open/floor/plasteel/showroomfloor,
/area/security/main)
-"afo" = (
+"ahh" = (
/obj/structure/lattice/catwalk,
/obj/structure/showcase{
density = 0;
@@ -2222,11 +3044,11 @@
},
/turf/open/space,
/area/space)
-"afp" = (
+"ahi" = (
/obj/structure/lattice/catwalk,
/turf/open/space,
/area/space)
-"afq" = (
+"ahj" = (
/obj/item/device/radio/intercom{
freerange = 0;
frequency = 1459;
@@ -2242,7 +3064,7 @@
/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
/turf/open/floor/plasteel/black,
/area/security/transfer)
-"afr" = (
+"ahk" = (
/obj/structure/table,
/obj/item/weapon/folder/red{
pixel_x = 3
@@ -2252,7 +3074,7 @@
},
/turf/open/floor/plasteel/black,
/area/security/transfer)
-"afs" = (
+"ahl" = (
/obj/machinery/button/flasher{
id = "executionflash";
pixel_x = 24;
@@ -2268,7 +3090,7 @@
/obj/machinery/atmospherics/pipe/simple/general/hidden,
/turf/open/floor/plasteel/black,
/area/security/transfer)
-"aft" = (
+"ahm" = (
/obj/machinery/door/airlock/glass_security{
name = "Long-Term Cell 2";
req_access_txt = "2"
@@ -2276,19 +3098,19 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/floorgrime,
/area/security/prison)
-"afu" = (
+"ahn" = (
/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
dir = 5
},
/turf/closed/wall,
/area/security/prison)
-"afv" = (
+"aho" = (
/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
dir = 4
},
/turf/closed/wall,
/area/security/prison)
-"afw" = (
+"ahp" = (
/obj/machinery/door/airlock/glass_security{
name = "Long-Term Cell 1";
req_access_txt = "2"
@@ -2301,14 +3123,28 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/floorgrime,
/area/security/prison)
-"afx" = (
+"ahq" = (
/turf/open/floor/plasteel/showroomfloor,
/area/security/main)
-"afy" = (
-/obj/structure/transit_tube/crossing,
-/turf/open/floor/plating/airless,
+"ahr" = (
+/obj/structure/lattice,
+/obj/machinery/camera/motion{
+ c_tag = "MiniSat Entrance";
+ dir = 2;
+ network = list("MiniSat")
+ },
+/turf/open/space,
/area/space)
-"afz" = (
+"ahs" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/transit_tube,
+/turf/open/space/basic,
+/area/space)
+"aht" = (
+/obj/structure/lattice,
+/turf/open/space/basic,
+/area/space)
+"ahu" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/structure/cable{
@@ -2318,7 +3154,7 @@
},
/turf/open/floor/plating,
/area/security/transfer)
-"afA" = (
+"ahv" = (
/obj/machinery/portable_atmospherics/canister/nitrous_oxide,
/obj/machinery/atmospherics/components/unary/portables_connector/visible,
/obj/effect/turf_decal/stripes/line{
@@ -2326,7 +3162,7 @@
},
/turf/open/floor/plating,
/area/security/transfer)
-"afB" = (
+"ahw" = (
/obj/structure/window/reinforced{
dir = 4
},
@@ -2337,19 +3173,19 @@
},
/turf/open/floor/plating,
/area/security/transfer)
-"afC" = (
+"ahx" = (
/obj/structure/table,
/obj/item/device/flashlight/lamp,
/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
/turf/open/floor/plasteel/black,
/area/security/transfer)
-"afD" = (
+"ahy" = (
/obj/structure/chair{
dir = 1
},
/turf/open/floor/plasteel/black,
/area/security/transfer)
-"afE" = (
+"ahz" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
dir = 4
},
@@ -2368,17 +3204,17 @@
/obj/machinery/atmospherics/pipe/simple/general/hidden,
/turf/open/floor/plasteel/black,
/area/security/transfer)
-"afF" = (
+"ahA" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
/turf/closed/wall/r_wall,
/area/security/transfer)
-"afG" = (
+"ahB" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel/red,
/area/security/prison)
-"afH" = (
+"ahC" = (
/obj/machinery/light{
dir = 1
},
@@ -2402,13 +3238,13 @@
dir = 5
},
/area/security/prison)
-"afI" = (
+"ahD" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
/turf/open/floor/plasteel/red/side{
dir = 5
},
/area/security/prison)
-"afJ" = (
+"ahE" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -2416,7 +3252,7 @@
dir = 5
},
/area/security/prison)
-"afK" = (
+"ahF" = (
/obj/machinery/camera{
c_tag = "Brig Prison Hallway";
network = list("SS13","Prison")
@@ -2434,7 +3270,7 @@
dir = 5
},
/area/security/prison)
-"afL" = (
+"ahG" = (
/obj/structure/cable{
d1 = 2;
d2 = 4;
@@ -2460,7 +3296,7 @@
dir = 5
},
/area/security/prison)
-"afM" = (
+"ahH" = (
/obj/structure/cable{
d1 = 1;
d2 = 8;
@@ -2478,7 +3314,7 @@
dir = 5
},
/area/security/prison)
-"afN" = (
+"ahI" = (
/obj/machinery/light{
dir = 1
},
@@ -2491,7 +3327,7 @@
dir = 5
},
/area/security/prison)
-"afO" = (
+"ahJ" = (
/obj/machinery/power/apc{
cell_type = 5000;
dir = 1;
@@ -2507,15 +3343,15 @@
dir = 5
},
/area/security/prison)
-"afP" = (
+"ahK" = (
/obj/structure/table,
/obj/item/weapon/melee/chainofcommand,
/turf/open/floor/plasteel/red,
/area/security/prison)
-"afQ" = (
+"ahL" = (
/turf/closed/wall/r_wall,
/area/security/armory)
-"afR" = (
+"ahM" = (
/obj/machinery/light{
dir = 8
},
@@ -2524,25 +3360,25 @@
},
/turf/open/floor/plasteel/showroomfloor,
/area/security/main)
-"afS" = (
+"ahN" = (
/obj/machinery/atmospherics/components/unary/vent_pump/on{
dir = 8
},
/turf/open/floor/plasteel/showroomfloor,
/area/security/main)
-"afT" = (
+"ahO" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 6
},
/turf/open/floor/plasteel/showroomfloor,
/area/security/main)
-"afU" = (
+"ahP" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
dir = 8
},
/turf/open/floor/plasteel/showroomfloor,
/area/security/main)
-"afV" = (
+"ahQ" = (
/obj/machinery/light{
dir = 4
},
@@ -2551,7 +3387,22 @@
},
/turf/open/floor/plasteel/showroomfloor,
/area/security/main)
-"afW" = (
+"ahR" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/transit_tube/crossing,
+/turf/open/space/basic,
+/area/space)
+"ahS" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable{
+ icon_state = "0-4";
+ d2 = 4
+ },
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/security/transfer)
+"ahT" = (
/obj/machinery/atmospherics/pipe/manifold/general/visible{
dir = 8
},
@@ -2569,7 +3420,7 @@
},
/turf/open/floor/plating,
/area/security/transfer)
-"afX" = (
+"ahU" = (
/obj/structure/window/reinforced{
dir = 4
},
@@ -2584,7 +3435,7 @@
},
/turf/open/floor/plating,
/area/security/transfer)
-"afY" = (
+"ahV" = (
/obj/structure/rack,
/obj/item/weapon/tank/internals/anesthetic{
pixel_x = -3;
@@ -2605,7 +3456,7 @@
dir = 8
},
/area/security/transfer)
-"afZ" = (
+"ahW" = (
/obj/structure/cable{
d1 = 2;
d2 = 4;
@@ -2621,7 +3472,7 @@
},
/turf/open/floor/plasteel/black,
/area/security/transfer)
-"aga" = (
+"ahX" = (
/obj/machinery/atmospherics/pipe/simple/general/hidden,
/obj/structure/cable{
d1 = 4;
@@ -2633,7 +3484,7 @@
},
/turf/open/floor/plasteel/black,
/area/security/transfer)
-"agb" = (
+"ahY" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -2653,7 +3504,7 @@
},
/turf/open/floor/plasteel/black,
/area/security/transfer)
-"agc" = (
+"ahZ" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -2666,7 +3517,7 @@
dir = 8
},
/area/security/prison)
-"agd" = (
+"aia" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -2677,7 +3528,7 @@
},
/turf/open/floor/plasteel,
/area/security/prison)
-"age" = (
+"aib" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -2686,7 +3537,7 @@
/obj/machinery/atmospherics/components/unary/vent_pump/on,
/turf/open/floor/plasteel,
/area/security/prison)
-"agf" = (
+"aic" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -2694,7 +3545,7 @@
},
/turf/open/floor/plasteel,
/area/security/prison)
-"agg" = (
+"aid" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -2708,22 +3559,22 @@
/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
/turf/open/floor/plasteel,
/area/security/prison)
-"agh" = (
+"aie" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 8
},
/turf/open/floor/plasteel,
/area/security/prison)
-"agi" = (
+"aif" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
dir = 8
},
/turf/open/floor/plasteel,
/area/security/prison)
-"agj" = (
+"aig" = (
/turf/open/floor/plasteel,
/area/security/prison)
-"agk" = (
+"aih" = (
/obj/structure/table,
/obj/item/weapon/razor{
pixel_x = -6
@@ -2736,7 +3587,7 @@
},
/turf/open/floor/plasteel/red,
/area/security/prison)
-"agl" = (
+"aii" = (
/obj/structure/table,
/obj/item/weapon/storage/box/chemimp{
pixel_x = 6
@@ -2746,18 +3597,14 @@
},
/turf/open/floor/plasteel/black,
/area/security/armory)
-"agm" = (
-/obj/structure/closet/secure_closet{
- anchored = 1;
- name = "Contraband Locker";
- req_access_txt = "3"
- },
+"aij" = (
+/obj/structure/closet/secure_closet/contraband/armory,
/obj/item/weapon/book/codex_gigas,
/obj/item/weapon/poster/random_contraband,
/obj/item/weapon/grenade/smokebomb,
/turf/open/floor/plasteel/black,
/area/security/armory)
-"agn" = (
+"aik" = (
/obj/structure/closet/secure_closet/lethalshots,
/obj/machinery/camera/motion{
c_tag = "Armory Motion Sensor";
@@ -2766,11 +3613,11 @@
},
/turf/open/floor/plasteel/black,
/area/security/armory)
-"ago" = (
+"ail" = (
/obj/vehicle/secway,
/turf/open/floor/plasteel/black,
/area/security/armory)
-"agp" = (
+"aim" = (
/obj/item/weapon/grenade/barrier{
pixel_x = 4
},
@@ -2781,32 +3628,40 @@
/obj/structure/table,
/turf/open/floor/plasteel/black,
/area/security/armory)
-"agq" = (
+"ain" = (
/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
/turf/open/floor/plasteel/showroomfloor,
/area/security/main)
-"agr" = (
+"aio" = (
+/obj/structure/closet/l3closet,
+/turf/open/floor/plasteel/showroomfloor,
+/area/security/main)
+"aip" = (
+/obj/structure/closet/bombcloset,
+/turf/open/floor/plasteel/showroomfloor,
+/area/security/main)
+"aiq" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/showroomfloor,
/area/security/main)
-"ags" = (
+"air" = (
/obj/vehicle/secway,
/obj/item/key/security,
/turf/open/floor/plasteel/showroomfloor,
/area/security/main)
-"agt" = (
+"ais" = (
/obj/structure/tank_dispenser/oxygen,
/turf/open/floor/plasteel/showroomfloor,
/area/security/main)
-"agu" = (
+"ait" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/maintenance/department/security/brig)
-"agv" = (
+"aiu" = (
/turf/closed/wall,
/area/maintenance/department/security/brig)
-"agw" = (
+"aiv" = (
/obj/machinery/atmospherics/pipe/simple/general/visible{
dir = 5
},
@@ -2815,7 +3670,7 @@
},
/turf/open/floor/plating,
/area/security/transfer)
-"agx" = (
+"aiw" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 4;
layer = 2.4
@@ -2830,13 +3685,13 @@
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plating,
/area/security/transfer)
-"agy" = (
+"aix" = (
/obj/machinery/atmospherics/pipe/simple/general/hidden{
dir = 4
},
/turf/open/floor/plasteel/black,
/area/security/transfer)
-"agz" = (
+"aiy" = (
/obj/machinery/atmospherics/components/unary/vent_pump/on{
dir = 1
},
@@ -2850,7 +3705,7 @@
},
/turf/open/floor/plasteel/black,
/area/security/transfer)
-"agA" = (
+"aiz" = (
/obj/machinery/light_switch{
pixel_x = 25
},
@@ -2859,13 +3714,13 @@
},
/turf/open/floor/plasteel/black,
/area/security/transfer)
-"agB" = (
+"aiA" = (
/turf/closed/wall/r_wall,
/area/security/transfer)
-"agC" = (
+"aiB" = (
/turf/open/floor/plasteel/red,
/area/security/prison)
-"agD" = (
+"aiC" = (
/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
dir = 5
},
@@ -2873,13 +3728,13 @@
dir = 6
},
/area/security/prison)
-"agE" = (
+"aiD" = (
/obj/machinery/atmospherics/pipe/manifold/cyan/hidden,
/turf/open/floor/plasteel/red/side{
dir = 6
},
/area/security/prison)
-"agF" = (
+"aiE" = (
/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
dir = 4
},
@@ -2887,7 +3742,7 @@
dir = 6
},
/area/security/prison)
-"agG" = (
+"aiF" = (
/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
dir = 1
},
@@ -2895,7 +3750,7 @@
dir = 6
},
/area/security/prison)
-"agH" = (
+"aiG" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -2908,18 +3763,18 @@
dir = 6
},
/area/security/prison)
-"agI" = (
+"aiH" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/red/side{
dir = 6
},
/area/security/prison)
-"agJ" = (
+"aiI" = (
/turf/open/floor/plasteel/red/side{
dir = 6
},
/area/security/prison)
-"agK" = (
+"aiJ" = (
/obj/machinery/airalarm{
dir = 1;
pixel_y = -22
@@ -2928,12 +3783,12 @@
dir = 6
},
/area/security/prison)
-"agL" = (
+"aiK" = (
/obj/structure/table,
/obj/item/device/electropack,
/turf/open/floor/plasteel/red,
/area/security/prison)
-"agM" = (
+"aiL" = (
/obj/structure/table,
/obj/item/weapon/storage/box/flashbangs{
pixel_x = 6;
@@ -2948,10 +3803,10 @@
},
/turf/open/floor/plasteel/black,
/area/security/armory)
-"agN" = (
+"aiM" = (
/turf/open/floor/plasteel/black,
/area/security/armory)
-"agO" = (
+"aiN" = (
/obj/structure/cable{
d1 = 2;
d2 = 4;
@@ -2959,7 +3814,7 @@
},
/turf/open/floor/plasteel/black,
/area/security/armory)
-"agP" = (
+"aiO" = (
/obj/structure/table,
/obj/item/weapon/storage/box/firingpins,
/obj/item/weapon/storage/box/firingpins,
@@ -2976,7 +3831,7 @@
},
/turf/open/floor/plasteel/black,
/area/security/armory)
-"agQ" = (
+"aiP" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/security{
name = "Equipment Room";
@@ -2987,7 +3842,7 @@
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
/area/security/main)
-"agR" = (
+"aiQ" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/security{
name = "Equipment Room";
@@ -2998,40 +3853,46 @@
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
/area/security/main)
-"agS" = (
+"aiR" = (
/turf/closed/wall,
/area/crew_quarters/heads/hos)
-"agT" = (
+"aiS" = (
/turf/closed/wall,
/area/maintenance/department/crew_quarters/dorms)
-"agU" = (
+"aiT" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/maintenance/department/crew_quarters/dorms)
-"agV" = (
+"aiU" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/sign/barsign,
+/turf/open/floor/plating,
+/area/maintenance/department/crew_quarters/dorms)
+"aiV" = (
/obj/structure/table,
/obj/machinery/microwave,
/turf/open/floor/plating,
/area/maintenance/department/security/brig)
-"agW" = (
+"aiW" = (
/obj/structure/table,
/obj/structure/bedsheetbin,
/turf/open/floor/plating,
/area/maintenance/department/security/brig)
-"agX" = (
+"aiX" = (
/obj/structure/sink/kitchen{
pixel_y = 28
},
/obj/item/weapon/reagent_containers/glass/beaker,
/turf/open/floor/plating,
/area/maintenance/department/security/brig)
-"agY" = (
+"aiY" = (
/obj/structure/table,
/obj/item/device/flashlight/lamp,
/turf/open/floor/plating,
/area/maintenance/department/security/brig)
-"agZ" = (
+"aiZ" = (
/obj/structure/table,
/obj/item/weapon/storage/box/bodybags,
/obj/item/weapon/pen,
@@ -3045,7 +3906,7 @@
},
/turf/open/floor/plasteel/black,
/area/security/transfer)
-"aha" = (
+"aja" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -3058,7 +3919,7 @@
},
/turf/open/floor/plasteel/black,
/area/security/transfer)
-"ahb" = (
+"ajb" = (
/obj/structure/closet/secure_closet/injection,
/obj/machinery/power/apc{
dir = 4;
@@ -3071,27 +3932,20 @@
},
/turf/open/floor/plasteel/black,
/area/security/transfer)
-"ahc" = (
-/obj/structure/closet/secure_closet/brig{
- anchored = 1
- },
+"ajc" = (
+/obj/structure/closet/secure_closet/brig,
/turf/open/floor/plasteel/black,
/area/security/prison)
-"ahd" = (
+"ajd" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass_security{
name = "Prison Wing";
req_access_txt = "1"
},
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
/turf/open/floor/plasteel/red,
/area/security/prison)
-"ahe" = (
+"aje" = (
/obj/structure/cable{
icon_state = "0-2";
d2 = 2
@@ -3101,7 +3955,7 @@
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/security/prison)
-"ahf" = (
+"ajf" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass_security{
name = "Prison Wing";
@@ -3110,13 +3964,14 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/red,
/area/security/prison)
-"ahg" = (
+"ajg" = (
/obj/structure/rack,
/obj/item/weapon/gun/energy/ionrifle,
/obj/item/weapon/gun/energy/temperature/security,
/obj/item/clothing/suit/armor/laserproof,
/obj/machinery/light{
- dir = 8
+ dir = 8;
+ light_color = "#e8eaff"
},
/obj/machinery/airalarm{
dir = 4;
@@ -3124,7 +3979,7 @@
},
/turf/open/floor/plasteel/black,
/area/security/armory)
-"ahh" = (
+"ajh" = (
/obj/structure/rack,
/obj/item/clothing/suit/armor/riot{
pixel_x = -3;
@@ -3155,7 +4010,7 @@
},
/turf/open/floor/plasteel/black,
/area/security/armory)
-"ahi" = (
+"aji" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -3163,7 +4018,7 @@
},
/turf/open/floor/plasteel/black,
/area/security/armory)
-"ahj" = (
+"ajj" = (
/obj/structure/rack,
/obj/item/weapon/storage/box/rubbershot{
pixel_x = -3;
@@ -3184,19 +4039,20 @@
pixel_y = -3
},
/obj/machinery/light{
- dir = 4
+ dir = 4;
+ light_color = "#e8eaff"
},
/obj/structure/sign/nosmoking_2{
pixel_x = 32
},
/turf/open/floor/plasteel/black,
/area/security/armory)
-"ahk" = (
+"ajk" = (
/obj/effect/landmark/start/security_officer,
/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
/turf/open/floor/plasteel/red,
/area/security/main)
-"ahl" = (
+"ajl" = (
/obj/structure/filingcabinet,
/obj/machinery/requests_console{
department = "Security";
@@ -3207,7 +4063,7 @@
dir = 1
},
/area/security/main)
-"ahm" = (
+"ajm" = (
/obj/structure/table,
/obj/item/weapon/storage/fancy/donut_box{
pixel_y = 2
@@ -3219,7 +4075,7 @@
dir = 1
},
/area/security/main)
-"ahn" = (
+"ajn" = (
/obj/structure/table,
/obj/structure/sign/goldenplaque{
pixel_y = 32
@@ -3235,7 +4091,7 @@
dir = 1
},
/area/security/main)
-"aho" = (
+"ajo" = (
/obj/machinery/vending/coffee,
/obj/machinery/status_display{
density = 0;
@@ -3246,7 +4102,7 @@
dir = 1
},
/area/security/main)
-"ahp" = (
+"ajp" = (
/obj/machinery/photocopier,
/obj/machinery/computer/security/telescreen/entertainment{
pixel_y = 32
@@ -3255,7 +4111,7 @@
dir = 1
},
/area/security/main)
-"ahq" = (
+"ajq" = (
/obj/effect/landmark/start/security_officer,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/reagent_dispensers/peppertank{
@@ -3263,43 +4119,86 @@
},
/turf/open/floor/plasteel/red,
/area/security/main)
-"ahr" = (
+"ajr" = (
/obj/item/weapon/reagent_containers/food/snacks/donut,
/turf/open/floor/plating,
/area/crew_quarters/heads/hos)
-"ahs" = (
+"ajs" = (
+/turf/closed/wall/r_wall,
+/area/crew_quarters/heads/hos)
+"ajt" = (
/obj/structure/table,
/obj/machinery/chem_dispenser/drinks/beer,
/turf/open/floor/plating,
/area/maintenance/department/crew_quarters/dorms)
-"aht" = (
+"aju" = (
/turf/open/floor/plating{
broken = 1;
icon_state = "platingdmg3"
},
/area/maintenance/department/crew_quarters/dorms)
-"ahu" = (
+"ajv" = (
/turf/open/floor/plating,
/area/maintenance/department/crew_quarters/dorms)
-"ahv" = (
+"ajw" = (
/obj/machinery/vending/boozeomat{
products = list(/obj/item/weapon/reagent_containers/food/drinks/bottle/whiskey = 1, /obj/item/weapon/reagent_containers/food/drinks/bottle/absinthe = 1, /obj/item/weapon/reagent_containers/food/drinks/bottle/limejuice = 1, /obj/item/weapon/reagent_containers/food/drinks/bottle/cream = 1, /obj/item/weapon/reagent_containers/food/drinks/soda_cans/tonic = 1, /obj/item/weapon/reagent_containers/food/drinks/drinkingglass = 10, /obj/item/weapon/reagent_containers/food/drinks/ice = 3, /obj/item/weapon/reagent_containers/food/drinks/drinkingglass/shotglass = 6, /obj/item/weapon/reagent_containers/food/drinks/flask = 1);
req_access_txt = "0"
},
/turf/open/floor/plasteel/bar,
/area/maintenance/department/crew_quarters/dorms)
-"ahw" = (
+"ajx" = (
+/obj/machinery/door/poddoor/shutters{
+ id = "supplybridge"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/crew_quarters/dorms)
+"ajy" = (
+/obj/machinery/door/poddoor/shutters{
+ id = "supplybridge"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/crew_quarters/dorms)
+"ajz" = (
+/obj/machinery/door/poddoor/shutters{
+ id = "supplybridge"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/crew_quarters/dorms)
+"ajA" = (
+/obj/docking_port/stationary{
+ dheight = 9;
+ dir = 2;
+ dwidth = 5;
+ height = 24;
+ id = "syndicate_ne";
+ name = "northeast of station";
+ turf_type = /turf/open/space;
+ width = 18
+ },
+/turf/open/space,
+/area/space)
+"ajB" = (
/obj/item/weapon/storage/box/mousetraps,
/turf/open/floor/plating,
/area/maintenance/department/security/brig)
-"ahx" = (
+"ajC" = (
/obj/structure/chair/stool,
/turf/open/floor/plating,
/area/maintenance/department/security/brig)
-"ahy" = (
+"ajD" = (
/turf/open/floor/plating,
/area/maintenance/department/security/brig)
-"ahz" = (
+"ajE" = (
/obj/structure/bed,
/obj/item/weapon/bedsheet,
/obj/structure/sign/poster/contraband/random{
@@ -3307,18 +4206,18 @@
},
/turf/open/floor/plating,
/area/maintenance/department/security/brig)
-"ahA" = (
+"ajF" = (
/obj/machinery/atmospherics/components/unary/tank/oxygen,
/turf/open/floor/plating,
/area/maintenance/department/security/brig)
-"ahB" = (
+"ajG" = (
/obj/machinery/atmospherics/components/unary/tank/nitrogen,
/turf/open/floor/plating,
/area/maintenance/department/security/brig)
-"ahC" = (
+"ajH" = (
/turf/closed/wall,
/area/security/processing/cremation)
-"ahD" = (
+"ajI" = (
/obj/machinery/door/airlock/security{
aiControlDisabled = 0;
icon_state = "closed";
@@ -3336,7 +4235,7 @@
},
/turf/open/floor/plasteel/black,
/area/security/processing/cremation)
-"ahE" = (
+"ajJ" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/poddoor/preopen{
id = "Prison Gate";
@@ -3346,7 +4245,7 @@
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
/area/security/brig)
-"ahF" = (
+"ajK" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/poddoor/preopen{
id = "Prison Gate";
@@ -3360,7 +4259,7 @@
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
/area/security/brig)
-"ahG" = (
+"ajL" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/poddoor/preopen{
id = "Prison Gate";
@@ -3370,10 +4269,10 @@
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
/area/security/brig)
-"ahH" = (
+"ajM" = (
/turf/closed/wall,
/area/security/brig)
-"ahI" = (
+"ajN" = (
/obj/machinery/atmospherics/components/unary/vent_pump/on,
/obj/machinery/light/small{
dir = 1
@@ -3382,15 +4281,18 @@
dir = 9
},
/area/security/brig)
-"ahJ" = (
+"ajO" = (
/obj/structure/closet{
name = "Evidence Closet"
},
+/obj/structure/sign/poster/official/safety_report{
+ pixel_y = 32
+ },
/turf/open/floor/plasteel/red/side{
dir = 5
},
/area/security/brig)
-"ahK" = (
+"ajP" = (
/obj/structure/rack,
/obj/item/weapon/gun/energy/e_gun{
pixel_x = -3;
@@ -3404,11 +4306,11 @@
/obj/machinery/atmospherics/components/unary/vent_pump/on,
/turf/open/floor/plasteel/black,
/area/security/armory)
-"ahL" = (
+"ajQ" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
/turf/open/floor/plasteel/black,
/area/security/armory)
-"ahM" = (
+"ajR" = (
/obj/structure/rack,
/obj/item/clothing/suit/armor/bulletproof{
pixel_x = -3;
@@ -3434,7 +4336,7 @@
},
/turf/open/floor/plasteel/black,
/area/security/armory)
-"ahN" = (
+"ajS" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -3443,7 +4345,7 @@
/obj/machinery/atmospherics/components/unary/vent_pump/on,
/turf/open/floor/plasteel/black,
/area/security/armory)
-"ahO" = (
+"ajT" = (
/obj/structure/rack,
/obj/item/weapon/gun/energy/laser{
pixel_x = -3;
@@ -3456,7 +4358,7 @@
},
/turf/open/floor/plasteel/black,
/area/security/armory)
-"ahP" = (
+"ajU" = (
/obj/structure/cable{
icon_state = "0-2";
d2 = 2
@@ -3471,16 +4373,30 @@
dir = 8
},
/area/security/main)
-"ahQ" = (
+"ajV" = (
/obj/effect/landmark/start/security_officer,
/turf/open/floor/plasteel,
/area/security/main)
-"ahR" = (
+"ajW" = (
/obj/structure/chair/stool,
/obj/effect/landmark/start/security_officer,
/turf/open/floor/plasteel,
/area/security/main)
-"ahS" = (
+"ajX" = (
+/obj/effect/landmark/start/security_officer,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/security/main)
+"ajY" = (
+/obj/effect/landmark/start/security_officer,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/security/main)
+"ajZ" = (
/obj/machinery/light{
dir = 4
},
@@ -3491,14 +4407,14 @@
dir = 4
},
/area/security/main)
-"ahT" = (
+"aka" = (
/obj/machinery/suit_storage_unit/hos,
/obj/machinery/airalarm{
pixel_y = 22
},
/turf/open/floor/plasteel/black,
/area/crew_quarters/heads/hos)
-"ahU" = (
+"akb" = (
/obj/machinery/disposal/bin,
/obj/structure/disposalpipe/trunk,
/obj/structure/sign/atmosplaque{
@@ -3509,20 +4425,21 @@
},
/turf/open/floor/plasteel/black,
/area/crew_quarters/heads/hos)
-"ahV" = (
+"akc" = (
/obj/structure/table/wood,
/obj/machinery/recharger,
-/obj/machinery/light{
- dir = 1
- },
/obj/machinery/status_display{
density = 0;
layer = 4;
pixel_y = 32
},
+/obj/machinery/light{
+ dir = 1;
+ light_color = "#706891"
+ },
/turf/open/floor/plasteel/black,
/area/crew_quarters/heads/hos)
-"ahW" = (
+"akd" = (
/obj/structure/table/wood,
/obj/item/weapon/storage/box/seccarts{
pixel_x = 3;
@@ -3534,7 +4451,7 @@
},
/turf/open/floor/plasteel/black,
/area/crew_quarters/heads/hos)
-"ahX" = (
+"ake" = (
/obj/structure/closet/secure_closet/hos,
/obj/machinery/requests_console{
announcementConsole = 1;
@@ -3545,17 +4462,23 @@
},
/turf/open/floor/plasteel/black,
/area/crew_quarters/heads/hos)
-"ahY" = (
+"akf" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -24
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/crew_quarters/dorms)
+"akg" = (
/obj/structure/mineral_door/wood,
/turf/open/floor/plating,
/area/maintenance/department/crew_quarters/dorms)
-"ahZ" = (
+"akh" = (
/obj/effect/decal/cleanable/oil{
icon_state = "floor5"
},
/turf/open/floor/plating,
/area/maintenance/department/crew_quarters/dorms)
-"aia" = (
+"aki" = (
/obj/item/weapon/cigbutt/cigarbutt,
/obj/structure/sign/poster/contraband/random{
pixel_x = 32
@@ -3565,376 +4488,7 @@
icon_state = "panelscorched"
},
/area/maintenance/department/crew_quarters/dorms)
-"aib" = (
-/obj/machinery/door/poddoor/shutters{
- id = "supplybridge"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 9
- },
-/turf/open/floor/plating,
-/area/maintenance/department/crew_quarters/dorms)
-"aic" = (
-/obj/structure/window/reinforced{
- dir = 1;
- layer = 2.9
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/table/glass,
-/obj/item/weapon/gun/medbeam,
-/turf/open/floor/plating/abductor,
-/area/shuttle/abandoned)
-"aid" = (
-/obj/machinery/door/poddoor/shutters{
- id = "supplybridge"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 5
- },
-/turf/open/floor/plating,
-/area/maintenance/department/crew_quarters/dorms)
-"aie" = (
-/obj/machinery/washing_machine,
-/obj/item/device/radio/intercom{
- dir = 4;
- name = "Station Intercom (General)";
- pixel_x = -31
- },
-/turf/open/floor/plating,
-/area/maintenance/department/security/brig)
-"aif" = (
-/obj/machinery/light/small,
-/turf/open/floor/plating,
-/area/maintenance/department/security/brig)
-"aig" = (
-/obj/structure/bed,
-/obj/item/weapon/bedsheet,
-/obj/machinery/button/door{
- id = "mainthideout";
- name = "Door Bolt Control";
- normaldoorcontrol = 1;
- pixel_x = 25;
- req_access_txt = "0";
- specialfunctions = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/department/security/brig)
-"aih" = (
-/obj/machinery/atmospherics/components/trinary/mixer/flipped{
- dir = 1;
- node1_concentration = 0.2;
- node2_concentration = 0.8;
- on = 1
- },
-/turf/open/floor/plating,
-/area/maintenance/department/security/brig)
-"aii" = (
-/obj/machinery/atmospherics/pipe/manifold/general/hidden,
-/turf/open/floor/plating,
-/area/maintenance/department/security/brig)
-"aij" = (
-/obj/machinery/atmospherics/pipe/simple/general/hidden{
- dir = 9
- },
-/obj/machinery/meter,
-/obj/machinery/light/small{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/department/security/brig)
-"aik" = (
-/obj/structure/bodycontainer/crematorium,
-/obj/effect/landmark/revenantspawn,
-/obj/item/device/radio/intercom{
- dir = 0;
- name = "Station Intercom (General)";
- pixel_x = -27
- },
-/turf/open/floor/plasteel/black,
-/area/security/processing/cremation)
-"ail" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/turf/open/floor/plasteel/black,
-/area/security/processing/cremation)
-"aim" = (
-/obj/machinery/button/crematorium{
- pixel_x = 25
- },
-/obj/machinery/power/apc{
- dir = 1;
- name = "Crematorium APC";
- pixel_y = 24
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/on,
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/turf/open/floor/plasteel/black,
-/area/security/processing/cremation)
-"ain" = (
-/turf/closed/wall/r_wall,
-/area/security/brig)
-"aio" = (
-/obj/item/clothing/gloves/color/latex,
-/obj/item/clothing/mask/surgical,
-/obj/item/weapon/reagent_containers/spray/cleaner,
-/obj/structure/table/glass,
-/turf/open/floor/plasteel/whitered/side{
- dir = 9
- },
-/area/security/brig)
-"aip" = (
-/obj/item/weapon/storage/firstaid/regular{
- pixel_x = 3;
- pixel_y = 3
- },
-/obj/item/weapon/storage/firstaid/regular,
-/obj/structure/table/glass,
-/obj/machinery/airalarm{
- pixel_y = 22
- },
-/turf/open/floor/plasteel/whitered/side{
- dir = 1
- },
-/area/security/brig)
-"aiq" = (
-/obj/item/device/radio/intercom{
- freerange = 0;
- frequency = 1459;
- name = "Station Intercom (General)";
- pixel_y = 24
- },
-/obj/structure/table/glass,
-/obj/machinery/computer/med_data/laptop,
-/turf/open/floor/plasteel/whitered/side{
- dir = 1
- },
-/area/security/brig)
-"air" = (
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/machinery/iv_drip{
- density = 0
- },
-/turf/open/floor/plasteel/whitered/side{
- dir = 5
- },
-/area/security/brig)
-"ais" = (
-/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel/red/side{
- dir = 8
- },
-/area/security/brig)
-"ait" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/security/brig)
-"aiu" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/security/brig)
-"aiv" = (
-/obj/machinery/door/airlock/security{
- name = "Evidence Room";
- req_access_txt = "63"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/red,
-/area/security/brig)
-"aiw" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 9
- },
-/turf/open/floor/plasteel,
-/area/security/brig)
-"aix" = (
-/obj/structure/closet{
- name = "Evidence Closet"
- },
-/obj/machinery/camera{
- c_tag = "Brig Evidence Room";
- dir = 8
- },
-/obj/effect/landmark/revenantspawn,
-/turf/open/floor/plasteel/red/side{
- dir = 4
- },
-/area/security/brig)
-"aiy" = (
-/obj/structure/rack,
-/obj/item/weapon/gun/energy/e_gun/advtaser{
- pixel_x = -3;
- pixel_y = 3
- },
-/obj/item/weapon/gun/energy/e_gun/advtaser,
-/obj/item/weapon/gun/energy/e_gun/advtaser{
- pixel_x = 3;
- pixel_y = -3
- },
-/turf/open/floor/plasteel/black,
-/area/security/armory)
-"aiz" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/black,
-/area/security/armory)
-"aiA" = (
-/obj/effect/landmark/event_spawn,
-/mob/living/simple_animal/bot/secbot{
- arrest_type = 1;
- health = 45;
- icon_state = "secbot1";
- idcheck = 1;
- name = "Sergeant-at-Armsky";
- on = 1;
- weaponscheck = 1
- },
-/turf/open/floor/plasteel/black,
-/area/security/armory)
-"aiB" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plasteel/black,
-/area/security/armory)
-"aiC" = (
-/obj/structure/rack,
-/obj/item/weapon/gun/ballistic/shotgun/riot{
- pixel_x = -3;
- pixel_y = 3
- },
-/obj/item/weapon/gun/ballistic/shotgun/riot,
-/obj/item/weapon/gun/ballistic/shotgun/riot{
- pixel_x = 3;
- pixel_y = -3
- },
-/turf/open/floor/plasteel/black,
-/area/security/armory)
-"aiD" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/newscaster{
- pixel_x = -32
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plasteel/red/side{
- dir = 9
- },
-/area/security/main)
-"aiE" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/red/side{
- dir = 5
- },
-/area/security/main)
-"aiF" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-22"
- },
-/turf/open/floor/plasteel/black,
-/area/security/main)
-"aiG" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/turf/open/floor/plating,
-/area/crew_quarters/heads/hos)
-"aiH" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/on,
-/turf/open/floor/plasteel/darkred/corner,
-/area/crew_quarters/heads/hos)
-"aiI" = (
-/turf/open/floor/plasteel/darkred/side,
-/area/crew_quarters/heads/hos)
-"aiJ" = (
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel/darkred/side,
-/area/crew_quarters/heads/hos)
-"aiK" = (
-/obj/machinery/keycard_auth{
- pixel_x = 28;
- pixel_y = 28
- },
-/turf/open/floor/plasteel/darkred/side,
-/area/crew_quarters/heads/hos)
-"aiL" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/structure/cable{
- icon_state = "0-2";
- pixel_y = 1;
- d2 = 2
- },
-/turf/open/floor/plating,
-/area/crew_quarters/heads/hos)
-"aiM" = (
-/obj/structure/table,
-/obj/item/weapon/lighter,
-/obj/machinery/light/small{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/maintenance/department/crew_quarters/dorms)
-"aiN" = (
-/obj/structure/table,
-/obj/item/weapon/storage/fancy/cigarettes/cigars,
-/obj/item/stack/spacecash/c20,
-/turf/open/floor/plating,
-/area/maintenance/department/crew_quarters/dorms)
-"aiO" = (
-/obj/structure/table,
-/obj/item/weapon/reagent_containers/food/drinks/bottle/gin{
- pixel_y = 8
- },
-/obj/machinery/light/small{
- dir = 4
- },
-/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/shotglass,
-/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/shotglass,
-/turf/open/floor/plating,
-/area/maintenance/department/crew_quarters/dorms)
-"aiP" = (
+"akj" = (
/obj/structure/cable{
d1 = 2;
d2 = 4;
@@ -3950,7 +4504,7 @@
},
/turf/open/floor/plating,
/area/maintenance/department/crew_quarters/dorms)
-"aiQ" = (
+"akk" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -3964,7 +4518,7 @@
},
/turf/open/floor/plating,
/area/maintenance/department/crew_quarters/dorms)
-"aiR" = (
+"akl" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -3987,11 +4541,21 @@
},
/turf/open/floor/plating,
/area/maintenance/department/crew_quarters/dorms)
-"aiS" = (
-/obj/structure/chair,
-/turf/open/floor/plating/abductor,
-/area/shuttle/abandoned)
-"aiT" = (
+"akm" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/crew_quarters/dorms)
+"akn" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -4002,7 +4566,7 @@
},
/turf/open/floor/plating,
/area/maintenance/department/crew_quarters/dorms)
-"aiU" = (
+"ako" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -4014,20 +4578,30 @@
/obj/effect/landmark/xeno_spawn,
/turf/open/floor/plating,
/area/maintenance/department/crew_quarters/dorms)
-"aiV" = (
-/obj/structure/window/reinforced{
- dir = 1;
- layer = 2.9
+"akp" = (
+/obj/machinery/door/airlock/glass{
+ name = "space-bridge access"
},
-/obj/structure/window/reinforced{
+/obj/machinery/button/door{
+ id = "supplybridge";
+ name = "Space Bridge Control";
+ pixel_y = 27;
+ req_access_txt = "0"
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/obj/structure/table/glass,
-/obj/machinery/recharger,
-/obj/item/weapon/gun/energy/laser/retro,
-/turf/open/floor/plating/abductor,
-/area/shuttle/abandoned)
-"aiW" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/crew_quarters/dorms)
+"akq" = (
/obj/structure/cable{
d1 = 2;
d2 = 8;
@@ -4041,32 +4615,419 @@
},
/turf/open/floor/plating,
/area/maintenance/department/crew_quarters/dorms)
-"aiX" = (
+"akr" = (
+/obj/machinery/washing_machine,
+/obj/item/device/radio/intercom{
+ dir = 4;
+ name = "Station Intercom (General)";
+ pixel_x = -31
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/security/brig)
+"aks" = (
+/obj/machinery/light/small,
+/turf/open/floor/plating,
+/area/maintenance/department/security/brig)
+"akt" = (
+/obj/structure/bed,
+/obj/item/weapon/bedsheet,
+/obj/machinery/button/door{
+ id = "mainthideout";
+ name = "Door Bolt Control";
+ normaldoorcontrol = 1;
+ pixel_x = 25;
+ req_access_txt = "0";
+ specialfunctions = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/security/brig)
+"aku" = (
+/obj/machinery/atmospherics/components/trinary/mixer/flipped{
+ dir = 1;
+ node1_concentration = 0.2;
+ node2_concentration = 0.8;
+ on = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/security/brig)
+"akv" = (
+/obj/machinery/atmospherics/pipe/manifold/general/hidden,
+/turf/open/floor/plating,
+/area/maintenance/department/security/brig)
+"akw" = (
+/obj/machinery/atmospherics/pipe/simple/general/hidden{
+ dir = 9
+ },
+/obj/machinery/meter,
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/security/brig)
+"akx" = (
+/obj/structure/bodycontainer/crematorium,
+/obj/effect/landmark/revenantspawn,
+/obj/item/device/radio/intercom{
+ dir = 0;
+ name = "Station Intercom (General)";
+ pixel_x = -27
+ },
+/turf/open/floor/plasteel/black,
+/area/security/processing/cremation)
+"aky" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/open/floor/plasteel/black,
+/area/security/processing/cremation)
+"akz" = (
+/obj/machinery/button/crematorium{
+ pixel_x = 25
+ },
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "Crematorium APC";
+ pixel_y = 24
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on,
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/turf/open/floor/plasteel/black,
+/area/security/processing/cremation)
+"akA" = (
+/turf/closed/wall/r_wall,
+/area/security/brig)
+"akB" = (
+/obj/item/clothing/gloves/color/latex,
+/obj/item/clothing/mask/surgical,
+/obj/item/weapon/reagent_containers/spray/cleaner,
+/obj/structure/table/glass,
+/turf/open/floor/plasteel/whitered/side{
+ dir = 9
+ },
+/area/security/brig)
+"akC" = (
+/obj/item/weapon/storage/firstaid/regular{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/weapon/storage/firstaid/regular,
+/obj/structure/table/glass,
+/obj/machinery/airalarm{
+ pixel_y = 22
+ },
+/turf/open/floor/plasteel/whitered/side{
+ dir = 1
+ },
+/area/security/brig)
+"akD" = (
+/obj/item/device/radio/intercom{
+ freerange = 0;
+ frequency = 1459;
+ name = "Station Intercom (General)";
+ pixel_y = 24
+ },
+/obj/structure/table/glass,
+/obj/machinery/computer/med_data/laptop,
+/turf/open/floor/plasteel/whitered/side{
+ dir = 1
+ },
+/area/security/brig)
+"akE" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/machinery/iv_drip{
+ density = 0
+ },
+/turf/open/floor/plasteel/whitered/side{
+ dir = 5
+ },
+/area/security/brig)
+"akF" = (
+/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 8
+ },
+/area/security/brig)
+"akG" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/security/brig)
+"akH" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel,
+/area/security/brig)
+"akI" = (
+/obj/machinery/door/airlock/security{
+ name = "Evidence Room";
+ req_access_txt = "63"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/red,
+/area/security/brig)
+"akJ" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 9
+ },
+/turf/open/floor/plasteel,
+/area/security/brig)
+"akK" = (
+/obj/structure/closet{
+ name = "Evidence Closet"
+ },
+/obj/machinery/camera{
+ c_tag = "Brig Evidence Room";
+ dir = 8
+ },
+/obj/effect/landmark/revenantspawn,
+/turf/open/floor/plasteel/red/side{
+ dir = 4
+ },
+/area/security/brig)
+"akL" = (
+/obj/structure/rack,
+/obj/item/weapon/gun/energy/e_gun/advtaser{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/item/weapon/gun/energy/e_gun/advtaser,
+/obj/item/weapon/gun/energy/e_gun/advtaser{
+ pixel_x = 3;
+ pixel_y = -3
+ },
+/turf/open/floor/plasteel/black,
+/area/security/armory)
+"akM" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/black,
+/area/security/armory)
+"akN" = (
+/obj/effect/landmark/event_spawn,
+/mob/living/simple_animal/bot/secbot{
+ arrest_type = 1;
+ health = 45;
+ icon_state = "secbot1";
+ idcheck = 1;
+ name = "Sergeant-at-Armsky";
+ on = 1;
+ weaponscheck = 1
+ },
+/turf/open/floor/plasteel/black,
+/area/security/armory)
+"akO" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plasteel/black,
+/area/security/armory)
+"akP" = (
+/obj/structure/rack,
+/obj/item/weapon/gun/ballistic/shotgun/riot{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/item/weapon/gun/ballistic/shotgun/riot,
+/obj/item/weapon/gun/ballistic/shotgun/riot{
+ pixel_x = 3;
+ pixel_y = -3
+ },
+/turf/open/floor/plasteel/black,
+/area/security/armory)
+"akQ" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/newscaster{
+ pixel_x = -32
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plasteel/red/side{
+ dir = 9
+ },
+/area/security/main)
+"akR" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/red/side{
+ dir = 5
+ },
+/area/security/main)
+"akS" = (
+/obj/item/weapon/twohanded/required/kirbyplants{
+ icon_state = "plant-22"
+ },
+/turf/open/floor/plasteel/black,
+/area/security/main)
+"akT" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable{
+ icon_state = "0-4";
+ d2 = 4
+ },
+/turf/open/floor/plating,
+/area/crew_quarters/heads/hos)
+"akU" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on,
+/turf/open/floor/plasteel/darkred/corner,
+/area/crew_quarters/heads/hos)
+"akV" = (
+/obj/item/weapon/storage/secure/safe{
+ pixel_x = -22;
+ pixel_y = 32
+ },
+/turf/open/floor/plasteel/darkred/side,
+/area/crew_quarters/heads/hos)
+"akW" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel/darkred/side,
+/area/crew_quarters/heads/hos)
+"akX" = (
+/turf/open/floor/plasteel/darkred/side,
+/area/crew_quarters/heads/hos)
+"akY" = (
+/obj/machinery/keycard_auth{
+ pixel_x = 28;
+ pixel_y = 28
+ },
+/turf/open/floor/plasteel/darkred/side,
+/area/crew_quarters/heads/hos)
+"akZ" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable{
+ icon_state = "0-2";
+ pixel_y = 1;
+ d2 = 2
+ },
+/turf/open/floor/plating,
+/area/crew_quarters/heads/hos)
+"ala" = (
+/obj/structure/transit_tube/curved{
+ dir = 1
+ },
+/obj/structure/lattice/catwalk,
+/turf/open/space/basic,
+/area/space)
+"alb" = (
+/obj/structure/table,
+/obj/item/weapon/lighter,
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/crew_quarters/dorms)
+"alc" = (
+/obj/structure/table,
+/obj/item/weapon/storage/fancy/cigarettes/cigars,
+/obj/item/stack/spacecash/c20,
+/turf/open/floor/plating,
+/area/maintenance/department/crew_quarters/dorms)
+"ald" = (
+/obj/structure/table,
+/obj/item/weapon/reagent_containers/food/drinks/bottle/gin{
+ pixel_y = 8
+ },
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/shotglass,
+/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/shotglass,
+/turf/open/floor/plating,
+/area/maintenance/department/crew_quarters/dorms)
+"ale" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plating,
+/area/maintenance/department/crew_quarters/dorms)
+"alf" = (
+/obj/machinery/door/poddoor/shutters{
+ id = "supplybridge"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/crew_quarters/dorms)
+"alg" = (
+/obj/machinery/door/poddoor/shutters{
+ id = "supplybridge"
+ },
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plating,
+/area/maintenance/department/crew_quarters/dorms)
+"alh" = (
+/obj/machinery/door/poddoor/shutters{
+ id = "supplybridge"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/crew_quarters/dorms)
+"ali" = (
/obj/machinery/door/airlock{
id_tag = "mainthideout";
name = "Hideout"
},
/turf/open/floor/plating,
/area/maintenance/department/security/brig)
-"aiY" = (
+"alj" = (
/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
dir = 8
},
/obj/item/weapon/wrench,
/turf/open/floor/plating,
/area/maintenance/department/security/brig)
-"aiZ" = (
+"alk" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible{
dir = 8
},
/turf/open/floor/plating,
/area/maintenance/department/security/brig)
-"aja" = (
+"all" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible,
/obj/machinery/portable_atmospherics/canister/carbon_dioxide,
/turf/open/floor/plating,
/area/maintenance/department/security/brig)
-"ajb" = (
+"alm" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
/obj/machinery/airalarm{
dir = 4;
@@ -4074,7 +5035,7 @@
},
/turf/open/floor/plasteel/black,
/area/security/processing/cremation)
-"ajc" = (
+"aln" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -4082,7 +5043,7 @@
},
/turf/open/floor/plasteel/black,
/area/security/processing/cremation)
-"ajd" = (
+"alo" = (
/obj/machinery/light/small{
dir = 4
},
@@ -4096,13 +5057,13 @@
},
/turf/open/floor/plasteel/black,
/area/security/processing/cremation)
-"aje" = (
+"alp" = (
/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
dir = 4
},
/turf/closed/wall/r_wall,
/area/security/brig)
-"ajf" = (
+"alq" = (
/obj/item/weapon/storage/box/bodybags,
/obj/structure/extinguisher_cabinet{
pixel_x = -27
@@ -4123,7 +5084,7 @@
dir = 10
},
/area/security/brig)
-"ajg" = (
+"alr" = (
/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
dir = 4
},
@@ -4131,13 +5092,13 @@
dir = 8
},
/area/security/brig)
-"ajh" = (
+"als" = (
/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
dir = 1
},
/turf/open/floor/plasteel/white,
/area/security/brig)
-"aji" = (
+"alt" = (
/obj/machinery/door/window/westleft{
base_state = "left";
dir = 4;
@@ -4152,19 +5113,21 @@
dir = 4
},
/area/security/brig)
-"ajj" = (
+"alu" = (
/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
dir = 4
},
/turf/open/floor/plasteel,
/area/security/brig)
-"ajk" = (
+"alv" = (
/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
icon_state = "1-2"
},
/turf/open/floor/plasteel,
/area/security/brig)
-"ajl" = (
+"alw" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 8
},
@@ -4172,13 +5135,13 @@
dir = 4
},
/area/security/brig)
-"ajm" = (
+"alx" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/closed/wall,
/area/security/brig)
-"ajn" = (
+"aly" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
dir = 8
},
@@ -4187,7 +5150,7 @@
dir = 10
},
/area/security/brig)
-"ajo" = (
+"alz" = (
/obj/structure/closet{
name = "Evidence Closet"
},
@@ -4195,24 +5158,28 @@
dir = 6
},
/area/security/brig)
-"ajp" = (
+"alA" = (
/obj/machinery/flasher/portable,
/turf/open/floor/plasteel/vault{
dir = 8
},
/area/security/armory)
-"ajq" = (
+"alB" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -27
+ },
/turf/open/floor/plasteel/red/side{
dir = 8
},
/area/security/main)
-"ajr" = (
+"alC" = (
/obj/structure/table/wood,
/obj/item/device/flashlight/lamp/green{
pixel_x = -4;
@@ -4225,27 +5192,27 @@
},
/turf/open/floor/plasteel,
/area/security/main)
-"ajs" = (
+"alD" = (
/obj/machinery/computer/secure_data,
/turf/open/floor/plasteel,
/area/security/main)
-"ajt" = (
+"alE" = (
/turf/open/floor/plasteel,
/area/security/main)
-"aju" = (
+"alF" = (
/obj/machinery/computer/security,
/turf/open/floor/plasteel,
/area/security/main)
-"ajv" = (
+"alG" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/red/side{
dir = 4
},
/area/security/main)
-"ajw" = (
+"alH" = (
/turf/open/floor/plasteel/black,
/area/security/main)
-"ajx" = (
+"alI" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -4254,27 +5221,27 @@
/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
/turf/open/floor/plasteel/black,
/area/crew_quarters/heads/hos)
-"ajy" = (
+"alJ" = (
/turf/open/floor/carpet,
/area/crew_quarters/heads/hos)
-"ajz" = (
+"alK" = (
/obj/structure/chair{
dir = 4
},
/obj/structure/disposalpipe/segment,
/turf/open/floor/carpet,
/area/crew_quarters/heads/hos)
-"ajA" = (
+"alL" = (
/obj/structure/table/wood,
/obj/item/weapon/folder/red,
/obj/item/weapon/stamp/hos,
/turf/open/floor/carpet,
/area/crew_quarters/heads/hos)
-"ajB" = (
+"alM" = (
/obj/machinery/computer/secure_data,
/turf/open/floor/carpet,
/area/crew_quarters/heads/hos)
-"ajC" = (
+"alN" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/structure/cable{
@@ -4285,94 +5252,53 @@
/obj/structure/cable,
/turf/open/floor/plating,
/area/crew_quarters/heads/hos)
-"ajD" = (
+"alO" = (
+/obj/structure/transit_tube/diagonal,
+/obj/structure/lattice,
+/turf/open/space/basic,
+/area/space)
+"alP" = (
/turf/open/floor/plating{
burnt = 1;
icon_state = "panelscorched"
},
/area/maintenance/department/crew_quarters/dorms)
-"ajE" = (
+"alQ" = (
/obj/structure/chair/stool/bar,
/turf/open/floor/wood{
icon_state = "wood-broken7"
},
/area/maintenance/department/crew_quarters/dorms)
-"ajF" = (
+"alR" = (
/obj/effect/landmark/blobstart,
/obj/structure/chair/stool/bar,
/turf/open/floor/wood,
/area/maintenance/department/crew_quarters/dorms)
-"ajG" = (
+"alS" = (
/obj/structure/chair/stool/bar,
/turf/open/floor/wood,
/area/maintenance/department/crew_quarters/dorms)
-"ajH" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating,
-/area/maintenance/department/crew_quarters/dorms)
-"ajI" = (
-/obj/machinery/door/poddoor/shutters{
- id = "supplybridge"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 10
- },
-/turf/open/floor/plating,
-/area/maintenance/department/crew_quarters/dorms)
-"ajJ" = (
-/obj/machinery/door/poddoor/shutters{
- id = "supplybridge"
- },
-/obj/effect/turf_decal/stripes/line,
-/turf/open/floor/plating,
-/area/maintenance/department/crew_quarters/dorms)
-"ajK" = (
-/obj/machinery/door/poddoor/shutters{
- id = "supplybridge"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 6
- },
-/turf/open/floor/plating,
-/area/maintenance/department/crew_quarters/dorms)
-"ajL" = (
-/obj/docking_port/stationary{
- dheight = 9;
- dir = 2;
- dwidth = 5;
- height = 24;
- id = "syndicate_ne";
- name = "northeast of station";
- turf_type = /turf/open/space;
- width = 18
- },
-/turf/open/space,
-/area/space)
-"ajM" = (
+"alT" = (
/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
dir = 5
},
+/obj/machinery/portable_atmospherics/canister/nitrous_oxide,
/turf/open/floor/plating,
/area/maintenance/department/security/brig)
-"ajN" = (
+"alU" = (
/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
dir = 1
},
/obj/machinery/meter,
/turf/open/floor/plating,
/area/maintenance/department/security/brig)
-"ajO" = (
+"alV" = (
/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
dir = 9
},
/turf/open/floor/plating,
/area/maintenance/department/security/brig)
-"ajP" = (
+"alW" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/cable{
d1 = 2;
@@ -4381,11 +5307,19 @@
},
/turf/open/floor/plasteel/black,
/area/security/processing/cremation)
-"ajQ" = (
+"alX" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/open/floor/plasteel/black,
+/area/security/processing/cremation)
+"alY" = (
/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
/turf/open/floor/plasteel/black,
/area/security/processing/cremation)
-"ajR" = (
+"alZ" = (
/obj/structure/bodycontainer/morgue,
/obj/machinery/camera{
c_tag = "Brig Infirmary";
@@ -4398,7 +5332,7 @@
/obj/effect/landmark/revenantspawn,
/turf/open/floor/plasteel/black,
/area/security/brig)
-"ajS" = (
+"ama" = (
/obj/structure/cable{
d1 = 2;
d2 = 4;
@@ -4409,7 +5343,7 @@
dir = 8
},
/area/security/brig)
-"ajT" = (
+"amb" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -4420,7 +5354,7 @@
},
/turf/open/floor/plasteel/white,
/area/security/brig)
-"ajU" = (
+"amc" = (
/obj/machinery/door/window/westleft{
base_state = "right";
dir = 4;
@@ -4437,7 +5371,7 @@
dir = 4
},
/area/security/brig)
-"ajV" = (
+"amd" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -4446,7 +5380,7 @@
/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
/turf/open/floor/plasteel,
/area/security/brig)
-"ajW" = (
+"ame" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -4467,7 +5401,7 @@
},
/turf/open/floor/plasteel,
/area/security/brig)
-"ajX" = (
+"amf" = (
/obj/structure/cable{
d2 = 8;
icon_state = "0-8"
@@ -4485,10 +5419,10 @@
dir = 4
},
/area/security/brig)
-"ajY" = (
+"amg" = (
/turf/closed/wall/r_wall,
/area/security/warden)
-"ajZ" = (
+"amh" = (
/obj/structure/cable{
icon_state = "0-4";
d2 = 4
@@ -4497,7 +5431,7 @@
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/security/warden)
-"aka" = (
+"ami" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/window/southleft{
base_state = "right";
@@ -4513,7 +5447,7 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/vault,
/area/security/warden)
-"akb" = (
+"amj" = (
/obj/structure/cable{
icon_state = "0-4";
d2 = 4
@@ -4526,7 +5460,7 @@
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/security/warden)
-"akc" = (
+"amk" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/window/southleft{
base_state = "right";
@@ -4547,7 +5481,7 @@
/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
/turf/open/floor/plasteel/vault,
/area/security/warden)
-"akd" = (
+"aml" = (
/obj/structure/cable{
d1 = 2;
d2 = 8;
@@ -4555,7 +5489,7 @@
},
/turf/closed/wall/r_wall,
/area/security/warden)
-"ake" = (
+"amm" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -4581,13 +5515,13 @@
dir = 8
},
/area/security/main)
-"akf" = (
+"amn" = (
/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
dir = 4
},
/turf/open/floor/plasteel,
/area/security/main)
-"akg" = (
+"amo" = (
/obj/structure/chair/office/dark{
dir = 1
},
@@ -4597,14 +5531,14 @@
},
/turf/open/floor/plasteel,
/area/security/main)
-"akh" = (
+"amp" = (
/obj/machinery/holopad,
/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
dir = 1
},
/turf/open/floor/plasteel,
/area/security/main)
-"aki" = (
+"amq" = (
/obj/structure/chair/office/dark{
dir = 1
},
@@ -4618,7 +5552,7 @@
},
/turf/open/floor/plasteel,
/area/security/main)
-"akj" = (
+"amr" = (
/obj/structure/cable{
d1 = 2;
d2 = 4;
@@ -4635,7 +5569,7 @@
dir = 4
},
/area/security/main)
-"akk" = (
+"ams" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -4649,7 +5583,7 @@
},
/turf/open/floor/plasteel/black,
/area/security/main)
-"akl" = (
+"amt" = (
/obj/machinery/door/airlock/glass_command{
name = "Head of Security";
req_access_txt = "58"
@@ -4667,7 +5601,7 @@
},
/turf/open/floor/plasteel/black,
/area/crew_quarters/heads/hos)
-"akm" = (
+"amu" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -4691,7 +5625,7 @@
},
/turf/open/floor/plasteel/black,
/area/crew_quarters/heads/hos)
-"akn" = (
+"amv" = (
/obj/structure/cable{
d1 = 2;
d2 = 8;
@@ -4703,7 +5637,7 @@
/obj/effect/landmark/start/head_of_security,
/turf/open/floor/carpet,
/area/crew_quarters/heads/hos)
-"ako" = (
+"amw" = (
/obj/structure/chair{
dir = 4
},
@@ -4713,32 +5647,58 @@
},
/turf/open/floor/carpet,
/area/crew_quarters/heads/hos)
-"akp" = (
+"amx" = (
/obj/structure/table/wood,
/obj/item/weapon/book/manual/wiki/security_space_law,
/turf/open/floor/carpet,
/area/crew_quarters/heads/hos)
-"akq" = (
+"amy" = (
/obj/structure/chair/comfy/black{
dir = 8
},
/turf/open/floor/carpet,
/area/crew_quarters/heads/hos)
-"akr" = (
+"amz" = (
/obj/machinery/computer/security,
/turf/open/floor/carpet,
/area/crew_quarters/heads/hos)
-"aks" = (
+"amA" = (
+/obj/structure/transit_tube/curved/flipped{
+ icon_state = "curved1";
+ dir = 4
+ },
+/obj/structure/lattice/catwalk,
+/turf/open/space/basic,
+/area/space)
+"amB" = (
+/obj/structure/transit_tube/crossing/horizontal,
+/obj/structure/lattice/catwalk,
+/turf/open/space/basic,
+/area/space)
+"amC" = (
+/obj/structure/transit_tube/horizontal,
+/obj/structure/lattice/catwalk,
+/turf/open/space/basic,
+/area/space)
+"amD" = (
+/obj/structure/transit_tube/curved/flipped{
+ icon_state = "curved1";
+ dir = 8
+ },
+/obj/structure/lattice/catwalk,
+/turf/open/space/basic,
+/area/space)
+"amE" = (
/obj/item/weapon/cigbutt/roach,
/turf/open/floor/wood,
/area/maintenance/department/crew_quarters/dorms)
-"akt" = (
+"amF" = (
/turf/open/floor/wood{
broken = 1;
icon_state = "wood-broken"
},
/area/maintenance/department/crew_quarters/dorms)
-"aku" = (
+"amG" = (
/obj/effect/decal/cleanable/oil{
icon_state = "floor6"
},
@@ -4746,7 +5706,7 @@
icon_state = "wood-broken4"
},
/area/maintenance/department/crew_quarters/dorms)
-"akv" = (
+"amH" = (
/obj/machinery/door/airlock/atmos{
name = "Atmospherics Maintenance";
req_access_txt = "12;24"
@@ -4754,7 +5714,7 @@
/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
/turf/open/floor/plating,
/area/maintenance/department/security/brig)
-"akw" = (
+"amI" = (
/obj/machinery/door/airlock/maintenance{
name = "Crematorium Maintenance";
req_access_txt = "0";
@@ -4768,7 +5728,13 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating,
/area/security/processing/cremation)
-"akx" = (
+"amJ" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 6
+ },
+/turf/closed/wall,
+/area/security/processing/cremation)
+"amK" = (
/obj/machinery/door/window/eastright{
base_state = "left";
dir = 1;
@@ -4789,7 +5755,7 @@
dir = 8
},
/area/security/processing/cremation)
-"aky" = (
+"amL" = (
/obj/structure/cable{
d1 = 2;
d2 = 4;
@@ -4800,7 +5766,7 @@
},
/turf/open/floor/plasteel/black,
/area/security/brig)
-"akz" = (
+"amM" = (
/obj/structure/cable{
d1 = 1;
d2 = 8;
@@ -4811,13 +5777,13 @@
dir = 10
},
/area/security/brig)
-"akA" = (
+"amN" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel/whitered/side,
/area/security/brig)
-"akB" = (
+"amO" = (
/obj/structure/closet/crate/freezer,
/obj/structure/window/reinforced{
dir = 4;
@@ -4832,7 +5798,7 @@
dir = 6
},
/area/security/brig)
-"akC" = (
+"amP" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -4841,7 +5807,7 @@
dir = 8
},
/area/security/brig)
-"akD" = (
+"amQ" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -4852,7 +5818,7 @@
},
/turf/open/floor/plasteel,
/area/security/brig)
-"akE" = (
+"amR" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 4
},
@@ -4860,7 +5826,7 @@
dir = 4
},
/area/security/brig)
-"akF" = (
+"amS" = (
/obj/structure/closet/secure_closet/warden,
/obj/item/clothing/mask/gas/sechailer,
/obj/machinery/power/apc{
@@ -4878,14 +5844,14 @@
},
/turf/open/floor/plasteel/showroomfloor,
/area/security/warden)
-"akG" = (
+"amT" = (
/obj/machinery/computer/prisoner,
/obj/machinery/airalarm{
pixel_y = 22
},
/turf/open/floor/plasteel/showroomfloor,
/area/security/warden)
-"akH" = (
+"amU" = (
/obj/machinery/computer/security,
/obj/machinery/light{
dir = 1
@@ -4896,22 +5862,22 @@
},
/turf/open/floor/plasteel/showroomfloor,
/area/security/warden)
-"akI" = (
+"amV" = (
/obj/machinery/computer/secure_data,
/turf/open/floor/plasteel/showroomfloor,
/area/security/warden)
-"akJ" = (
+"amW" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/showroomfloor,
/area/security/warden)
-"akK" = (
+"amX" = (
/turf/open/floor/plasteel/showroomfloor,
/area/security/warden)
-"akL" = (
+"amY" = (
/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
/turf/open/floor/plasteel/showroomfloor,
/area/security/warden)
-"akM" = (
+"amZ" = (
/obj/structure/table,
/obj/machinery/recharger,
/obj/machinery/light/small{
@@ -4919,7 +5885,7 @@
},
/turf/open/floor/plasteel/showroomfloor,
/area/security/warden)
-"akN" = (
+"ana" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -4927,24 +5893,33 @@
},
/turf/closed/wall/r_wall,
/area/security/warden)
-"akO" = (
-/obj/structure/shuttle/engine/propulsion/burst{
- dir = 4
+"anb" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/abandoned)
-"akP" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plasteel/red/side{
+ dir = 8
+ },
+/area/security/main)
+"anc" = (
/obj/structure/table/wood,
/obj/machinery/recharger,
/turf/open/floor/plasteel,
/area/security/main)
-"akQ" = (
+"and" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plasteel,
+/area/security/main)
+"ane" = (
/obj/structure/table/wood,
/obj/machinery/recharger,
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel,
/area/security/main)
-"akR" = (
+"anf" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -4955,7 +5930,7 @@
dir = 4
},
/area/security/main)
-"akS" = (
+"ang" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -4963,7 +5938,7 @@
},
/turf/open/floor/plasteel/black,
/area/crew_quarters/heads/hos)
-"akT" = (
+"anh" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -4971,37 +5946,41 @@
},
/turf/open/floor/carpet,
/area/crew_quarters/heads/hos)
-"akU" = (
+"ani" = (
/obj/structure/chair{
dir = 4
},
/turf/open/floor/carpet,
/area/crew_quarters/heads/hos)
-"akV" = (
+"anj" = (
/obj/structure/table/wood,
/obj/item/weapon/phone,
/turf/open/floor/carpet,
/area/crew_quarters/heads/hos)
-"akW" = (
+"ank" = (
/obj/machinery/computer/card/minor/hos,
/turf/open/floor/carpet,
/area/crew_quarters/heads/hos)
-"akX" = (
+"anl" = (
+/obj/structure/transit_tube/diagonal,
+/turf/open/space/basic,
+/area/space)
+"anm" = (
/obj/machinery/door/airlock/maintenance{
name = "Pete's Speakeasy";
req_access_txt = "12"
},
/turf/open/floor/plating,
/area/maintenance/department/crew_quarters/dorms)
-"akY" = (
+"ann" = (
/turf/closed/wall/mineral/titanium,
/area/shuttle/pod_1)
-"akZ" = (
+"ano" = (
/obj/structure/grille,
/obj/structure/window/shuttle,
/turf/open/floor/plating,
/area/shuttle/pod_1)
-"ala" = (
+"anp" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -5013,11 +5992,11 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
/area/maintenance/department/crew_quarters/dorms)
-"alb" = (
+"anq" = (
/obj/structure/grille/broken,
/turf/open/floor/plating,
/area/maintenance/department/security/brig)
-"alc" = (
+"anr" = (
/obj/structure/cable{
d1 = 2;
d2 = 4;
@@ -5025,7 +6004,7 @@
},
/turf/open/floor/plating,
/area/maintenance/department/security/brig)
-"ald" = (
+"ans" = (
/obj/item/weapon/wirecutters,
/obj/effect/spawner/lootdrop/maintenance,
/obj/structure/cable{
@@ -5038,7 +6017,7 @@
},
/turf/open/floor/plating,
/area/maintenance/department/security/brig)
-"ale" = (
+"ant" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -5049,7 +6028,7 @@
},
/turf/open/floor/plating,
/area/maintenance/department/security/brig)
-"alf" = (
+"anu" = (
/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
dir = 4
},
@@ -5066,13 +6045,13 @@
},
/turf/open/floor/plating,
/area/maintenance/department/security/brig)
-"alg" = (
+"anv" = (
/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
dir = 9
},
/turf/closed/wall,
/area/security/processing/cremation)
-"alh" = (
+"anw" = (
/obj/structure/plasticflaps{
opacity = 1
},
@@ -5080,7 +6059,7 @@
dir = 8
},
/area/security/processing/cremation)
-"ali" = (
+"anx" = (
/obj/machinery/door/airlock/maintenance{
name = "Brig Infirmary Maintenance";
req_access_txt = "63";
@@ -5094,7 +6073,7 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating,
/area/security/brig)
-"alj" = (
+"any" = (
/obj/machinery/light{
dir = 8
},
@@ -5107,7 +6086,7 @@
dir = 8
},
/area/security/brig)
-"alk" = (
+"anz" = (
/obj/structure/cable{
d1 = 1;
d2 = 4;
@@ -5115,7 +6094,7 @@
},
/turf/open/floor/plasteel,
/area/security/brig)
-"all" = (
+"anA" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -5126,7 +6105,7 @@
dir = 4
},
/area/security/brig)
-"alm" = (
+"anB" = (
/obj/structure/cable{
d1 = 2;
d2 = 8;
@@ -5145,7 +6124,7 @@
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/security/warden)
-"aln" = (
+"anC" = (
/obj/structure/cable{
d1 = 1;
d2 = 8;
@@ -5153,41 +6132,41 @@
},
/turf/open/floor/plasteel/showroomfloor,
/area/security/warden)
-"alo" = (
+"anD" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
dir = 4
},
/turf/open/floor/plasteel/showroomfloor,
/area/security/warden)
-"alp" = (
+"anE" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel/showroomfloor,
/area/security/warden)
-"alq" = (
+"anF" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 1
},
/turf/open/floor/plasteel/showroomfloor,
/area/security/warden)
-"alr" = (
+"anG" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 9
},
/turf/open/floor/plasteel/showroomfloor,
/area/security/warden)
-"als" = (
+"anH" = (
/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
dir = 6
},
/turf/open/floor/plasteel/showroomfloor,
/area/security/warden)
-"alt" = (
+"anI" = (
/obj/machinery/atmospherics/pipe/manifold/cyan/hidden,
/turf/open/floor/plasteel/showroomfloor,
/area/security/warden)
-"alu" = (
+"anJ" = (
/obj/structure/table,
/obj/machinery/recharger,
/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
@@ -5195,7 +6174,7 @@
},
/turf/open/floor/plasteel/showroomfloor,
/area/security/warden)
-"alv" = (
+"anK" = (
/obj/structure/cable{
icon_state = "0-2";
d2 = 2
@@ -5208,7 +6187,7 @@
},
/turf/open/floor/plating,
/area/security/warden)
-"alw" = (
+"anL" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -5221,14 +6200,14 @@
dir = 10
},
/area/security/main)
-"alx" = (
+"anM" = (
/obj/structure/chair/office/dark{
dir = 1
},
/obj/effect/landmark/start/security_officer,
/turf/open/floor/plasteel,
/area/security/main)
-"aly" = (
+"anN" = (
/obj/structure/chair/office/dark{
dir = 1
},
@@ -5236,7 +6215,7 @@
/obj/effect/landmark/start/security_officer,
/turf/open/floor/plasteel,
/area/security/main)
-"alz" = (
+"anO" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -5249,7 +6228,7 @@
dir = 6
},
/area/security/main)
-"alA" = (
+"anP" = (
/obj/item/weapon/twohanded/required/kirbyplants{
icon_state = "plant-22"
},
@@ -5258,7 +6237,7 @@
},
/turf/open/floor/plasteel/black,
/area/security/main)
-"alB" = (
+"anQ" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/structure/cable{
@@ -5270,7 +6249,7 @@
},
/turf/open/floor/plating,
/area/crew_quarters/heads/hos)
-"alC" = (
+"anR" = (
/obj/structure/cable{
d1 = 1;
d2 = 8;
@@ -5286,7 +6265,7 @@
dir = 4
},
/area/crew_quarters/heads/hos)
-"alD" = (
+"anS" = (
/obj/structure/cable{
d1 = 1;
d2 = 4;
@@ -5296,7 +6275,7 @@
dir = 1
},
/area/crew_quarters/heads/hos)
-"alE" = (
+"anT" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -5306,8 +6285,7 @@
dir = 1
},
/area/crew_quarters/heads/hos)
-"alF" = (
-/obj/machinery/light,
+"anU" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -5327,7 +6305,7 @@
dir = 1
},
/area/crew_quarters/heads/hos)
-"alG" = (
+"anV" = (
/obj/structure/cable{
d2 = 8;
icon_state = "0-8"
@@ -5345,7 +6323,7 @@
dir = 1
},
/area/crew_quarters/heads/hos)
-"alH" = (
+"anW" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/structure/cable{
@@ -5355,24 +6333,44 @@
/obj/structure/cable,
/turf/open/floor/plating,
/area/crew_quarters/heads/hos)
-"alI" = (
-/obj/structure/grille/broken,
-/turf/open/floor/plating,
+"anX" = (
+/turf/closed/wall/r_wall,
+/area/teleporter)
+"anY" = (
+/obj/structure/closet/firecloset,
+/obj/effect/decal/cleanable/cobweb,
+/turf/open/floor/plating{
+ icon_state = "platingdmg3"
+ },
/area/maintenance/department/crew_quarters/dorms)
-"alJ" = (
+"anZ" = (
+/turf/open/floor/plating{
+ icon_state = "platingdmg1"
+ },
+/area/maintenance/department/crew_quarters/dorms)
+"aoa" = (
+/obj/structure/grille/broken,
+/turf/open/floor/plating{
+ icon_state = "platingdmg3"
+ },
+/area/maintenance/department/crew_quarters/dorms)
+"aob" = (
/obj/structure/closet/emcloset,
/obj/item/device/camera,
/turf/open/floor/plating,
/area/maintenance/department/crew_quarters/dorms)
-"alK" = (
+"aoc" = (
/obj/machinery/computer/shuttle/monastery_shuttle,
+/obj/machinery/light{
+ dir = 1
+ },
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/pod_1)
-"alL" = (
+"aod" = (
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
/area/maintenance/department/security/brig)
-"alM" = (
+"aoe" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -5380,7 +6378,7 @@
},
/turf/open/floor/plating,
/area/maintenance/department/security/brig)
-"alN" = (
+"aof" = (
/obj/structure/cable{
d1 = 1;
d2 = 8;
@@ -5391,7 +6389,7 @@
},
/turf/open/floor/plating,
/area/maintenance/department/security/brig)
-"alO" = (
+"aog" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 5
},
@@ -5402,7 +6400,7 @@
},
/turf/open/floor/plating,
/area/maintenance/department/security/brig)
-"alP" = (
+"aoh" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -5413,7 +6411,7 @@
},
/turf/open/floor/plating,
/area/maintenance/department/security/brig)
-"alQ" = (
+"aoi" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -5424,7 +6422,7 @@
},
/turf/open/floor/plating,
/area/maintenance/department/security/brig)
-"alR" = (
+"aoj" = (
/obj/structure/cable{
d1 = 1;
d2 = 8;
@@ -5435,33 +6433,33 @@
},
/turf/open/floor/plating,
/area/maintenance/department/security/brig)
-"alS" = (
+"aok" = (
/obj/machinery/computer/security{
name = "Labor Camp Monitoring";
network = list("Labor")
},
/turf/open/floor/plasteel/black,
/area/security/brig)
-"alT" = (
+"aol" = (
/obj/machinery/computer/shuttle/labor,
/turf/open/floor/plasteel/black,
/area/security/brig)
-"alU" = (
+"aom" = (
/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
/turf/open/floor/plasteel/red/side{
dir = 8
},
/area/security/brig)
-"alV" = (
+"aon" = (
/turf/open/floor/plasteel,
/area/security/brig)
-"alW" = (
+"aoo" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/red/side{
dir = 4
},
/area/security/brig)
-"alX" = (
+"aop" = (
/obj/structure/bed/dogbed,
/obj/machinery/requests_console{
department = "Security";
@@ -5473,19 +6471,19 @@
},
/turf/open/floor/plasteel/showroomfloor,
/area/security/warden)
-"alY" = (
+"aoq" = (
/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
dir = 8
},
/turf/open/floor/plasteel/showroomfloor,
/area/security/warden)
-"alZ" = (
+"aor" = (
/obj/machinery/atmospherics/components/unary/vent_pump/on{
dir = 8
},
/turf/open/floor/plasteel/showroomfloor,
/area/security/warden)
-"ama" = (
+"aos" = (
/obj/machinery/door/airlock/security{
name = "Brig Control";
req_access_txt = "3"
@@ -5502,7 +6500,7 @@
},
/turf/open/floor/plasteel/showroomfloor,
/area/security/warden)
-"amb" = (
+"aot" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -5517,7 +6515,7 @@
dir = 8
},
/area/security/main)
-"amc" = (
+"aou" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -5525,7 +6523,7 @@
},
/turf/open/floor/plasteel,
/area/security/main)
-"amd" = (
+"aov" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -5540,7 +6538,7 @@
},
/turf/open/floor/plasteel,
/area/security/main)
-"ame" = (
+"aow" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -5551,7 +6549,7 @@
},
/turf/open/floor/plasteel,
/area/security/main)
-"amf" = (
+"aox" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -5564,7 +6562,7 @@
},
/turf/open/floor/plasteel,
/area/security/main)
-"amg" = (
+"aoy" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -5587,23 +6585,41 @@
dir = 4
},
/area/security/main)
-"amh" = (
+"aoz" = (
/turf/closed/wall,
/area/maintenance/fore)
-"ami" = (
-/obj/machinery/light/small{
+"aoA" = (
+/obj/machinery/gateway{
+ dir = 9
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 1
+ },
+/area/teleporter)
+"aoB" = (
+/obj/machinery/gateway{
+ dir = 1
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/plasteel/vault{
dir = 8
},
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+/area/teleporter)
+"aoC" = (
+/obj/machinery/gateway{
+ dir = 5
+ },
+/turf/open/floor/plasteel/vault{
dir = 4
},
-/turf/open/floor/plasteel/black,
-/area/chapel/main/monastery)
-"amj" = (
+/area/teleporter)
+"aoD" = (
/obj/effect/spawner/lootdrop/grille_or_trash,
/turf/open/floor/plating,
/area/maintenance/department/crew_quarters/dorms)
-"amk" = (
+"aoE" = (
/obj/structure/chair{
dir = 4
},
@@ -5614,10 +6630,10 @@
},
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/pod_1)
-"aml" = (
+"aoF" = (
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/pod_1)
-"amm" = (
+"aoG" = (
/obj/structure/chair{
dir = 8
},
@@ -5626,17 +6642,28 @@
layer = 3;
pixel_x = 32
},
-/obj/machinery/light{
- dir = 1
- },
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/pod_1)
-"amn" = (
+"aoH" = (
+/obj/structure/lattice,
+/obj/structure/grille,
+/turf/open/space,
+/area/solar/port)
+"aoI" = (
+/obj/structure/lattice,
+/turf/open/space,
+/area/solar/port)
+"aoJ" = (
+/obj/structure/lattice,
+/obj/structure/grille/broken,
+/turf/open/space,
+/area/solar/port)
+"aoK" = (
/turf/open/floor/plating{
icon_state = "platingdmg3"
},
/area/maintenance/department/security/brig)
-"amo" = (
+"aoL" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -5644,18 +6671,18 @@
},
/turf/open/floor/plating,
/area/maintenance/department/security/brig)
-"amp" = (
+"aoM" = (
/obj/structure/chair/stool,
/obj/item/trash/raisins,
/turf/open/floor/plating,
/area/maintenance/department/security/brig)
-"amq" = (
+"aoN" = (
/obj/structure/table,
/obj/item/weapon/paper,
/obj/item/weapon/pen,
/turf/open/floor/plating,
/area/maintenance/department/security/brig)
-"amr" = (
+"aoO" = (
/obj/machinery/atmospherics/components/unary/vent_pump/on{
dir = 1
},
@@ -5675,13 +6702,13 @@
/obj/item/weapon/pen,
/turf/open/floor/plasteel/black,
/area/security/brig)
-"ams" = (
+"aoP" = (
/obj/structure/chair/office/dark{
dir = 8
},
/turf/open/floor/plasteel/black,
/area/security/brig)
-"amt" = (
+"aoQ" = (
/obj/structure/cable,
/obj/structure/cable{
icon_state = "0-2";
@@ -5691,14 +6718,14 @@
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/security/warden)
-"amu" = (
+"aoR" = (
/obj/item/weapon/book/manual/wiki/security_space_law,
/obj/item/clothing/ears/earmuffs,
/obj/item/clothing/glasses/sunglasses,
/obj/structure/table/reinforced,
/turf/open/floor/plasteel/showroomfloor,
/area/security/warden)
-"amv" = (
+"aoS" = (
/obj/structure/table/reinforced,
/obj/machinery/button/door{
id = "Secure Gate";
@@ -5716,12 +6743,12 @@
},
/turf/open/floor/plasteel/showroomfloor,
/area/security/warden)
-"amw" = (
+"aoT" = (
/obj/structure/chair/office/dark,
/obj/effect/landmark/start/warden,
/turf/open/floor/plasteel/showroomfloor,
/area/security/warden)
-"amx" = (
+"aoU" = (
/obj/item/device/radio/intercom{
dir = 4;
name = "Station Intercom (General)"
@@ -5730,25 +6757,33 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/showroomfloor,
/area/security/warden)
-"amy" = (
+"aoV" = (
/obj/machinery/disposal/bin,
/obj/structure/disposalpipe/trunk{
dir = 4
},
/turf/open/floor/plasteel/showroomfloor,
/area/security/warden)
-"amz" = (
+"aoW" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/plasteel/showroomfloor,
+/area/security/warden)
+"aoX" = (
/obj/structure/rack,
/obj/item/weapon/crowbar,
/obj/item/weapon/wrench,
/obj/item/device/laser_pointer/red,
/turf/open/floor/plasteel/showroomfloor,
/area/security/warden)
-"amA" = (
+"aoY" = (
/obj/structure/filingcabinet/chestdrawer,
/turf/open/floor/plasteel/showroomfloor,
/area/security/warden)
-"amB" = (
+"aoZ" = (
/obj/structure/cable{
icon_state = "0-2";
d2 = 2
@@ -5758,26 +6793,20 @@
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/security/warden)
-"amC" = (
+"apa" = (
/obj/machinery/disposal/bin,
/obj/structure/disposalpipe/trunk{
dir = 4
},
/turf/open/floor/plasteel/red,
/area/security/main)
-"amD" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/black,
-/area/chapel/main/monastery)
-"amE" = (
+"apb" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/open/floor/plasteel/red/side,
/area/security/main)
-"amF" = (
+"apc" = (
/obj/structure/disposalpipe/sortjunction{
dir = 1;
icon_state = "pipe-j2s";
@@ -5788,13 +6817,13 @@
},
/turf/open/floor/plasteel,
/area/security/main)
-"amG" = (
+"apd" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel/red/side,
/area/security/main)
-"amH" = (
+"ape" = (
/obj/machinery/airalarm{
dir = 1;
pixel_y = -22
@@ -5804,7 +6833,7 @@
},
/turf/open/floor/plasteel/red/side,
/area/security/main)
-"amI" = (
+"apf" = (
/obj/structure/cable{
d1 = 1;
d2 = 4;
@@ -5827,7 +6856,7 @@
},
/turf/open/floor/plasteel/red,
/area/security/main)
-"amJ" = (
+"apg" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -5843,7 +6872,7 @@
},
/turf/open/floor/plating,
/area/maintenance/fore)
-"amK" = (
+"aph" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -5854,7 +6883,7 @@
},
/turf/open/floor/plating,
/area/maintenance/fore)
-"amL" = (
+"api" = (
/obj/machinery/power/apc{
dir = 1;
name = "Fore Maintenance APC";
@@ -5873,7 +6902,7 @@
},
/turf/open/floor/plating,
/area/maintenance/fore)
-"amM" = (
+"apj" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -5887,7 +6916,7 @@
},
/turf/open/floor/plating,
/area/maintenance/fore)
-"amN" = (
+"apk" = (
/obj/structure/cable{
d1 = 2;
d2 = 8;
@@ -5899,7 +6928,7 @@
},
/turf/open/floor/plating,
/area/maintenance/fore)
-"amO" = (
+"apl" = (
/obj/machinery/door/airlock/external{
cyclelinkeddir = 0;
name = "Security External Airlock";
@@ -5907,13 +6936,13 @@
},
/turf/open/floor/plating,
/area/maintenance/fore)
-"amP" = (
+"apm" = (
/obj/machinery/light/small{
dir = 1
},
/turf/open/floor/plating,
/area/maintenance/fore)
-"amQ" = (
+"apn" = (
/obj/machinery/door/airlock/external{
cyclelinkeddir = 8;
name = "Security External Airlock";
@@ -5921,14 +6950,47 @@
},
/turf/open/floor/plating,
/area/maintenance/fore)
-"amR" = (
+"apo" = (
+/obj/structure/transit_tube/diagonal/crossing,
+/obj/structure/lattice,
+/turf/open/space/basic,
+/area/space)
+"app" = (
+/obj/structure/lattice,
+/obj/machinery/camera{
+ c_tag = "Bridge Starboard Exterior";
+ dir = 1
+ },
+/turf/open/space,
+/area/space)
+"apq" = (
+/obj/machinery/gateway{
+ dir = 8
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/teleporter)
+"apr" = (
+/obj/machinery/gateway/centerstation,
+/turf/open/floor/plasteel/black,
+/area/teleporter)
+"aps" = (
+/obj/machinery/gateway{
+ dir = 4
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/teleporter)
+"apt" = (
/obj/structure/chair{
dir = 8
},
/obj/item/clothing/mask/cigarette,
/turf/open/floor/plating,
/area/maintenance/department/crew_quarters/dorms)
-"amS" = (
+"apu" = (
/obj/structure/cable{
d1 = 2;
d2 = 4;
@@ -5939,7 +7001,20 @@
},
/turf/open/floor/plating,
/area/maintenance/department/crew_quarters/dorms)
-"amT" = (
+"apv" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating{
+ icon_state = "platingdmg3"
+ },
+/area/maintenance/department/crew_quarters/dorms)
+"apw" = (
/obj/structure/cable{
d1 = 1;
d2 = 8;
@@ -5953,63 +7028,62 @@
icon_state = "platingdmg1"
},
/area/maintenance/department/crew_quarters/dorms)
-"amU" = (
+"apx" = (
/obj/structure/chair{
dir = 4
},
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/pod_1)
-"amV" = (
+"apy" = (
/obj/structure/chair{
dir = 8
},
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/pod_1)
-"amW" = (
+"apz" = (
/obj/structure/chair{
dir = 8
},
/turf/open/floor/plating,
/area/maintenance/department/security/brig)
-"amX" = (
+"apA" = (
/mob/living/simple_animal/mouse/gray,
/turf/open/floor/plating{
- icon_state = "panelscorched"
+ icon_state = "platingdmg3"
},
/area/maintenance/department/security/brig)
-"amY" = (
-/obj/structure/closet/firecloset,
-/obj/effect/spawner/lootdrop/maintenance,
+"apB" = (
+/obj/structure/girder,
/turf/open/floor/plating,
/area/maintenance/department/security/brig)
-"amZ" = (
+"apC" = (
/turf/closed/wall/mineral/titanium,
/area/shuttle/labor)
-"ana" = (
+"apD" = (
/obj/structure/grille,
/obj/structure/window/shuttle,
/turf/open/floor/plating,
/area/shuttle/labor)
-"anb" = (
+"apE" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/security/brig)
-"anc" = (
+"apF" = (
/obj/machinery/computer/gulag_teleporter_computer,
/turf/open/floor/plasteel/black,
/area/security/brig)
-"and" = (
+"apG" = (
/obj/machinery/gulag_teleporter,
/turf/open/floor/plasteel/black,
/area/security/brig)
-"ane" = (
+"apH" = (
/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
dir = 10
},
/turf/open/floor/plasteel,
/area/security/brig)
-"anf" = (
+"apI" = (
/obj/structure/cable{
d1 = 1;
d2 = 4;
@@ -6022,7 +7096,7 @@
},
/turf/closed/wall/r_wall,
/area/security/warden)
-"ang" = (
+"apJ" = (
/obj/structure/cable{
d2 = 8;
icon_state = "0-8"
@@ -6035,7 +7109,7 @@
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/security/warden)
-"anh" = (
+"apK" = (
/obj/structure/table/reinforced,
/obj/structure/cable{
d2 = 8;
@@ -6063,7 +7137,7 @@
},
/turf/open/floor/plasteel/showroomfloor,
/area/security/warden)
-"ani" = (
+"apL" = (
/obj/structure/cable{
d2 = 8;
icon_state = "0-8"
@@ -6077,7 +7151,7 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating,
/area/security/warden)
-"anj" = (
+"apM" = (
/obj/machinery/door/airlock/glass_security{
name = "Brig Control";
req_access_txt = "3"
@@ -6091,7 +7165,7 @@
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/showroomfloor,
/area/security/warden)
-"ank" = (
+"apN" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -6099,7 +7173,7 @@
},
/turf/closed/wall/r_wall,
/area/security/warden)
-"anl" = (
+"apO" = (
/obj/structure/cable{
d1 = 1;
d2 = 8;
@@ -6107,7 +7181,7 @@
},
/turf/closed/wall/r_wall,
/area/security/warden)
-"anm" = (
+"apP" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/security{
name = "Security Office";
@@ -6118,7 +7192,7 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel,
/area/security/main)
-"ann" = (
+"apQ" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -6134,15 +7208,45 @@
},
/turf/open/floor/plating,
/area/maintenance/fore)
-"ano" = (
+"apR" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/maintenance/fore)
-"anp" = (
+"apS" = (
+/obj/structure/transit_tube/curved,
+/obj/structure/lattice/catwalk,
+/turf/open/space/basic,
+/area/space)
+"apT" = (
+/turf/closed/wall/r_wall,
+/area/ai_monitored/nuke_storage)
+"apU" = (
+/obj/machinery/gateway{
+ dir = 10
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 4
+ },
+/area/teleporter)
+"apV" = (
+/obj/machinery/gateway,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/teleporter)
+"apW" = (
+/obj/machinery/gateway{
+ dir = 6
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 1
+ },
+/area/teleporter)
+"apX" = (
/turf/closed/wall,
/area/crew_quarters/dorms)
-"anq" = (
+"apY" = (
/obj/structure/chair{
dir = 4
},
@@ -6151,7 +7255,7 @@
},
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/pod_1)
-"anr" = (
+"apZ" = (
/obj/structure/chair{
dir = 8
},
@@ -6160,7 +7264,7 @@
},
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/pod_1)
-"ans" = (
+"aqa" = (
/obj/structure/cable{
icon_state = "0-4";
d2 = 4
@@ -6171,7 +7275,7 @@
},
/turf/open/floor/plasteel/airless/solarpanel,
/area/solar/port)
-"ant" = (
+"aqb" = (
/obj/structure/lattice/catwalk,
/obj/structure/cable{
d1 = 2;
@@ -6184,8 +7288,8 @@
icon_state = "2-4"
},
/turf/open/space,
-/area/solar/starboard)
-"anu" = (
+/area/solar/port)
+"aqc" = (
/obj/structure/cable{
d2 = 8;
icon_state = "0-8"
@@ -6196,21 +7300,7 @@
},
/turf/open/floor/plasteel/airless/solarpanel,
/area/solar/port)
-"anv" = (
-/obj/structure/lattice/catwalk,
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/turf/open/space,
-/area/solar/port)
-"anw" = (
+"aqd" = (
/obj/structure/cable{
d2 = 8;
icon_state = "0-8"
@@ -6221,56 +7311,56 @@
},
/turf/open/floor/plasteel/airless/solarpanel,
/area/solar/port)
-"anx" = (
+"aqe" = (
/obj/structure/rack,
/obj/item/clothing/suit/hazardvest,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
/area/maintenance/department/security/brig)
-"any" = (
+"aqf" = (
/obj/effect/decal/remains/human,
/turf/open/floor/plating,
/area/maintenance/department/security/brig)
-"anz" = (
+"aqg" = (
/obj/structure/reagent_dispensers/fueltank,
/turf/open/floor/plating,
/area/maintenance/department/security/brig)
-"anA" = (
+"aqh" = (
/obj/structure/reagent_dispensers/watertank,
/turf/open/floor/plating,
/area/maintenance/department/security/brig)
-"anB" = (
+"aqi" = (
/obj/structure/closet,
/obj/item/clothing/under/color/black,
/obj/item/clothing/under/color/red,
/turf/open/floor/plating,
/area/maintenance/department/security/brig)
-"anC" = (
+"aqj" = (
/obj/machinery/computer/shuttle/labor,
/obj/structure/reagent_dispensers/peppertank{
pixel_x = -31
},
/turf/open/floor/mineral/plastitanium/brig,
/area/shuttle/labor)
-"anD" = (
+"aqk" = (
/obj/structure/chair/office/dark{
dir = 1
},
/turf/open/floor/mineral/plastitanium/brig,
/area/shuttle/labor)
-"anE" = (
+"aql" = (
/obj/structure/table,
/obj/item/weapon/folder/red,
/obj/item/weapon/restraints/handcuffs,
/turf/open/floor/mineral/plastitanium/brig,
/area/shuttle/labor)
-"anF" = (
+"aqm" = (
/obj/machinery/atmospherics/components/unary/vent_pump/on{
dir = 1
},
/turf/open/floor/plasteel,
/area/security/brig)
-"anG" = (
+"aqn" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 8
},
@@ -6278,7 +7368,7 @@
dir = 4
},
/area/security/brig)
-"anH" = (
+"aqo" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -6294,7 +7384,7 @@
dir = 1
},
/area/security/brig)
-"anI" = (
+"aqp" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -6302,7 +7392,7 @@
dir = 1
},
/area/security/brig)
-"anJ" = (
+"aqq" = (
/obj/machinery/camera{
c_tag = "Brig Cells";
dir = 2
@@ -6314,19 +7404,19 @@
dir = 1
},
/area/security/brig)
-"anK" = (
+"aqr" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 1
},
/turf/open/floor/plasteel,
/area/security/brig)
-"anL" = (
+"aqs" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
/turf/open/floor/plasteel/red/side{
dir = 1
},
/area/security/brig)
-"anM" = (
+"aqt" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 1
},
@@ -6334,7 +7424,7 @@
dir = 1
},
/area/security/brig)
-"anN" = (
+"aqu" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -6342,7 +7432,7 @@
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel,
/area/security/brig)
-"anO" = (
+"aqv" = (
/obj/machinery/camera{
c_tag = "Brig Entrance"
},
@@ -6357,7 +7447,7 @@
dir = 1
},
/area/security/brig)
-"anP" = (
+"aqw" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -6368,37 +7458,50 @@
dir = 1
},
/area/security/brig)
-"anQ" = (
+"aqx" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/airalarm{
+ frequency = 1439;
+ locked = 0;
+ pixel_y = 23
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 1
+ },
+/area/security/brig)
+"aqy" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel,
/area/security/brig)
-"anR" = (
+"aqz" = (
/turf/open/floor/plasteel/red/side{
dir = 1
},
/area/security/brig)
-"anS" = (
+"aqA" = (
/turf/open/floor/plasteel/red/side{
dir = 5
},
/area/security/brig)
-"anT" = (
+"aqB" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
/turf/open/floor/plasteel/black,
/area/security/brig)
-"anU" = (
+"aqC" = (
/turf/open/floor/plasteel/black,
/area/security/brig)
-"anV" = (
+"aqD" = (
/obj/machinery/ai_status_display{
pixel_y = 32
},
/turf/open/floor/plasteel/black,
/area/security/brig)
-"anW" = (
+"aqE" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -6407,7 +7510,15 @@
/obj/structure/disposalpipe/segment,
/turf/open/floor/plating,
/area/maintenance/fore)
-"anX" = (
+"aqF" = (
+/turf/closed/wall/r_wall,
+/area/maintenance/fore)
+"aqG" = (
+/obj/structure/window/reinforced,
+/obj/structure/lattice,
+/turf/open/space/basic,
+/area/space)
+"aqH" = (
/obj/structure/cable{
d1 = 2;
d2 = 4;
@@ -6415,7 +7526,7 @@
},
/turf/closed/wall/r_wall,
/area/bridge)
-"anY" = (
+"aqI" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/structure/cable{
@@ -6435,7 +7546,7 @@
},
/turf/open/floor/plating,
/area/bridge)
-"anZ" = (
+"aqJ" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -6443,7 +7554,7 @@
},
/turf/closed/wall/r_wall,
/area/bridge)
-"aoa" = (
+"aqK" = (
/obj/structure/cable{
d1 = 2;
d2 = 8;
@@ -6451,11 +7562,98 @@
},
/turf/closed/wall/r_wall,
/area/bridge)
-"aob" = (
+"aqL" = (
+/obj/machinery/computer/bank_machine,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/ai_monitored/nuke_storage)
+"aqM" = (
+/obj/machinery/light_switch{
+ pixel_y = 28
+ },
+/turf/open/floor/circuit/green{
+ luminosity = 2
+ },
+/area/ai_monitored/nuke_storage)
+"aqN" = (
+/obj/machinery/airalarm{
+ pixel_y = 23
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/circuit/green{
+ luminosity = 2
+ },
+/area/ai_monitored/nuke_storage)
+"aqO" = (
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "Vault APC";
+ pixel_y = 25
+ },
+/obj/structure/cable{
+ icon_state = "0-2";
+ d2 = 2
+ },
+/turf/open/floor/circuit/green{
+ luminosity = 2
+ },
+/area/ai_monitored/nuke_storage)
+"aqP" = (
+/obj/structure/filingcabinet,
+/obj/item/weapon/folder/documents,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/ai_monitored/nuke_storage)
+"aqQ" = (
+/obj/structure/window/reinforced,
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "Gateway APC";
+ pixel_x = -24
+ },
+/obj/structure/cable{
+ icon_state = "0-4";
+ d2 = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 6
+ },
+/turf/open/floor/plasteel/black,
+/area/teleporter)
+"aqR" = (
+/obj/structure/window/reinforced,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/open/floor/plasteel/black,
+/area/teleporter)
+"aqS" = (
+/obj/machinery/door/window{
+ name = "Gateway Chamber";
+ req_access_txt = "62"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
+/turf/open/floor/plasteel/black,
+/area/teleporter)
+"aqT" = (
/obj/machinery/computer/arcade,
/turf/open/floor/plasteel/barber,
/area/crew_quarters/dorms)
-"aoc" = (
+"aqU" = (
/obj/machinery/washing_machine,
/obj/machinery/requests_console{
department = "Crew Quarters";
@@ -6463,14 +7661,14 @@
},
/turf/open/floor/plasteel/barber,
/area/crew_quarters/dorms)
-"aod" = (
+"aqV" = (
/obj/machinery/washing_machine,
/obj/machinery/airalarm{
pixel_y = 22
},
/turf/open/floor/plasteel/barber,
/area/crew_quarters/dorms)
-"aoe" = (
+"aqW" = (
/obj/structure/table,
/obj/item/clothing/under/color/grey,
/obj/machinery/power/apc{
@@ -6487,11 +7685,11 @@
},
/turf/open/floor/plasteel/barber,
/area/crew_quarters/dorms)
-"aof" = (
+"aqX" = (
/obj/structure/shuttle/engine/propulsion/burst,
/turf/closed/wall/mineral/titanium,
/area/shuttle/pod_1)
-"aog" = (
+"aqY" = (
/obj/machinery/door/airlock/titanium{
name = "Shuttle Airlock"
},
@@ -6513,30 +7711,11 @@
},
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/pod_1)
-"aoh" = (
+"aqZ" = (
/obj/machinery/space_heater,
/turf/open/floor/plating,
/area/maintenance/department/crew_quarters/dorms)
-"aoi" = (
-/obj/structure/lattice/catwalk,
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/space,
-/area/solar/starboard)
-"aoj" = (
+"ara" = (
/obj/structure/lattice/catwalk,
/obj/structure/cable{
d1 = 2;
@@ -6555,7 +7734,7 @@
},
/turf/open/space,
/area/solar/port)
-"aok" = (
+"arb" = (
/obj/structure/closet/crate,
/obj/effect/spawner/lootdrop/maintenance{
lootcount = 2;
@@ -6566,28 +7745,19 @@
},
/turf/open/floor/plating,
/area/maintenance/department/security/brig)
-"aol" = (
+"arc" = (
/obj/item/weapon/weldingtool,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
/area/maintenance/department/security/brig)
-"aom" = (
-/obj/machinery/door/airlock/external{
- name = "Dock Access"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/black,
-/area/chapel/main/monastery)
-"aon" = (
+"ard" = (
/obj/item/clothing/head/cone,
/turf/open/floor/plating,
/area/maintenance/department/security/brig)
-"aoo" = (
+"are" = (
/turf/open/floor/mineral/plastitanium/brig,
/area/shuttle/labor)
-"aop" = (
+"arf" = (
/obj/machinery/button/flasher{
id = "gulagshuttleflasher";
name = "Flash Control";
@@ -6597,7 +7767,7 @@
/obj/machinery/light,
/turf/open/floor/mineral/plastitanium/brig,
/area/shuttle/labor)
-"aoq" = (
+"arg" = (
/obj/machinery/mineral/labor_claim_console{
machinedir = 2;
pixel_x = 30;
@@ -6605,21 +7775,21 @@
},
/turf/open/floor/mineral/plastitanium/brig,
/area/shuttle/labor)
-"aor" = (
+"arh" = (
/obj/machinery/door/airlock/titanium{
name = "Labor Shuttle Airlock";
req_access_txt = "2"
},
/turf/open/floor/mineral/plastitanium/brig,
/area/shuttle/labor)
-"aos" = (
+"ari" = (
/obj/machinery/door/airlock/external{
name = "Labor Camp Shuttle Airlock";
req_access_txt = "2"
},
/turf/open/floor/plasteel/black,
/area/security/brig)
-"aot" = (
+"arj" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass_security{
name = "Labor Camp Shuttle Airlock";
@@ -6633,29 +7803,42 @@
},
/turf/open/floor/plasteel/black,
/area/security/brig)
-"aou" = (
+"ark" = (
/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
/turf/open/floor/plasteel,
/area/security/brig)
-"aov" = (
+"arl" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel,
/area/security/brig)
-"aow" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel,
-/area/security/brig)
-"aox" = (
+"arm" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
dir = 1
},
/turf/open/floor/plasteel,
/area/security/brig)
-"aoy" = (
+"arn" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/plasteel,
+/area/security/brig)
+"aro" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/security/brig)
+"arp" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/security/brig)
+"arq" = (
/obj/machinery/atmospherics/components/unary/vent_pump/on,
/obj/structure/disposalpipe/junction{
icon_state = "pipe-j1";
@@ -6663,13 +7846,7 @@
},
/turf/open/floor/plasteel,
/area/security/brig)
-"aoz" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/security/brig)
-"aoA" = (
+"arr" = (
/obj/structure/disposalpipe/segment{
dir = 8;
icon_state = "pipe-c"
@@ -6679,13 +7856,13 @@
},
/turf/open/floor/plasteel,
/area/security/brig)
-"aoB" = (
+"ars" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel,
/area/security/brig)
-"aoC" = (
+"art" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -6693,7 +7870,7 @@
dir = 4
},
/area/security/brig)
-"aoD" = (
+"aru" = (
/obj/machinery/door/airlock/security{
name = "Interrogation";
req_access = null;
@@ -6704,37 +7881,98 @@
},
/turf/open/floor/plasteel/black,
/area/security/brig)
-"aoE" = (
+"arv" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel/black,
/area/security/brig)
-"aoF" = (
+"arw" = (
/obj/structure/chair{
dir = 4
},
/turf/open/floor/plasteel/black,
/area/security/brig)
-"aoG" = (
+"arx" = (
/obj/structure/table,
/obj/item/device/flashlight/lamp,
/turf/open/floor/plasteel/black,
/area/security/brig)
-"aoH" = (
+"ary" = (
/obj/structure/chair{
dir = 8
},
/turf/open/floor/plasteel/black,
/area/security/brig)
-"aoI" = (
+"arz" = (
/obj/machinery/camera{
c_tag = "Brig Interrogation";
dir = 8
},
/turf/open/floor/plasteel/black,
/area/security/brig)
-"aoJ" = (
+"arA" = (
+/turf/closed/wall/r_wall,
+/area/bridge)
+"arB" = (
+/obj/structure/window/reinforced{
+ dir = 1;
+ pixel_y = 2
+ },
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/camera{
+ c_tag = "Bridge MiniSat Access";
+ dir = 4;
+ network = list("SS13")
+ },
+/turf/open/floor/plating,
+/area/bridge)
+"arC" = (
+/obj/structure/transit_tube_pod{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 1;
+ pixel_y = 2
+ },
+/obj/effect/turf_decal/stripes/line,
+/obj/structure/transit_tube/station/reverse/flipped{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/bridge)
+"arD" = (
+/obj/structure/window/reinforced{
+ dir = 1;
+ pixel_y = 2
+ },
+/obj/effect/turf_decal/stripes/line,
+/obj/structure/transit_tube/horizontal,
+/turf/open/floor/plating,
+/area/bridge)
+"arE" = (
+/obj/structure/window/reinforced{
+ dir = 1;
+ pixel_y = 2
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line,
+/obj/structure/transit_tube/curved/flipped{
+ icon_state = "curved1";
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/bridge)
+"arF" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/lattice,
+/turf/open/space/basic,
+/area/space)
+"arG" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -6742,25 +7980,25 @@
},
/turf/closed/wall/r_wall,
/area/bridge)
-"aoK" = (
+"arH" = (
/obj/machinery/modular_computer/console/preset/command,
/turf/open/floor/plasteel/darkgreen/side{
dir = 9
},
/area/bridge)
-"aoL" = (
+"arI" = (
/obj/machinery/computer/med_data,
/turf/open/floor/plasteel/darkgreen/side{
dir = 1
},
/area/bridge)
-"aoM" = (
+"arJ" = (
/obj/machinery/computer/crew,
/turf/open/floor/plasteel/darkgreen/side{
dir = 1
},
/area/bridge)
-"aoN" = (
+"arK" = (
/obj/machinery/status_display{
density = 0;
layer = 4;
@@ -6771,14 +8009,15 @@
},
/obj/structure/table/glass,
/obj/machinery/light{
- dir = 1
+ dir = 1;
+ light_color = "#e8eaff"
},
/obj/item/weapon/pen,
/turf/open/floor/plasteel/darkblue/side{
dir = 1
},
/area/bridge)
-"aoO" = (
+"arL" = (
/obj/machinery/computer/card,
/obj/machinery/camera{
c_tag = "Bridge - Central";
@@ -6789,61 +8028,166 @@
dir = 1
},
/area/bridge)
-"aoP" = (
+"arM" = (
/obj/machinery/computer/communications,
/turf/open/floor/plasteel/darkblue/side{
dir = 1
},
/area/bridge)
-"aoQ" = (
-/obj/machinery/modular_computer/console/preset/engineering,
+"arN" = (
+/obj/machinery/computer/station_alert,
/turf/open/floor/plasteel/darkblue/side{
dir = 1
},
/area/bridge)
-"aoR" = (
+"arO" = (
/obj/machinery/ai_status_display{
pixel_y = 32
},
/obj/structure/table/glass,
/obj/machinery/light{
- dir = 1
+ dir = 1;
+ light_color = "#e8eaff"
},
/obj/machinery/recharger,
/turf/open/floor/plasteel/darkblue/side{
dir = 1
},
/area/bridge)
-"aoS" = (
+"arP" = (
/obj/machinery/computer/security,
/turf/open/floor/plasteel/darkred/side{
dir = 1
},
/area/bridge)
-"aoT" = (
+"arQ" = (
/obj/machinery/computer/secure_data,
/turf/open/floor/plasteel/darkred/side{
dir = 1
},
/area/bridge)
-"aoU" = (
+"arR" = (
/obj/machinery/computer/prisoner,
/turf/open/floor/plasteel/darkred/side{
dir = 5
},
/area/bridge)
-"aoV" = (
-/obj/structure/lattice,
-/obj/machinery/camera{
- c_tag = "Bridge Starboard Exterior";
+"arS" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/open/floor/plasteel/vault{
dir = 1
},
-/turf/open/space,
-/area/space)
-"aoW" = (
-/turf/closed/wall/r_wall,
/area/ai_monitored/nuke_storage)
-"aoX" = (
+"arT" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 10
+ },
+/turf/open/floor/circuit/green{
+ luminosity = 2
+ },
+/area/ai_monitored/nuke_storage)
+"arU" = (
+/obj/machinery/nuclearbomb/selfdestruct,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/ai_monitored/nuke_storage)
+"arV" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 6
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/circuit/green{
+ luminosity = 2
+ },
+/area/ai_monitored/nuke_storage)
+"arW" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 4
+ },
+/area/ai_monitored/nuke_storage)
+"arX" = (
+/obj/machinery/camera{
+ c_tag = "Gateway";
+ dir = 4;
+ network = list("SS13")
+ },
+/obj/structure/table,
+/obj/structure/sign/biohazard{
+ pixel_x = -32
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/item/weapon/paper/pamphlet,
+/turf/open/floor/plasteel,
+/area/teleporter)
+"arY" = (
+/obj/structure/closet/crate/internals,
+/obj/item/clothing/suit/hazardvest{
+ desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks.";
+ name = "emergency lifejacket"
+ },
+/obj/item/clothing/suit/hazardvest{
+ desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks.";
+ name = "emergency lifejacket"
+ },
+/obj/item/clothing/suit/hazardvest{
+ desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks.";
+ name = "emergency lifejacket"
+ },
+/obj/item/clothing/suit/hazardvest{
+ desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks.";
+ name = "emergency lifejacket"
+ },
+/obj/item/clothing/suit/hazardvest{
+ desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks.";
+ name = "emergency lifejacket"
+ },
+/obj/item/device/flashlight,
+/obj/item/device/flashlight,
+/obj/item/device/flashlight,
+/obj/item/device/flashlight,
+/obj/item/device/flashlight,
+/turf/open/floor/plasteel,
+/area/teleporter)
+"arZ" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel,
+/area/teleporter)
+"asa" = (
+/obj/structure/table,
+/obj/item/device/radio/off{
+ pixel_y = 6
+ },
+/obj/item/device/radio/off{
+ pixel_x = 6;
+ pixel_y = 4
+ },
+/obj/item/device/radio/off{
+ pixel_x = -6;
+ pixel_y = 4
+ },
+/obj/item/device/radio/off,
+/obj/structure/sign/biohazard{
+ pixel_x = 32
+ },
+/obj/item/device/radio/off,
+/turf/open/floor/plasteel,
+/area/teleporter)
+"asb" = (
/obj/structure/cable{
d1 = 1;
d2 = 4;
@@ -6860,7 +8204,7 @@
icon_state = "panelscorched"
},
/area/maintenance/department/crew_quarters/dorms)
-"aoY" = (
+"asc" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -6871,7 +8215,7 @@
},
/turf/open/floor/plating,
/area/crew_quarters/dorms)
-"aoZ" = (
+"asd" = (
/obj/machinery/atmospherics/components/unary/vent_pump/on,
/obj/structure/cable{
d1 = 4;
@@ -6880,7 +8224,7 @@
},
/turf/open/floor/plasteel/barber,
/area/crew_quarters/dorms)
-"apa" = (
+"ase" = (
/obj/effect/landmark/event_spawn,
/obj/structure/cable{
d1 = 4;
@@ -6889,7 +8233,7 @@
},
/turf/open/floor/plasteel/barber,
/area/crew_quarters/dorms)
-"apb" = (
+"asf" = (
/obj/effect/landmark/start/assistant,
/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
/obj/structure/cable{
@@ -6899,7 +8243,7 @@
},
/turf/open/floor/plasteel/barber,
/area/crew_quarters/dorms)
-"apc" = (
+"asg" = (
/obj/structure/bedsheetbin,
/obj/machinery/newscaster{
pixel_x = 32
@@ -6911,20 +8255,35 @@
},
/turf/open/floor/plasteel/barber,
/area/crew_quarters/dorms)
-"apd" = (
+"ash" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/crew_quarters/dorms)
+"asi" = (
/obj/machinery/door/airlock/external{
name = "Escape Pod"
},
/turf/open/floor/plating,
/area/crew_quarters/dorms)
-"ape" = (
+"asj" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plating,
+/area/crew_quarters/dorms)
+"ask" = (
/obj/item/clothing/under/kilt,
/obj/item/clothing/head/collectable/wizard,
/obj/structure/closet/cardboard,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
/area/maintenance/department/crew_quarters/dorms)
-"apf" = (
+"asl" = (
+/obj/structure/grille/broken,
+/turf/open/floor/plating,
+/area/maintenance/department/crew_quarters/dorms)
+"asm" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -6939,7 +8298,7 @@
},
/turf/open/floor/plating,
/area/maintenance/department/crew_quarters/dorms)
-"apg" = (
+"asn" = (
/obj/structure/cable{
d1 = 2;
d2 = 8;
@@ -6953,7 +8312,7 @@
},
/turf/open/floor/plating,
/area/maintenance/department/crew_quarters/dorms)
-"aph" = (
+"aso" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -6967,7 +8326,7 @@
},
/turf/open/floor/plating,
/area/maintenance/department/security/brig)
-"api" = (
+"asp" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/structure/cable{
@@ -6977,7 +8336,7 @@
},
/turf/open/floor/plating,
/area/maintenance/department/security/brig)
-"apj" = (
+"asq" = (
/obj/item/clothing/head/cone,
/obj/structure/cable{
d1 = 4;
@@ -6991,15 +8350,7 @@
},
/turf/open/floor/plating,
/area/maintenance/department/security/brig)
-"apk" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plating,
-/area/maintenance/department/security/brig)
-"apl" = (
+"asr" = (
/obj/structure/cable{
d1 = 2;
d2 = 8;
@@ -7007,21 +8358,21 @@
},
/turf/open/floor/plating,
/area/maintenance/department/security/brig)
-"apm" = (
+"ass" = (
/obj/machinery/door/airlock/titanium{
name = "Labor Shuttle Airlock";
req_access_txt = "2"
},
/turf/open/floor/plasteel/black,
/area/shuttle/labor)
-"apn" = (
+"ast" = (
/obj/machinery/mineral/stacking_machine/laborstacker{
input_dir = 2;
output_dir = 1
},
/turf/open/floor/plasteel/black,
/area/shuttle/labor)
-"apo" = (
+"asu" = (
/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
dir = 8
},
@@ -7029,20 +8380,20 @@
dir = 10
},
/area/security/brig)
-"app" = (
+"asv" = (
/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
dir = 4
},
/turf/open/floor/plasteel,
/area/security/brig)
-"apq" = (
+"asw" = (
/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/red/side,
/area/security/brig)
-"apr" = (
+"asx" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -7059,13 +8410,13 @@
},
/turf/open/floor/plasteel/red/side,
/area/security/brig)
-"aps" = (
+"asy" = (
/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
dir = 1
},
/turf/open/floor/plasteel/red/side,
/area/security/brig)
-"apt" = (
+"asz" = (
/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
dir = 4
},
@@ -7076,11 +8427,11 @@
},
/turf/open/floor/plasteel/red/side,
/area/security/brig)
-"apu" = (
+"asA" = (
/obj/machinery/atmospherics/pipe/manifold/cyan/hidden,
/turf/open/floor/plasteel,
/area/security/brig)
-"apv" = (
+"asB" = (
/obj/machinery/light,
/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
dir = 4
@@ -7092,25 +8443,25 @@
},
/turf/open/floor/plasteel/red/side,
/area/security/brig)
-"apw" = (
+"asC" = (
/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
dir = 4
},
/turf/open/floor/plasteel/red/side,
/area/security/brig)
-"apx" = (
+"asD" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/manifold/cyan/hidden,
/turf/open/floor/plasteel/red/side,
/area/security/brig)
-"apy" = (
+"asE" = (
/obj/machinery/light,
/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
dir = 4
},
/turf/open/floor/plasteel/red/side,
/area/security/brig)
-"apz" = (
+"asF" = (
/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
dir = 4
},
@@ -7118,20 +8469,20 @@
dir = 6
},
/area/security/brig)
-"apA" = (
+"asG" = (
/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
dir = 4
},
/turf/closed/wall,
/area/security/brig)
-"apB" = (
+"asH" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
dir = 4
},
/turf/open/floor/plasteel/black,
/area/security/brig)
-"apC" = (
+"asI" = (
/obj/structure/chair{
dir = 4
},
@@ -7140,7 +8491,7 @@
},
/turf/open/floor/plasteel/black,
/area/security/brig)
-"apD" = (
+"asJ" = (
/obj/structure/table,
/obj/item/weapon/folder/red,
/obj/item/device/taperecorder,
@@ -7149,7 +8500,7 @@
},
/turf/open/floor/plasteel/black,
/area/security/brig)
-"apE" = (
+"asK" = (
/obj/structure/chair{
dir = 8
},
@@ -7158,16 +8509,27 @@
},
/turf/open/floor/plasteel/black,
/area/security/brig)
-"apF" = (
+"asL" = (
/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
dir = 10
},
/turf/open/floor/plasteel/black,
/area/security/brig)
-"apG" = (
-/turf/closed/wall/r_wall,
+"asM" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on,
+/turf/open/floor/plasteel,
/area/bridge)
-"apH" = (
+"asN" = (
+/turf/open/floor/plasteel,
+/area/bridge)
+"asO" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
+/turf/open/floor/plasteel,
+/area/bridge)
+"asP" = (
/obj/structure/cable{
d1 = 1;
d2 = 4;
@@ -7175,7 +8537,7 @@
},
/turf/closed/wall/r_wall,
/area/bridge)
-"apI" = (
+"asQ" = (
/obj/structure/chair/office/dark{
dir = 1
},
@@ -7199,16 +8561,16 @@
dir = 8
},
/area/bridge)
-"apJ" = (
+"asR" = (
/obj/structure/chair/office/dark{
dir = 1
},
/turf/open/floor/plasteel/black,
/area/bridge)
-"apK" = (
+"asS" = (
/turf/open/floor/plasteel/black,
/area/bridge)
-"apL" = (
+"asT" = (
/obj/structure/chair/office/dark{
dir = 1
},
@@ -7235,7 +8597,7 @@
dir = 4
},
/area/bridge)
-"apM" = (
+"asU" = (
/obj/structure/cable{
d1 = 1;
d2 = 8;
@@ -7243,739 +8605,7 @@
},
/turf/closed/wall/r_wall,
/area/bridge)
-"apN" = (
-/turf/closed/wall,
-/area/bridge)
-"apO" = (
-/obj/machinery/computer/bank_machine,
-/turf/open/floor/plasteel/vault{
- dir = 8
- },
-/area/ai_monitored/nuke_storage)
-"apP" = (
-/obj/machinery/light_switch{
- pixel_y = 28
- },
-/turf/open/floor/circuit/green{
- luminosity = 2
- },
-/area/ai_monitored/nuke_storage)
-"apQ" = (
-/obj/machinery/airalarm{
- pixel_y = 23
- },
-/obj/machinery/light{
- dir = 1
- },
-/turf/open/floor/circuit/green{
- luminosity = 2
- },
-/area/ai_monitored/nuke_storage)
-"apR" = (
-/obj/machinery/power/apc{
- dir = 1;
- name = "Vault APC";
- pixel_y = 25
- },
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
- },
-/turf/open/floor/circuit/green{
- luminosity = 2
- },
-/area/ai_monitored/nuke_storage)
-"apS" = (
-/obj/structure/filingcabinet,
-/obj/item/weapon/folder/documents,
-/turf/open/floor/plasteel/vault{
- dir = 8
- },
-/area/ai_monitored/nuke_storage)
-"apT" = (
-/obj/machinery/power/apc{
- dir = 8;
- name = "Dormitory Maintenance APC";
- pixel_x = -24
- },
-/obj/structure/cable,
-/obj/machinery/light/small,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 5
- },
-/turf/open/floor/plating{
- burnt = 1;
- icon_state = "panelscorched"
- },
-/area/maintenance/department/crew_quarters/dorms)
-"apU" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/closed/wall,
-/area/crew_quarters/dorms)
-"apV" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/barber,
-/area/crew_quarters/dorms)
-"apW" = (
-/obj/machinery/light,
-/obj/machinery/camera{
- c_tag = "Laundry Room";
- dir = 1
- },
-/turf/open/floor/plasteel/barber,
-/area/crew_quarters/dorms)
-"apX" = (
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/barber,
-/area/crew_quarters/dorms)
-"apY" = (
-/obj/machinery/disposal/bin,
-/obj/structure/disposalpipe/trunk{
- dir = 8
- },
-/turf/open/floor/plasteel/barber,
-/area/crew_quarters/dorms)
-"apZ" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 9
- },
-/turf/open/floor/plasteel/black,
-/area/chapel/main/monastery)
-"aqa" = (
-/turf/open/floor/plating,
-/area/crew_quarters/dorms)
-"aqb" = (
-/obj/machinery/light/small{
- dir = 4
- },
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
- icon_state = "space";
- layer = 4;
- name = "EXTERNAL AIRLOCK";
- pixel_x = 32
- },
-/obj/structure/closet/emcloset{
- anchored = 1;
- desc = "It's a storage unit for emergency breath masks and O2 tanks, and is securely bolted in place.";
- name = "anchored emergency closet"
- },
-/turf/open/floor/plating,
-/area/crew_quarters/dorms)
-"aqc" = (
-/obj/structure/closet,
-/obj/item/weapon/weldingtool,
-/obj/item/weapon/crowbar,
-/turf/open/floor/plating,
-/area/maintenance/department/crew_quarters/dorms)
-"aqd" = (
-/turf/closed/wall,
-/area/crew_quarters/fitness/recreation)
-"aqe" = (
-/obj/structure/closet/crate{
- icon_state = "crateopen";
- opened = 1
- },
-/obj/effect/spawner/lootdrop/maintenance{
- lootcount = 2;
- name = "2maintenance loot spawner"
- },
-/obj/item/clothing/mask/balaclava,
-/turf/open/floor/plating,
-/area/maintenance/department/crew_quarters/dorms)
-"aqf" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/circuit/green,
-/area/maintenance/department/security/brig)
-"aqg" = (
-/turf/open/floor/circuit/green,
-/area/maintenance/department/security/brig)
-"aqh" = (
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/labor)
-"aqi" = (
-/obj/machinery/mineral/labor_claim_console{
- machinedir = 1;
- pixel_x = 30
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/labor)
-"aqj" = (
-/turf/open/space,
-/area/security/brig)
-"aqk" = (
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plating,
-/area/security/brig)
-"aql" = (
-/obj/machinery/door/window/brigdoor/security/cell{
- id = "Cell 1";
- name = "Cell 1"
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/red/side,
-/area/security/brig)
-"aqm" = (
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plating,
-/area/security/brig)
-"aqn" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/turf/closed/wall,
-/area/security/brig)
-"aqo" = (
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plating,
-/area/security/brig)
-"aqp" = (
-/obj/machinery/door/window/brigdoor/security/cell{
- id = "Cell 2";
- name = "Cell 2"
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/red/side,
-/area/security/brig)
-"aqq" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/closed/wall,
-/area/security/brig)
-"aqr" = (
-/obj/machinery/door/window/brigdoor/security/cell{
- id = "Cell 3";
- name = "Cell 3"
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/red/side,
-/area/security/brig)
-"aqs" = (
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plating,
-/area/security/brig)
-"aqt" = (
-/obj/machinery/door/airlock/glass_security{
- cyclelinkeddir = 2;
- id_tag = "innerbrig";
- name = "Brig";
- req_access_txt = "63"
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/red/side{
- dir = 8
- },
-/area/security/brig)
-"aqu" = (
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
- },
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/security/brig)
-"aqv" = (
-/obj/machinery/door/airlock/glass_security{
- cyclelinkeddir = 2;
- id_tag = "innerbrig";
- name = "Brig";
- req_access_txt = "63"
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel/red/side{
- dir = 4
- },
-/area/security/brig)
-"aqw" = (
-/obj/machinery/door/airlock/glass_security{
- name = "Brig Desk";
- req_access_txt = "1"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plasteel/black,
-/area/security/brig)
-"aqx" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/black,
-/area/security/brig)
-"aqy" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 1
- },
-/turf/open/floor/plasteel/black,
-/area/security/brig)
-"aqz" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/door/airlock/command{
- name = "Emergency Escape";
- req_access = null;
- req_access_txt = "20"
- },
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"aqA" = (
-/obj/structure/window/reinforced,
-/turf/open/space,
-/area/space)
-"aqB" = (
-/obj/machinery/computer/atmos_alert,
-/turf/open/floor/plasteel/darkpurple,
-/area/bridge)
-"aqC" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/darkpurple/side{
- dir = 8
- },
-/area/bridge)
-"aqD" = (
-/turf/open/floor/plasteel/darkblue/corner{
- dir = 4
- },
-/area/bridge)
-"aqE" = (
-/turf/open/floor/plasteel/darkblue/side{
- dir = 1
- },
-/area/bridge)
-"aqF" = (
-/obj/item/device/radio/beacon,
-/turf/open/floor/plasteel/darkblue/side{
- dir = 1
- },
-/area/bridge)
-"aqG" = (
-/turf/open/floor/plasteel/darkblue/corner{
- dir = 1
- },
-/area/bridge)
-"aqH" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/darkyellow/side{
- dir = 4
- },
-/area/bridge)
-"aqI" = (
-/obj/machinery/computer/shuttle/labor,
-/turf/open/floor/plasteel/darkyellow,
-/area/bridge)
-"aqJ" = (
-/obj/machinery/door/airlock/external{
- cyclelinkeddir = 2;
- name = "Bridge External Access";
- req_access = null;
- req_access_txt = "10;13"
- },
-/turf/open/floor/plating,
-/area/bridge)
-"aqK" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 4
- },
-/turf/open/floor/plasteel/vault{
- dir = 1
- },
-/area/ai_monitored/nuke_storage)
-"aqL" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 10
- },
-/turf/open/floor/circuit/green{
- luminosity = 2
- },
-/area/ai_monitored/nuke_storage)
-"aqM" = (
-/obj/machinery/nuclearbomb/selfdestruct,
-/turf/open/floor/plasteel/vault{
- dir = 8
- },
-/area/ai_monitored/nuke_storage)
-"aqN" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 6
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/circuit/green{
- luminosity = 2
- },
-/area/ai_monitored/nuke_storage)
-"aqO" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 8
- },
-/turf/open/floor/plasteel/vault{
- dir = 4
- },
-/area/ai_monitored/nuke_storage)
-"aqP" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/closed/wall,
-/area/crew_quarters/dorms)
-"aqQ" = (
-/obj/machinery/door/airlock{
- name = "Laundry Room"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/barber,
-/area/crew_quarters/dorms)
-"aqR" = (
-/obj/structure/table,
-/obj/effect/spawner/lootdrop/maintenance,
-/obj/item/weapon/storage/box/lights/mixed,
-/turf/open/floor/plating,
-/area/maintenance/department/crew_quarters/dorms)
-"aqS" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 5
- },
-/turf/open/floor/plating,
-/area/maintenance/department/crew_quarters/dorms)
-"aqT" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/grille/broken,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/department/crew_quarters/dorms)
-"aqU" = (
-/obj/effect/spawner/lootdrop/maintenance,
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 9
- },
-/turf/open/floor/plating,
-/area/maintenance/department/crew_quarters/dorms)
-"aqV" = (
-/turf/open/floor/engine{
- name = "Holodeck Projector Floor"
- },
-/area/holodeck/rec_center)
-"aqW" = (
-/obj/machinery/mech_bay_recharge_port,
-/obj/structure/cable,
-/turf/open/floor/plating,
-/area/maintenance/department/security/brig)
-"aqX" = (
-/obj/item/clothing/head/collectable/police,
-/turf/open/floor/mech_bay_recharge_floor,
-/area/maintenance/department/security/brig)
-"aqY" = (
-/obj/machinery/computer/mech_bay_power_console,
-/obj/structure/cable,
-/turf/open/floor/plasteel,
-/area/maintenance/department/security/brig)
-"aqZ" = (
-/obj/structure/chair{
- dir = 4
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/labor)
-"ara" = (
-/obj/structure/chair{
- dir = 8
- },
-/obj/machinery/flasher{
- id = "gulagshuttleflasher";
- pixel_x = 25
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/labor)
-"arb" = (
-/obj/item/device/radio/intercom{
- desc = "Talk through this. It looks like it has been modified to not broadcast.";
- dir = 2;
- name = "Prison Intercom (General)";
- pixel_x = -25;
- pixel_y = -2;
- prison_radio = 1
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 1
- },
-/turf/open/floor/plasteel/floorgrime,
-/area/security/brig)
-"arc" = (
-/turf/open/floor/plasteel/floorgrime,
-/area/security/brig)
-"ard" = (
-/obj/machinery/light/small{
- dir = 4
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 1
- },
-/turf/open/floor/plasteel/floorgrime,
-/area/security/brig)
-"are" = (
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plasteel/floorgrime,
-/area/security/brig)
-"arf" = (
-/obj/machinery/light{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/flasher{
- id = "brigentry";
- pixel_x = -28
- },
-/turf/open/floor/plasteel/red/side{
- dir = 8
- },
-/area/security/brig)
-"arg" = (
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel/red/side{
- dir = 4
- },
-/area/security/brig)
-"arh" = (
-/obj/structure/table/reinforced,
-/obj/machinery/door/window/eastleft{
- dir = 8;
- name = "Brig Desk";
- req_access_txt = "1"
- },
-/obj/item/weapon/paper_bin,
-/obj/item/weapon/pen{
- layer = 3.1
- },
-/turf/open/floor/plasteel/black,
-/area/security/brig)
-"ari" = (
-/obj/machinery/computer/secure_data,
-/obj/machinery/button/door{
- desc = "A remote control switch for the medbay foyer.";
- id = "innerbrig";
- name = "Brig Interior Doors Control";
- normaldoorcontrol = 1;
- pixel_x = -6;
- pixel_y = 36;
- req_access_txt = "63"
- },
-/obj/machinery/button/door{
- desc = "A remote control switch for the medbay foyer.";
- id = "outerbrig";
- name = "Brig Exterior Doors Control";
- normaldoorcontrol = 1;
- pixel_x = -6;
- pixel_y = 24;
- req_access_txt = "63"
- },
-/obj/machinery/button/flasher{
- id = "brigentry";
- pixel_x = 6;
- pixel_y = 24
- },
-/turf/open/floor/plasteel/black,
-/area/security/brig)
-"arj" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plasteel/black,
-/area/security/brig)
-"ark" = (
-/obj/machinery/computer/security,
-/turf/open/floor/plasteel/black,
-/area/security/brig)
-"arl" = (
-/turf/closed/wall,
-/area/crew_quarters/heads/captain)
-"arm" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/closed/wall,
-/area/crew_quarters/heads/captain)
-"arn" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/light/small{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"aro" = (
-/obj/structure/window/reinforced{
- dir = 1;
- layer = 2.9
- },
-/turf/open/floor/plasteel/black,
-/area/crew_quarters/heads/captain)
-"arp" = (
-/obj/machinery/computer/monitor{
- name = "Bridge Power Monitoring Console"
- },
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/turf/open/floor/plasteel/darkpurple,
-/area/bridge)
-"arq" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/turf/open/floor/plasteel/darkpurple/side{
- dir = 8
- },
-/area/bridge)
-"arr" = (
-/turf/open/floor/plasteel/darkblue/side{
- dir = 4
- },
-/area/bridge)
-"ars" = (
-/obj/structure/chair/comfy/black,
-/turf/open/floor/plasteel/black,
-/area/bridge)
-"art" = (
-/turf/open/floor/plasteel/darkblue/side{
- dir = 8
- },
-/area/bridge)
-"aru" = (
-/obj/machinery/computer/cargo/request,
-/turf/open/floor/plasteel/darkyellow,
-/area/bridge)
-"arv" = (
-/obj/structure/closet/emcloset{
- anchored = 1;
- desc = "It's a storage unit for emergency breath masks and O2 tanks, and is securely bolted in place.";
- name = "anchored emergency closet"
- },
-/turf/open/floor/plating,
-/area/bridge)
-"arw" = (
-/turf/open/floor/plating,
-/area/bridge)
-"arx" = (
-/obj/machinery/light/small{
- dir = 4
- },
-/obj/machinery/suit_storage_unit/standard_unit,
-/turf/open/floor/plating,
-/area/bridge)
-"ary" = (
+"asV" = (
/obj/structure/closet/crate{
name = "Gold Crate"
},
@@ -7998,7 +8628,7 @@
dir = 1
},
/area/ai_monitored/nuke_storage)
-"arz" = (
+"asW" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -8007,7 +8637,7 @@
luminosity = 2
},
/area/ai_monitored/nuke_storage)
-"arA" = (
+"asX" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -8016,7 +8646,7 @@
luminosity = 2
},
/area/ai_monitored/nuke_storage)
-"arB" = (
+"asY" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 9
},
@@ -8029,7 +8659,7 @@
luminosity = 2
},
/area/ai_monitored/nuke_storage)
-"arC" = (
+"asZ" = (
/obj/item/weapon/coin/silver{
pixel_x = 7;
pixel_y = 12
@@ -8057,7 +8687,942 @@
dir = 4
},
/area/ai_monitored/nuke_storage)
-"arD" = (
+"ata" = (
+/obj/machinery/light_switch{
+ pixel_x = -20
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/teleporter)
+"atb" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/teleporter)
+"atc" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/effect/landmark/event_spawn,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel,
+/area/teleporter)
+"atd" = (
+/obj/machinery/airalarm{
+ dir = 8;
+ pixel_x = 24
+ },
+/obj/structure/closet/l3closet/scientist,
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/turf/open/floor/plasteel/black,
+/area/teleporter)
+"ate" = (
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "Dormitory Maintenance APC";
+ pixel_x = -24
+ },
+/obj/structure/cable,
+/obj/machinery/light/small,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 5
+ },
+/turf/open/floor/plating{
+ burnt = 1;
+ icon_state = "panelscorched"
+ },
+/area/maintenance/department/crew_quarters/dorms)
+"atf" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/closed/wall,
+/area/crew_quarters/dorms)
+"atg" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/barber,
+/area/crew_quarters/dorms)
+"ath" = (
+/obj/machinery/light,
+/obj/machinery/camera{
+ c_tag = "Laundry Room";
+ dir = 1
+ },
+/turf/open/floor/plasteel/barber,
+/area/crew_quarters/dorms)
+"ati" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/barber,
+/area/crew_quarters/dorms)
+"atj" = (
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/turf/open/floor/plasteel/barber,
+/area/crew_quarters/dorms)
+"atk" = (
+/turf/open/floor/plating,
+/area/crew_quarters/dorms)
+"atl" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
+ icon_state = "space";
+ layer = 4;
+ name = "EXTERNAL AIRLOCK";
+ pixel_x = 32
+ },
+/obj/structure/closet/emcloset/anchored,
+/turf/open/floor/plating,
+/area/crew_quarters/dorms)
+"atm" = (
+/obj/structure/closet,
+/obj/item/weapon/weldingtool,
+/obj/item/weapon/crowbar,
+/turf/open/floor/plating,
+/area/maintenance/department/crew_quarters/dorms)
+"atn" = (
+/turf/closed/wall,
+/area/crew_quarters/fitness/recreation)
+"ato" = (
+/obj/structure/closet/crate{
+ icon_state = "crateopen";
+ opened = 1
+ },
+/obj/effect/spawner/lootdrop/maintenance{
+ lootcount = 2;
+ name = "2maintenance loot spawner"
+ },
+/obj/item/clothing/mask/balaclava,
+/turf/open/floor/plating,
+/area/maintenance/department/crew_quarters/dorms)
+"atp" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/circuit/green,
+/area/maintenance/department/security/brig)
+"atq" = (
+/turf/open/floor/circuit/green,
+/area/maintenance/department/security/brig)
+"atr" = (
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/labor)
+"ats" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/labor)
+"att" = (
+/obj/machinery/mineral/labor_claim_console{
+ machinedir = 1;
+ pixel_x = 30
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/labor)
+"atu" = (
+/turf/open/space,
+/area/security/brig)
+"atv" = (
+/obj/structure/cable{
+ icon_state = "0-4";
+ d2 = 4
+ },
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plating,
+/area/security/brig)
+"atw" = (
+/obj/machinery/door/window/brigdoor/security/cell{
+ id = "Cell 1";
+ name = "Cell 1"
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/red/side,
+/area/security/brig)
+"atx" = (
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/structure/cable{
+ icon_state = "0-4";
+ d2 = 4
+ },
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plating,
+/area/security/brig)
+"aty" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/closed/wall,
+/area/security/brig)
+"atz" = (
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/structure/cable{
+ icon_state = "0-4";
+ d2 = 4
+ },
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plating,
+/area/security/brig)
+"atA" = (
+/obj/machinery/door/window/brigdoor/security/cell{
+ id = "Cell 2";
+ name = "Cell 2"
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/red/side,
+/area/security/brig)
+"atB" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/closed/wall,
+/area/security/brig)
+"atC" = (
+/obj/machinery/door/window/brigdoor/security/cell{
+ id = "Cell 3";
+ name = "Cell 3"
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/red/side,
+/area/security/brig)
+"atD" = (
+/obj/structure/cable{
+ icon_state = "0-4";
+ d2 = 4
+ },
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plating,
+/area/security/brig)
+"atE" = (
+/obj/machinery/door/airlock/glass_security{
+ cyclelinkeddir = 2;
+ id_tag = "innerbrig";
+ name = "Brig";
+ req_access_txt = "63"
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/red/side{
+ dir = 8
+ },
+/area/security/brig)
+"atF" = (
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/structure/cable{
+ icon_state = "0-2";
+ d2 = 2
+ },
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/security/brig)
+"atG" = (
+/obj/machinery/door/airlock/glass_security{
+ cyclelinkeddir = 2;
+ id_tag = "innerbrig";
+ name = "Brig";
+ req_access_txt = "63"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel/red/side{
+ dir = 4
+ },
+/area/security/brig)
+"atH" = (
+/obj/machinery/door/airlock/glass_security{
+ name = "Brig Desk";
+ req_access_txt = "1"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plasteel/black,
+/area/security/brig)
+"atI" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/black,
+/area/security/brig)
+"atJ" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/open/floor/plasteel/black,
+/area/security/brig)
+"atK" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/airlock/command{
+ name = "Emergency Escape";
+ req_access = null;
+ req_access_txt = "20"
+ },
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"atL" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 5
+ },
+/obj/structure/sign/securearea,
+/turf/closed/wall,
+/area/bridge)
+"atM" = (
+/obj/machinery/door/airlock/command{
+ name = "MiniSat Access";
+ req_access_txt = "65"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 10
+ },
+/turf/open/floor/plasteel/black,
+/area/bridge)
+"atN" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 5
+ },
+/obj/structure/sign/securearea,
+/turf/closed/wall,
+/area/bridge)
+"atO" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 10
+ },
+/turf/closed/wall/r_wall,
+/area/bridge)
+"atP" = (
+/obj/machinery/computer/monitor{
+ name = "Bridge Power Monitoring Console"
+ },
+/obj/structure/cable{
+ icon_state = "0-2";
+ pixel_y = 1;
+ d2 = 2
+ },
+/turf/open/floor/plasteel/darkpurple,
+/area/bridge)
+"atQ" = (
+/obj/machinery/computer/atmos_alert,
+/turf/open/floor/plasteel/darkpurple,
+/area/bridge)
+"atR" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/darkpurple/side{
+ dir = 8
+ },
+/area/bridge)
+"atS" = (
+/turf/open/floor/plasteel/darkblue/corner{
+ dir = 4
+ },
+/area/bridge)
+"atT" = (
+/turf/open/floor/plasteel/darkblue/side{
+ dir = 1
+ },
+/area/bridge)
+"atU" = (
+/obj/item/device/radio/beacon,
+/turf/open/floor/plasteel/darkblue/side{
+ dir = 1
+ },
+/area/bridge)
+"atV" = (
+/turf/open/floor/plasteel/darkblue/corner{
+ dir = 1
+ },
+/area/bridge)
+"atW" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/darkyellow/side{
+ dir = 4
+ },
+/area/bridge)
+"atX" = (
+/obj/machinery/computer/shuttle/labor,
+/turf/open/floor/plasteel/darkyellow,
+/area/bridge)
+"atY" = (
+/turf/closed/wall,
+/area/bridge)
+"atZ" = (
+/obj/machinery/door/airlock/external{
+ cyclelinkeddir = 2;
+ name = "Bridge External Access";
+ req_access = null;
+ req_access_txt = "10;13"
+ },
+/turf/open/floor/plating,
+/area/bridge)
+"aua" = (
+/obj/structure/closet/secure_closet/freezer/money,
+/obj/item/weapon/reagent_containers/food/drinks/bottle/vodka/badminka,
+/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/shotglass,
+/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/shotglass,
+/obj/item/clothing/head/bearpelt,
+/obj/item/weapon/skub,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/vault{
+ dir = 1
+ },
+/area/ai_monitored/nuke_storage)
+"aub" = (
+/obj/machinery/light,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 5
+ },
+/turf/open/floor/plasteel/black,
+/area/ai_monitored/nuke_storage)
+"auc" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 10
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/open/floor/plasteel/black,
+/area/ai_monitored/nuke_storage)
+"aud" = (
+/obj/machinery/camera/motion{
+ c_tag = "Vault";
+ dir = 1;
+ network = list("SS13")
+ },
+/obj/machinery/light,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/open/floor/plasteel/black,
+/area/ai_monitored/nuke_storage)
+"aue" = (
+/obj/structure/safe,
+/obj/item/weapon/bikehorn/golden,
+/obj/item/ammo_box/a357,
+/obj/item/weapon/tank/internals/plasma/full,
+/obj/item/weapon/disk/fakenucleardisk,
+/obj/item/weapon/gun/energy/disabler,
+/turf/open/floor/plasteel/vault{
+ dir = 4
+ },
+/area/ai_monitored/nuke_storage)
+"auf" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/item/device/radio/intercom{
+ freerange = 0;
+ frequency = 1459;
+ name = "Station Intercom (General)";
+ pixel_x = -30
+ },
+/turf/open/floor/plasteel,
+/area/teleporter)
+"aug" = (
+/obj/machinery/button/door{
+ id = "stationawaygate";
+ name = "Gateway Access Shutter Control";
+ pixel_x = -1;
+ pixel_y = -24;
+ req_access_txt = "31"
+ },
+/obj/effect/turf_decal/stripes/corner,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/teleporter)
+"auh" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/teleporter)
+"aui" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/structure/closet/secure_closet/exile,
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/turf/open/floor/plasteel/black,
+/area/teleporter)
+"auj" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/closed/wall,
+/area/crew_quarters/dorms)
+"auk" = (
+/obj/machinery/door/airlock{
+ name = "Laundry Room"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/barber,
+/area/crew_quarters/dorms)
+"aul" = (
+/obj/machinery/computer/shuttle/monastery_shuttle,
+/obj/structure/sign/pods{
+ pixel_y = 32
+ },
+/turf/open/floor/plasteel/black,
+/area/crew_quarters/dorms)
+"aum" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/crew_quarters/dorms)
+"aun" = (
+/obj/structure/table,
+/obj/effect/spawner/lootdrop/maintenance,
+/obj/item/weapon/storage/box/lights/mixed,
+/turf/open/floor/plating,
+/area/maintenance/department/crew_quarters/dorms)
+"auo" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 5
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/crew_quarters/dorms)
+"aup" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/grille/broken,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/crew_quarters/dorms)
+"auq" = (
+/obj/effect/spawner/lootdrop/maintenance,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 9
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/crew_quarters/dorms)
+"aur" = (
+/turf/open/floor/engine{
+ name = "Holodeck Projector Floor"
+ },
+/area/holodeck/rec_center)
+"aus" = (
+/obj/machinery/mech_bay_recharge_port,
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/maintenance/department/security/brig)
+"aut" = (
+/obj/item/clothing/head/collectable/police,
+/turf/open/floor/mech_bay_recharge_floor,
+/area/maintenance/department/security/brig)
+"auu" = (
+/obj/machinery/computer/mech_bay_power_console,
+/obj/structure/cable,
+/turf/open/floor/plasteel,
+/area/maintenance/department/security/brig)
+"auv" = (
+/obj/structure/chair{
+ dir = 4
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/labor)
+"auw" = (
+/obj/structure/chair{
+ dir = 8
+ },
+/obj/machinery/flasher{
+ id = "gulagshuttleflasher";
+ pixel_x = 25
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/labor)
+"aux" = (
+/obj/item/device/radio/intercom{
+ desc = "Talk through this. It looks like it has been modified to not broadcast.";
+ dir = 2;
+ name = "Prison Intercom (General)";
+ pixel_x = -25;
+ pixel_y = -2;
+ prison_radio = 1
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/security/brig)
+"auy" = (
+/turf/open/floor/plasteel/floorgrime,
+/area/security/brig)
+"auz" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/security/brig)
+"auA" = (
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel/floorgrime,
+/area/security/brig)
+"auB" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/flasher{
+ id = "brigentry";
+ pixel_x = -28
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 8
+ },
+/area/security/brig)
+"auC" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel/red/side{
+ dir = 4
+ },
+/area/security/brig)
+"auD" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/window/eastleft{
+ dir = 8;
+ name = "Brig Desk";
+ req_access_txt = "1"
+ },
+/obj/item/weapon/paper_bin,
+/obj/item/weapon/pen{
+ layer = 3.1
+ },
+/turf/open/floor/plasteel/black,
+/area/security/brig)
+"auE" = (
+/obj/machinery/computer/secure_data,
+/obj/machinery/button/door{
+ desc = "A remote control switch for the medbay foyer.";
+ id = "innerbrig";
+ name = "Brig Interior Doors Control";
+ normaldoorcontrol = 1;
+ pixel_x = -6;
+ pixel_y = 36;
+ req_access_txt = "63"
+ },
+/obj/machinery/button/door{
+ desc = "A remote control switch for the medbay foyer.";
+ id = "outerbrig";
+ name = "Brig Exterior Doors Control";
+ normaldoorcontrol = 1;
+ pixel_x = -6;
+ pixel_y = 24;
+ req_access_txt = "63"
+ },
+/obj/machinery/button/flasher{
+ id = "brigentry";
+ pixel_x = 6;
+ pixel_y = 24
+ },
+/turf/open/floor/plasteel/black,
+/area/security/brig)
+"auF" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plasteel/black,
+/area/security/brig)
+"auG" = (
+/obj/machinery/computer/security,
+/turf/open/floor/plasteel/black,
+/area/security/brig)
+"auH" = (
+/turf/closed/wall,
+/area/crew_quarters/heads/captain)
+"auI" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/closed/wall,
+/area/crew_quarters/heads/captain)
+"auJ" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"auK" = (
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id = "bridgespace";
+ name = "bridge external shutters";
+ opacity = 0
+ },
+/turf/open/floor/plasteel/black,
+/area/bridge)
+"auL" = (
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id = "bridgespace";
+ name = "bridge external shutters";
+ opacity = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/black,
+/area/bridge)
+"auM" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/closed/wall/r_wall,
+/area/bridge)
+"auN" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/airalarm{
+ dir = 4;
+ pixel_x = -22
+ },
+/turf/open/floor/plasteel/darkpurple/side{
+ icon_state = "darkpurple";
+ dir = 1
+ },
+/area/bridge)
+"auO" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/darkpurple/side{
+ icon_state = "darkpurple";
+ dir = 1
+ },
+/area/bridge)
+"auP" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/open/floor/plasteel/darkpurple/corner{
+ dir = 1
+ },
+/area/bridge)
+"auQ" = (
+/turf/open/floor/plasteel/darkblue/side{
+ dir = 4
+ },
+/area/bridge)
+"auR" = (
+/obj/structure/chair/comfy/black,
+/turf/open/floor/plasteel/black,
+/area/bridge)
+"auS" = (
+/turf/open/floor/plasteel/darkblue/side{
+ dir = 8
+ },
+/area/bridge)
+"auT" = (
+/obj/machinery/computer/cargo/request,
+/turf/open/floor/plasteel/darkyellow,
+/area/bridge)
+"auU" = (
+/obj/structure/closet/emcloset/anchored,
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
+ icon_state = "space";
+ layer = 4;
+ name = "EXTERNAL AIRLOCK";
+ pixel_x = -32
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/bridge)
+"auV" = (
+/turf/open/floor/plating,
+/area/bridge)
+"auW" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 5
+ },
+/turf/closed/wall/r_wall,
+/area/ai_monitored/nuke_storage)
+"auX" = (
+/obj/structure/sign/securearea,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 10
+ },
+/turf/closed/wall/r_wall,
+/area/ai_monitored/nuke_storage)
+"auY" = (
+/obj/machinery/door/airlock/vault{
+ icon_state = "door_locked";
+ locked = 1;
+ req_access_txt = "53"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/vault,
+/area/ai_monitored/nuke_storage)
+"auZ" = (
+/obj/structure/sign/securearea,
+/turf/closed/wall/r_wall,
+/area/ai_monitored/nuke_storage)
+"ava" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/command{
+ lockdownbyai = 0;
+ locked = 0;
+ name = "Gateway Access";
+ req_access_txt = "62"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel,
+/area/teleporter)
+"avb" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/poddoor/shutters{
+ id = "stationawaygate";
+ name = "Gateway Access Shutters"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel,
+/area/teleporter)
+"avc" = (
+/obj/structure/sign/securearea,
+/turf/closed/wall/r_wall,
+/area/teleporter)
+"avd" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/door/poddoor/shutters/preopen{
@@ -8066,7 +9631,7 @@
},
/turf/open/floor/plating,
/area/crew_quarters/dorms)
-"arE" = (
+"ave" = (
/obj/structure/bed,
/obj/item/weapon/bedsheet/nanotrasen,
/obj/machinery/button/door{
@@ -8077,7 +9642,7 @@
},
/turf/open/floor/wood,
/area/crew_quarters/dorms)
-"arF" = (
+"avf" = (
/obj/machinery/light/small{
dir = 1
},
@@ -8092,7 +9657,7 @@
},
/turf/open/floor/wood,
/area/crew_quarters/dorms)
-"arG" = (
+"avg" = (
/obj/machinery/button/door{
id = "Dorm3";
name = "Dorm Bolt Control";
@@ -8105,7 +9670,7 @@
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
/turf/open/floor/wood,
/area/crew_quarters/dorms)
-"arH" = (
+"avh" = (
/obj/structure/disposalpipe/segment{
dir = 1;
icon_state = "pipe-c"
@@ -8118,7 +9683,7 @@
dir = 1
},
/area/crew_quarters/dorms)
-"arI" = (
+"avi" = (
/obj/structure/disposalpipe/segment{
dir = 2;
icon_state = "pipe-c"
@@ -8134,7 +9699,7 @@
dir = 1
},
/area/crew_quarters/dorms)
-"arJ" = (
+"avj" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 10
},
@@ -8155,34 +9720,22 @@
dir = 1
},
/area/crew_quarters/dorms)
-"arK" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 1
- },
-/turf/open/floor/plasteel/black,
-/area/chapel/main/monastery)
-"arL" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 4
- },
-/turf/open/floor/plasteel/black,
-/area/chapel/main/monastery)
-"arM" = (
+"avk" = (
/turf/open/floor/plasteel,
/area/crew_quarters/dorms)
-"arN" = (
+"avl" = (
/obj/machinery/firealarm{
dir = 4;
pixel_x = 28
},
/turf/open/floor/plasteel,
/area/crew_quarters/dorms)
-"arO" = (
+"avm" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/crew_quarters/fitness/recreation)
-"arP" = (
+"avn" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -8194,11 +9747,11 @@
},
/turf/open/floor/plating,
/area/crew_quarters/fitness/recreation)
-"arQ" = (
+"avo" = (
/obj/structure/closet/crate,
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/labor)
-"arR" = (
+"avp" = (
/obj/machinery/door/airlock/titanium{
id_tag = "prisonshuttle";
name = "Labor Shuttle Airlock"
@@ -8222,13 +9775,13 @@
},
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/labor)
-"arS" = (
+"avq" = (
/obj/machinery/door/airlock/external{
name = "Labor Camp Shuttle Airlock"
},
/turf/open/floor/plasteel/black,
/area/security/brig)
-"arT" = (
+"avr" = (
/obj/machinery/light/small{
dir = 4
},
@@ -8242,7 +9795,7 @@
},
/turf/open/floor/plasteel/black,
/area/security/brig)
-"arU" = (
+"avs" = (
/obj/structure/bed,
/obj/item/weapon/bedsheet,
/obj/machinery/flasher{
@@ -8251,17 +9804,17 @@
},
/turf/open/floor/plasteel/blue/side,
/area/security/brig)
-"arV" = (
+"avt" = (
/turf/open/floor/plasteel/blue/side,
/area/security/brig)
-"arW" = (
+"avu" = (
/obj/structure/closet/secure_closet/brig{
id = "Cell 2";
name = "Cell 2 Locker"
},
/turf/open/floor/plasteel/blue/side,
/area/security/brig)
-"arX" = (
+"avv" = (
/obj/structure/bed,
/obj/item/weapon/bedsheet,
/obj/machinery/flasher{
@@ -8270,17 +9823,17 @@
},
/turf/open/floor/plasteel/green/side,
/area/security/brig)
-"arY" = (
+"avw" = (
/turf/open/floor/plasteel/green/side,
/area/security/brig)
-"arZ" = (
+"avx" = (
/obj/structure/closet/secure_closet/brig{
id = "Cell 3";
name = "Cell 3 Locker"
},
/turf/open/floor/plasteel/green/side,
/area/security/brig)
-"asa" = (
+"avy" = (
/obj/structure/bed,
/obj/item/weapon/bedsheet,
/obj/machinery/flasher{
@@ -8289,23 +9842,23 @@
},
/turf/open/floor/plasteel/yellow/side,
/area/security/brig)
-"asb" = (
+"avz" = (
/turf/open/floor/plasteel/yellow/side,
/area/security/brig)
-"asc" = (
+"avA" = (
/obj/structure/closet/secure_closet/brig{
id = "Cell 3";
name = "Cell 3 Locker"
},
/turf/open/floor/plasteel/yellow/side,
/area/security/brig)
-"asd" = (
+"avB" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/red/side{
dir = 8
},
/area/security/brig)
-"ase" = (
+"avC" = (
/obj/structure/table/reinforced,
/obj/machinery/door/window/eastleft{
dir = 8;
@@ -8316,7 +9869,7 @@
/obj/item/weapon/restraints/handcuffs,
/turf/open/floor/plasteel/black,
/area/security/brig)
-"asf" = (
+"avD" = (
/obj/structure/chair/office/dark{
dir = 8
},
@@ -8325,33 +9878,33 @@
},
/turf/open/floor/plasteel/black,
/area/security/brig)
-"asg" = (
+"avE" = (
/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
dir = 9
},
/turf/open/floor/plasteel/black,
/area/security/brig)
-"ash" = (
+"avF" = (
/obj/structure/chair/office/dark,
/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
dir = 4
},
/turf/open/floor/plasteel/black,
/area/security/brig)
-"asi" = (
+"avG" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/closed/wall,
/area/crew_quarters/heads/captain)
-"asj" = (
+"avH" = (
/obj/structure/toilet{
dir = 4
},
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
/turf/open/floor/plasteel/freezer,
/area/crew_quarters/heads/captain)
-"ask" = (
+"avI" = (
/obj/structure/sink{
pixel_y = 28
},
@@ -8360,7 +9913,7 @@
},
/turf/open/floor/plasteel/freezer,
/area/crew_quarters/heads/captain)
-"asl" = (
+"avJ" = (
/obj/machinery/light{
dir = 1
},
@@ -8369,7 +9922,7 @@
},
/turf/open/floor/plasteel/freezer,
/area/crew_quarters/heads/captain)
-"asm" = (
+"avK" = (
/obj/machinery/shower{
dir = 1
},
@@ -8379,58 +9932,88 @@
/obj/structure/curtain,
/turf/open/floor/plasteel/freezer,
/area/crew_quarters/heads/captain)
-"asn" = (
+"avL" = (
/obj/machinery/vending/cigarette,
/turf/open/floor/plating,
/area/maintenance/fore)
-"aso" = (
+"avM" = (
/obj/machinery/door/airlock/command{
name = "Balcony";
req_access = null;
req_access_txt = "20"
},
/turf/open/floor/plating,
-/area/crew_quarters/heads/captain)
-"asp" = (
-/turf/open/floor/plasteel/vault,
-/area/crew_quarters/heads/captain)
-"asq" = (
-/obj/structure/chair{
- dir = 1
- },
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plasteel/vault,
-/area/crew_quarters/heads/captain)
-"asr" = (
-/obj/structure/chair{
- dir = 1
- },
-/obj/machinery/light,
-/obj/machinery/camera{
- c_tag = "Captain's Balcony";
- dir = 1
- },
-/turf/open/floor/plasteel/vault,
-/area/crew_quarters/heads/captain)
-"ass" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-20";
- layer = 4.1;
- pixel_y = 3
- },
-/turf/open/floor/plasteel/vault,
-/area/crew_quarters/heads/captain)
-"ast" = (
-/obj/machinery/computer/station_alert,
-/turf/open/floor/plasteel/darkpurple,
/area/bridge)
-"asu" = (
+"avN" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on,
+/turf/open/floor/plasteel/vault,
+/area/bridge)
+"avO" = (
+/obj/effect/landmark/event_spawn,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/camera{
+ c_tag = "Bridge MiniSat Access Foyer";
+ dir = 1;
+ network = list("SS13")
+ },
+/obj/machinery/light/small,
+/turf/open/floor/plasteel/vault,
+/area/bridge)
+"avP" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 4
+ },
+/obj/item/device/radio/intercom{
+ dir = 0;
+ name = "Station Intercom (General)";
+ pixel_y = -28
+ },
+/turf/open/floor/plasteel/vault,
+/area/bridge)
+"avQ" = (
+/obj/machinery/door/airlock/command{
+ name = "MiniSat Access";
+ req_access_txt = "65"
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
+/turf/open/floor/plasteel/vault{
+ dir = 5
+ },
+/area/bridge)
+"avR" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/darkblue/side{
+ dir = 10
+ },
+/area/bridge)
+"avS" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/darkblue/corner{
+ dir = 8
+ },
+/area/bridge)
+"avT" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 10
+ },
+/turf/open/floor/plasteel/black,
+/area/bridge)
+"avU" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
/turf/open/floor/plasteel/darkblue/side{
dir = 4
},
/area/bridge)
-"asv" = (
+"avV" = (
/obj/structure/table/glass,
/obj/item/weapon/storage/box/ids{
pixel_x = 4;
@@ -8439,39 +10022,39 @@
/obj/item/weapon/storage/box/PDAs,
/turf/open/floor/plasteel/black,
/area/bridge)
-"asw" = (
+"avW" = (
/obj/structure/table/glass,
/obj/item/weapon/storage/firstaid/regular,
/turf/open/floor/plasteel/black,
/area/bridge)
-"asx" = (
+"avX" = (
/obj/structure/table/glass,
/obj/item/weapon/storage/toolbox/emergency,
/turf/open/floor/plasteel/black,
/area/bridge)
-"asy" = (
+"avY" = (
/obj/structure/table/glass,
/obj/item/device/aicard,
/turf/open/floor/plasteel/black,
/area/bridge)
-"asz" = (
+"avZ" = (
/obj/structure/table/glass,
/obj/item/weapon/restraints/handcuffs,
/obj/item/device/assembly/flash/handheld,
/obj/item/device/laser_pointer/blue,
/turf/open/floor/plasteel/black,
/area/bridge)
-"asA" = (
+"awa" = (
/obj/machinery/atmospherics/components/unary/vent_pump/on,
/turf/open/floor/plasteel/darkblue/side{
dir = 8
},
/area/bridge)
-"asB" = (
+"awb" = (
/obj/machinery/computer/security/mining,
/turf/open/floor/plasteel/darkyellow,
/area/bridge)
-"asC" = (
+"awc" = (
/obj/machinery/door/airlock/external{
cyclelinkeddir = 1;
name = "Bridge External Access";
@@ -8480,78 +10063,123 @@
},
/turf/open/floor/plating,
/area/bridge)
-"asD" = (
+"awd" = (
+/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
-/obj/structure/transit_tube,
/turf/open/floor/plating,
-/area/bridge)
-"asE" = (
-/obj/structure/closet/secure_closet/freezer/money,
-/obj/item/weapon/reagent_containers/food/drinks/bottle/vodka/badminka,
-/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/shotglass,
-/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/shotglass,
-/obj/item/clothing/head/bearpelt,
-/obj/item/weapon/skub,
+/area/hallway/primary/central)
+"awe" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/vault{
- dir = 1
- },
-/area/ai_monitored/nuke_storage)
-"asF" = (
-/obj/machinery/light,
+/obj/item/weapon/twohanded/required/kirbyplants/random,
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"awf" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 5
},
-/turf/open/floor/plasteel/black,
-/area/ai_monitored/nuke_storage)
-"asG" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"awg" = (
+/obj/machinery/light{
+ dir = 1
+ },
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 10
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"awh" = (
+/obj/machinery/camera{
+ c_tag = "Vault Hallway";
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"awi" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"awj" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
},
/obj/structure/cable{
d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+ d2 = 8;
+ icon_state = "2-8"
},
-/turf/open/floor/plasteel/black,
-/area/ai_monitored/nuke_storage)
-"asH" = (
-/obj/machinery/camera/motion{
- c_tag = "Vault";
- dir = 1;
- network = list("SS13")
- },
-/obj/machinery/light,
/obj/structure/cable{
d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+ d2 = 2;
+ icon_state = "1-2"
},
-/turf/open/floor/plasteel/black,
-/area/ai_monitored/nuke_storage)
-"asI" = (
-/obj/structure/safe,
-/obj/item/weapon/bikehorn/golden,
-/obj/item/ammo_box/a357,
-/obj/item/weapon/tank/internals/plasma/full,
-/obj/item/weapon/disk/fakenucleardisk,
-/obj/item/weapon/gun/energy/disabler,
-/turf/open/floor/plasteel/vault{
- dir = 4
- },
-/area/ai_monitored/nuke_storage)
-"asJ" = (
-/obj/structure/table/wood,
-/obj/item/weapon/storage/book/bible,
-/turf/open/floor/wood,
-/area/crew_quarters/dorms)
-"asK" = (
-/obj/structure/chair/wood/normal{
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"awk" = (
+/obj/effect/turf_decal/stripes/corner{
dir = 8
},
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"awl" = (
+/obj/effect/turf_decal/stripes/line{
+ icon_state = "warningline";
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 9
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"awm" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/item/weapon/twohanded/required/kirbyplants/random,
+/obj/effect/turf_decal/stripes/corner{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"awn" = (
+/obj/structure/dresser,
/turf/open/floor/wood,
/area/crew_quarters/dorms)
-"asL" = (
+"awo" = (
+/turf/open/floor/wood{
+ icon_state = "wood-broken7"
+ },
+/area/crew_quarters/dorms)
+"awp" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
dir = 4
},
@@ -8559,7 +10187,7 @@
icon_state = "wood-broken7"
},
/area/crew_quarters/dorms)
-"asM" = (
+"awq" = (
/obj/machinery/door/airlock{
id_tag = "Dorm3";
name = "Dorm 3"
@@ -8571,13 +10199,13 @@
dir = 5
},
/area/crew_quarters/dorms)
-"asN" = (
+"awr" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel,
/area/crew_quarters/dorms)
-"asO" = (
+"aws" = (
/obj/structure/disposalpipe/junction{
icon_state = "pipe-j2";
dir = 2
@@ -8585,20 +10213,27 @@
/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
/turf/open/floor/plasteel,
/area/crew_quarters/dorms)
-"asP" = (
+"awt" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel,
/area/crew_quarters/dorms)
-"asQ" = (
+"awu" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/holopad,
+/turf/open/floor/plasteel,
+/area/crew_quarters/dorms)
+"awv" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/open/floor/plasteel,
/area/crew_quarters/dorms)
-"asR" = (
+"aww" = (
/obj/structure/grille,
/obj/structure/window/fulltile,
/obj/structure/disposalpipe/segment{
@@ -8606,7 +10241,7 @@
},
/turf/open/floor/plating,
/area/crew_quarters/fitness/recreation)
-"asS" = (
+"awx" = (
/obj/structure/closet/athletic_mixed,
/obj/structure/disposalpipe/segment{
dir = 4
@@ -8615,7 +10250,7 @@
dir = 1
},
/area/crew_quarters/fitness/recreation)
-"asT" = (
+"awy" = (
/obj/structure/closet/lasertag/blue,
/obj/structure/disposalpipe/segment{
dir = 4
@@ -8627,7 +10262,7 @@
dir = 1
},
/area/crew_quarters/fitness/recreation)
-"asU" = (
+"awz" = (
/obj/structure/closet/lasertag/red,
/obj/structure/disposalpipe/segment{
dir = 4
@@ -8641,7 +10276,7 @@
dir = 1
},
/area/crew_quarters/fitness/recreation)
-"asV" = (
+"awA" = (
/obj/machinery/disposal/bin,
/obj/machinery/light{
dir = 1
@@ -8660,13 +10295,13 @@
dir = 1
},
/area/crew_quarters/fitness/recreation)
-"asW" = (
+"awB" = (
/obj/machinery/vending/clothing,
/turf/open/floor/plasteel/arrival{
dir = 1
},
/area/crew_quarters/fitness/recreation)
-"asX" = (
+"awC" = (
/obj/item/weapon/twohanded/required/kirbyplants{
icon_state = "plant-05";
layer = 4.1
@@ -8682,7 +10317,7 @@
},
/turf/open/floor/plasteel,
/area/crew_quarters/fitness/recreation)
-"asY" = (
+"awD" = (
/obj/machinery/light{
dir = 4
},
@@ -8702,7 +10337,7 @@
},
/turf/open/floor/plasteel,
/area/crew_quarters/fitness/recreation)
-"asZ" = (
+"awE" = (
/obj/structure/cable{
d1 = 1;
d2 = 4;
@@ -8710,22 +10345,14 @@
},
/turf/open/floor/plating,
/area/maintenance/department/security/brig)
-"ata" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/turf/open/floor/plating,
-/area/maintenance/department/security/brig)
-"atb" = (
+"awF" = (
/obj/effect/spawner/lootdrop/maintenance,
/obj/effect/decal/cleanable/cobweb{
icon_state = "cobweb2"
},
/turf/open/floor/plating,
/area/maintenance/department/security/brig)
-"atc" = (
+"awG" = (
/obj/structure/shuttle/engine/heater,
/obj/structure/window/reinforced{
dir = 1;
@@ -8733,7 +10360,7 @@
},
/turf/open/floor/plating,
/area/shuttle/labor)
-"atd" = (
+"awH" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass_security{
name = "Labor Camp Shuttle Airlock";
@@ -8741,7 +10368,7 @@
},
/turf/open/floor/plasteel/black,
/area/security/brig)
-"ate" = (
+"awI" = (
/obj/structure/cable{
icon_state = "0-4";
d2 = 4
@@ -8754,7 +10381,7 @@
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/security/brig)
-"atf" = (
+"awJ" = (
/obj/structure/cable{
d2 = 8;
icon_state = "0-8"
@@ -8771,15 +10398,7 @@
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/security/brig)
-"atg" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/closed/wall,
-/area/security/brig)
-"ath" = (
+"awK" = (
/obj/structure/cable{
icon_state = "0-4";
d2 = 4
@@ -8796,7 +10415,7 @@
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/security/brig)
-"ati" = (
+"awL" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass_security{
cyclelinkeddir = 1;
@@ -8814,7 +10433,7 @@
dir = 8
},
/area/security/brig)
-"atj" = (
+"awM" = (
/obj/structure/cable{
d2 = 8;
icon_state = "0-8"
@@ -8828,7 +10447,7 @@
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/security/brig)
-"atk" = (
+"awN" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass_security{
cyclelinkeddir = 1;
@@ -8841,7 +10460,7 @@
dir = 4
},
/area/security/brig)
-"atl" = (
+"awO" = (
/obj/structure/table/reinforced,
/obj/machinery/door/window/southleft{
base_state = "right";
@@ -8857,7 +10476,7 @@
/obj/item/device/radio,
/turf/open/floor/plasteel/black,
/area/security/brig)
-"atm" = (
+"awP" = (
/obj/machinery/door/window/southleft{
base_state = "right";
dir = 1;
@@ -8878,7 +10497,7 @@
},
/turf/open/floor/plasteel/black,
/area/security/brig)
-"atn" = (
+"awQ" = (
/obj/structure/table/reinforced,
/obj/machinery/door/window/southleft{
base_state = "right";
@@ -8897,10 +10516,10 @@
},
/turf/open/floor/plasteel/black,
/area/security/brig)
-"ato" = (
+"awR" = (
/turf/closed/wall/r_wall,
/area/crew_quarters/heads/captain)
-"atp" = (
+"awS" = (
/obj/machinery/door/airlock{
name = "Private Restroom";
req_access_txt = "0"
@@ -8908,7 +10527,7 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/freezer,
/area/crew_quarters/heads/captain)
-"atq" = (
+"awT" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -8922,9 +10541,32 @@
},
/turf/open/floor/plating,
/area/crew_quarters/heads/captain)
-"atr" = (
+"awU" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 5
+ },
+/turf/closed/wall/r_wall,
+/area/crew_quarters/heads/captain)
+"awV" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
+/turf/closed/wall/r_wall,
+/area/crew_quarters/heads/captain)
+"awW" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/closed/wall/r_wall,
+/area/crew_quarters/heads/captain)
+"awX" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 10
+ },
+/turf/closed/wall/r_wall,
+/area/crew_quarters/heads/captain)
+"awY" = (
/obj/machinery/light{
- dir = 8
+ dir = 8;
+ light_color = "#e8eaff"
},
/obj/machinery/firealarm{
dir = 4;
@@ -8934,7 +10576,38 @@
dir = 8
},
/area/bridge)
-"ats" = (
+"awZ" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 5
+ },
+/turf/open/floor/plasteel/black,
+/area/bridge)
+"axa" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/darkblue/side{
+ dir = 4
+ },
+/area/bridge)
+"axb" = (
+/obj/structure/chair/comfy/black{
+ dir = 1
+ },
+/turf/open/floor/plasteel/black,
+/area/bridge)
+"axc" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/darkblue/side{
+ dir = 8
+ },
+/area/bridge)
+"axd" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -8942,25 +10615,20 @@
},
/turf/open/floor/plasteel/black,
/area/bridge)
-"att" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+"axe" = (
+/obj/machinery/light{
+ dir = 4;
+ light_color = "#e8eaff"
+ },
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 28
+ },
/turf/open/floor/plasteel/darkblue/side{
dir = 4
},
/area/bridge)
-"atu" = (
-/obj/structure/chair/comfy/black{
- dir = 1
- },
-/turf/open/floor/plasteel/black,
-/area/bridge)
-"atv" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/darkblue/side{
- dir = 8
- },
-/area/bridge)
-"atw" = (
+"axf" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/poddoor{
density = 0;
@@ -8973,66 +10641,58 @@
dir = 8
},
/area/bridge)
-"atx" = (
+"axg" = (
/obj/machinery/atmospherics/components/unary/vent_pump/on,
/turf/open/floor/plasteel/black,
/area/bridge)
-"aty" = (
-/obj/machinery/camera{
- c_tag = "Bridge MiniSat Access";
- dir = 4;
- network = list("SS13")
- },
-/obj/machinery/light{
- dir = 1
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/on,
-/turf/open/floor/plasteel,
-/area/bridge)
-"atz" = (
-/obj/structure/transit_tube,
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/bridge)
-"atA" = (
+"axh" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/bridge)
-"atB" = (
+"axi" = (
+/turf/closed/wall/r_wall,
+/area/hallway/primary/central)
+"axj" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 5
},
-/turf/closed/wall/r_wall,
-/area/ai_monitored/nuke_storage)
-"atC" = (
-/obj/structure/sign/securearea,
+/turf/open/floor/plating,
+/area/hallway/primary/central)
+"axk" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 10
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/hallway/primary/central)
+"axl" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
},
/turf/closed/wall/r_wall,
-/area/ai_monitored/nuke_storage)
-"atD" = (
-/obj/machinery/door/airlock/vault{
- icon_state = "door_locked";
- locked = 1;
- req_access_txt = "53"
- },
+/area/hallway/primary/central)
+"axm" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/stairs,
+/area/hallway/primary/central)
+"axn" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/vault,
-/area/ai_monitored/nuke_storage)
-"atE" = (
-/obj/structure/sign/securearea,
-/turf/closed/wall/r_wall,
-/area/ai_monitored/nuke_storage)
-"atF" = (
+/turf/open/floor/plating,
+/area/hallway/primary/central)
+"axo" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 8
},
@@ -9041,12 +10701,12 @@
},
/turf/open/floor/plasteel,
/area/crew_quarters/dorms)
-"atG" = (
+"axp" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
/turf/open/floor/carpet,
/area/crew_quarters/dorms)
-"atH" = (
+"axq" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -9054,7 +10714,7 @@
/obj/structure/chair/comfy/brown,
/turf/open/floor/carpet,
/area/crew_quarters/dorms)
-"atI" = (
+"axr" = (
/obj/effect/landmark/start/assistant,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -9062,51 +10722,51 @@
/obj/structure/chair/comfy/brown,
/turf/open/floor/carpet,
/area/crew_quarters/dorms)
-"atJ" = (
+"axs" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/obj/structure/chair/comfy/brown,
/turf/open/floor/carpet,
/area/crew_quarters/dorms)
-"atK" = (
+"axt" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/carpet,
/area/crew_quarters/dorms)
-"atL" = (
+"axu" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 10
},
/turf/open/floor/plasteel,
/area/crew_quarters/dorms)
-"atM" = (
+"axv" = (
/obj/structure/grille,
/obj/structure/window/fulltile,
/turf/open/floor/plating,
/area/crew_quarters/fitness/recreation)
-"atN" = (
+"axw" = (
/turf/open/floor/plasteel,
/area/crew_quarters/fitness/recreation)
-"atO" = (
+"axx" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
/turf/open/floor/plasteel,
/area/crew_quarters/fitness/recreation)
-"atP" = (
+"axy" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass{
name = "Holodeck Door"
},
/turf/open/floor/plasteel,
/area/crew_quarters/fitness/recreation)
-"atQ" = (
+"axz" = (
/obj/machinery/atmospherics/components/unary/vent_pump/on{
dir = 4
},
/turf/open/floor/plasteel,
/area/crew_quarters/fitness/recreation)
-"atR" = (
+"axA" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -9118,19 +10778,19 @@
/obj/effect/landmark/xeno_spawn,
/turf/open/floor/plasteel,
/area/crew_quarters/fitness/recreation)
-"atS" = (
+"axB" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/maintenance/solars/port)
-"atT" = (
+"axC" = (
/turf/closed/wall,
/area/maintenance/solars/port)
-"atU" = (
+"axD" = (
/obj/structure/shuttle/engine/propulsion,
/turf/open/floor/plating,
/area/shuttle/labor)
-"atV" = (
+"axE" = (
/obj/machinery/door/poddoor/preopen{
id = "prison release";
name = "prisoner processing blast door"
@@ -9138,17 +10798,23 @@
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
/area/security/brig)
-"atW" = (
+"axF" = (
/obj/item/weapon/twohanded/required/kirbyplants{
icon_state = "plant-10";
layer = 4.1
},
/turf/open/floor/plasteel,
/area/hallway/primary/fore)
-"atX" = (
+"axG" = (
/turf/open/floor/plasteel,
/area/hallway/primary/fore)
-"atY" = (
+"axH" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_y = 30
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/fore)
+"axI" = (
/obj/machinery/light{
dir = 1
},
@@ -9157,36 +10823,39 @@
},
/turf/open/floor/plasteel,
/area/hallway/primary/fore)
-"atZ" = (
+"axJ" = (
+/obj/structure/sign/security{
+ pixel_y = 32
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/fore)
+"axK" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel,
/area/hallway/primary/fore)
-"aua" = (
+"axL" = (
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel,
/area/hallway/primary/fore)
-"aub" = (
+"axM" = (
/turf/open/floor/plasteel/red/side{
dir = 4
},
/area/hallway/primary/fore)
-"auc" = (
+"axN" = (
/obj/structure/dresser,
-/obj/structure/sign/securearea{
- desc = "Under the painting a plaque reads: 'While the meat grinder may not have spared you, fear not. Not one part of you has gone to waste... You were delicious.'";
- icon_state = "monkey_painting";
- name = "Mr. Deempisi portrait";
- pixel_y = 28
+/obj/structure/sign/poster/official/fruit_bowl{
+ pixel_y = 32
},
/turf/open/floor/plasteel/grimy,
/area/crew_quarters/heads/captain)
-"aud" = (
+"axO" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
dir = 1
},
/turf/open/floor/plasteel/grimy,
/area/crew_quarters/heads/captain)
-"aue" = (
+"axP" = (
/obj/structure/closet/secure_closet/captains,
/obj/machinery/light{
dir = 1
@@ -9199,11 +10868,11 @@
/obj/item/clothing/head/helmet/knight/blue,
/turf/open/floor/plasteel/grimy,
/area/crew_quarters/heads/captain)
-"auf" = (
+"axQ" = (
/obj/machinery/suit_storage_unit/captain,
/turf/open/floor/plasteel/grimy,
/area/crew_quarters/heads/captain)
-"aug" = (
+"axR" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -9214,7 +10883,7 @@
dir = 1
},
/area/crew_quarters/heads/captain)
-"auh" = (
+"axS" = (
/obj/machinery/power/apc{
cell_type = 2500;
dir = 1;
@@ -9227,7 +10896,7 @@
},
/turf/open/floor/carpet,
/area/crew_quarters/heads/captain)
-"aui" = (
+"axT" = (
/obj/structure/table/wood,
/obj/machinery/recharger,
/obj/machinery/requests_console{
@@ -9239,7 +10908,7 @@
},
/turf/open/floor/carpet,
/area/crew_quarters/heads/captain)
-"auj" = (
+"axU" = (
/obj/machinery/computer/card,
/obj/item/weapon/card/id/captains_spare,
/obj/item/device/radio/intercom{
@@ -9249,29 +10918,29 @@
},
/turf/open/floor/carpet,
/area/crew_quarters/heads/captain)
-"auk" = (
+"axV" = (
/obj/machinery/computer/communications,
/obj/machinery/airalarm{
pixel_y = 22
},
/turf/open/floor/carpet,
/area/crew_quarters/heads/captain)
-"aul" = (
+"axW" = (
/obj/structure/filingcabinet/employment,
/turf/open/floor/carpet,
/area/crew_quarters/heads/captain)
-"aum" = (
+"axX" = (
/obj/structure/extinguisher_cabinet{
pixel_x = -24
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 6
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
},
/turf/open/floor/plasteel/darkblue/side{
dir = 8
},
/area/bridge)
-"aun" = (
+"axY" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -9282,32 +10951,32 @@
},
/turf/open/floor/plasteel/black,
/area/bridge)
-"auo" = (
+"axZ" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/darkblue/corner,
/area/bridge)
-"aup" = (
+"aya" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel/black,
/area/bridge)
-"auq" = (
+"ayb" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel/darkblue/side,
/area/bridge)
-"aur" = (
+"ayc" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
/turf/open/floor/plasteel/darkblue/corner{
dir = 8
},
/area/bridge)
-"aus" = (
+"ayd" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 1
},
@@ -9315,7 +10984,7 @@
dir = 4
},
/area/bridge)
-"aut" = (
+"aye" = (
/obj/machinery/door/airlock/command{
name = "External Access";
req_access_txt = "0";
@@ -9326,7 +10995,7 @@
},
/turf/open/floor/plasteel/black,
/area/bridge)
-"auu" = (
+"ayf" = (
/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -9342,59 +11011,22 @@
dir = 8
},
/area/bridge)
-"auv" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
-/turf/open/floor/plasteel/black,
-/area/bridge)
-"auw" = (
-/obj/machinery/door/airlock/command{
- name = "MiniSat Access";
- req_access_txt = "65"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/vault{
- dir = 5
- },
-/area/bridge)
-"aux" = (
+"ayg" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 9
},
-/turf/open/floor/plasteel,
+/turf/open/floor/plasteel/black,
/area/bridge)
-"auy" = (
-/obj/structure/transit_tube_pod,
-/obj/structure/transit_tube/station/reverse{
- dir = 8
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/bridge)
-"auz" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating,
-/area/hallway/primary/central)
-"auA" = (
+"ayh" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/stairs,
/area/hallway/primary/central)
-"auB" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/hallway/primary/central)
-"auC" = (
+"ayi" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/door/poddoor/shutters/preopen{
@@ -9403,7 +11035,7 @@
},
/turf/open/floor/plating,
/area/crew_quarters/dorms)
-"auD" = (
+"ayj" = (
/obj/structure/bed,
/obj/item/weapon/bedsheet/nanotrasen,
/obj/machinery/button/door{
@@ -9414,7 +11046,7 @@
},
/turf/open/floor/carpet,
/area/crew_quarters/dorms)
-"auE" = (
+"ayk" = (
/obj/machinery/light/small{
dir = 1
},
@@ -9429,7 +11061,7 @@
},
/turf/open/floor/carpet,
/area/crew_quarters/dorms)
-"auF" = (
+"ayl" = (
/obj/machinery/button/door{
id = "Dorm2";
name = "Dorm Bolt Control";
@@ -9444,21 +11076,24 @@
},
/turf/open/floor/carpet,
/area/crew_quarters/dorms)
-"auG" = (
+"aym" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -24
+ },
/turf/open/floor/plasteel,
/area/crew_quarters/dorms)
-"auH" = (
+"ayn" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/carpet,
/area/crew_quarters/dorms)
-"auI" = (
+"ayo" = (
/obj/structure/table/wood,
/obj/item/weapon/storage/pill_bottle/dice,
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
@@ -9466,7 +11101,7 @@
},
/turf/open/floor/carpet,
/area/crew_quarters/dorms)
-"auJ" = (
+"ayp" = (
/obj/structure/table/wood,
/obj/item/weapon/pen{
layer = 4
@@ -9476,21 +11111,21 @@
},
/turf/open/floor/carpet,
/area/crew_quarters/dorms)
-"auK" = (
+"ayq" = (
/obj/structure/table/wood,
/obj/item/weapon/storage/backpack,
/turf/open/floor/carpet,
/area/crew_quarters/dorms)
-"auL" = (
+"ayr" = (
/turf/open/floor/carpet,
/area/crew_quarters/dorms)
-"auM" = (
+"ays" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 5
},
/turf/open/floor/plasteel,
/area/crew_quarters/dorms)
-"auN" = (
+"ayt" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass{
name = "Recreation Room"
@@ -9500,23 +11135,24 @@
},
/turf/open/floor/plasteel,
/area/crew_quarters/fitness/recreation)
-"auO" = (
+"ayu" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel,
/area/crew_quarters/fitness/recreation)
-"auP" = (
+"ayv" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 9
},
+/obj/structure/stacklifter,
/turf/open/floor/plasteel,
/area/crew_quarters/fitness/recreation)
-"auQ" = (
+"ayw" = (
/obj/machinery/computer/holodeck,
/turf/open/floor/plasteel,
/area/crew_quarters/fitness/recreation)
-"auR" = (
+"ayx" = (
/obj/structure/chair{
dir = 8
},
@@ -9527,17 +11163,12 @@
},
/turf/open/floor/plasteel,
/area/crew_quarters/fitness/recreation)
-"auS" = (
-/obj/structure/lattice/catwalk,
-/obj/structure/cable,
-/turf/open/space,
-/area/solar/starboard)
-"auT" = (
+"ayy" = (
/obj/structure/lattice/catwalk,
/obj/structure/cable,
/turf/open/space,
/area/solar/port)
-"auU" = (
+"ayz" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/structure/sign/securearea{
@@ -9549,7 +11180,7 @@
},
/turf/open/floor/plating,
/area/maintenance/solars/port)
-"auV" = (
+"ayA" = (
/obj/machinery/power/solar_control{
id = "portsolar";
name = "Port Solar Control";
@@ -9561,13 +11192,13 @@
},
/turf/open/floor/plating,
/area/maintenance/solars/port)
-"auW" = (
+"ayB" = (
/obj/machinery/light/small{
dir = 1
},
/turf/open/floor/plating,
/area/maintenance/solars/port)
-"auX" = (
+"ayC" = (
/obj/structure/cable{
icon_state = "0-2";
d2 = 2
@@ -9579,11 +11210,11 @@
},
/turf/open/floor/plating,
/area/maintenance/solars/port)
-"auY" = (
+"ayD" = (
/obj/structure/closet/firecloset,
/turf/open/floor/plating,
/area/maintenance/department/security/brig)
-"auZ" = (
+"ayE" = (
/obj/machinery/button/door{
id = "prison release";
name = "Labor Camp Shuttle Lockdown";
@@ -9594,7 +11225,7 @@
dir = 8
},
/area/hallway/primary/fore)
-"ava" = (
+"ayF" = (
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
icon_state = "space";
@@ -9604,50 +11235,50 @@
},
/turf/open/floor/plasteel,
/area/hallway/primary/fore)
-"avb" = (
+"ayG" = (
/obj/machinery/atmospherics/components/unary/vent_pump/on{
dir = 4
},
/turf/open/floor/plasteel,
/area/hallway/primary/fore)
-"avc" = (
+"ayH" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 10
},
/turf/open/floor/plasteel,
/area/hallway/primary/fore)
-"avd" = (
+"ayI" = (
/obj/machinery/navbeacon{
codes_txt = "patrol;next_patrol=BrigS2";
location = "BrigP"
},
/turf/open/floor/plasteel,
/area/hallway/primary/fore)
-"ave" = (
+"ayJ" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
/turf/open/floor/plasteel,
/area/hallway/primary/fore)
-"avf" = (
+"ayK" = (
/obj/structure/disposalpipe/segment{
dir = 4;
icon_state = "pipe-c"
},
/turf/open/floor/plasteel,
/area/hallway/primary/fore)
-"avg" = (
+"ayL" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/open/floor/plasteel,
/area/hallway/primary/fore)
-"avh" = (
+"ayM" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel,
/area/hallway/primary/fore)
-"avi" = (
+"ayN" = (
/obj/machinery/holopad,
/obj/structure/disposalpipe/segment{
dir = 4
@@ -9658,22 +11289,22 @@
},
/turf/open/floor/plasteel,
/area/hallway/primary/fore)
-"avj" = (
+"ayO" = (
/obj/structure/disposalpipe/segment{
dir = 8;
icon_state = "pipe-c"
},
/turf/open/floor/plasteel,
/area/hallway/primary/fore)
-"avk" = (
+"ayP" = (
/obj/machinery/atmospherics/components/unary/vent_pump/on,
/turf/open/floor/plasteel,
/area/hallway/primary/fore)
-"avl" = (
+"ayQ" = (
/obj/item/device/radio/beacon,
/turf/open/floor/plasteel,
/area/hallway/primary/fore)
-"avm" = (
+"ayR" = (
/obj/structure/sign/poster/official/random{
pixel_x = 32
},
@@ -9681,27 +11312,27 @@
dir = 4
},
/area/hallway/primary/fore)
-"avn" = (
+"ayS" = (
/obj/structure/bed,
/obj/item/weapon/bedsheet/captain,
/turf/open/floor/plasteel/grimy,
/area/crew_quarters/heads/captain)
-"avo" = (
+"ayT" = (
/turf/open/floor/plasteel/grimy,
/area/crew_quarters/heads/captain)
-"avp" = (
+"ayU" = (
/obj/machinery/atmospherics/components/unary/vent_pump/on{
dir = 4
},
/turf/open/floor/plasteel/grimy,
/area/crew_quarters/heads/captain)
-"avq" = (
+"ayV" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel/grimy,
/area/crew_quarters/heads/captain)
-"avr" = (
+"ayW" = (
/obj/machinery/door/airlock/command{
name = "Captain's Quarters";
req_access = null;
@@ -9712,7 +11343,7 @@
},
/turf/open/floor/plasteel/black,
/area/crew_quarters/heads/captain)
-"avs" = (
+"ayX" = (
/obj/structure/cable{
d1 = 1;
d2 = 4;
@@ -9724,7 +11355,7 @@
},
/turf/open/floor/plasteel/black,
/area/crew_quarters/heads/captain)
-"avt" = (
+"ayY" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -9740,7 +11371,7 @@
},
/turf/open/floor/carpet,
/area/crew_quarters/heads/captain)
-"avu" = (
+"ayZ" = (
/obj/machinery/door/window{
dir = 8;
name = "Captain's Desk";
@@ -9748,22 +11379,22 @@
},
/turf/open/floor/carpet,
/area/crew_quarters/heads/captain)
-"avv" = (
+"aza" = (
/turf/open/floor/carpet,
/area/crew_quarters/heads/captain)
-"avw" = (
+"azb" = (
/obj/structure/chair/comfy/black,
/obj/effect/landmark/start/captain,
/turf/open/floor/carpet,
/area/crew_quarters/heads/captain)
-"avx" = (
+"azc" = (
/obj/item/weapon/storage/secure/safe{
pixel_x = 35;
pixel_y = 5
},
/turf/open/floor/carpet,
/area/crew_quarters/heads/captain)
-"avy" = (
+"azd" = (
/obj/structure/cable{
d1 = 2;
d2 = 4;
@@ -9774,7 +11405,7 @@
dir = 8
},
/area/bridge)
-"avz" = (
+"aze" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -9790,7 +11421,7 @@
},
/turf/open/floor/plasteel/black,
/area/bridge)
-"avA" = (
+"azf" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -9804,7 +11435,7 @@
},
/turf/open/floor/plasteel/black,
/area/bridge)
-"avB" = (
+"azg" = (
/obj/structure/fireaxecabinet{
pixel_y = -32
},
@@ -9818,8 +11449,10 @@
},
/turf/open/floor/plasteel/black,
/area/bridge)
-"avC" = (
-/obj/machinery/light,
+"azh" = (
+/obj/machinery/light{
+ light_color = "#e8eaff"
+ },
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -9828,13 +11461,9 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
-/obj/machinery/airalarm{
- dir = 1;
- pixel_y = -22
- },
/turf/open/floor/plasteel/black,
/area/bridge)
-"avD" = (
+"azi" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -9852,7 +11481,7 @@
},
/turf/open/floor/plasteel/black,
/area/bridge)
-"avE" = (
+"azj" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -9869,7 +11498,7 @@
},
/turf/open/floor/plasteel/black,
/area/bridge)
-"avF" = (
+"azk" = (
/obj/machinery/turretid{
control_area = "AI Upload Chamber";
name = "AI Upload turret control";
@@ -9889,8 +11518,10 @@
},
/turf/open/floor/plasteel/black,
/area/bridge)
-"avG" = (
-/obj/machinery/light,
+"azl" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -9899,32 +11530,9 @@
/obj/machinery/newscaster{
pixel_y = -28
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
/turf/open/floor/plasteel/black,
/area/bridge)
-"avH" = (
-/obj/machinery/power/apc{
- cell_type = 10000;
- dir = 2;
- name = "Bridge APC";
- pixel_y = -24
- },
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/black,
-/area/bridge)
-"avI" = (
+"azm" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -9940,7 +11548,7 @@
},
/turf/open/floor/plasteel/black,
/area/bridge)
-"avJ" = (
+"azn" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -9954,20 +11562,30 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 10
},
-/turf/open/floor/plasteel/black,
-/area/bridge)
-"avK" = (
/obj/structure/cable{
d1 = 2;
d2 = 8;
icon_state = "2-8"
},
+/turf/open/floor/plasteel/black,
+/area/bridge)
+"azo" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/power/apc{
+ cell_type = 10000;
+ dir = 4;
+ name = "Bridge APC";
+ pixel_x = 24
+ },
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
/turf/open/floor/plasteel/darkblue/side{
dir = 4
},
/area/bridge)
-"avL" = (
+"azp" = (
/obj/machinery/light,
/obj/machinery/camera{
c_tag = "Bridge External Access";
@@ -9977,47 +11595,34 @@
/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
/turf/open/floor/plasteel/black,
/area/bridge)
-"avM" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
-/turf/open/floor/plasteel,
-/area/bridge)
-"avN" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/bridge)
-"avO" = (
-/turf/closed/wall/r_wall,
-/area/hallway/primary/central)
-"avP" = (
+"azq" = (
/obj/machinery/door/firedoor,
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"avQ" = (
+"azr" = (
/obj/structure/table/wood,
/obj/item/weapon/storage/book/bible,
/turf/open/floor/carpet,
/area/crew_quarters/dorms)
-"avR" = (
+"azs" = (
/obj/structure/chair/wood/normal{
dir = 8
},
/turf/open/floor/carpet,
/area/crew_quarters/dorms)
-"avS" = (
+"azt" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
dir = 4
},
/turf/open/floor/carpet,
/area/crew_quarters/dorms)
-"avT" = (
+"azu" = (
/obj/machinery/door/airlock{
id_tag = "Dorm2";
name = "Dorm 2"
@@ -10029,11 +11634,11 @@
dir = 5
},
/area/crew_quarters/dorms)
-"avU" = (
+"azv" = (
/obj/structure/disposalpipe/segment,
/turf/open/floor/carpet,
/area/crew_quarters/dorms)
-"avV" = (
+"azw" = (
/obj/structure/table/wood,
/obj/item/weapon/storage/crayons,
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
@@ -10041,7 +11646,7 @@
},
/turf/open/floor/carpet,
/area/crew_quarters/dorms)
-"avW" = (
+"azx" = (
/obj/structure/table/wood,
/obj/item/device/paicard,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -10049,7 +11654,7 @@
},
/turf/open/floor/carpet,
/area/crew_quarters/dorms)
-"avX" = (
+"azy" = (
/obj/structure/table/wood,
/obj/item/toy/cards/deck{
pixel_x = 2
@@ -10059,19 +11664,19 @@
},
/turf/open/floor/carpet,
/area/crew_quarters/dorms)
-"avY" = (
+"azz" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/carpet,
/area/crew_quarters/dorms)
-"avZ" = (
+"azA" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel,
/area/crew_quarters/dorms)
-"awa" = (
+"azB" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass{
name = "Recreation Room"
@@ -10081,24 +11686,25 @@
},
/turf/open/floor/plasteel,
/area/crew_quarters/fitness/recreation)
-"awb" = (
+"azC" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel,
/area/crew_quarters/fitness/recreation)
-"awc" = (
+"azD" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 10
},
+/obj/structure/weightlifter,
/turf/open/floor/plasteel,
/area/crew_quarters/fitness/recreation)
-"awd" = (
+"azE" = (
/obj/structure/table,
/obj/item/weapon/paper/fluff/holodeck/disclaimer,
/turf/open/floor/plasteel,
/area/crew_quarters/fitness/recreation)
-"awe" = (
+"azF" = (
/obj/structure/chair{
dir = 8
},
@@ -10113,7 +11719,7 @@
},
/turf/open/floor/plasteel,
/area/crew_quarters/fitness/recreation)
-"awf" = (
+"azG" = (
/obj/machinery/power/tracker,
/obj/structure/cable{
icon_state = "0-4";
@@ -10121,7 +11727,7 @@
},
/turf/open/floor/plasteel/airless/solarpanel,
/area/solar/port)
-"awg" = (
+"azH" = (
/obj/structure/lattice/catwalk,
/obj/structure/cable{
d1 = 4;
@@ -10130,7 +11736,7 @@
},
/turf/open/space,
/area/solar/port)
-"awh" = (
+"azI" = (
/obj/structure/lattice/catwalk,
/obj/structure/cable{
d2 = 8;
@@ -10138,16 +11744,24 @@
},
/turf/open/space,
/area/solar/port)
-"awi" = (
+"azJ" = (
/obj/structure/lattice/catwalk,
/obj/item/stack/cable_coil,
/turf/open/space,
-/area/solar/starboard)
-"awj" = (
+/area/solar/port)
+"azK" = (
/obj/structure/lattice/catwalk,
/turf/open/space,
/area/solar/port)
-"awk" = (
+"azL" = (
+/obj/structure/cable{
+ icon_state = "0-4";
+ d2 = 4
+ },
+/obj/structure/lattice/catwalk,
+/turf/open/space,
+/area/solar/port)
+"azM" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -10161,7 +11775,7 @@
},
/turf/open/floor/plating,
/area/maintenance/solars/port)
-"awl" = (
+"azN" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -10169,7 +11783,7 @@
},
/turf/open/floor/plating,
/area/maintenance/solars/port)
-"awm" = (
+"azO" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -10183,7 +11797,7 @@
},
/turf/open/floor/plating,
/area/maintenance/solars/port)
-"awn" = (
+"azP" = (
/obj/structure/cable{
d1 = 1;
d2 = 8;
@@ -10196,7 +11810,7 @@
},
/turf/open/floor/plating,
/area/maintenance/solars/port)
-"awo" = (
+"azQ" = (
/obj/structure/cable{
d1 = 2;
d2 = 8;
@@ -10204,7 +11818,7 @@
},
/turf/open/floor/plating,
/area/maintenance/solars/port)
-"awp" = (
+"azR" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -10217,12 +11831,7 @@
},
/turf/open/floor/plating,
/area/maintenance/solars/port)
-"awq" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
+"azS" = (
/obj/machinery/door/airlock/engineering{
name = "Port Solar Access";
req_access_txt = "10"
@@ -10234,7 +11843,7 @@
},
/turf/open/floor/plating,
/area/maintenance/solars/port)
-"awr" = (
+"azT" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -10247,7 +11856,18 @@
},
/turf/open/floor/plating,
/area/maintenance/department/security/brig)
-"aws" = (
+"azU" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating{
+ broken = 1;
+ icon_state = "platingdmg1"
+ },
+/area/maintenance/department/security/brig)
+"azV" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -10256,9 +11876,11 @@
/obj/machinery/light/small{
dir = 1
},
-/turf/open/floor/plating,
+/turf/open/floor/plating{
+ icon_state = "panelscorched"
+ },
/area/maintenance/department/security/brig)
-"awt" = (
+"azW" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -10270,7 +11892,7 @@
icon_state = "panelscorched"
},
/area/maintenance/department/security/brig)
-"awu" = (
+"azX" = (
/obj/structure/cable{
d1 = 2;
d2 = 8;
@@ -10279,17 +11901,17 @@
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
/area/maintenance/department/security/brig)
-"awv" = (
+"azY" = (
/obj/structure/plasticflaps,
/turf/open/floor/plating,
/area/maintenance/department/security/brig)
-"aww" = (
+"azZ" = (
/mob/living/simple_animal/bot/secbot/beepsky{
name = "Officer Beepsky"
},
/turf/open/floor/plating,
/area/maintenance/department/security/brig)
-"awx" = (
+"aAa" = (
/obj/structure/table,
/obj/machinery/cell_charger,
/obj/item/weapon/stock_parts/cell/potato{
@@ -10298,7 +11920,7 @@
/obj/item/weapon/paper/fluff/jobs/security/beepsky_mom,
/turf/open/floor/plating,
/area/maintenance/department/security/brig)
-"awy" = (
+"aAb" = (
/obj/machinery/power/apc{
dir = 8;
name = "Fore Primary Hallway APC";
@@ -10312,7 +11934,7 @@
dir = 8
},
/area/hallway/primary/fore)
-"awz" = (
+"aAc" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -10320,7 +11942,7 @@
},
/turf/open/floor/plasteel,
/area/hallway/primary/fore)
-"awA" = (
+"aAd" = (
/obj/machinery/light,
/obj/structure/cable{
d1 = 4;
@@ -10329,7 +11951,7 @@
},
/turf/open/floor/plasteel,
/area/hallway/primary/fore)
-"awB" = (
+"aAe" = (
/obj/structure/cable{
d1 = 2;
d2 = 8;
@@ -10338,68 +11960,58 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel,
/area/hallway/primary/fore)
-"awC" = (
+"aAf" = (
/obj/machinery/camera{
c_tag = "Fore Primary Hallway Port";
dir = 1
},
/turf/open/floor/plasteel,
/area/hallway/primary/fore)
-"awD" = (
-/obj/machinery/door/airlock/centcom{
- name = "Monastery Cemetary";
- opacity = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/black,
-/area/chapel/main/monastery)
-"awE" = (
+"aAg" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 5
},
/turf/open/floor/plasteel,
/area/hallway/primary/fore)
-"awF" = (
+"aAh" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 1
},
/turf/open/floor/plasteel,
/area/hallway/primary/fore)
-"awG" = (
+"aAi" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel,
/area/hallway/primary/fore)
-"awH" = (
+"aAj" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel,
/area/hallway/primary/fore)
-"awI" = (
+"aAk" = (
/obj/machinery/navbeacon{
codes_txt = "patrol;next_patrol=Tool";
location = "BrigS2"
},
/turf/open/floor/plasteel,
/area/hallway/primary/fore)
-"awJ" = (
+"aAl" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 6
},
/turf/open/floor/plasteel,
/area/hallway/primary/fore)
-"awK" = (
+"aAm" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel,
/area/hallway/primary/fore)
-"awL" = (
+"aAn" = (
/obj/machinery/light,
/obj/machinery/camera{
c_tag = "Fore Primary Hallway Starboard";
@@ -10410,7 +12022,7 @@
},
/turf/open/floor/plasteel,
/area/hallway/primary/fore)
-"awM" = (
+"aAo" = (
/obj/item/weapon/twohanded/required/kirbyplants{
icon_state = "plant-14";
layer = 4.1
@@ -10419,12 +12031,12 @@
dir = 4
},
/area/hallway/primary/fore)
-"awN" = (
+"aAp" = (
/obj/structure/table/wood,
/obj/item/device/flashlight/lamp/green,
/turf/open/floor/plasteel/grimy,
/area/crew_quarters/heads/captain)
-"awO" = (
+"aAq" = (
/obj/structure/table/wood,
/obj/item/weapon/storage/box/matches,
/obj/item/weapon/razor{
@@ -10435,22 +12047,22 @@
/obj/item/weapon/reagent_containers/food/drinks/flask/gold,
/turf/open/floor/plasteel/grimy,
/area/crew_quarters/heads/captain)
-"awP" = (
+"aAr" = (
/obj/structure/chair/comfy/brown{
dir = 4
},
/turf/open/floor/plasteel/grimy,
/area/crew_quarters/heads/captain)
-"awQ" = (
+"aAs" = (
/obj/structure/table/wood,
/obj/item/weapon/kitchen/fork,
/turf/open/floor/plasteel/grimy,
/area/crew_quarters/heads/captain)
-"awR" = (
+"aAt" = (
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/black,
/area/crew_quarters/heads/captain)
-"awS" = (
+"aAu" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -10459,12 +12071,12 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/carpet,
/area/crew_quarters/heads/captain)
-"awT" = (
+"aAv" = (
/obj/structure/table/wood,
/obj/item/device/flashlight/lamp/green,
/turf/open/floor/carpet,
/area/crew_quarters/heads/captain)
-"awU" = (
+"aAw" = (
/obj/structure/table/wood,
/obj/item/weapon/pen,
/obj/item/weapon/paper_bin{
@@ -10472,11 +12084,11 @@
},
/turf/open/floor/carpet,
/area/crew_quarters/heads/captain)
-"awV" = (
+"aAx" = (
/obj/structure/table/wood,
/turf/open/floor/carpet,
/area/crew_quarters/heads/captain)
-"awW" = (
+"aAy" = (
/obj/structure/table/wood,
/obj/item/weapon/folder/blue,
/obj/item/weapon/stamp/captain,
@@ -10485,7 +12097,7 @@
},
/turf/open/floor/carpet,
/area/crew_quarters/heads/captain)
-"awX" = (
+"aAz" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -10496,14 +12108,14 @@
dir = 8
},
/area/bridge)
-"awY" = (
+"aAA" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/black,
/area/bridge)
-"awZ" = (
+"aAB" = (
/turf/closed/wall/r_wall,
/area/ai_monitored/turret_protected/ai_upload)
-"axa" = (
+"aAC" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/highsecurity{
locked = 0;
@@ -10518,115 +12130,119 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/darkblue,
/area/ai_monitored/turret_protected/ai_upload)
-"axb" = (
+"aAD" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 8
},
-/turf/open/floor/plasteel/black,
-/area/bridge)
-"axc" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 4;
+ icon_state = "1-4"
},
+/turf/open/floor/plasteel/black,
+/area/bridge)
+"aAE" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
/turf/open/floor/plasteel/darkblue/side{
dir = 4
},
/area/bridge)
-"axd" = (
+"aAF" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/closed/wall/r_wall,
/area/crew_quarters/heads/hop)
-"axe" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
-/turf/closed/wall/r_wall,
-/area/crew_quarters/heads/hop)
-"axf" = (
+"aAG" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 9
},
/turf/closed/wall/r_wall,
/area/crew_quarters/heads/hop)
-"axg" = (
+"aAH" = (
/turf/closed/wall/r_wall,
/area/crew_quarters/heads/hop)
-"axh" = (
+"aAI" = (
/obj/machinery/disposal/bin,
/obj/structure/disposalpipe/trunk,
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -24
+ },
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"axi" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+"aAJ" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 6
+ },
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"axj" = (
+"aAK" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 5
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 9
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"axk" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 10
- },
+"aAL" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"axl" = (
+"aAM" = (
/obj/structure/chair,
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"axm" = (
+"aAN" = (
/turf/closed/wall,
/area/hallway/primary/central)
-"axn" = (
+"aAO" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel,
/area/crew_quarters/dorms)
-"axo" = (
+"aAP" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/chair/comfy/brown{
dir = 1
},
/turf/open/floor/carpet,
/area/crew_quarters/dorms)
-"axp" = (
+"aAQ" = (
/obj/effect/landmark/start/assistant,
/obj/structure/chair/comfy/brown{
dir = 1
},
/turf/open/floor/carpet,
/area/crew_quarters/dorms)
-"axq" = (
+"aAR" = (
/obj/structure/chair/comfy/brown{
dir = 1
},
/turf/open/floor/carpet,
/area/crew_quarters/dorms)
-"axr" = (
+"aAS" = (
/obj/machinery/atmospherics/components/unary/vent_pump/on{
dir = 1
},
/turf/open/floor/plasteel,
/area/crew_quarters/fitness/recreation)
-"axs" = (
+"aAT" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
dir = 4
},
/turf/open/floor/plasteel,
/area/crew_quarters/fitness/recreation)
-"axt" = (
+"aAU" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -10637,16 +12253,7 @@
},
/turf/open/floor/plasteel,
/area/crew_quarters/fitness/recreation)
-"axu" = (
-/obj/structure/lattice/catwalk,
-/obj/structure/cable{
- icon_state = "0-2";
- pixel_y = 1;
- d2 = 2
- },
-/turf/open/space,
-/area/solar/starboard)
-"axv" = (
+"aAV" = (
/obj/structure/lattice/catwalk,
/obj/structure/cable{
icon_state = "0-2";
@@ -10655,13 +12262,13 @@
},
/turf/open/space,
/area/solar/port)
-"axw" = (
+"aAW" = (
/obj/structure/rack,
/obj/item/clothing/mask/gas,
/obj/item/device/multitool,
/turf/open/floor/plating,
/area/maintenance/solars/port)
-"axx" = (
+"aAX" = (
/obj/structure/chair/stool,
/obj/machinery/power/terminal{
dir = 4
@@ -10669,12 +12276,23 @@
/obj/structure/cable,
/turf/open/floor/plating,
/area/maintenance/solars/port)
-"axy" = (
+"aAY" = (
/obj/machinery/power/smes,
/obj/structure/cable,
/turf/open/floor/plating,
/area/maintenance/solars/port)
-"axz" = (
+"aAZ" = (
+/turf/open/floor/plating{
+ broken = 1;
+ icon_state = "platingdmg3"
+ },
+/area/maintenance/department/security/brig)
+"aBa" = (
+/turf/open/floor/plating{
+ icon_state = "panelscorched"
+ },
+/area/maintenance/department/security/brig)
+"aBb" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -10685,7 +12303,7 @@
icon_state = "platingdmg1"
},
/area/maintenance/department/security/brig)
-"axA" = (
+"aBc" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -10697,10 +12315,10 @@
},
/turf/open/floor/plating,
/area/maintenance/department/security/brig)
-"axB" = (
+"aBd" = (
/turf/closed/wall,
/area/security/detectives_office)
-"axC" = (
+"aBe" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/door/poddoor/shutters/preopen{
@@ -10709,7 +12327,7 @@
},
/turf/open/floor/plating,
/area/security/detectives_office)
-"axD" = (
+"aBf" = (
/obj/machinery/door/firedoor,
/obj/structure/disposalpipe/segment,
/obj/machinery/door/airlock/security{
@@ -10720,23 +12338,26 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/grimy,
/area/security/detectives_office)
-"axE" = (
+"aBg" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -26
+ },
/turf/open/floor/plasteel/red/corner{
dir = 8
},
/area/hallway/primary/fore)
-"axF" = (
+"aBh" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/red/corner,
/area/hallway/primary/fore)
-"axG" = (
+"aBi" = (
/turf/closed/wall,
/area/storage/primary)
-"axH" = (
+"aBj" = (
/turf/closed/wall/r_wall,
/area/storage/primary)
-"axI" = (
+"aBk" = (
/obj/structure/disposalpipe/segment{
dir = 1;
icon_state = "pipe-c"
@@ -10744,9 +12365,14 @@
/obj/structure/extinguisher_cabinet{
pixel_x = -24
},
+/obj/item/weapon/twohanded/required/kirbyplants{
+ icon_state = "plant-20";
+ layer = 4.1;
+ pixel_y = 3
+ },
/turf/open/floor/plasteel/black,
/area/crew_quarters/heads/captain)
-"axJ" = (
+"aBl" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -10759,31 +12385,31 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/black,
/area/crew_quarters/heads/captain)
-"axK" = (
+"aBm" = (
/turf/open/floor/plasteel/black,
/area/crew_quarters/heads/captain)
-"axL" = (
+"aBn" = (
/obj/machinery/holopad,
/turf/open/floor/plasteel/black,
/area/crew_quarters/heads/captain)
-"axM" = (
+"aBo" = (
/obj/structure/chair{
dir = 1
},
/turf/open/floor/plasteel/black,
/area/crew_quarters/heads/captain)
-"axN" = (
+"aBp" = (
/obj/machinery/firealarm{
dir = 8;
pixel_x = 26
},
/turf/open/floor/plasteel/black,
/area/crew_quarters/heads/captain)
-"axO" = (
+"aBq" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass_command{
cyclelinkeddir = 2;
- name = "Bridge Access";
+ name = "Bridge";
req_access_txt = "19"
},
/obj/structure/cable{
@@ -10794,43 +12420,87 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/black,
/area/bridge)
-"axP" = (
+"aBr" = (
/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/door/airlock/glass_command{
cyclelinkeddir = 2;
- name = "Bridge Access";
+ name = "Bridge";
req_access_txt = "19"
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/black,
/area/bridge)
-"axQ" = (
+"aBs" = (
+/obj/machinery/porta_turret/ai{
+ dir = 8
+ },
+/turf/open/floor/plasteel/darkblue,
+/area/ai_monitored/turret_protected/ai_upload)
+"aBt" = (
+/obj/machinery/airalarm{
+ pixel_y = 22
+ },
/turf/open/floor/plasteel/darkblue/side{
dir = 9
},
/area/ai_monitored/turret_protected/ai_upload)
-"axR" = (
+"aBu" = (
/turf/open/floor/plasteel/darkblue/side{
dir = 1
},
/area/ai_monitored/turret_protected/ai_upload)
-"axS" = (
+"aBv" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/open/floor/plasteel/darkblue/side{
+ dir = 1
+ },
+/area/ai_monitored/turret_protected/ai_upload)
+"aBw" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/darkblue/side{
+ dir = 1
+ },
+/area/ai_monitored/turret_protected/ai_upload)
+"aBx" = (
+/obj/machinery/power/apc{
+ cell_type = 5000;
+ dir = 1;
+ name = "Upload APC";
+ pixel_y = 24
+ },
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/turf/open/floor/plasteel/darkblue/side{
+ dir = 5
+ },
+/area/ai_monitored/turret_protected/ai_upload)
+"aBy" = (
+/obj/machinery/door/firedoor,
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/darkblue/side{
- dir = 1
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/door/airlock/glass_command{
+ cyclelinkeddir = 2;
+ name = "Bridge";
+ req_access_txt = "19"
},
-/area/ai_monitored/turret_protected/ai_upload)
-"axT" = (
-/turf/open/floor/plasteel/darkblue/side{
- dir = 5
- },
-/area/ai_monitored/turret_protected/ai_upload)
-"axU" = (
+/turf/open/floor/plasteel/black,
+/area/bridge)
+"aBz" = (
/obj/structure/table/wood,
/obj/item/device/flashlight/lamp/green,
/obj/item/weapon/storage/secure/safe{
@@ -10839,15 +12509,15 @@
},
/turf/open/floor/wood,
/area/crew_quarters/heads/hop)
-"axV" = (
+"aBA" = (
/obj/machinery/computer/security/mining,
/turf/open/floor/wood,
/area/crew_quarters/heads/hop)
-"axW" = (
+"aBB" = (
/obj/machinery/computer/cargo/request,
/turf/open/floor/wood,
/area/crew_quarters/heads/hop)
-"axX" = (
+"aBC" = (
/obj/structure/closet/secure_closet/hop,
/obj/machinery/computer/security/telescreen{
desc = "Used for watching the monastery.";
@@ -10857,7 +12527,7 @@
},
/turf/open/floor/wood,
/area/crew_quarters/heads/hop)
-"axY" = (
+"aBD" = (
/obj/structure/filingcabinet/chestdrawer{
pixel_y = 2
},
@@ -10874,7 +12544,7 @@
},
/turf/open/floor/wood,
/area/crew_quarters/heads/hop)
-"axZ" = (
+"aBE" = (
/obj/machinery/requests_console{
announcementConsole = 1;
department = "Head of Personnel's Desk";
@@ -10887,22 +12557,17 @@
},
/turf/open/floor/wood,
/area/crew_quarters/heads/hop)
-"aya" = (
+"aBF" = (
/obj/machinery/status_display{
density = 0;
layer = 4;
pixel_y = 32
},
-/obj/structure/bed/dogbed{
- anchored = 1;
- desc = "Ian's bed! Looks comfy.";
- name = "Ian's bed";
- pixel_y = 2
- },
+/obj/structure/bed/dogbed/ian,
/mob/living/simple_animal/pet/dog/corgi/Ian,
/turf/open/floor/wood,
/area/crew_quarters/heads/hop)
-"ayb" = (
+"aBG" = (
/obj/machinery/vending/cart{
req_access_txt = "57"
},
@@ -10911,7 +12576,7 @@
},
/turf/open/floor/wood,
/area/crew_quarters/heads/hop)
-"ayc" = (
+"aBH" = (
/obj/machinery/power/apc{
cell_type = 5000;
dir = 8;
@@ -10925,7 +12590,11 @@
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"ayd" = (
+"aBI" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"aBJ" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -10933,11 +12602,7 @@
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"aye" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"ayf" = (
+"aBK" = (
/obj/structure/table,
/obj/machinery/light{
dir = 4
@@ -10945,7 +12610,7 @@
/obj/item/weapon/crowbar,
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"ayg" = (
+"aBL" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/door/poddoor/shutters/preopen{
@@ -10954,7 +12619,7 @@
},
/turf/open/floor/plating,
/area/crew_quarters/dorms)
-"ayh" = (
+"aBM" = (
/obj/structure/bed,
/obj/item/weapon/bedsheet/nanotrasen,
/obj/machinery/button/door{
@@ -10965,7 +12630,7 @@
},
/turf/open/floor/plasteel/grimy,
/area/crew_quarters/dorms)
-"ayi" = (
+"aBN" = (
/obj/machinery/light/small{
dir = 1
},
@@ -10980,7 +12645,7 @@
},
/turf/open/floor/plasteel/grimy,
/area/crew_quarters/dorms)
-"ayj" = (
+"aBO" = (
/obj/machinery/button/door{
id = "Dorm1";
name = "Dorm Bolt Control";
@@ -10995,54 +12660,61 @@
},
/turf/open/floor/plasteel/grimy,
/area/crew_quarters/dorms)
-"ayk" = (
+"aBP" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel,
+/area/crew_quarters/dorms)
+"aBQ" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel,
/area/crew_quarters/dorms)
-"ayl" = (
+"aBR" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel,
/area/crew_quarters/dorms)
-"aym" = (
+"aBS" = (
/obj/machinery/atmospherics/components/unary/vent_pump/on,
/turf/open/floor/plasteel,
/area/crew_quarters/dorms)
-"ayn" = (
+"aBT" = (
/obj/structure/closet/wardrobe/white,
/turf/open/floor/plasteel/arrival,
/area/crew_quarters/fitness/recreation)
-"ayo" = (
+"aBU" = (
/obj/structure/closet/wardrobe/mixed,
/turf/open/floor/plasteel/arrival,
/area/crew_quarters/fitness/recreation)
-"ayp" = (
+"aBV" = (
/obj/structure/closet/wardrobe/green,
/turf/open/floor/plasteel/arrival,
/area/crew_quarters/fitness/recreation)
-"ayq" = (
+"aBW" = (
/obj/structure/closet/wardrobe/grey,
/obj/machinery/light,
/turf/open/floor/plasteel/arrival,
/area/crew_quarters/fitness/recreation)
-"ayr" = (
+"aBX" = (
/obj/structure/closet/wardrobe/black,
/obj/item/clothing/shoes/jackboots,
/obj/item/weapon/storage/backpack,
/turf/open/floor/plasteel/arrival,
/area/crew_quarters/fitness/recreation)
-"ays" = (
+"aBY" = (
/obj/item/weapon/twohanded/required/kirbyplants{
icon_state = "plant-05";
layer = 4.1
},
/turf/open/floor/plasteel,
/area/crew_quarters/fitness/recreation)
-"ayt" = (
+"aBZ" = (
/obj/machinery/light{
dir = 4
},
@@ -11059,26 +12731,7 @@
},
/turf/open/floor/plasteel,
/area/crew_quarters/fitness/recreation)
-"ayu" = (
-/obj/structure/lattice/catwalk,
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/space,
-/area/solar/starboard)
-"ayv" = (
+"aCa" = (
/obj/structure/lattice/catwalk,
/obj/structure/cable{
d1 = 1;
@@ -11097,18 +12750,36 @@
},
/turf/open/space,
/area/solar/port)
-"ayw" = (
+"aCb" = (
/obj/structure/rack,
/obj/item/weapon/crowbar,
/obj/item/weapon/wrench,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
/area/maintenance/department/security/brig)
-"ayx" = (
+"aCc" = (
/obj/structure/closet/emcloset,
/turf/open/floor/plating,
/area/maintenance/department/security/brig)
-"ayy" = (
+"aCd" = (
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/plating{
+ broken = 1;
+ icon_state = "platingdmg3"
+ },
+/area/maintenance/department/security/brig)
+"aCe" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/security/brig)
+"aCf" = (
/obj/structure/cable{
d1 = 2;
d2 = 8;
@@ -11124,7 +12795,7 @@
},
/turf/open/floor/plating,
/area/maintenance/department/security/brig)
-"ayz" = (
+"aCg" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -11135,7 +12806,7 @@
},
/turf/open/floor/plating,
/area/maintenance/department/security/brig)
-"ayA" = (
+"aCh" = (
/obj/structure/cable{
d1 = 1;
d2 = 8;
@@ -11146,7 +12817,7 @@
},
/turf/open/floor/plating,
/area/maintenance/department/security/brig)
-"ayB" = (
+"aCi" = (
/obj/structure/table/wood,
/obj/item/weapon/twohanded/required/kirbyplants{
icon_state = "plant-18";
@@ -11155,7 +12826,7 @@
},
/turf/open/floor/plasteel/grimy,
/area/security/detectives_office)
-"ayC" = (
+"aCj" = (
/obj/machinery/light/small{
dir = 1
},
@@ -11165,19 +12836,19 @@
},
/turf/open/floor/plasteel/grimy,
/area/security/detectives_office)
-"ayD" = (
+"aCk" = (
/turf/open/floor/plasteel/grimy,
/area/security/detectives_office)
-"ayE" = (
+"aCl" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/grimy,
/area/security/detectives_office)
-"ayF" = (
+"aCm" = (
/obj/item/weapon/storage/briefcase,
/turf/open/floor/plasteel/grimy,
/area/security/detectives_office)
-"ayG" = (
+"aCn" = (
/obj/machinery/light/small{
dir = 1
},
@@ -11194,7 +12865,7 @@
},
/turf/open/floor/plasteel/grimy,
/area/security/detectives_office)
-"ayH" = (
+"aCo" = (
/obj/structure/closet/secure_closet/detective,
/obj/item/weapon/hand_labeler,
/obj/machinery/airalarm{
@@ -11202,7 +12873,7 @@
},
/turf/open/floor/plasteel/grimy,
/area/security/detectives_office)
-"ayI" = (
+"aCp" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 8
},
@@ -11210,19 +12881,22 @@
dir = 8
},
/area/hallway/primary/fore)
-"ayJ" = (
+"aCq" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
dir = 8
},
/turf/open/floor/plasteel,
/area/hallway/primary/fore)
-"ayK" = (
+"aCr" = (
/obj/machinery/vending/assist,
+/obj/structure/sign/poster/official/pda_ad{
+ pixel_y = 32
+ },
/turf/open/floor/plasteel/neutral/side{
dir = 9
},
/area/storage/primary)
-"ayL" = (
+"aCs" = (
/obj/structure/extinguisher_cabinet{
pixel_y = 30
},
@@ -11230,7 +12904,7 @@
dir = 1
},
/area/storage/primary)
-"ayM" = (
+"aCt" = (
/obj/structure/table,
/obj/item/weapon/wrench,
/obj/item/device/analyzer,
@@ -11243,7 +12917,7 @@
dir = 1
},
/area/storage/primary)
-"ayN" = (
+"aCu" = (
/obj/structure/table,
/obj/machinery/cell_charger,
/obj/item/weapon/stock_parts/cell/high/plus,
@@ -11259,7 +12933,7 @@
dir = 1
},
/area/storage/primary)
-"ayO" = (
+"aCv" = (
/obj/structure/table,
/obj/item/device/assembly/igniter{
pixel_x = -8;
@@ -11275,7 +12949,7 @@
},
/turf/open/floor/plasteel,
/area/storage/primary)
-"ayP" = (
+"aCw" = (
/obj/structure/table,
/obj/item/device/assembly/signaler,
/obj/item/device/assembly/signaler,
@@ -11290,17 +12964,20 @@
dir = 1
},
/area/storage/primary)
-"ayQ" = (
+"aCx" = (
/obj/machinery/vending/tool,
+/obj/structure/sign/poster/official/obey{
+ pixel_y = 32
+ },
/turf/open/floor/plasteel/neutral/side{
dir = 5
},
/area/storage/primary)
-"ayR" = (
+"aCy" = (
/obj/structure/displaycase/captain,
/turf/open/floor/plasteel/black,
/area/crew_quarters/heads/captain)
-"ayS" = (
+"aCz" = (
/obj/structure/cable{
d1 = 1;
d2 = 4;
@@ -11310,7 +12987,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/black,
/area/crew_quarters/heads/captain)
-"ayT" = (
+"aCA" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -11321,7 +12998,7 @@
},
/turf/open/floor/plasteel/black,
/area/crew_quarters/heads/captain)
-"ayU" = (
+"aCB" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -11332,7 +13009,7 @@
},
/turf/open/floor/plasteel/black,
/area/crew_quarters/heads/captain)
-"ayV" = (
+"aCC" = (
/obj/structure/cable{
d1 = 2;
d2 = 8;
@@ -11351,13 +13028,13 @@
},
/turf/open/floor/plasteel/black,
/area/crew_quarters/heads/captain)
-"ayW" = (
+"aCD" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/closed/wall/r_wall,
/area/crew_quarters/heads/captain)
-"ayX" = (
+"aCE" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -11369,7 +13046,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/black,
/area/bridge)
-"ayY" = (
+"aCF" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 4
},
@@ -11377,7 +13054,7 @@
dir = 8
},
/area/bridge)
-"ayZ" = (
+"aCG" = (
/obj/structure/table,
/obj/item/weapon/aiModule/supplied/quarantine,
/obj/machinery/camera/motion{
@@ -11393,7 +13070,7 @@
dir = 9
},
/area/ai_monitored/turret_protected/ai_upload)
-"aza" = (
+"aCH" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
dir = 4
},
@@ -11401,27 +13078,22 @@
dir = 1
},
/area/ai_monitored/turret_protected/ai_upload)
-"azb" = (
+"aCI" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel/black,
/area/ai_monitored/turret_protected/ai_upload)
-"azc" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
+"aCJ" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 9
},
/turf/open/floor/plasteel/black,
/area/ai_monitored/turret_protected/ai_upload)
-"azd" = (
+"aCK" = (
/turf/open/floor/plasteel/black,
/area/ai_monitored/turret_protected/ai_upload)
-"aze" = (
+"aCL" = (
/obj/machinery/atmospherics/components/unary/vent_pump/on{
dir = 4
},
@@ -11429,7 +13101,7 @@
dir = 4
},
/area/ai_monitored/turret_protected/ai_upload)
-"azf" = (
+"aCM" = (
/obj/structure/table,
/obj/item/weapon/aiModule/supplied/freeform,
/obj/machinery/camera/motion{
@@ -11447,13 +13119,13 @@
dir = 5
},
/area/ai_monitored/turret_protected/ai_upload)
-"azg" = (
+"aCN" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/closed/wall/r_wall,
/area/ai_monitored/turret_protected/ai_upload)
-"azh" = (
+"aCO" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -11464,7 +13136,7 @@
},
/turf/open/floor/plasteel/black,
/area/bridge)
-"azi" = (
+"aCP" = (
/obj/structure/table/wood,
/obj/item/weapon/pen{
layer = 4
@@ -11478,21 +13150,21 @@
},
/turf/open/floor/wood,
/area/crew_quarters/heads/hop)
-"azj" = (
+"aCQ" = (
/obj/structure/chair/office/dark{
dir = 1
},
/obj/effect/landmark/start/head_of_personnel,
/turf/open/floor/wood,
/area/crew_quarters/heads/hop)
-"azk" = (
+"aCR" = (
/obj/machinery/holopad,
/turf/open/floor/wood,
/area/crew_quarters/heads/hop)
-"azl" = (
+"aCS" = (
/turf/open/floor/wood,
/area/crew_quarters/heads/hop)
-"azm" = (
+"aCT" = (
/obj/structure/cable{
d1 = 2;
d2 = 4;
@@ -11504,7 +13176,7 @@
},
/turf/open/floor/wood,
/area/crew_quarters/heads/hop)
-"azn" = (
+"aCU" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -11518,7 +13190,7 @@
},
/turf/open/floor/wood,
/area/crew_quarters/heads/hop)
-"azo" = (
+"aCV" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/command{
name = "Head of Personnel";
@@ -11538,7 +13210,7 @@
},
/turf/open/floor/wood,
/area/crew_quarters/heads/hop)
-"azp" = (
+"aCW" = (
/obj/structure/cable{
d1 = 1;
d2 = 8;
@@ -11558,7 +13230,7 @@
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"azq" = (
+"aCX" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -11573,7 +13245,7 @@
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"azr" = (
+"aCY" = (
/obj/machinery/holopad,
/obj/structure/cable{
d1 = 1;
@@ -11595,36 +13267,36 @@
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"azs" = (
+"aCZ" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"azt" = (
+"aDa" = (
/obj/structure/chair{
dir = 1
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"azu" = (
+"aDb" = (
/obj/structure/table/wood,
/obj/item/weapon/storage/book/bible,
/turf/open/floor/plasteel/grimy,
/area/crew_quarters/dorms)
-"azv" = (
+"aDc" = (
/obj/structure/chair/wood/normal{
dir = 8
},
/turf/open/floor/plasteel/grimy,
/area/crew_quarters/dorms)
-"azw" = (
+"aDd" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
dir = 4
},
/turf/open/floor/plasteel/grimy,
/area/crew_quarters/dorms)
-"azx" = (
+"aDe" = (
/obj/machinery/door/airlock{
id_tag = "Dorm1";
name = "Dorm 1"
@@ -11636,17 +13308,17 @@
dir = 5
},
/area/crew_quarters/dorms)
-"azy" = (
+"aDf" = (
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel,
/area/crew_quarters/dorms)
-"azz" = (
+"aDg" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 8
},
/turf/open/floor/plasteel,
/area/crew_quarters/dorms)
-"azA" = (
+"aDh" = (
/obj/machinery/light,
/obj/machinery/camera{
c_tag = "Dormitories Aft";
@@ -11662,22 +13334,22 @@
},
/turf/open/floor/plasteel/white/corner,
/area/crew_quarters/dorms)
-"azB" = (
+"aDi" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel/white/side,
/area/crew_quarters/dorms)
-"azC" = (
+"aDj" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel/white/side,
/area/crew_quarters/dorms)
-"azD" = (
+"aDk" = (
/turf/open/floor/plasteel/white/side,
/area/crew_quarters/dorms)
-"azE" = (
+"aDl" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -11689,29 +13361,28 @@
},
/turf/open/floor/plating,
/area/crew_quarters/fitness/recreation)
-"azF" = (
+"aDm" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
/area/maintenance/department/security/brig)
-"azG" = (
+"aDn" = (
/obj/structure/grille/broken,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
/area/maintenance/department/security/brig)
-"azH" = (
+"aDo" = (
/obj/machinery/disposal/bin,
/obj/structure/disposalpipe/trunk{
dir = 4
},
/turf/open/floor/plasteel/grimy,
/area/security/detectives_office)
-"azI" = (
+"aDp" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -11720,7 +13391,7 @@
},
/turf/open/floor/plasteel/grimy,
/area/security/detectives_office)
-"azJ" = (
+"aDq" = (
/obj/structure/chair,
/obj/structure/disposalpipe/segment{
dir = 4
@@ -11730,7 +13401,7 @@
},
/turf/open/floor/plasteel/grimy,
/area/security/detectives_office)
-"azK" = (
+"aDr" = (
/obj/structure/chair,
/obj/structure/disposalpipe/junction{
icon_state = "pipe-y";
@@ -11741,13 +13412,13 @@
},
/turf/open/floor/plasteel/grimy,
/area/security/detectives_office)
-"azL" = (
+"aDs" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/open/floor/plasteel/grimy,
/area/security/detectives_office)
-"azM" = (
+"aDt" = (
/obj/structure/disposalpipe/segment{
dir = 2;
icon_state = "pipe-c"
@@ -11755,7 +13426,7 @@
/obj/machinery/atmospherics/components/unary/vent_pump/on,
/turf/open/floor/plasteel/grimy,
/area/security/detectives_office)
-"azN" = (
+"aDu" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/firealarm{
dir = 4;
@@ -11765,7 +13436,14 @@
dir = 8
},
/area/hallway/primary/fore)
-"azO" = (
+"aDv" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/plasteel/red/corner,
+/area/hallway/primary/fore)
+"aDw" = (
/obj/structure/cable{
icon_state = "0-4";
d2 = 4
@@ -11779,7 +13457,7 @@
dir = 8
},
/area/storage/primary)
-"azP" = (
+"aDx" = (
/obj/structure/cable{
d1 = 2;
d2 = 8;
@@ -11787,14 +13465,18 @@
},
/turf/open/floor/plasteel,
/area/storage/primary)
-"azQ" = (
+"aDy" = (
/obj/effect/landmark/start/assistant,
/turf/open/floor/plasteel,
/area/storage/primary)
-"azR" = (
+"aDz" = (
+/obj/structure/chair/stool,
/turf/open/floor/plasteel,
/area/storage/primary)
-"azS" = (
+"aDA" = (
+/turf/open/floor/plasteel,
+/area/storage/primary)
+"aDB" = (
/obj/machinery/firealarm{
dir = 4;
pixel_x = 28
@@ -11803,12 +13485,12 @@
dir = 4
},
/area/storage/primary)
-"azT" = (
+"aDC" = (
/obj/structure/table/wood,
/obj/item/weapon/storage/lockbox/medal,
/turf/open/floor/carpet,
/area/crew_quarters/heads/captain)
-"azU" = (
+"aDD" = (
/obj/structure/disposalpipe/segment{
dir = 1;
icon_state = "pipe-c"
@@ -11818,7 +13500,7 @@
},
/turf/open/floor/carpet,
/area/crew_quarters/heads/captain)
-"azV" = (
+"aDE" = (
/obj/structure/chair/comfy/brown,
/obj/structure/disposalpipe/segment{
dir = 4
@@ -11828,7 +13510,7 @@
},
/turf/open/floor/carpet,
/area/crew_quarters/heads/captain)
-"azW" = (
+"aDF" = (
/obj/structure/disposalpipe/junction{
icon_state = "pipe-j1";
dir = 4
@@ -11838,7 +13520,7 @@
},
/turf/open/floor/plasteel/black,
/area/crew_quarters/heads/captain)
-"azX" = (
+"aDG" = (
/obj/structure/cable{
d1 = 1;
d2 = 4;
@@ -11852,7 +13534,7 @@
},
/turf/open/floor/plasteel/black,
/area/crew_quarters/heads/captain)
-"azY" = (
+"aDH" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/command{
name = "Captain's Office";
@@ -11872,7 +13554,7 @@
},
/turf/open/floor/plasteel/black,
/area/crew_quarters/heads/captain)
-"azZ" = (
+"aDI" = (
/obj/structure/cable{
d1 = 2;
d2 = 8;
@@ -11894,13 +13576,13 @@
dir = 4
},
/area/bridge)
-"aAa" = (
+"aDJ" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/darkblue/corner{
dir = 8
},
/area/bridge)
-"aAb" = (
+"aDK" = (
/obj/machinery/porta_turret/ai{
dir = 8
},
@@ -11908,23 +13590,10 @@
dir = 8
},
/area/ai_monitored/turret_protected/ai_upload)
-"aAc" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/turf/open/floor/plasteel/black,
-/area/ai_monitored/turret_protected/ai_upload)
-"aAd" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
+"aDL" = (
/turf/open/floor/circuit,
/area/ai_monitored/turret_protected/ai_upload)
-"aAe" = (
+"aDM" = (
/obj/machinery/holopad,
/obj/machinery/camera/motion{
c_tag = "AI Upload Center";
@@ -11937,17 +13606,9 @@
name = "Station Intercom (AI Private)";
pixel_y = -28
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
/turf/open/floor/circuit,
/area/ai_monitored/turret_protected/ai_upload)
-"aAf" = (
-/turf/open/floor/circuit,
-/area/ai_monitored/turret_protected/ai_upload)
-"aAg" = (
+"aDN" = (
/obj/machinery/porta_turret/ai{
dir = 8
},
@@ -11958,11 +13619,11 @@
dir = 4
},
/area/ai_monitored/turret_protected/ai_upload)
-"aAh" = (
+"aDO" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/darkblue/corner,
/area/bridge)
-"aAi" = (
+"aDP" = (
/obj/structure/cable{
d1 = 1;
d2 = 4;
@@ -11979,7 +13640,7 @@
dir = 1
},
/area/bridge)
-"aAj" = (
+"aDQ" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -11999,7 +13660,7 @@
},
/turf/open/floor/plasteel/black,
/area/crew_quarters/heads/hop)
-"aAk" = (
+"aDR" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -12015,7 +13676,7 @@
},
/turf/open/floor/wood,
/area/crew_quarters/heads/hop)
-"aAl" = (
+"aDS" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -12029,7 +13690,7 @@
},
/turf/open/floor/wood,
/area/crew_quarters/heads/hop)
-"aAm" = (
+"aDT" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -12048,7 +13709,7 @@
},
/turf/open/floor/wood,
/area/crew_quarters/heads/hop)
-"aAn" = (
+"aDU" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -12062,7 +13723,7 @@
},
/turf/open/floor/wood,
/area/crew_quarters/heads/hop)
-"aAo" = (
+"aDV" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -12073,7 +13734,7 @@
},
/turf/open/floor/carpet,
/area/crew_quarters/heads/hop)
-"aAp" = (
+"aDW" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -12089,7 +13750,7 @@
},
/turf/open/floor/carpet,
/area/crew_quarters/heads/hop)
-"aAq" = (
+"aDX" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -12106,7 +13767,7 @@
},
/turf/open/floor/carpet,
/area/crew_quarters/heads/hop)
-"aAr" = (
+"aDY" = (
/obj/machinery/power/apc{
dir = 4;
name = "Head of Personnel APC";
@@ -12118,10 +13779,10 @@
},
/turf/open/floor/carpet,
/area/crew_quarters/heads/hop)
-"aAs" = (
+"aDZ" = (
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"aAt" = (
+"aEa" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -12130,21 +13791,21 @@
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"aAu" = (
+"aEb" = (
/obj/machinery/newscaster{
pixel_x = 32;
pixel_y = 1
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"aAv" = (
+"aEc" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel,
/area/crew_quarters/dorms)
-"aAw" = (
+"aEd" = (
/turf/closed/wall,
/area/crew_quarters/toilet/restrooms)
-"aAx" = (
+"aEe" = (
/obj/machinery/door/airlock{
name = "Unisex Restrooms";
req_access_txt = "0"
@@ -12152,20 +13813,20 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/freezer,
/area/crew_quarters/toilet/restrooms)
-"aAy" = (
+"aEf" = (
/obj/structure/urinal{
pixel_y = 32
},
/obj/effect/landmark/xeno_spawn,
/turf/open/floor/plasteel/freezer,
/area/crew_quarters/toilet/restrooms)
-"aAz" = (
+"aEg" = (
/obj/structure/urinal{
pixel_y = 32
},
/turf/open/floor/plasteel/freezer,
/area/crew_quarters/toilet/restrooms)
-"aAA" = (
+"aEh" = (
/obj/structure/urinal{
pixel_y = 32
},
@@ -12176,15 +13837,15 @@
/obj/effect/decal/cleanable/deadcockroach,
/turf/open/floor/plasteel/freezer,
/area/crew_quarters/toilet/restrooms)
-"aAB" = (
+"aEi" = (
/obj/effect/landmark/blobstart,
/obj/item/toy/beach_ball/holoball,
/turf/open/floor/plating,
/area/crew_quarters/toilet/restrooms)
-"aAC" = (
+"aEj" = (
/turf/closed/wall,
/area/maintenance/department/cargo)
-"aAD" = (
+"aEk" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -12193,7 +13854,12 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating,
/area/maintenance/department/cargo)
-"aAE" = (
+"aEl" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/maintenance/department/cargo)
+"aEm" = (
/obj/structure/table/wood,
/obj/item/device/flashlight/lamp{
pixel_x = 3;
@@ -12206,7 +13872,7 @@
},
/turf/open/floor/carpet,
/area/security/detectives_office)
-"aAF" = (
+"aEn" = (
/obj/structure/table/wood,
/obj/item/weapon/pen,
/obj/item/weapon/paper_bin{
@@ -12214,19 +13880,19 @@
},
/turf/open/floor/carpet,
/area/security/detectives_office)
-"aAG" = (
+"aEo" = (
/obj/structure/table/wood,
/obj/item/weapon/storage/fancy/cigarettes,
/obj/item/weapon/lighter,
/obj/item/clothing/glasses/hud/security/sunglasses,
/turf/open/floor/carpet,
/area/security/detectives_office)
-"aAH" = (
+"aEp" = (
/obj/structure/table/wood,
/obj/machinery/computer/security/wooden_tv,
/turf/open/floor/carpet,
/area/security/detectives_office)
-"aAI" = (
+"aEq" = (
/obj/structure/table/wood,
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -12242,7 +13908,7 @@
},
/turf/open/floor/carpet,
/area/security/detectives_office)
-"aAJ" = (
+"aEr" = (
/obj/machinery/power/apc{
dir = 4;
name = "Detective's Office APC";
@@ -12254,10 +13920,13 @@
},
/turf/open/floor/plasteel/grimy,
/area/security/detectives_office)
-"aAK" = (
-/turf/closed/wall,
-/area/maintenance/department/chapel/monastery)
-"aAL" = (
+"aEs" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/red/corner{
+ dir = 8
+ },
+/area/hallway/primary/fore)
+"aEt" = (
/obj/structure/table,
/obj/item/weapon/storage/toolbox/electrical{
pixel_x = 2;
@@ -12273,7 +13942,7 @@
dir = 8
},
/area/storage/primary)
-"aAM" = (
+"aEu" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -12282,11 +13951,11 @@
/obj/machinery/atmospherics/components/unary/vent_pump/on,
/turf/open/floor/plasteel,
/area/storage/primary)
-"aAN" = (
+"aEv" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
/turf/open/floor/plasteel,
/area/storage/primary)
-"aAO" = (
+"aEw" = (
/obj/structure/table,
/obj/item/weapon/storage/toolbox/mechanical{
pixel_x = 2;
@@ -12302,7 +13971,7 @@
dir = 4
},
/area/storage/primary)
-"aAP" = (
+"aEx" = (
/obj/structure/table/wood,
/obj/item/weapon/pinpointer,
/obj/item/weapon/disk/nuclear,
@@ -12311,24 +13980,24 @@
},
/turf/open/floor/carpet,
/area/crew_quarters/heads/captain)
-"aAQ" = (
+"aEy" = (
/obj/structure/table/wood,
/obj/item/weapon/hand_tele,
/turf/open/floor/carpet,
/area/crew_quarters/heads/captain)
-"aAR" = (
+"aEz" = (
/obj/structure/table/wood,
/obj/item/weapon/storage/photo_album,
/turf/open/floor/carpet,
/area/crew_quarters/heads/captain)
-"aAS" = (
+"aEA" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/components/unary/vent_pump/on{
dir = 1
},
/turf/open/floor/plasteel/black,
/area/crew_quarters/heads/captain)
-"aAT" = (
+"aEB" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -12340,7 +14009,7 @@
dir = 4
},
/area/bridge)
-"aAU" = (
+"aEC" = (
/obj/machinery/light{
dir = 4
},
@@ -12354,7 +14023,7 @@
dir = 8
},
/area/bridge)
-"aAV" = (
+"aED" = (
/obj/structure/table,
/obj/item/weapon/aiModule/core/full/asimov,
/obj/item/weapon/aiModule/core/freeformcore,
@@ -12379,56 +14048,26 @@
dir = 10
},
/area/ai_monitored/turret_protected/ai_upload)
-"aAW" = (
+"aEE" = (
/obj/machinery/light,
-/obj/machinery/power/apc{
- cell_type = 5000;
- dir = 2;
- name = "Upload APC";
- pixel_y = -24
- },
-/obj/structure/cable,
/turf/open/floor/plasteel/darkblue/side,
/area/ai_monitored/turret_protected/ai_upload)
-"aAX" = (
+"aEF" = (
/obj/machinery/computer/upload/ai,
-/obj/machinery/flasher{
- id = "AI";
- pixel_y = -24
- },
/turf/open/floor/circuit,
/area/ai_monitored/turret_protected/ai_upload)
-"aAY" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+"aEG" = (
+/obj/machinery/flasher{
+ id = "AI";
+ pixel_y = -6
},
-/obj/machinery/door/airlock/maintenance{
- name = "Monastery Maintenance";
- req_access_txt = "0";
- req_one_access_txt = "22;24;10;11"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating,
-/area/maintenance/department/chapel/monastery)
-"aAZ" = (
+/turf/closed/wall/r_wall,
+/area/ai_monitored/turret_protected/ai_upload)
+"aEH" = (
/obj/machinery/computer/upload/borg,
-/obj/machinery/flasher{
- id = "AI";
- pixel_y = -24
- },
/turf/open/floor/circuit,
/area/ai_monitored/turret_protected/ai_upload)
-"aBa" = (
-/obj/machinery/light,
-/obj/machinery/airalarm{
- dir = 1;
- pixel_y = -22
- },
-/turf/open/floor/plasteel/darkblue/side,
-/area/ai_monitored/turret_protected/ai_upload)
-"aBb" = (
+"aEI" = (
/obj/structure/table,
/obj/item/weapon/aiModule/supplied/oxygen,
/obj/item/weapon/aiModule/zeroth/oneHuman,
@@ -12454,7 +14093,7 @@
dir = 6
},
/area/ai_monitored/turret_protected/ai_upload)
-"aBc" = (
+"aEJ" = (
/obj/machinery/light{
dir = 8
},
@@ -12465,21 +14104,21 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/darkblue/corner,
/area/bridge)
-"aBd" = (
+"aEK" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/darkblue/corner{
dir = 1
},
/area/bridge)
-"aBe" = (
+"aEL" = (
/obj/machinery/disposal/bin,
/obj/structure/disposalpipe/trunk{
dir = 1
},
/turf/open/floor/wood,
/area/crew_quarters/heads/hop)
-"aBf" = (
+"aEM" = (
/obj/item/weapon/twohanded/required/kirbyplants{
icon_state = "plant-24";
layer = 4.1
@@ -12491,7 +14130,7 @@
},
/turf/open/floor/wood,
/area/crew_quarters/heads/hop)
-"aBg" = (
+"aEN" = (
/obj/structure/table/wood,
/obj/item/weapon/storage/box/PDAs{
pixel_x = 4;
@@ -12501,11 +14140,11 @@
/obj/item/weapon/storage/box/ids,
/turf/open/floor/wood,
/area/crew_quarters/heads/hop)
-"aBh" = (
+"aEO" = (
/obj/machinery/computer/secure_data,
/turf/open/floor/carpet,
/area/crew_quarters/heads/hop)
-"aBi" = (
+"aEP" = (
/obj/machinery/computer/card,
/obj/structure/cable{
d1 = 1;
@@ -12514,7 +14153,7 @@
},
/turf/open/floor/carpet,
/area/crew_quarters/heads/hop)
-"aBj" = (
+"aEQ" = (
/obj/structure/chair/office/dark,
/obj/machinery/button/flasher{
id = "hopflash";
@@ -12541,7 +14180,7 @@
},
/turf/open/floor/carpet,
/area/crew_quarters/heads/hop)
-"aBk" = (
+"aER" = (
/obj/structure/table/wood,
/obj/item/weapon/stamp/hop{
pixel_x = -4;
@@ -12557,7 +14196,7 @@
},
/turf/open/floor/carpet,
/area/crew_quarters/heads/hop)
-"aBl" = (
+"aES" = (
/obj/machinery/camera{
c_tag = "Central Primary Hallway Vault";
dir = 4
@@ -12570,34 +14209,34 @@
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"aBm" = (
+"aET" = (
/turf/closed/wall,
/area/storage/emergency/starboard)
-"aBn" = (
+"aEU" = (
/obj/machinery/portable_atmospherics/canister/oxygen,
/turf/open/floor/plating,
/area/storage/emergency/starboard)
-"aBo" = (
+"aEV" = (
/obj/structure/reagent_dispensers/watertank,
/turf/open/floor/plating,
/area/storage/emergency/starboard)
-"aBp" = (
+"aEW" = (
/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel,
/area/crew_quarters/dorms)
-"aBq" = (
+"aEX" = (
/obj/machinery/door/firedoor,
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel,
/area/crew_quarters/dorms)
-"aBr" = (
+"aEY" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel,
/area/crew_quarters/dorms)
-"aBs" = (
+"aEZ" = (
/obj/structure/sink{
dir = 8;
pixel_x = -12;
@@ -12608,56 +14247,87 @@
},
/turf/open/floor/plasteel/freezer,
/area/crew_quarters/toilet/restrooms)
-"aBt" = (
+"aFa" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/freezer,
/area/crew_quarters/toilet/restrooms)
-"aBu" = (
+"aFb" = (
/obj/machinery/light_switch{
pixel_y = 25
},
/turf/open/floor/plasteel/freezer,
/area/crew_quarters/toilet/restrooms)
-"aBv" = (
+"aFc" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -24
+ },
/turf/open/floor/plasteel/freezer,
/area/crew_quarters/toilet/restrooms)
-"aBw" = (
+"aFd" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
/obj/machinery/portable_atmospherics/scrubber,
/turf/open/floor/plasteel/freezer,
/area/crew_quarters/toilet/restrooms)
-"aBx" = (
+"aFe" = (
/obj/machinery/light{
dir = 4
},
/turf/open/floor/plasteel/freezer,
/area/crew_quarters/toilet/restrooms)
-"aBy" = (
+"aFf" = (
/obj/structure/rack,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
/area/maintenance/department/cargo)
-"aBz" = (
+"aFg" = (
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
+ icon_state = "space";
+ layer = 4;
+ name = "EXTERNAL AIRLOCK";
+ pixel_y = 32
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/cargo)
+"aFh" = (
+/obj/machinery/door/airlock/external{
+ cyclelinkeddir = 4;
+ req_access_txt = "13"
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/cargo)
+"aFi" = (
+/turf/open/floor/plating,
+/area/maintenance/department/cargo)
+"aFj" = (
+/obj/machinery/door/airlock/external{
+ cyclelinkeddir = 8;
+ req_access_txt = "13"
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/cargo)
+"aFk" = (
/obj/structure/bodycontainer/morgue,
/obj/effect/landmark/revenantspawn,
/turf/open/floor/plasteel/black,
/area/security/detectives_office)
-"aBA" = (
+"aFl" = (
/obj/machinery/light/small{
- dir = 1
+ dir = 1;
+ light_color = "#ffc1c1"
},
/turf/open/floor/plasteel/black,
/area/security/detectives_office)
-"aBB" = (
+"aFm" = (
/obj/item/weapon/storage/secure/safe{
pixel_x = -22
},
/turf/open/floor/carpet,
/area/security/detectives_office)
-"aBC" = (
+"aFn" = (
/turf/open/floor/carpet,
/area/security/detectives_office)
-"aBD" = (
+"aFo" = (
/obj/structure/chair/comfy/brown{
buildstackamount = 0;
dir = 1
@@ -12665,14 +14335,14 @@
/obj/effect/landmark/start/detective,
/turf/open/floor/carpet,
/area/security/detectives_office)
-"aBE" = (
+"aFp" = (
/obj/structure/table/wood,
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/item/device/taperecorder,
/turf/open/floor/carpet,
/area/security/detectives_office)
-"aBF" = (
+"aFq" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -12680,7 +14350,7 @@
},
/turf/open/floor/plasteel/grimy,
/area/security/detectives_office)
-"aBG" = (
+"aFr" = (
/obj/machinery/camera{
c_tag = "Fore Primary Hallway Entrance";
dir = 4
@@ -12690,7 +14360,7 @@
dir = 8
},
/area/hallway/primary/fore)
-"aBH" = (
+"aFs" = (
/obj/structure/table,
/obj/item/stack/cable_coil{
pixel_x = 3;
@@ -12702,7 +14372,7 @@
dir = 8
},
/area/storage/primary)
-"aBI" = (
+"aFt" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -12711,11 +14381,11 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel,
/area/storage/primary)
-"aBJ" = (
+"aFu" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel,
/area/storage/primary)
-"aBK" = (
+"aFv" = (
/obj/structure/table,
/obj/item/weapon/weldingtool,
/obj/item/weapon/crowbar,
@@ -12725,25 +14395,25 @@
dir = 4
},
/area/storage/primary)
-"aBL" = (
+"aFw" = (
/obj/structure/table/wood,
/obj/item/device/camera,
/turf/open/floor/carpet,
/area/crew_quarters/heads/captain)
-"aBM" = (
+"aFx" = (
/obj/structure/chair/comfy/brown{
dir = 1
},
/turf/open/floor/carpet,
/area/crew_quarters/heads/captain)
-"aBN" = (
+"aFy" = (
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/darkblue/side,
/area/crew_quarters/heads/captain)
-"aBO" = (
+"aFz" = (
/turf/open/floor/plasteel/darkblue/side,
/area/crew_quarters/heads/captain)
-"aBP" = (
+"aFA" = (
/obj/structure/grille,
/obj/machinery/door/poddoor/shutters/preopen{
id = "hop";
@@ -12758,7 +14428,7 @@
},
/turf/open/floor/plating,
/area/crew_quarters/heads/hop)
-"aBQ" = (
+"aFB" = (
/obj/structure/table/reinforced,
/obj/machinery/door/window/brigdoor{
base_state = "rightsecure";
@@ -12784,11 +14454,19 @@
},
/turf/open/floor/plasteel,
/area/crew_quarters/heads/hop)
-"aBR" = (
+"aFC" = (
/obj/machinery/vending/snack,
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"aBS" = (
+"aFD" = (
+/obj/structure/table,
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/item/device/taperecorder,
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"aFE" = (
/obj/item/weapon/extinguisher,
/obj/machinery/power/apc{
dir = 8;
@@ -12802,20 +14480,20 @@
},
/turf/open/floor/plating,
/area/storage/emergency/starboard)
-"aBT" = (
+"aFF" = (
/obj/item/weapon/storage/box/lights/mixed,
/obj/machinery/light/small{
dir = 4
},
/turf/open/floor/plating,
/area/storage/emergency/starboard)
-"aBU" = (
+"aFG" = (
/obj/machinery/atmospherics/components/unary/vent_pump/on{
dir = 1
},
/turf/open/floor/plasteel/freezer,
/area/crew_quarters/toilet/restrooms)
-"aBV" = (
+"aFH" = (
/obj/structure/cable{
d1 = 2;
d2 = 4;
@@ -12826,11 +14504,7 @@
},
/turf/open/floor/plasteel/freezer,
/area/crew_quarters/toilet/restrooms)
-"aBW" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/closed/wall,
-/area/maintenance/department/chapel/monastery)
-"aBX" = (
+"aFI" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -12841,7 +14515,7 @@
},
/turf/open/floor/plasteel/freezer,
/area/crew_quarters/toilet/restrooms)
-"aBY" = (
+"aFJ" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -12850,7 +14524,7 @@
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
/turf/open/floor/plasteel/freezer,
/area/crew_quarters/toilet/restrooms)
-"aBZ" = (
+"aFK" = (
/obj/machinery/door/airlock{
name = "Unisex Showers";
req_access_txt = "0"
@@ -12865,7 +14539,7 @@
},
/turf/open/floor/plasteel/freezer,
/area/crew_quarters/toilet/restrooms)
-"aCa" = (
+"aFL" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -12879,7 +14553,7 @@
},
/turf/open/floor/plasteel/freezer,
/area/crew_quarters/toilet/restrooms)
-"aCb" = (
+"aFM" = (
/obj/machinery/shower{
dir = 8
},
@@ -12893,25 +14567,25 @@
},
/turf/open/floor/plasteel/freezer,
/area/crew_quarters/toilet/restrooms)
-"aCc" = (
+"aFN" = (
/obj/structure/table,
/obj/machinery/microwave,
/turf/open/floor/plating,
-/area/maintenance/department/cargo)
-"aCd" = (
+/area/space)
+"aFO" = (
/obj/effect/decal/cleanable/vomit/old,
/obj/structure/sign/poster/contraband/random{
pixel_y = 32
},
/turf/open/floor/plating,
-/area/maintenance/department/cargo)
-"aCe" = (
+/area/space)
+"aFP" = (
/obj/structure/sink/kitchen{
pixel_y = 28
},
/turf/open/floor/plating,
-/area/maintenance/department/cargo)
-"aCf" = (
+/area/space)
+"aFQ" = (
/obj/structure/table,
/obj/item/weapon/reagent_containers/glass/bowl,
/obj/item/weapon/reagent_containers/glass/bowl,
@@ -12924,37 +14598,40 @@
},
/turf/open/floor/plating,
/area/maintenance/department/cargo)
-"aCg" = (
+"aFR" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
/turf/open/floor/plating,
/area/maintenance/department/cargo)
-"aCh" = (
+"aFS" = (
/turf/closed/wall/mineral/titanium,
/area/shuttle/escape)
-"aCi" = (
+"aFT" = (
/obj/structure/grille,
/obj/structure/window/shuttle,
/turf/open/floor/plating,
/area/shuttle/escape)
-"aCj" = (
+"aFU" = (
/obj/structure/table,
/obj/item/weapon/storage/box/bodybags,
/obj/item/weapon/pen,
/turf/open/floor/plasteel/black,
/area/security/detectives_office)
-"aCk" = (
+"aFV" = (
/turf/open/floor/plasteel/black,
/area/security/detectives_office)
-"aCl" = (
+"aFW" = (
/obj/machinery/door/morgue{
name = "Morgue"
},
/turf/open/floor/plasteel/black,
/area/security/detectives_office)
-"aCm" = (
+"aFX" = (
/obj/machinery/computer/med_data,
/turf/open/floor/carpet,
/area/security/detectives_office)
-"aCn" = (
+"aFY" = (
/obj/machinery/computer/secure_data,
/obj/machinery/light,
/obj/machinery/camera{
@@ -12963,7 +14640,7 @@
},
/turf/open/floor/carpet,
/area/security/detectives_office)
-"aCo" = (
+"aFZ" = (
/obj/structure/cable{
d1 = 2;
d2 = 4;
@@ -12973,7 +14650,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/carpet,
/area/security/detectives_office)
-"aCp" = (
+"aGa" = (
/obj/structure/cable{
d1 = 1;
d2 = 8;
@@ -12981,7 +14658,7 @@
},
/turf/open/floor/plasteel/grimy,
/area/security/detectives_office)
-"aCq" = (
+"aGb" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass{
name = "Central Access"
@@ -12989,14 +14666,14 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel,
/area/hallway/primary/fore)
-"aCr" = (
+"aGc" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass{
name = "Central Access"
},
/turf/open/floor/plasteel,
/area/hallway/primary/fore)
-"aCs" = (
+"aGd" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass{
name = "Central Access"
@@ -13004,7 +14681,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel,
/area/hallway/primary/fore)
-"aCt" = (
+"aGe" = (
/obj/structure/rack,
/obj/item/weapon/wirecutters,
/obj/item/device/flashlight,
@@ -13013,11 +14690,11 @@
dir = 10
},
/area/storage/primary)
-"aCu" = (
+"aGf" = (
/obj/structure/reagent_dispensers/watertank,
/turf/open/floor/plasteel/neutral/side,
/area/storage/primary)
-"aCv" = (
+"aGg" = (
/obj/structure/table,
/obj/item/weapon/crowbar,
/obj/item/device/assembly/prox_sensor{
@@ -13030,23 +14707,23 @@
/obj/item/device/radio,
/turf/open/floor/plasteel/neutral/side,
/area/storage/primary)
-"aCw" = (
+"aGh" = (
/obj/structure/table,
/obj/item/weapon/storage/firstaid/regular,
/obj/item/weapon/reagent_containers/glass/beaker,
/turf/open/floor/plasteel/neutral/side,
/area/storage/primary)
-"aCx" = (
+"aGi" = (
/obj/structure/reagent_dispensers/fueltank,
/turf/open/floor/plasteel/neutral/side,
/area/storage/primary)
-"aCy" = (
+"aGj" = (
/obj/machinery/disposal/bin,
/turf/open/floor/plasteel/neutral/side{
dir = 6
},
/area/storage/primary)
-"aCz" = (
+"aGk" = (
/obj/machinery/vending/boozeomat{
products = list(/obj/item/weapon/reagent_containers/food/drinks/bottle/rum = 1, /obj/item/weapon/reagent_containers/food/drinks/bottle/wine = 1, /obj/item/weapon/reagent_containers/food/drinks/ale = 1, /obj/item/weapon/reagent_containers/food/drinks/drinkingglass = 6, /obj/item/weapon/reagent_containers/food/drinks/ice = 1, /obj/item/weapon/reagent_containers/food/drinks/drinkingglass/shotglass = 4);
req_access_txt = "20"
@@ -13055,7 +14732,7 @@
dir = 5
},
/area/crew_quarters/heads/captain)
-"aCA" = (
+"aGl" = (
/obj/machinery/disposal/bin,
/obj/structure/disposalpipe/trunk{
dir = 1
@@ -13064,37 +14741,87 @@
dir = 8
},
/area/crew_quarters/heads/captain)
-"aCB" = (
+"aGm" = (
/obj/machinery/computer/arcade,
/turf/open/floor/plasteel/vault{
dir = 8
},
/area/crew_quarters/heads/captain)
-"aCC" = (
+"aGn" = (
/obj/item/weapon/twohanded/required/kirbyplants{
icon_state = "plant-09";
+ light_color = "#2cb2e8";
+ light_range = 3;
name = "Photosynthetic Potted plant";
- pixel_y = 10
+ pixel_y = 0
},
/turf/open/floor/plating/airless,
/area/space)
-"aCD" = (
+"aGo" = (
+/obj/structure/lattice,
+/obj/structure/sign/logo{
+ pixel_y = 32
+ },
+/turf/open/space,
+/area/space)
+"aGp" = (
+/obj/structure/lattice,
+/obj/structure/sign/logo{
+ icon_state = "ss13sign-2";
+ pixel_y = 32
+ },
+/turf/open/space,
+/area/space)
+"aGq" = (
+/obj/structure/lattice,
+/obj/structure/sign/logo{
+ icon_state = "ss13sign-3";
+ pixel_y = 32
+ },
+/turf/open/space,
+/area/space)
+"aGr" = (
+/obj/structure/lattice,
+/obj/structure/sign/logo{
+ icon_state = "ss13sign-4";
+ pixel_y = 32
+ },
+/turf/open/space,
+/area/space)
+"aGs" = (
+/obj/structure/lattice,
+/obj/structure/sign/logo{
+ icon_state = "ss13sign-5";
+ pixel_y = 32
+ },
+/turf/open/space,
+/area/space)
+"aGt" = (
/obj/machinery/vending/cola,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"aCE" = (
+"aGu" = (
/obj/machinery/light/small{
dir = 1
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"aCF" = (
+"aGv" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"aCG" = (
+"aGw" = (
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"aGx" = (
/obj/machinery/flasher{
id = "hopflash";
pixel_x = 28;
@@ -13103,7 +14830,7 @@
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"aCH" = (
+"aGy" = (
/obj/structure/table,
/obj/item/weapon/pen,
/obj/item/weapon/paper_bin{
@@ -13112,11 +14839,11 @@
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"aCI" = (
+"aGz" = (
/obj/machinery/vending/cigarette,
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"aCJ" = (
+"aGA" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -13125,27 +14852,42 @@
/obj/item/weapon/storage/toolbox/emergency,
/turf/open/floor/plating,
/area/storage/emergency/starboard)
-"aCK" = (
+"aGB" = (
/obj/machinery/space_heater,
/obj/structure/sign/poster/contraband/random{
pixel_x = 32
},
/turf/open/floor/plating,
/area/storage/emergency/starboard)
-"aCL" = (
+"aGC" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 8
},
/turf/open/floor/plasteel,
/area/crew_quarters/dorms)
-"aCM" = (
+"aGD" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
dir = 8
},
/turf/open/floor/plasteel,
/area/crew_quarters/dorms)
-"aCN" = (
+"aGE" = (
+/obj/structure/sink{
+ dir = 8;
+ pixel_x = -12;
+ pixel_y = 2
+ },
+/obj/structure/mirror{
+ pixel_x = -28
+ },
+/obj/effect/decal/cleanable/vomit/old,
+/turf/open/floor/plasteel/freezer,
+/area/crew_quarters/toilet/restrooms)
+"aGF" = (
+/turf/open/floor/plasteel/freezer,
+/area/crew_quarters/toilet/restrooms)
+"aGG" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -13154,13 +14896,20 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/freezer,
/area/crew_quarters/toilet/restrooms)
-"aCO" = (
+"aGH" = (
+/obj/machinery/camera{
+ c_tag = "Dormitory Toilets";
+ dir = 1
+ },
+/turf/open/floor/plasteel/freezer,
+/area/crew_quarters/toilet/restrooms)
+"aGI" = (
/obj/machinery/shower{
dir = 4
},
/turf/open/floor/plasteel/freezer,
/area/crew_quarters/toilet/restrooms)
-"aCP" = (
+"aGJ" = (
/obj/machinery/shower{
dir = 8
},
@@ -13172,7 +14921,7 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/freezer,
/area/crew_quarters/toilet/restrooms)
-"aCQ" = (
+"aGK" = (
/obj/structure/table,
/obj/item/weapon/reagent_containers/food/snacks/cookie{
desc = "It has a distinctly eldritch taste to it.";
@@ -13184,33 +14933,28 @@
},
/turf/open/floor/plating,
/area/maintenance/department/cargo)
-"aCR" = (
+"aGL" = (
/obj/structure/chair/stool,
/obj/item/clothing/suit/apron/chef,
/turf/open/floor/plating,
/area/maintenance/department/cargo)
-"aCS" = (
+"aGM" = (
/obj/effect/landmark/blobstart,
/turf/open/floor/plating,
/area/maintenance/department/cargo)
-"aCT" = (
+"aGN" = (
/obj/machinery/hydroponics/constructable,
/turf/open/floor/plating,
/area/maintenance/department/cargo)
-"aCU" = (
-/obj/structure/closet/coffin,
-/obj/item/toy/figure/lawyer,
-/obj/effect/decal/cleanable/cobweb{
- icon_state = "cobweb2"
- },
+"aGO" = (
+/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
/area/maintenance/department/cargo)
-"aCV" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
+"aGP" = (
+/obj/structure/closet/emcloset,
/turf/open/floor/plating,
/area/maintenance/department/cargo)
-"aCW" = (
+"aGQ" = (
/obj/structure/table,
/obj/item/weapon/storage/firstaid/regular{
pixel_x = 2;
@@ -13218,11 +14962,11 @@
},
/turf/open/floor/mineral/titanium,
/area/shuttle/escape)
-"aCX" = (
+"aGR" = (
/obj/machinery/computer/emergency_shuttle,
/turf/open/floor/mineral/titanium,
/area/shuttle/escape)
-"aCY" = (
+"aGS" = (
/obj/structure/table,
/obj/machinery/recharger,
/obj/structure/extinguisher_cabinet{
@@ -13230,16 +14974,7 @@
},
/turf/open/floor/mineral/titanium,
/area/shuttle/escape)
-"aCZ" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating,
-/area/maintenance/department/security/brig)
-"aDa" = (
+"aGT" = (
/obj/machinery/door/airlock/maintenance{
name = "Detective Maintenance";
req_access_txt = "4"
@@ -13253,26 +14988,26 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
/area/security/detectives_office)
-"aDb" = (
+"aGU" = (
/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"aDc" = (
+"aGV" = (
/obj/machinery/door/firedoor,
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"aDd" = (
+"aGW" = (
/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"aDe" = (
+"aGX" = (
/obj/structure/grille,
/obj/structure/window/fulltile,
/turf/open/floor/plating,
/area/storage/primary)
-"aDf" = (
+"aGY" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass{
name = "Primary Tool Storage"
@@ -13285,7 +15020,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel,
/area/storage/primary)
-"aDg" = (
+"aGZ" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass{
name = "Primary Tool Storage"
@@ -13293,7 +15028,7 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel,
/area/storage/primary)
-"aDh" = (
+"aHa" = (
/obj/item/weapon/twohanded/required/kirbyplants{
icon_state = "plant-21";
layer = 4.1;
@@ -13301,45 +15036,50 @@
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"aDi" = (
+"aHb" = (
/obj/machinery/computer/arcade,
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"aDj" = (
+"aHc" = (
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk,
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"aHd" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/door/poddoor/preopen{
id = "bridge blast";
name = "bridge blast door"
},
/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass_command{
- cyclelinkeddir = 1;
- name = "Bridge Access";
- req_access_txt = "19"
- },
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
+/obj/machinery/door/airlock/glass_command{
+ cyclelinkeddir = 1;
+ name = "Bridge";
+ req_access_txt = "19"
+ },
/turf/open/floor/plasteel/vault,
/area/bridge)
-"aDk" = (
+"aHe" = (
/obj/machinery/door/poddoor/preopen{
id = "bridge blast";
name = "bridge blast door"
},
/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/door/airlock/glass_command{
cyclelinkeddir = 1;
- name = "Bridge Access";
+ name = "Bridge";
req_access_txt = "19"
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/vault,
/area/bridge)
-"aDl" = (
+"aHf" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/structure/cable{
@@ -13349,22 +15089,22 @@
},
/turf/open/floor/plating,
/area/hallway/primary/central)
-"aDm" = (
+"aHg" = (
/obj/machinery/door/poddoor/preopen{
id = "bridge blast";
name = "bridge blast door"
},
/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass_command{
- cyclelinkeddir = 1;
- name = "Bridge Access";
- req_access_txt = "19"
- },
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/door/airlock/glass_command{
+ cyclelinkeddir = 1;
+ name = "Bridge";
+ req_access_txt = "19"
+ },
/turf/open/floor/plasteel/vault,
/area/bridge)
-"aDn" = (
+"aHh" = (
/obj/machinery/door/poddoor/shutters/preopen{
id = "hopqueue";
name = "HoP Queue Shutters"
@@ -13373,14 +15113,47 @@
dir = 1
},
/area/hallway/primary/central)
-"aDo" = (
+"aHi" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable,
+/obj/structure/cable{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/turf/open/floor/plating,
+/area/hallway/primary/central)
+"aHj" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/structure/cable{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/turf/open/floor/plating,
+/area/hallway/primary/central)
+"aHk" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable,
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/turf/open/floor/plating,
+/area/hallway/primary/central)
+"aHl" = (
/obj/machinery/door/poddoor/shutters/preopen{
id = "hopqueue";
name = "HoP Queue Shutters"
},
/turf/open/floor/plasteel/loadingarea,
/area/hallway/primary/central)
-"aDp" = (
+"aHm" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -13390,12 +15163,7 @@
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"aDq" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/crew_quarters/dorms)
-"aDr" = (
+"aHn" = (
/obj/machinery/door/airlock{
name = "Starboard Emergency Storage";
req_access_txt = "0"
@@ -13407,7 +15175,7 @@
},
/turf/open/floor/plating,
/area/storage/emergency/starboard)
-"aDs" = (
+"aHo" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -13419,26 +15187,26 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/freezer,
/area/crew_quarters/toilet/restrooms)
-"aDt" = (
+"aHp" = (
/obj/machinery/door/airlock{
name = "Unit 1"
},
/turf/open/floor/plasteel/freezer,
/area/crew_quarters/toilet/restrooms)
-"aDu" = (
+"aHq" = (
/obj/machinery/door/airlock{
name = "Unit 2"
},
/turf/open/floor/plasteel/freezer,
/area/crew_quarters/toilet/restrooms)
-"aDv" = (
+"aHr" = (
/obj/machinery/shower{
dir = 4
},
/obj/item/weapon/soap/nanotrasen,
/turf/open/floor/plasteel/freezer,
/area/crew_quarters/toilet/restrooms)
-"aDw" = (
+"aHs" = (
/obj/structure/closet/crate,
/obj/item/weapon/cultivator,
/obj/item/weapon/shovel/spade,
@@ -13450,23 +15218,44 @@
/obj/item/weapon/reagent_containers/glass/bottle/nutrient/ez,
/turf/open/floor/plating,
/area/maintenance/department/cargo)
-"aDx" = (
+"aHt" = (
/obj/effect/decal/cleanable/egg_smudge,
/turf/open/floor/plating,
/area/maintenance/department/cargo)
-"aDy" = (
-/turf/closed/wall,
-/area/library)
-"aDz" = (
+"aHu" = (
+/obj/structure/grille/broken,
+/turf/open/floor/plating,
+/area/maintenance/department/cargo)
+"aHv" = (
+/turf/closed/wall/mineral/titanium/nodiagonal,
+/area/shuttle/escape)
+"aHw" = (
+/obj/machinery/light{
+ dir = 8
+ },
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/escape)
-"aDA" = (
+"aHx" = (
/obj/structure/chair/comfy/black{
dir = 1
},
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/escape)
-"aDB" = (
+"aHy" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/escape)
+"aHz" = (
+/turf/closed/wall,
+/area/hallway/secondary/exit/departure_lounge)
+"aHA" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/hallway/secondary/exit/departure_lounge)
+"aHB" = (
/obj/structure/cable{
d1 = 1;
d2 = 4;
@@ -13477,7 +15266,7 @@
},
/turf/open/floor/plating,
/area/maintenance/department/security/brig)
-"aDC" = (
+"aHC" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -13491,32 +15280,7 @@
},
/turf/open/floor/plating,
/area/maintenance/department/security/brig)
-"aDD" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/department/security/brig)
-"aDE" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/light/small{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/department/security/brig)
-"aDF" = (
+"aHD" = (
/obj/structure/cable{
d1 = 2;
d2 = 8;
@@ -13533,13 +15297,13 @@
},
/turf/open/floor/plating,
/area/maintenance/department/security/brig)
-"aDG" = (
+"aHE" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 8
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"aDH" = (
+"aHF" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -13549,20 +15313,22 @@
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"aDI" = (
+"aHG" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"aDJ" = (
+"aHH" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
-/turf/open/floor/plasteel,
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 4
+ },
/area/hallway/primary/central)
-"aDK" = (
+"aHI" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -13576,7 +15342,20 @@
dir = 4
},
/area/hallway/primary/central)
-"aDL" = (
+"aHJ" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/airalarm{
+ frequency = 1439;
+ locked = 0;
+ pixel_y = 23
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 4
+ },
+/area/hallway/primary/central)
+"aHK" = (
/obj/machinery/light{
dir = 1
},
@@ -13591,18 +15370,27 @@
dir = 4
},
/area/hallway/primary/central)
-"aDM" = (
+"aHL" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 1;
-
+ dir = 1
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 4
+ },
+/area/hallway/primary/central)
+"aHM" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 4
+ },
+/area/hallway/primary/central)
+"aHN" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"aDN" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"aDO" = (
+"aHO" = (
/obj/structure/disposalpipe/segment{
dir = 1;
icon_state = "pipe-c"
@@ -13612,7 +15400,7 @@
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"aDP" = (
+"aHP" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -13621,7 +15409,7 @@
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"aDQ" = (
+"aHQ" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -13632,7 +15420,7 @@
dir = 1
},
/area/hallway/primary/central)
-"aDR" = (
+"aHR" = (
/obj/machinery/door/firedoor,
/obj/structure/disposalpipe/segment{
dir = 4
@@ -13644,7 +15432,7 @@
dir = 1
},
/area/hallway/primary/central)
-"aDS" = (
+"aHS" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -13655,7 +15443,7 @@
dir = 1
},
/area/hallway/primary/central)
-"aDT" = (
+"aHT" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -13670,13 +15458,13 @@
dir = 1
},
/area/hallway/primary/central)
-"aDU" = (
+"aHU" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
/turf/open/floor/plasteel/blue/corner{
dir = 1
},
/area/hallway/primary/central)
-"aDV" = (
+"aHV" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -13684,7 +15472,19 @@
dir = 1
},
/area/hallway/primary/central)
-"aDW" = (
+"aHW" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = 29
+ },
+/turf/open/floor/plasteel/blue/corner{
+ dir = 1
+ },
+/area/hallway/primary/central)
+"aHX" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -13697,7 +15497,36 @@
dir = 1
},
/area/hallway/primary/central)
-"aDX" = (
+"aHY" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/plasteel/blue/corner{
+ dir = 1
+ },
+/area/hallway/primary/central)
+"aHZ" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/airalarm{
+ frequency = 1439;
+ locked = 0;
+ pixel_y = 23
+ },
+/turf/open/floor/plasteel/blue/corner{
+ dir = 1
+ },
+/area/hallway/primary/central)
+"aIa" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -13707,7 +15536,7 @@
dir = 1
},
/area/hallway/primary/central)
-"aDY" = (
+"aIb" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 1
},
@@ -13715,7 +15544,7 @@
dir = 1
},
/area/hallway/primary/central)
-"aDZ" = (
+"aIc" = (
/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -13728,7 +15557,18 @@
dir = 1
},
/area/hallway/primary/central)
-"aEa" = (
+"aId" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_y = 30
+ },
+/turf/open/floor/plasteel/blue/corner{
+ dir = 1
+ },
+/area/hallway/primary/central)
+"aIe" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -13740,14 +15580,14 @@
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"aEb" = (
+"aIf" = (
/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 6
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"aEc" = (
+"aIg" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass{
name = "Dormitory"
@@ -13757,13 +15597,13 @@
},
/turf/open/floor/plasteel,
/area/crew_quarters/dorms)
-"aEd" = (
+"aIh" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel,
/area/crew_quarters/dorms)
-"aEe" = (
+"aIi" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -13774,7 +15614,7 @@
},
/turf/open/floor/plasteel,
/area/crew_quarters/dorms)
-"aEf" = (
+"aIj" = (
/obj/machinery/vending/cigarette,
/obj/machinery/airalarm{
pixel_y = 22
@@ -13783,7 +15623,7 @@
dir = 4
},
/area/crew_quarters/dorms)
-"aEg" = (
+"aIk" = (
/obj/machinery/power/apc{
dir = 4;
name = "Dormitory Bathrooms APC";
@@ -13798,7 +15638,7 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/freezer,
/area/crew_quarters/toilet/restrooms)
-"aEh" = (
+"aIl" = (
/obj/structure/toilet{
dir = 8
},
@@ -13808,7 +15648,17 @@
/obj/effect/decal/cleanable/blood/old,
/turf/open/floor/plasteel/freezer,
/area/crew_quarters/toilet/restrooms)
-"aEi" = (
+"aIm" = (
+/obj/structure/toilet{
+ dir = 8
+ },
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/deadcockroach,
+/turf/open/floor/plasteel/freezer,
+/area/crew_quarters/toilet/restrooms)
+"aIn" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -13820,34 +15670,23 @@
},
/turf/open/floor/plating,
/area/crew_quarters/toilet/restrooms)
-"aEj" = (
+"aIo" = (
/obj/structure/mineral_door/iron,
/turf/open/floor/plating,
/area/maintenance/department/cargo)
-"aEk" = (
+"aIp" = (
/obj/structure/grille,
/turf/open/floor/plating,
/area/maintenance/department/cargo)
-"aEl" = (
+"aIq" = (
/obj/structure/closet/coffin,
-/obj/item/toy/figure/curator,
+/obj/item/toy/figure/lawyer,
+/obj/effect/decal/cleanable/cobweb{
+ icon_state = "cobweb2"
+ },
/turf/open/floor/plating,
/area/maintenance/department/cargo)
-"aEm" = (
-/obj/structure/lattice/catwalk,
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/turf/open/space,
-/area/solar/starboard)
-"aEn" = (
+"aIr" = (
/obj/structure/lattice/catwalk,
/obj/structure/cable{
d1 = 1;
@@ -13861,64 +15700,106 @@
},
/turf/open/space,
/area/solar/port)
-"aEo" = (
-/obj/machinery/door/airlock/centcom{
- name = "Library"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/carpet,
-/area/library)
-"aEp" = (
+"aIs" = (
/obj/structure/closet,
/turf/open/floor/mineral/titanium/yellow,
/area/shuttle/escape)
-"aEq" = (
+"aIt" = (
+/obj/machinery/recharge_station,
+/turf/open/floor/mineral/titanium/yellow,
+/area/shuttle/escape)
+"aIu" = (
/obj/machinery/vending/cola,
/turf/open/floor/mineral/titanium/yellow,
/area/shuttle/escape)
-"aEr" = (
+"aIv" = (
/obj/machinery/computer/atmos_alert,
/turf/open/floor/mineral/titanium,
/area/shuttle/escape)
-"aEs" = (
+"aIw" = (
/obj/structure/chair{
dir = 8
},
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/escape)
-"aEt" = (
+"aIx" = (
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/escape)
+"aIy" = (
/obj/structure/chair{
dir = 4
},
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/escape)
-"aEu" = (
+"aIz" = (
/obj/machinery/computer/security,
/turf/open/floor/mineral/titanium,
/area/shuttle/escape)
-"aEv" = (
+"aIA" = (
/obj/structure/chair,
/turf/open/floor/mineral/plastitanium/brig,
/area/shuttle/escape)
-"aEw" = (
+"aIB" = (
+/obj/item/weapon/twohanded/required/kirbyplants{
+ icon_state = "plant-17"
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 9
+ },
+/area/hallway/secondary/exit/departure_lounge)
+"aIC" = (
+/obj/structure/chair,
+/obj/machinery/computer/security/telescreen/entertainment{
+ pixel_y = 32
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 1
+ },
+/area/hallway/secondary/exit/departure_lounge)
+"aID" = (
+/obj/structure/chair,
+/obj/machinery/status_display{
+ density = 0;
+ layer = 4;
+ pixel_y = 30
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 1
+ },
+/area/hallway/secondary/exit/departure_lounge)
+"aIE" = (
+/obj/structure/chair,
+/obj/structure/sign/poster/official/report_crimes{
+ pixel_y = 32
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 1
+ },
+/area/hallway/secondary/exit/departure_lounge)
+"aIF" = (
+/obj/item/weapon/twohanded/required/kirbyplants{
+ icon_state = "plant-17"
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 5
+ },
+/area/hallway/secondary/exit/departure_lounge)
+"aIG" = (
/obj/structure/table,
/obj/item/weapon/reagent_containers/food/drinks/soda_cans/cola,
/turf/open/floor/plating,
/area/maintenance/department/security/brig)
-"aEx" = (
+"aIH" = (
/obj/structure/chair/stool,
/turf/open/floor/plating{
icon_state = "platingdmg3"
},
/area/maintenance/department/security/brig)
-"aEy" = (
+"aII" = (
/obj/machinery/vending/cigarette,
/turf/open/floor/plating,
/area/maintenance/department/security/brig)
-"aEz" = (
-/turf/closed/wall,
-/area/hallway/secondary/exit/departure_lounge)
-"aEA" = (
+"aIJ" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -13928,13 +15809,13 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
/area/maintenance/department/security/brig)
-"aEB" = (
+"aIK" = (
/obj/structure/reagent_dispensers/watertank,
/turf/open/floor/plating{
icon_state = "platingdmg3"
},
/area/maintenance/department/security/brig)
-"aEC" = (
+"aIL" = (
/obj/machinery/atmospherics/components/unary/vent_pump/on{
dir = 4
},
@@ -13944,13 +15825,13 @@
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"aED" = (
+"aIM" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"aEE" = (
+"aIN" = (
/obj/structure/cable{
d1 = 1;
d2 = 4;
@@ -13964,7 +15845,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"aEF" = (
+"aIO" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -13972,7 +15853,7 @@
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"aEG" = (
+"aIP" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -13981,7 +15862,7 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"aEH" = (
+"aIQ" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -13994,7 +15875,7 @@
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"aEI" = (
+"aIR" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -14003,7 +15884,7 @@
/obj/machinery/door/firedoor,
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"aEJ" = (
+"aIS" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -14014,7 +15895,7 @@
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"aEK" = (
+"aIT" = (
/obj/structure/cable{
d1 = 1;
d2 = 4;
@@ -14032,7 +15913,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"aEL" = (
+"aIU" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -14043,7 +15924,7 @@
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"aEM" = (
+"aIV" = (
/obj/structure/cable{
d1 = 2;
d2 = 8;
@@ -14060,7 +15941,7 @@
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"aEN" = (
+"aIW" = (
/obj/structure/cable{
d1 = 1;
d2 = 8;
@@ -14073,7 +15954,21 @@
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"aEO" = (
+"aIX" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/landmark/observer_start,
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"aIY" = (
/obj/structure/cable{
d1 = 1;
d2 = 8;
@@ -14081,13 +15976,13 @@
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"aEP" = (
+"aIZ" = (
/obj/machinery/atmospherics/components/unary/vent_pump/on{
dir = 4
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"aEQ" = (
+"aJa" = (
/obj/structure/disposalpipe/segment{
dir = 1;
icon_state = "pipe-c"
@@ -14097,7 +15992,7 @@
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"aER" = (
+"aJb" = (
/obj/structure/disposalpipe/segment{
dir = 2;
icon_state = "pipe-c"
@@ -14105,7 +16000,7 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"aES" = (
+"aJc" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -14125,7 +16020,7 @@
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"aET" = (
+"aJd" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -14143,7 +16038,7 @@
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"aEU" = (
+"aJe" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -14158,7 +16053,7 @@
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"aEV" = (
+"aJf" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass{
name = "Dormitory"
@@ -14173,7 +16068,7 @@
},
/turf/open/floor/plasteel,
/area/crew_quarters/dorms)
-"aEW" = (
+"aJg" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -14184,7 +16079,7 @@
},
/turf/open/floor/plasteel,
/area/crew_quarters/dorms)
-"aEX" = (
+"aJh" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -14196,7 +16091,7 @@
/obj/machinery/atmospherics/components/unary/vent_pump/on,
/turf/open/floor/plasteel,
/area/crew_quarters/dorms)
-"aEY" = (
+"aJi" = (
/obj/structure/cable{
d1 = 1;
d2 = 8;
@@ -14212,7 +16107,7 @@
},
/turf/open/floor/plasteel,
/area/crew_quarters/dorms)
-"aEZ" = (
+"aJj" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -14226,7 +16121,7 @@
},
/turf/open/floor/plasteel,
/area/crew_quarters/dorms)
-"aFa" = (
+"aJk" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -14245,7 +16140,7 @@
},
/turf/open/floor/plasteel,
/area/crew_quarters/dorms)
-"aFb" = (
+"aJl" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -14257,7 +16152,7 @@
},
/turf/open/floor/plasteel,
/area/crew_quarters/dorms)
-"aFc" = (
+"aJm" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -14270,7 +16165,7 @@
dir = 4
},
/area/crew_quarters/dorms)
-"aFd" = (
+"aJn" = (
/obj/machinery/door/airlock{
name = "Unisex Restrooms";
req_access_txt = "0"
@@ -14285,18 +16180,7 @@
},
/turf/open/floor/plasteel/freezer,
/area/crew_quarters/toilet/restrooms)
-"aFe" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/toilet/restrooms)
-"aFf" = (
+"aJo" = (
/obj/structure/cable{
d1 = 1;
d2 = 8;
@@ -14307,11 +16191,11 @@
},
/turf/open/floor/plasteel/freezer,
/area/crew_quarters/toilet/restrooms)
-"aFg" = (
+"aJp" = (
/obj/item/chair,
/turf/open/floor/plating,
/area/maintenance/department/cargo)
-"aFh" = (
+"aJq" = (
/obj/structure/cable{
d1 = 2;
d2 = 4;
@@ -14332,7 +16216,24 @@
icon_state = "panelscorched"
},
/area/maintenance/department/cargo)
-"aFi" = (
+"aJr" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating{
+ broken = 1;
+ icon_state = "platingdmg1"
+ },
+/area/maintenance/department/cargo)
+"aJs" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -14346,7 +16247,25 @@
},
/turf/open/floor/plating,
/area/maintenance/department/cargo)
-"aFj" = (
+"aJt" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/blood/old,
+/turf/open/floor/plating{
+ burnt = 1;
+ icon_state = "panelscorched"
+ },
+/area/maintenance/department/cargo)
+"aJu" = (
/obj/structure/grille,
/obj/structure/cable{
d1 = 4;
@@ -14361,7 +16280,7 @@
},
/turf/open/floor/plating,
/area/maintenance/department/cargo)
-"aFk" = (
+"aJv" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -14381,18 +16300,32 @@
},
/turf/open/floor/plating,
/area/maintenance/department/cargo)
-"aFl" = (
+"aJw" = (
+/obj/structure/closet/coffin,
+/obj/item/toy/figure/ian,
+/turf/open/floor/plating,
+/area/maintenance/department/cargo)
+"aJx" = (
/turf/open/floor/mineral/titanium/yellow,
/area/shuttle/escape)
-"aFm" = (
+"aJy" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 27
+ },
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/mineral/titanium/yellow,
+/area/shuttle/escape)
+"aJz" = (
/obj/machinery/computer/crew,
/turf/open/floor/mineral/titanium,
/area/shuttle/escape)
-"aFn" = (
+"aJA" = (
/obj/machinery/computer/communications,
/turf/open/floor/mineral/titanium,
/area/shuttle/escape)
-"aFo" = (
+"aJB" = (
/obj/machinery/flasher{
id = "shuttle_flasher";
pixel_x = -24;
@@ -14409,13 +16342,10 @@
},
/turf/open/floor/mineral/plastitanium/brig,
/area/shuttle/escape)
-"aFp" = (
+"aJC" = (
/turf/open/floor/mineral/plastitanium/brig,
/area/shuttle/escape)
-"aFq" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-17"
- },
+"aJD" = (
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
icon_state = "space";
@@ -14424,38 +16354,28 @@
pixel_x = -32
},
/turf/open/floor/plasteel/red/side{
- dir = 9
+ dir = 8
},
/area/hallway/secondary/exit/departure_lounge)
-"aFr" = (
-/obj/structure/chair,
-/obj/machinery/computer/security/telescreen/entertainment{
- pixel_y = 32
+"aJE" = (
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit/departure_lounge)
+"aJF" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/machinery/camera{
+ c_tag = "Departure Lounge Holding Area";
+ dir = 8
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 27
},
/turf/open/floor/plasteel/red/side{
- dir = 1
+ dir = 4
},
/area/hallway/secondary/exit/departure_lounge)
-"aFs" = (
-/obj/structure/chair,
-/obj/machinery/status_display{
- density = 0;
- layer = 4;
- pixel_y = 30
- },
-/turf/open/floor/plasteel/red/side{
- dir = 1
- },
-/area/hallway/secondary/exit/departure_lounge)
-"aFt" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-17"
- },
-/turf/open/floor/plasteel/red/side{
- dir = 5
- },
-/area/hallway/secondary/exit/departure_lounge)
-"aFu" = (
+"aJG" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 8
},
@@ -14471,20 +16391,20 @@
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"aFv" = (
+"aJH" = (
/obj/machinery/light,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"aFw" = (
+"aJI" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"aFx" = (
+"aJJ" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -14493,14 +16413,14 @@
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"aFy" = (
+"aJK" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"aFz" = (
+"aJL" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -14511,7 +16431,7 @@
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"aFA" = (
+"aJM" = (
/obj/machinery/camera{
c_tag = "Central Primary Hallway Bathroom";
dir = 1
@@ -14521,19 +16441,14 @@
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"aFB" = (
-/obj/machinery/door/airlock/centcom{
- name = "Library"
+"aJN" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/carpet,
-/area/library)
-"aFC" = (
+/obj/machinery/light,
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"aJO" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -14541,7 +16456,7 @@
dir = 8
},
/area/hallway/primary/central)
-"aFD" = (
+"aJP" = (
/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -14550,22 +16465,22 @@
dir = 8
},
/area/hallway/primary/central)
-"aFE" = (
+"aJQ" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
/turf/open/floor/plasteel/blue/corner{
dir = 8
},
/area/hallway/primary/central)
-"aFF" = (
-/obj/machinery/light,
+"aJR" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
+/obj/machinery/light,
/turf/open/floor/plasteel/blue/corner{
dir = 8
},
/area/hallway/primary/central)
-"aFG" = (
+"aJS" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -14579,13 +16494,16 @@
dir = 8
},
/area/hallway/primary/central)
-"aFH" = (
-/obj/structure/chair{
+"aJT" = (
+/obj/machinery/light,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/turf/open/floor/plating/abductor,
-/area/shuttle/abandoned)
-"aFI" = (
+/turf/open/floor/plasteel/blue/corner{
+ dir = 8
+ },
+/area/hallway/primary/central)
+"aJU" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -14595,7 +16513,7 @@
dir = 8
},
/area/hallway/primary/central)
-"aFJ" = (
+"aJV" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 1
},
@@ -14603,7 +16521,7 @@
dir = 8
},
/area/hallway/primary/central)
-"aFK" = (
+"aJW" = (
/obj/machinery/camera{
c_tag = "Central Primary Hallway EVA";
dir = 1
@@ -14615,7 +16533,7 @@
dir = 8
},
/area/hallway/primary/central)
-"aFL" = (
+"aJX" = (
/obj/structure/sign/directions/security{
dir = 8;
icon_state = "direction_sec";
@@ -14635,25 +16553,33 @@
/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"aFM" = (
-/obj/machinery/computer/shuttle/white_ship,
-/turf/open/floor/plating/abductor,
-/area/shuttle/abandoned)
-"aFN" = (
+"aJY" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"aJZ" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"aFO" = (
+"aKa" = (
/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"aFP" = (
+"aKb" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass{
name = "Dormitory"
@@ -14663,18 +16589,18 @@
},
/turf/open/floor/plasteel,
/area/crew_quarters/dorms)
-"aFQ" = (
+"aKc" = (
/obj/machinery/light,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel,
/area/crew_quarters/dorms)
-"aFR" = (
+"aKd" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
/turf/open/floor/plasteel,
/area/crew_quarters/dorms)
-"aFS" = (
+"aKe" = (
/obj/machinery/camera{
c_tag = "Dormitories Hallway";
dir = 1
@@ -14684,13 +16610,13 @@
},
/turf/open/floor/plasteel,
/area/crew_quarters/dorms)
-"aFT" = (
+"aKf" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 9
},
/turf/open/floor/plasteel,
/area/crew_quarters/dorms)
-"aFU" = (
+"aKg" = (
/obj/item/weapon/twohanded/required/kirbyplants{
icon_state = "plant-04";
layer = 4.1
@@ -14699,19 +16625,19 @@
dir = 4
},
/area/crew_quarters/dorms)
-"aFV" = (
+"aKh" = (
/obj/machinery/light_switch{
pixel_x = -25
},
/turf/open/floor/plasteel/freezer,
/area/crew_quarters/toilet/restrooms)
-"aFW" = (
+"aKi" = (
/obj/machinery/door/airlock{
name = "Unit B"
},
/turf/open/floor/plasteel/freezer,
/area/crew_quarters/toilet/restrooms)
-"aFX" = (
+"aKj" = (
/obj/machinery/recharge_station,
/obj/machinery/light/small{
dir = 1
@@ -14723,7 +16649,7 @@
/obj/effect/decal/cleanable/oil,
/turf/open/floor/plasteel/freezer,
/area/crew_quarters/toilet/restrooms)
-"aFY" = (
+"aKk" = (
/obj/structure/disposalpipe/segment{
dir = 4;
icon_state = "pipe-c"
@@ -14731,20 +16657,20 @@
/obj/effect/decal/cleanable/oil,
/turf/open/floor/plating,
/area/maintenance/department/cargo)
-"aFZ" = (
+"aKl" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/open/floor/plating,
/area/maintenance/department/cargo)
-"aGa" = (
+"aKm" = (
/obj/structure/disposalpipe/segment{
dir = 2;
icon_state = "pipe-c"
},
/turf/open/floor/plating,
/area/maintenance/department/cargo)
-"aGb" = (
+"aKn" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -14754,24 +16680,35471 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating,
/area/maintenance/department/cargo)
-"aGc" = (
+"aKo" = (
/mob/living/simple_animal/mouse/gray,
/turf/open/floor/plating{
burnt = 1;
icon_state = "panelscorched"
},
/area/maintenance/department/cargo)
-"aGd" = (
+"aKp" = (
/obj/effect/spawner/lootdrop/grille_or_trash,
/turf/open/floor/plating,
/area/maintenance/department/cargo)
-"aGe" = (
+"aKq" = (
+/obj/structure/girder,
+/turf/open/floor/plating,
+/area/maintenance/department/cargo)
+"aKr" = (
+/obj/structure/closet/coffin,
+/obj/item/toy/figure/curator,
+/turf/open/floor/plating,
+/area/maintenance/department/cargo)
+"aKs" = (
+/obj/machinery/door/airlock/titanium{
+ name = "Emergency Shuttle Airlock"
+ },
+/turf/open/floor/plating,
+/area/shuttle/escape)
+"aKt" = (
+/obj/structure/reagent_dispensers/fueltank,
+/turf/open/floor/mineral/titanium/yellow,
+/area/shuttle/escape)
+"aKu" = (
+/obj/structure/sign/nanotrasen,
+/turf/closed/wall/mineral/titanium,
+/area/shuttle/escape)
+"aKv" = (
+/obj/machinery/door/airlock/glass{
+ name = "Emergency Shuttle Cockpit";
+ req_access_txt = "19"
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/escape)
+"aKw" = (
+/obj/structure/chair{
+ dir = 1
+ },
+/turf/open/floor/mineral/plastitanium/brig,
+/area/shuttle/escape)
+"aKx" = (
+/obj/machinery/door/airlock/titanium{
+ name = "Emergency Shuttle Airlock";
+ req_access_txt = "2"
+ },
+/turf/open/floor/plating,
+/area/shuttle/escape)
+"aKy" = (
+/obj/machinery/door/airlock/external{
+ cyclelinkeddir = 4;
+ name = "Escape Airlock"
+ },
+/turf/open/floor/plating,
+/area/hallway/secondary/exit/departure_lounge)
+"aKz" = (
+/turf/open/floor/plating,
+/area/hallway/secondary/exit/departure_lounge)
+"aKA" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/hallway/secondary/exit/departure_lounge)
+"aKB" = (
+/obj/machinery/door/airlock/external{
+ cyclelinkeddir = 8;
+ name = "Escape Airlock"
+ },
+/turf/open/floor/plating,
+/area/hallway/secondary/exit/departure_lounge)
+"aKC" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 10
+ },
+/area/hallway/secondary/exit/departure_lounge)
+"aKD" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/red/side,
+/area/hallway/secondary/exit/departure_lounge)
+"aKE" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 10
+ },
+/turf/open/floor/plasteel/red/side,
+/area/hallway/secondary/exit/departure_lounge)
+"aKF" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 6
+ },
+/turf/open/floor/plasteel/red/side,
+/area/hallway/secondary/exit/departure_lounge)
+"aKG" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 6
+ },
+/area/space)
+"aKH" = (
+/obj/structure/closet/firecloset,
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"aKI" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/neutral/corner,
+/area/hallway/primary/central)
+"aKJ" = (
+/turf/closed/wall,
+/area/storage/art)
+"aKK" = (
+/obj/structure/grille,
+/obj/structure/window/fulltile,
+/turf/open/floor/plating,
+/area/storage/art)
+"aKL" = (
+/obj/machinery/door/airlock/glass{
+ name = "Art Storage"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel,
+/area/storage/art)
+"aKM" = (
+/obj/structure/grille,
+/obj/structure/window/fulltile,
+/turf/open/floor/plating,
+/area/crew_quarters/cafeteria/lunchroom)
+"aKN" = (
+/obj/structure/grille,
+/obj/structure/window/fulltile,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plating,
+/area/crew_quarters/cafeteria/lunchroom)
+"aKO" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass{
+ name = "Lunchroom"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel,
+/area/crew_quarters/cafeteria/lunchroom)
+"aKP" = (
+/turf/closed/wall,
+/area/crew_quarters/cafeteria/lunchroom)
+"aKQ" = (
+/turf/closed/wall,
+/area/crew_quarters/toilet/auxiliary)
+"aKR" = (
+/obj/machinery/door/airlock{
+ id_tag = "Potty1";
+ name = "Unisex Restrooms";
+ req_access_txt = "0"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/freezer,
+/area/crew_quarters/toilet/auxiliary)
+"aKS" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/closed/wall,
+/area/crew_quarters/toilet/auxiliary)
+"aKT" = (
+/turf/closed/wall,
+/area/maintenance/department/crew_quarters/bar)
+"aKU" = (
+/obj/machinery/door/airlock/maintenance{
+ req_access_txt = "12"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plating,
+/area/maintenance/department/crew_quarters/bar)
+"aKV" = (
+/obj/structure/closet/emcloset,
+/turf/open/floor/plasteel,
+/area/maintenance/department/crew_quarters/bar)
+"aKW" = (
+/obj/machinery/camera{
+ c_tag = "Central Primary Hallway Bridge";
+ dir = 1
+ },
+/obj/structure/closet/emcloset,
+/turf/open/floor/plasteel,
+/area/maintenance/department/crew_quarters/bar)
+"aKX" = (
+/obj/structure/closet/firecloset,
+/turf/open/floor/plasteel,
+/area/maintenance/department/crew_quarters/bar)
+"aKY" = (
+/turf/closed/wall/r_wall,
+/area/storage/eva)
+"aKZ" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/storage/eva)
+"aLa" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/poddoor/shutters{
+ id = "evashutter";
+ name = "EVA Storage Shutters"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/storage/eva)
+"aLb" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass_command{
+ name = "EVA Storage";
+ req_access_txt = "18"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel,
+/area/storage/eva)
+"aLc" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable{
+ icon_state = "0-2";
+ pixel_y = 1;
+ d2 = 2
+ },
+/turf/open/floor/plating,
+/area/teleporter)
+"aLd" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/door/airlock/glass_command{
+ name = "Teleporter";
+ req_access_txt = "17"
+ },
+/turf/open/floor/plasteel,
+/area/teleporter)
+"aLe" = (
+/turf/closed/wall,
+/area/security/checkpoint/supply)
+"aLf" = (
+/turf/closed/wall,
+/area/quartermaster/office)
+"aLg" = (
+/turf/closed/wall,
+/area/quartermaster/storage)
+"aLh" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Cargo Bay Warehouse Maintenance";
+ req_access_txt = "31"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plating,
+/area/quartermaster/storage)
+"aLi" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plating,
+/area/maintenance/department/cargo)
+"aLj" = (
+/obj/effect/spawner/lootdrop/grille_or_trash,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plating,
+/area/maintenance/department/cargo)
+"aLk" = (
+/obj/structure/grille,
+/obj/structure/window/fulltile,
+/turf/open/floor/plating,
+/area/maintenance/department/cargo)
+"aLl" = (
+/obj/item/weapon/storage/box/mousetraps,
+/turf/open/floor/plating,
+/area/maintenance/department/cargo)
+"aLm" = (
+/turf/closed/wall,
+/area/maintenance/disposal)
+"aLn" = (
+/obj/machinery/door/poddoor{
+ id = "trash";
+ name = "disposal bay door"
+ },
+/turf/open/floor/plating,
+/area/maintenance/disposal)
+"aLo" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/maintenance/disposal)
+"aLp" = (
+/obj/machinery/door/airlock/glass{
+ name = "Emergency Shuttle Cargo Hold";
+ req_access_txt = "0"
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/escape)
+"aLq" = (
+/obj/item/weapon/twohanded/required/kirbyplants{
+ icon_state = "plant-22"
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/escape)
+"aLr" = (
+/obj/machinery/door/airlock/glass{
+ name = "Emergency Shuttle Brig";
+ req_access_txt = "2"
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/escape)
+"aLs" = (
+/obj/machinery/door/airlock/glass_security{
+ name = "Holding Area";
+ req_access_txt = "2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/red,
+/area/hallway/secondary/exit/departure_lounge)
+"aLt" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plating,
+/area/hallway/secondary/exit/departure_lounge)
+"aLu" = (
+/obj/structure/closet/emcloset,
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"aLv" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel/neutral/corner,
+/area/hallway/primary/central)
+"aLw" = (
+/obj/structure/grille,
+/obj/structure/window/fulltile,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/storage/art)
+"aLx" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/easel,
+/obj/item/weapon/canvas/twentythreeXnineteen,
+/turf/open/floor/plasteel/neutral/side{
+ dir = 9
+ },
+/area/storage/art)
+"aLy" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/storage/art)
+"aLz" = (
+/obj/machinery/photocopier,
+/obj/machinery/airalarm{
+ dir = 8;
+ pixel_x = 23
+ },
+/turf/open/floor/plasteel/neutral/side{
+ dir = 5
+ },
+/area/storage/art)
+"aLA" = (
+/obj/structure/table,
+/obj/item/weapon/reagent_containers/food/snacks/friedegg,
+/obj/item/weapon/kitchen/fork,
+/turf/open/floor/plasteel/neutral/side{
+ dir = 9
+ },
+/area/crew_quarters/cafeteria/lunchroom)
+"aLB" = (
+/obj/structure/chair{
+ dir = 8;
+ name = "Defense"
+ },
+/obj/effect/landmark/start/assistant,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/neutral/side{
+ dir = 1
+ },
+/area/crew_quarters/cafeteria/lunchroom)
+"aLC" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/cafeteria/lunchroom)
+"aLD" = (
+/obj/machinery/airalarm{
+ pixel_y = 22
+ },
+/obj/machinery/vending/cola,
+/turf/open/floor/plasteel/neutral/side{
+ dir = 5
+ },
+/area/crew_quarters/cafeteria/lunchroom)
+"aLE" = (
+/obj/structure/sink{
+ dir = 8;
+ pixel_x = -12;
+ pixel_y = 2
+ },
+/obj/machinery/airalarm{
+ pixel_y = 22
+ },
+/obj/effect/landmark/xeno_spawn,
+/turf/open/floor/plasteel/freezer,
+/area/crew_quarters/toilet/auxiliary)
+"aLF" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/freezer,
+/area/crew_quarters/toilet/auxiliary)
+"aLG" = (
+/obj/structure/urinal{
+ pixel_y = 32
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/button/door{
+ id = "Potty1";
+ name = "Bathroom Bolt Control";
+ normaldoorcontrol = 1;
+ pixel_x = 25;
+ pixel_y = 4;
+ req_access_txt = "0";
+ specialfunctions = 4
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 1
+ },
+/obj/machinery/light_switch{
+ pixel_x = 36;
+ pixel_y = 6
+ },
+/turf/open/floor/plasteel/freezer,
+/area/crew_quarters/toilet/auxiliary)
+"aLH" = (
+/obj/machinery/portable_atmospherics/canister/air,
+/turf/open/floor/plating,
+/area/maintenance/department/crew_quarters/bar)
+"aLI" = (
+/obj/structure/closet/coffin,
+/turf/open/floor/plating,
+/area/maintenance/department/crew_quarters/bar)
+"aLJ" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/open/floor/plating{
+ broken = 1;
+ icon_state = "platingdmg3"
+ },
+/area/maintenance/department/crew_quarters/bar)
+"aLK" = (
+/obj/structure/reagent_dispensers/fueltank,
+/turf/open/floor/plating{
+ icon_state = "panelscorched"
+ },
+/area/maintenance/department/crew_quarters/bar)
+"aLL" = (
+/turf/open/floor/plating,
+/area/maintenance/department/crew_quarters/bar)
+"aLM" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plating{
+ broken = 1;
+ icon_state = "platingdmg3"
+ },
+/area/maintenance/department/crew_quarters/bar)
+"aLN" = (
+/obj/structure/closet/crate,
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/plating,
+/area/maintenance/department/crew_quarters/bar)
+"aLO" = (
+/obj/machinery/space_heater,
+/turf/open/floor/plating{
+ burnt = 1;
+ icon_state = "panelscorched"
+ },
+/area/maintenance/department/crew_quarters/bar)
+"aLP" = (
+/obj/structure/girder,
+/turf/open/floor/plating{
+ broken = 1;
+ icon_state = "platingdmg3"
+ },
+/area/maintenance/department/crew_quarters/bar)
+"aLQ" = (
+/obj/structure/reagent_dispensers/fueltank,
+/obj/machinery/button/door{
+ id = "evashutter";
+ name = "EVA Shutters Control";
+ pixel_x = -24;
+ req_access_txt = "18"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel/black,
+/area/storage/eva)
+"aLR" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/storage/eva)
+"aLS" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/storage/eva)
+"aLT" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/storage/eva)
+"aLU" = (
+/obj/structure/closet/crate/rcd,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel/black,
+/area/storage/eva)
+"aLV" = (
+/turf/closed/wall,
+/area/storage/eva)
+"aLW" = (
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "Teleporter APC";
+ pixel_x = -24
+ },
+/obj/structure/cable{
+ icon_state = "0-4";
+ d2 = 4
+ },
+/obj/machinery/airalarm{
+ pixel_y = 22
+ },
+/obj/item/weapon/twohanded/required/kirbyplants{
+ icon_state = "plant-14";
+ layer = 4.1
+ },
+/turf/open/floor/plasteel/blue/corner{
+ dir = 1
+ },
+/area/teleporter)
+"aLX" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/open/floor/plasteel/blue/corner{
+ dir = 1
+ },
+/area/teleporter)
+"aLY" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel,
+/area/teleporter)
+"aLZ" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/open/floor/plasteel/blue/corner{
+ dir = 4
+ },
+/area/teleporter)
+"aMa" = (
+/obj/structure/closet/crate,
+/obj/machinery/button/door{
+ id = "teleshutter";
+ name = "Teleporter Shutters Control";
+ pixel_x = 25;
+ pixel_y = -5;
+ req_access_txt = "17"
+ },
+/turf/open/floor/plasteel/blue/corner{
+ dir = 4
+ },
+/area/teleporter)
+"aMb" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/brown/corner{
+ dir = 1
+ },
+/area/hallway/primary/central)
+"aMc" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/brown/corner{
+ dir = 4
+ },
+/area/hallway/primary/central)
+"aMd" = (
+/obj/machinery/requests_console{
+ department = "Security";
+ departmentType = 5;
+ pixel_x = -32
+ },
+/obj/structure/reagent_dispensers/peppertank{
+ pixel_y = 30
+ },
+/obj/machinery/computer/security,
+/turf/open/floor/plasteel/red/side{
+ dir = 9
+ },
+/area/security/checkpoint/supply)
+"aMe" = (
+/obj/machinery/computer/security/mining,
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/machinery/camera{
+ c_tag = "Cargo Security Post";
+ dir = 2;
+ network = list("SS13")
+ },
+/obj/machinery/airalarm{
+ pixel_y = 22
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 1
+ },
+/area/security/checkpoint/supply)
+"aMf" = (
+/obj/machinery/computer/secure_data,
+/obj/item/device/radio/intercom{
+ dir = 0;
+ name = "Station Intercom (General)";
+ pixel_y = 26
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 5
+ },
+/area/security/checkpoint/supply)
+"aMg" = (
+/obj/machinery/conveyor{
+ dir = 4;
+ id = "packageSort2"
+ },
+/obj/structure/disposaloutlet{
+ dir = 4
+ },
+/obj/structure/disposalpipe/trunk,
+/turf/open/floor/plating,
+/area/quartermaster/office)
+"aMh" = (
+/obj/machinery/conveyor{
+ dir = 4;
+ id = "packageSort2"
+ },
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/plating,
+/area/quartermaster/office)
+"aMi" = (
+/obj/machinery/conveyor{
+ dir = 4;
+ id = "packageSort2"
+ },
+/obj/effect/spawner/lootdrop/maintenance,
+/obj/machinery/status_display{
+ density = 0;
+ layer = 4;
+ pixel_y = 30;
+ supply_display = 1
+ },
+/turf/open/floor/plating,
+/area/quartermaster/office)
+"aMj" = (
+/obj/machinery/conveyor{
+ dir = 4;
+ id = "packageSort2"
+ },
+/obj/effect/spawner/lootdrop/maintenance,
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/structure/sign/poster/official/random{
+ pixel_y = 32
+ },
+/turf/open/floor/plating,
+/area/quartermaster/office)
+"aMk" = (
+/obj/machinery/conveyor{
+ dir = 4;
+ id = "packageSort2"
+ },
+/obj/effect/spawner/lootdrop/maintenance,
+/obj/machinery/computer/security/telescreen/entertainment{
+ pixel_y = 32
+ },
+/turf/open/floor/plating,
+/area/quartermaster/office)
+"aMl" = (
+/obj/machinery/conveyor{
+ dir = 4;
+ id = "packageSort2"
+ },
+/turf/open/floor/plating,
+/area/quartermaster/office)
+"aMm" = (
+/obj/machinery/conveyor{
+ dir = 4;
+ id = "packageSort2"
+ },
+/obj/structure/plasticflaps{
+ opacity = 0
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/quartermaster/office)
+"aMn" = (
+/obj/machinery/disposal/deliveryChute{
+ dir = 8
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/quartermaster/office)
+"aMo" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/closed/wall,
+/area/quartermaster/storage)
+"aMp" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/quartermaster/storage)
+"aMq" = (
+/obj/effect/spawner/lootdrop/maintenance,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/quartermaster/storage)
+"aMr" = (
+/obj/structure/closet/crate,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/quartermaster/storage)
+"aMs" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/sign/poster/official/random{
+ pixel_y = 32
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/quartermaster/storage)
+"aMt" = (
+/obj/structure/closet/cardboard,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/machinery/camera{
+ c_tag = "Cargo Warehouse";
+ dir = 2
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/quartermaster/storage)
+"aMu" = (
+/obj/item/weapon/cigbutt/cigarbutt,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/quartermaster/storage)
+"aMv" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/quartermaster/storage)
+"aMw" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/cargo)
+"aMx" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 5
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/cargo)
+"aMy" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 9
+ },
+/obj/effect/decal/cleanable/ash,
+/turf/open/floor/plating,
+/area/maintenance/department/cargo)
+"aMz" = (
+/obj/structure/grille/broken,
+/obj/structure/rack,
+/obj/effect/spawner/lootdrop/maintenance{
+ lootcount = 2;
+ name = "2maintenance loot spawner"
+ },
+/obj/item/weapon/crowbar,
+/obj/machinery/light/small,
+/turf/open/floor/plating,
+/area/maintenance/department/cargo)
+"aMA" = (
+/obj/machinery/space_heater,
+/turf/open/floor/plating,
+/area/maintenance/department/cargo)
+"aMB" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 5
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/cargo)
+"aMC" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/cargo)
+"aMD" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 10
+ },
+/obj/effect/decal/cleanable/cobweb{
+ icon_state = "cobweb2"
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/cargo)
+"aME" = (
+/obj/machinery/button/massdriver{
+ id = "trash";
+ pixel_y = 32
+ },
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plating{
+ icon_plating = "warnplate"
+ },
+/area/maintenance/disposal)
+"aMF" = (
+/obj/machinery/conveyor_switch/oneway{
+ convdir = 1;
+ id = "garbagestacked";
+ name = "disposal conveyor"
+ },
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plating{
+ icon_plating = "warnplate"
+ },
+/area/maintenance/disposal)
+"aMG" = (
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plating{
+ icon_plating = "warnplate"
+ },
+/area/maintenance/disposal)
+"aMH" = (
+/obj/effect/turf_decal/stripes/corner{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/disposal)
+"aMI" = (
+/turf/open/floor/mineral/titanium,
+/area/shuttle/escape)
+"aMJ" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/escape)
+"aMK" = (
+/obj/item/weapon/twohanded/required/kirbyplants{
+ icon_state = "plant-10";
+ layer = 4.1
+ },
+/turf/open/floor/plasteel/escape{
+ dir = 9
+ },
+/area/hallway/secondary/exit/departure_lounge)
+"aML" = (
+/turf/open/floor/plasteel/escape{
+ dir = 1
+ },
+/area/hallway/secondary/exit/departure_lounge)
+"aMM" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/escape{
+ dir = 1
+ },
+/area/hallway/secondary/exit/departure_lounge)
+"aMN" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/escape{
+ dir = 1
+ },
+/area/hallway/secondary/exit/departure_lounge)
+"aMO" = (
+/obj/machinery/power/apc{
+ cell_type = 5000;
+ dir = 1;
+ name = "Departure Lounge APC";
+ pixel_y = 24
+ },
+/obj/structure/cable{
+ icon_state = "0-2";
+ d2 = 2
+ },
+/turf/open/floor/plasteel/escape{
+ dir = 1
+ },
+/area/hallway/secondary/exit/departure_lounge)
+"aMP" = (
+/obj/item/weapon/twohanded/required/kirbyplants{
+ icon_state = "plant-21";
+ layer = 4.1;
+ pixel_y = 3
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 27
+ },
+/turf/open/floor/plasteel/escape{
+ dir = 5
+ },
+/area/hallway/secondary/exit/departure_lounge)
+"aMQ" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/door/airlock/maintenance{
+ req_access_txt = "12"
+ },
+/turf/open/floor/plating,
+/area/hallway/secondary/exit/departure_lounge)
+"aMR" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"aMS" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"aMT" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/neutral/corner,
+/area/hallway/primary/central)
+"aMU" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/closed/wall,
+/area/storage/art)
+"aMV" = (
+/obj/structure/table,
+/obj/item/stack/cable_coil/random{
+ layer = 3.4
+ },
+/obj/item/stack/cable_coil/random{
+ layer = 3.3
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/item/stack/cable_coil/random{
+ layer = 3.2
+ },
+/obj/item/stack/cable_coil/random{
+ layer = 3.1
+ },
+/turf/open/floor/plasteel/neutral/side{
+ dir = 8
+ },
+/area/storage/art)
+"aMW" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/storage/art)
+"aMX" = (
+/obj/structure/table,
+/obj/item/weapon/airlock_painter,
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "Art Storage APC";
+ pixel_x = 24
+ },
+/turf/open/floor/plasteel/neutral/side{
+ dir = 4
+ },
+/area/storage/art)
+"aMY" = (
+/obj/structure/chair{
+ dir = 1
+ },
+/turf/open/floor/plasteel/neutral/side{
+ dir = 10
+ },
+/area/crew_quarters/cafeteria/lunchroom)
+"aMZ" = (
+/obj/machinery/light,
+/obj/machinery/camera{
+ c_tag = "Lunchroom";
+ dir = 1
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 1
+ },
+/obj/item/device/radio/intercom{
+ name = "Station Intercom (General)";
+ pixel_y = -28
+ },
+/turf/open/floor/plasteel/neutral/side,
+/area/crew_quarters/cafeteria/lunchroom)
+"aNa" = (
+/obj/structure/cable,
+/obj/machinery/power/apc{
+ dir = 2;
+ name = "Cafeteria APC";
+ pixel_y = -24
+ },
+/turf/open/floor/plasteel/neutral/side,
+/area/crew_quarters/cafeteria/lunchroom)
+"aNb" = (
+/obj/machinery/vending/sustenance{
+ contraband = list(/obj/item/weapon/kitchen/knife = 6, /obj/item/weapon/reagent_containers/food/drinks/coffee = 12);
+ desc = "A vending machine which vends food.";
+ product_ads = "Sufficiently healthy."
+ },
+/turf/open/floor/plasteel/neutral/side{
+ dir = 6
+ },
+/area/crew_quarters/cafeteria/lunchroom)
+"aNc" = (
+/obj/structure/toilet{
+ dir = 4
+ },
+/obj/effect/landmark/start/assistant,
+/turf/open/floor/plasteel/freezer,
+/area/crew_quarters/toilet/auxiliary)
+"aNd" = (
+/obj/machinery/light/small,
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/open/floor/plasteel/freezer,
+/area/crew_quarters/toilet/auxiliary)
+"aNe" = (
+/obj/structure/cable,
+/obj/machinery/power/apc{
+ cell_type = 5000;
+ dir = 2;
+ name = "Auxiliary Restrooms APC";
+ pixel_y = -24
+ },
+/obj/item/weapon/soap/nanotrasen,
+/obj/machinery/shower{
+ dir = 8
+ },
+/turf/open/floor/plasteel/freezer,
+/area/crew_quarters/toilet/auxiliary)
+"aNf" = (
+/obj/structure/reagent_dispensers/watertank,
+/turf/open/floor/plating{
+ burnt = 1;
+ icon_state = "panelscorched"
+ },
+/area/maintenance/department/crew_quarters/bar)
+"aNg" = (
+/obj/item/weapon/storage/box/lights/mixed,
+/turf/open/floor/plating,
+/area/maintenance/department/crew_quarters/bar)
+"aNh" = (
+/obj/item/weapon/extinguisher,
+/turf/open/floor/plating{
+ icon_state = "panelscorched"
+ },
+/area/maintenance/department/crew_quarters/bar)
+"aNi" = (
+/obj/structure/grille/broken,
+/obj/item/weapon/crowbar,
+/turf/open/floor/plating{
+ broken = 1;
+ icon_state = "platingdmg3"
+ },
+/area/maintenance/department/crew_quarters/bar)
+"aNj" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plating,
+/area/maintenance/department/crew_quarters/bar)
+"aNk" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/crew_quarters/bar)
+"aNl" = (
+/obj/item/trash/pistachios,
+/turf/open/floor/plating,
+/area/maintenance/department/crew_quarters/bar)
+"aNm" = (
+/obj/structure/grille,
+/turf/open/floor/plating,
+/area/maintenance/department/crew_quarters/bar)
+"aNn" = (
+/obj/item/weapon/shard{
+ icon_state = "small"
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/crew_quarters/bar)
+"aNo" = (
+/obj/structure/rack,
+/obj/effect/spawner/lootdrop/maintenance{
+ lootcount = 2;
+ name = "2maintenance loot spawner"
+ },
+/turf/open/floor/plating{
+ broken = 1;
+ icon_state = "platingdmg3"
+ },
+/area/maintenance/department/crew_quarters/bar)
+"aNp" = (
+/obj/structure/rack{
+ dir = 8;
+ layer = 2.9
+ },
+/obj/item/clothing/shoes/magboots{
+ pixel_x = -4;
+ pixel_y = 3
+ },
+/obj/item/clothing/shoes/magboots,
+/obj/item/device/radio/intercom{
+ dir = 0;
+ name = "Station Intercom (General)";
+ pixel_x = -27
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel/black,
+/area/storage/eva)
+"aNq" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel,
+/area/storage/eva)
+"aNr" = (
+/obj/structure/table,
+/obj/machinery/cell_charger,
+/obj/item/weapon/stock_parts/cell/high{
+ charge = 100;
+ maxcharge = 15000
+ },
+/obj/item/weapon/stock_parts/cell/high{
+ charge = 100;
+ maxcharge = 15000
+ },
+/obj/effect/turf_decal/stripes/end{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/storage/eva)
+"aNs" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel,
+/area/storage/eva)
+"aNt" = (
+/obj/structure/rack{
+ dir = 8;
+ layer = 2.9
+ },
+/obj/item/weapon/tank/jetpack/carbondioxide,
+/obj/item/weapon/tank/jetpack/carbondioxide{
+ pixel_x = -4;
+ pixel_y = 1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel/black,
+/area/storage/eva)
+"aNu" = (
+/obj/structure/closet/crate,
+/obj/item/weapon/melee/flyswatter,
+/obj/item/device/radio/intercom{
+ dir = 0;
+ name = "Station Intercom (General)";
+ pixel_x = -27
+ },
+/turf/open/floor/plasteel/blue/corner{
+ dir = 1
+ },
+/area/teleporter)
+"aNv" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel,
+/area/teleporter)
+"aNw" = (
+/obj/machinery/holopad,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel,
+/area/teleporter)
+"aNx" = (
+/turf/open/floor/plasteel,
+/area/teleporter)
+"aNy" = (
+/turf/open/floor/plasteel/blue/corner{
+ dir = 4
+ },
+/area/teleporter)
+"aNz" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/poddoor/shutters{
+ id = "teleshutter";
+ name = "Teleporter Shutters"
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/teleporter)
+"aNA" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel/brown/corner{
+ dir = 1
+ },
+/area/hallway/primary/central)
+"aNB" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/brown/corner{
+ dir = 4
+ },
+/area/hallway/primary/central)
+"aNC" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/security/checkpoint/supply)
+"aND" = (
+/obj/machinery/recharger{
+ pixel_y = 4
+ },
+/obj/structure/table,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 8
+ },
+/area/security/checkpoint/supply)
+"aNE" = (
+/obj/structure/chair/office/dark{
+ dir = 1
+ },
+/obj/effect/landmark/start/depsec/supply,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/security/checkpoint/supply)
+"aNF" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 4
+ },
+/area/security/checkpoint/supply)
+"aNG" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/disposalpipe/wrapsortjunction{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/quartermaster/office)
+"aNH" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/office)
+"aNI" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/office)
+"aNJ" = (
+/obj/machinery/conveyor_switch/oneway{
+ id = "packageSort2"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/office)
+"aNK" = (
+/obj/structure/table,
+/obj/item/device/destTagger,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/office)
+"aNL" = (
+/obj/item/stack/wrapping_paper{
+ pixel_x = 3;
+ pixel_y = 4
+ },
+/obj/item/stack/packageWrap{
+ pixel_x = -1;
+ pixel_y = -1
+ },
+/obj/structure/table,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/office)
+"aNM" = (
+/obj/item/weapon/storage/box,
+/obj/item/weapon/storage/box,
+/obj/item/weapon/storage/box,
+/obj/item/weapon/hand_labeler,
+/obj/item/weapon/hand_labeler,
+/obj/structure/table,
+/obj/machinery/requests_console{
+ department = "Cargo Bay";
+ departmentType = 2;
+ pixel_x = 32
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/office)
+"aNN" = (
+/obj/structure/closet/crate/freezer,
+/obj/structure/sign/poster/official/random{
+ pixel_x = -32
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/quartermaster/storage)
+"aNO" = (
+/turf/open/floor/plasteel/floorgrime,
+/area/quartermaster/storage)
+"aNP" = (
+/obj/structure/closet/crate,
+/turf/open/floor/plasteel/floorgrime,
+/area/quartermaster/storage)
+"aNQ" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 27
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/quartermaster/storage)
+"aNR" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/cargo)
+"aNS" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plating,
+/area/maintenance/department/cargo)
+"aNT" = (
+/obj/machinery/mass_driver{
+ dir = 1;
+ id = "trash"
+ },
+/obj/machinery/button/massdriver{
+ id = "trash";
+ pixel_x = -28
+ },
+/turf/open/floor/plating,
+/area/maintenance/disposal)
+"aNU" = (
+/obj/machinery/mineral/stacking_machine{
+ input_dir = 8;
+ output_dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/disposal)
+"aNV" = (
+/obj/machinery/conveyor{
+ dir = 4;
+ id = "garbagestacked"
+ },
+/obj/machinery/mineral/stacking_unit_console{
+ dir = 2;
+ machinedir = 8;
+ pixel_x = -32;
+ pixel_y = 32
+ },
+/turf/open/floor/plating,
+/area/maintenance/disposal)
+"aNW" = (
+/obj/machinery/conveyor{
+ dir = 4;
+ id = "garbagestacked"
+ },
+/turf/open/floor/plating,
+/area/maintenance/disposal)
+"aNX" = (
+/obj/machinery/disposal/deliveryChute{
+ dir = 8
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/disposal)
+"aNY" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/maintenance/disposal)
+"aNZ" = (
+/obj/structure/chair{
+ dir = 4
+ },
+/turf/open/floor/mineral/titanium,
+/area/shuttle/escape)
+"aOa" = (
+/obj/structure/chair{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/open/floor/mineral/titanium,
+/area/shuttle/escape)
+"aOb" = (
+/obj/structure/chair{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/open/floor/mineral/titanium,
+/area/shuttle/escape)
+"aOc" = (
+/turf/open/floor/carpet,
+/area/shuttle/escape)
+"aOd" = (
+/obj/structure/chair/comfy/beige,
+/turf/open/floor/carpet,
+/area/shuttle/escape)
+"aOe" = (
+/obj/structure/chair{
+ dir = 8
+ },
+/turf/open/floor/mineral/titanium,
+/area/shuttle/escape)
+"aOf" = (
+/turf/open/floor/plasteel/escape{
+ dir = 8
+ },
+/area/hallway/secondary/exit/departure_lounge)
+"aOg" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 6
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 1
+ },
+/area/hallway/secondary/exit/departure_lounge)
+"aOh" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 1
+ },
+/area/hallway/secondary/exit/departure_lounge)
+"aOi" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 9
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 1
+ },
+/area/hallway/secondary/exit/departure_lounge)
+"aOj" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 1
+ },
+/area/hallway/secondary/exit/departure_lounge)
+"aOk" = (
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 1
+ },
+/area/hallway/secondary/exit/departure_lounge)
+"aOl" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 1
+ },
+/area/hallway/secondary/exit/departure_lounge)
+"aOm" = (
+/turf/open/floor/plasteel/escape/corner{
+ tag = "icon-escapecorner (EAST)";
+ icon_state = "escapecorner";
+ dir = 4
+ },
+/area/hallway/secondary/exit/departure_lounge)
+"aOn" = (
+/obj/structure/chair,
+/turf/open/floor/plasteel/escape{
+ dir = 1
+ },
+/area/hallway/secondary/exit/departure_lounge)
+"aOo" = (
+/obj/structure/table,
+/obj/item/weapon/storage/firstaid/regular,
+/obj/machinery/camera{
+ c_tag = "Departure Lounge Starboard"
+ },
+/turf/open/floor/plasteel/escape{
+ dir = 1
+ },
+/area/hallway/secondary/exit/departure_lounge)
+"aOp" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/plasteel/escape{
+ dir = 1
+ },
+/area/hallway/secondary/exit/departure_lounge)
+"aOq" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/escape{
+ dir = 1
+ },
+/area/hallway/secondary/exit/departure_lounge)
+"aOr" = (
+/obj/item/weapon/twohanded/required/kirbyplants{
+ icon_state = "plant-16";
+ layer = 4.1
+ },
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = 29
+ },
+/turf/open/floor/plasteel/escape{
+ dir = 5
+ },
+/area/hallway/secondary/exit/departure_lounge)
+"aOs" = (
+/obj/structure/sign/evac,
+/turf/closed/wall,
+/area/hallway/secondary/exit/departure_lounge)
+"aOt" = (
+/obj/structure/table,
+/obj/item/weapon/hand_labeler,
+/turf/open/floor/plasteel/neutral/side{
+ dir = 10
+ },
+/area/storage/art)
+"aOu" = (
+/obj/structure/table,
+/obj/item/weapon/storage/crayons,
+/obj/item/weapon/storage/crayons,
+/obj/machinery/light,
+/obj/machinery/camera{
+ c_tag = "Art Storage";
+ dir = 1
+ },
+/turf/open/floor/plasteel/neutral/side,
+/area/storage/art)
+"aOv" = (
+/obj/structure/table,
+/obj/item/stack/sheet/metal{
+ amount = 20;
+ layer = 3.1
+ },
+/obj/item/stack/sheet/glass{
+ amount = 20;
+ layer = 3.2
+ },
+/obj/item/stack/rods{
+ amount = 20;
+ layer = 3.3
+ },
+/obj/item/weapon/canvas/twentythreeXtwentythree,
+/obj/item/weapon/canvas/nineteenXnineteen,
+/turf/open/floor/plasteel/neutral/side{
+ dir = 6
+ },
+/area/storage/art)
+"aOw" = (
+/obj/structure/grille/broken,
+/turf/open/floor/plating{
+ burnt = 1;
+ icon_state = "panelscorched"
+ },
+/area/maintenance/department/crew_quarters/bar)
+"aOx" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/crew_quarters/bar)
+"aOy" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/crew_quarters/bar)
+"aOz" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 10
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/crew_quarters/bar)
+"aOA" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/crew_quarters/bar)
+"aOB" = (
+/obj/machinery/suit_storage_unit/standard_unit,
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/machinery/requests_console{
+ department = "EVA";
+ pixel_x = -32
+ },
+/obj/machinery/camera{
+ c_tag = "EVA Storage";
+ dir = 4;
+ network = list("SS13")
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel/black,
+/area/storage/eva)
+"aOC" = (
+/obj/structure/tank_dispenser/oxygen,
+/obj/effect/turf_decal/stripes/end,
+/turf/open/floor/plasteel,
+/area/storage/eva)
+"aOD" = (
+/obj/machinery/suit_storage_unit/standard_unit,
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel/black,
+/area/storage/eva)
+"aOE" = (
+/obj/structure/table,
+/obj/item/weapon/hand_tele,
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/machinery/camera{
+ c_tag = "Teleporter";
+ dir = 4;
+ network = list("SS13")
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -26
+ },
+/turf/open/floor/plasteel/blue/corner{
+ dir = 1
+ },
+/area/teleporter)
+"aOF" = (
+/obj/structure/chair/stool,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/teleporter)
+"aOG" = (
+/obj/structure/chair/stool,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 9
+ },
+/turf/open/floor/plasteel,
+/area/teleporter)
+"aOH" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/teleporter)
+"aOI" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/blue/corner{
+ dir = 4
+ },
+/area/teleporter)
+"aOJ" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/poddoor/shutters{
+ id = "teleshutter";
+ name = "Teleporter Shutters"
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/teleporter)
+"aOK" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/brown/corner{
+ dir = 1
+ },
+/area/hallway/primary/central)
+"aOL" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"aOM" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/brown/corner{
+ dir = 4
+ },
+/area/hallway/primary/central)
+"aON" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating,
+/area/security/checkpoint/supply)
+"aOO" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 8
+ },
+/area/security/checkpoint/supply)
+"aOP" = (
+/turf/open/floor/plasteel,
+/area/security/checkpoint/supply)
+"aOQ" = (
+/turf/open/floor/plasteel/red/side{
+ dir = 4
+ },
+/area/security/checkpoint/supply)
+"aOR" = (
+/obj/machinery/door/airlock/glass_security{
+ name = "Cargo Security Post";
+ req_access_txt = "63"
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 8
+ },
+/area/quartermaster/office)
+"aOS" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
+/turf/open/floor/plasteel,
+/area/quartermaster/office)
+"aOT" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/office)
+"aOU" = (
+/obj/structure/chair/stool,
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/effect/landmark/start/cargo_technician,
+/turf/open/floor/plasteel,
+/area/quartermaster/office)
+"aOV" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/office)
+"aOW" = (
+/obj/machinery/door/window/eastleft{
+ dir = 8;
+ icon_state = "right";
+ name = "Mail";
+ req_access_txt = "50"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/light/small,
+/turf/open/floor/plating,
+/area/quartermaster/office)
+"aOX" = (
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/obj/structure/disposaloutlet{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/quartermaster/office)
+"aOY" = (
+/obj/effect/spawner/lootdrop/maintenance,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
+/turf/open/floor/plasteel/floorgrime,
+/area/quartermaster/storage)
+"aOZ" = (
+/obj/item/stack/sheet/cardboard,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 6
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/quartermaster/storage)
+"aPa" = (
+/obj/structure/closet/crate,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/quartermaster/storage)
+"aPb" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/quartermaster/storage)
+"aPc" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/quartermaster/storage)
+"aPd" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/quartermaster/storage)
+"aPe" = (
+/obj/structure/shuttle/engine/propulsion/right,
+/turf/open/floor/plating/airless,
+/area/shuttle/supply)
+"aPf" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/item/weapon/shard,
+/turf/open/floor/plating,
+/area/maintenance/department/cargo)
+"aPg" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/machinery/conveyor{
+ dir = 2;
+ id = "garbage"
+ },
+/turf/open/floor/plating,
+/area/maintenance/disposal)
+"aPh" = (
+/obj/machinery/conveyor{
+ dir = 4;
+ id = "garbage"
+ },
+/turf/open/floor/plating,
+/area/maintenance/disposal)
+"aPi" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/maintenance/disposal)
+"aPj" = (
+/obj/structure/chair/comfy/beige{
+ dir = 4
+ },
+/turf/open/floor/carpet,
+/area/shuttle/escape)
+"aPk" = (
+/obj/structure/table/wood/poker,
+/obj/item/toy/cards/deck,
+/turf/open/floor/carpet,
+/area/shuttle/escape)
+"aPl" = (
+/obj/structure/chair/comfy/beige{
+ dir = 8
+ },
+/turf/open/floor/carpet,
+/area/shuttle/escape)
+"aPm" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/neutral/side{
+ dir = 8;
+ heat_capacity = 1e+006
+ },
+/area/hallway/secondary/exit/departure_lounge)
+"aPn" = (
+/obj/structure/chair{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit/departure_lounge)
+"aPo" = (
+/obj/structure/chair{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 5
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit/departure_lounge)
+"aPp" = (
+/obj/structure/table,
+/obj/item/toy/cards/deck,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit/departure_lounge)
+"aPq" = (
+/obj/structure/chair{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit/departure_lounge)
+"aPr" = (
+/obj/structure/chair{
+ dir = 1
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit/departure_lounge)
+"aPs" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit/departure_lounge)
+"aPt" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit/departure_lounge)
+"aPu" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit/departure_lounge)
+"aPv" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass{
+ name = "Departure Lounge"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit/departure_lounge)
+"aPw" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/sign/directions/evac{
+ dir = 1;
+ icon_state = "direction_evac";
+ pixel_x = 32
+ },
+/turf/open/floor/plasteel/neutral/corner,
+/area/hallway/primary/central)
+"aPx" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/item/weapon/twohanded/required/kirbyplants{
+ icon_state = "plant-22"
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/crew_quarters/bar)
+"aPy" = (
+/obj/item/weapon/twohanded/required/kirbyplants{
+ icon_state = "plant-22"
+ },
+/turf/open/floor/plating{
+ broken = 1;
+ icon_state = "platingdmg3"
+ },
+/area/maintenance/department/crew_quarters/bar)
+"aPz" = (
+/turf/open/floor/plating{
+ broken = 1;
+ icon_state = "platingdmg3"
+ },
+/area/maintenance/department/crew_quarters/bar)
+"aPA" = (
+/obj/item/trash/cheesie,
+/turf/open/floor/plating,
+/area/maintenance/department/crew_quarters/bar)
+"aPB" = (
+/obj/structure/girder,
+/turf/open/floor/plating,
+/area/maintenance/department/crew_quarters/bar)
+"aPC" = (
+/obj/structure/rack,
+/obj/effect/spawner/lootdrop/maintenance{
+ lootcount = 2;
+ name = "2maintenance loot spawner"
+ },
+/obj/item/clothing/gloves/color/random,
+/turf/open/floor/plating,
+/area/maintenance/department/crew_quarters/bar)
+"aPD" = (
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "Bar Maintenance APC";
+ pixel_y = 24
+ },
+/obj/structure/cable{
+ icon_state = "0-2";
+ pixel_y = 1;
+ d2 = 2
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/crew_quarters/bar)
+"aPE" = (
+/turf/closed/wall,
+/area/crew_quarters/bar)
+"aPF" = (
+/obj/structure/grille/broken,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plating,
+/area/maintenance/department/crew_quarters/bar)
+"aPG" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/crew_quarters/bar)
+"aPH" = (
+/obj/machinery/suit_storage_unit/standard_unit,
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -26
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel/black,
+/area/storage/eva)
+"aPI" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/storage/eva)
+"aPJ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/plasteel,
+/area/storage/eva)
+"aPK" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/storage/eva)
+"aPL" = (
+/obj/machinery/suit_storage_unit/standard_unit,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel/black,
+/area/storage/eva)
+"aPM" = (
+/obj/structure/table,
+/obj/item/device/radio/beacon,
+/turf/open/floor/plasteel/blue/side{
+ dir = 10
+ },
+/area/teleporter)
+"aPN" = (
+/obj/machinery/computer/teleporter,
+/turf/open/floor/plasteel/blue/side,
+/area/teleporter)
+"aPO" = (
+/obj/machinery/teleport/station,
+/turf/open/floor/plasteel/blue/side,
+/area/teleporter)
+"aPP" = (
+/obj/machinery/teleport/hub,
+/obj/machinery/light,
+/turf/open/floor/plating,
+/area/teleporter)
+"aPQ" = (
+/obj/structure/closet/crate,
+/obj/item/weapon/crowbar,
+/turf/open/floor/plasteel/blue/side{
+ dir = 6
+ },
+/area/teleporter)
+"aPR" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"aPS" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/brown/corner{
+ dir = 4
+ },
+/area/hallway/primary/central)
+"aPT" = (
+/obj/structure/cable,
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "Security Post - Cargo APC";
+ pixel_x = -24
+ },
+/obj/structure/closet/wardrobe/red,
+/turf/open/floor/plasteel/red/side{
+ dir = 10
+ },
+/area/security/checkpoint/supply)
+"aPU" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
+/turf/open/floor/plasteel/red/side,
+/area/security/checkpoint/supply)
+"aPV" = (
+/obj/structure/filingcabinet,
+/turf/open/floor/plasteel/red/side{
+ dir = 6
+ },
+/area/security/checkpoint/supply)
+"aPW" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/quartermaster/office)
+"aPX" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel,
+/area/quartermaster/office)
+"aPY" = (
+/turf/open/floor/plasteel,
+/area/quartermaster/office)
+"aPZ" = (
+/obj/machinery/holopad,
+/turf/open/floor/plasteel,
+/area/quartermaster/office)
+"aQa" = (
+/obj/structure/disposalpipe/wrapsortjunction{
+ dir = 1
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/office)
+"aQb" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/camera{
+ c_tag = "Cargo Mailroom";
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 10
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/office)
+"aQc" = (
+/obj/machinery/button/door{
+ id = "qm_warehouse";
+ name = "Warehouse Door Control";
+ pixel_x = -24;
+ req_access_txt = "31"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/floorgrime,
+/area/quartermaster/storage)
+"aQd" = (
+/obj/item/device/flashlight,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/floorgrime,
+/area/quartermaster/storage)
+"aQe" = (
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/plasteel/floorgrime,
+/area/quartermaster/storage)
+"aQf" = (
+/obj/structure/closet/crate{
+ icon_state = "crateopen";
+ opened = 1
+ },
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/plasteel/floorgrime,
+/area/quartermaster/storage)
+"aQg" = (
+/obj/structure/closet/crate/medical,
+/turf/open/floor/plasteel/floorgrime,
+/area/quartermaster/storage)
+"aQh" = (
+/turf/closed/wall/mineral/titanium,
+/area/shuttle/supply)
+"aQi" = (
+/obj/structure/shuttle/engine/heater{
+ dir = 1
+ },
+/obj/structure/window/reinforced,
+/turf/open/floor/plating/airless,
+/area/shuttle/supply)
+"aQj" = (
+/obj/structure/disposalpipe/sortjunction{
+ dir = 2;
+ icon_state = "pipe-j2s";
+ sortType = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plating,
+/area/maintenance/department/cargo)
+"aQk" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/closed/wall,
+/area/maintenance/disposal)
+"aQl" = (
+/obj/machinery/conveyor{
+ dir = 8;
+ id = "garbage"
+ },
+/obj/structure/disposaloutlet{
+ dir = 4
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/disposal)
+"aQm" = (
+/obj/machinery/conveyor{
+ dir = 8;
+ id = "garbage"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/plating,
+/area/maintenance/disposal)
+"aQn" = (
+/obj/machinery/conveyor{
+ dir = 8;
+ id = "garbage"
+ },
+/obj/machinery/recycler,
+/turf/open/floor/plating,
+/area/maintenance/disposal)
+"aQo" = (
+/obj/machinery/conveyor{
+ dir = 2;
+ id = "garbage"
+ },
+/turf/open/floor/plating,
+/area/maintenance/disposal)
+"aQp" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/landmark/revenantspawn,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/maintenance/disposal)
+"aQq" = (
+/obj/structure/chair/comfy/beige{
+ dir = 1
+ },
+/turf/open/floor/carpet,
+/area/shuttle/escape)
+"aQr" = (
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
+ icon_state = "space";
+ layer = 4;
+ name = "EXTERNAL AIRLOCK";
+ pixel_x = -32
+ },
+/turf/open/floor/plasteel/escape{
+ dir = 8
+ },
+/area/hallway/secondary/exit/departure_lounge)
+"aQs" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit/departure_lounge)
+"aQt" = (
+/obj/machinery/status_display,
+/turf/closed/wall,
+/area/hallway/secondary/exit/departure_lounge)
+"aQu" = (
+/obj/structure/flora/ausbushes/leafybush,
+/obj/structure/flora/ausbushes/ppflowers,
+/obj/structure/flora/ausbushes/ywflowers,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/grass,
+/area/hallway/secondary/exit/departure_lounge)
+"aQv" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit/departure_lounge)
+"aQw" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit/departure_lounge)
+"aQx" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 9
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit/departure_lounge)
+"aQy" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit/departure_lounge)
+"aQz" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass{
+ name = "Departure Lounge"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit/departure_lounge)
+"aQA" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"aQB" = (
+/obj/structure/disposalpipe/junction{
+ dir = 8;
+ icon_state = "pipe-j2"
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"aQC" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/neutral/corner,
+/area/hallway/primary/central)
+"aQD" = (
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"aQE" = (
+/obj/structure/grille/broken,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 6
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/crew_quarters/bar)
+"aQF" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/crew_quarters/bar)
+"aQG" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/crew_quarters/bar)
+"aQH" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 10
+ },
+/turf/open/floor/plating{
+ broken = 1;
+ icon_state = "platingdmg3"
+ },
+/area/maintenance/department/crew_quarters/bar)
+"aQI" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/landmark/blobstart,
+/turf/open/floor/plating{
+ burnt = 1;
+ icon_state = "panelscorched"
+ },
+/area/maintenance/department/crew_quarters/bar)
+"aQJ" = (
+/obj/structure/closet,
+/obj/effect/spawner/lootdrop/maintenance,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating{
+ burnt = 1;
+ icon_state = "panelscorched"
+ },
+/area/maintenance/department/crew_quarters/bar)
+"aQK" = (
+/obj/structure/grille,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/crew_quarters/bar)
+"aQL" = (
+/obj/structure/grille/broken,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/crew_quarters/bar)
+"aQM" = (
+/obj/item/weapon/reagent_containers/glass/bucket,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/crew_quarters/bar)
+"aQN" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/crew_quarters/bar)
+"aQO" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 6
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/crew_quarters/bar)
+"aQP" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/crew_quarters/bar)
+"aQQ" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating{
+ broken = 1;
+ icon_state = "platingdmg3"
+ },
+/area/maintenance/department/crew_quarters/bar)
+"aQR" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 9
+ },
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/plating,
+/area/maintenance/department/crew_quarters/bar)
+"aQS" = (
+/obj/machinery/reagentgrinder,
+/obj/structure/table/wood,
+/turf/open/floor/wood,
+/area/crew_quarters/bar)
+"aQT" = (
+/obj/machinery/vending/cigarette,
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/wood{
+ icon_state = "wood-broken6"
+ },
+/area/crew_quarters/bar)
+"aQU" = (
+/obj/machinery/vending/coffee,
+/obj/machinery/camera{
+ c_tag = "Bar Backroom";
+ dir = 2;
+ network = list("SS13")
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/bar)
+"aQV" = (
+/obj/structure/closet/secure_closet/bar{
+ req_access_txt = "25"
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/bar)
+"aQW" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plating,
+/area/maintenance/department/crew_quarters/bar)
+"aQX" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/item/weapon/broken_bottle,
+/turf/open/floor/plating,
+/area/maintenance/department/crew_quarters/bar)
+"aQY" = (
+/obj/structure/table,
+/obj/item/stack/sheet/plasteel{
+ amount = 10
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel/black,
+/area/storage/eva)
+"aQZ" = (
+/obj/structure/table,
+/obj/item/stack/sheet/metal{
+ amount = 50
+ },
+/obj/item/stack/sheet/metal{
+ amount = 50
+ },
+/obj/item/weapon/crowbar,
+/obj/structure/cable{
+ icon_state = "0-4";
+ d2 = 4
+ },
+/obj/machinery/power/apc{
+ dir = 2;
+ name = "EVA Storage APC";
+ pixel_y = -24
+ },
+/turf/open/floor/plasteel,
+/area/storage/eva)
+"aRa" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel,
+/area/storage/eva)
+"aRb" = (
+/obj/structure/table,
+/obj/item/stack/sheet/rglass{
+ amount = 50
+ },
+/obj/item/stack/sheet/rglass{
+ amount = 50
+ },
+/obj/item/stack/rods{
+ amount = 50
+ },
+/obj/item/stack/rods{
+ amount = 50
+ },
+/obj/machinery/airalarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/turf/open/floor/plasteel,
+/area/storage/eva)
+"aRc" = (
+/obj/structure/table,
+/obj/item/stack/sheet/metal{
+ amount = 50
+ },
+/obj/item/stack/sheet/rglass{
+ amount = 50
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel/black,
+/area/storage/eva)
+"aRd" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/airalarm{
+ dir = 4;
+ pixel_x = -23
+ },
+/turf/open/floor/plasteel/brown/corner{
+ dir = 1
+ },
+/area/hallway/primary/central)
+"aRe" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/sign/cargo{
+ pixel_x = 32
+ },
+/turf/open/floor/plasteel/brown/corner{
+ dir = 4
+ },
+/area/hallway/primary/central)
+"aRf" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/security/checkpoint/supply)
+"aRg" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass_security{
+ name = "Cargo Security Post";
+ req_access_txt = "63"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/red/side{
+ dir = 1
+ },
+/area/security/checkpoint/supply)
+"aRh" = (
+/obj/structure/chair/stool,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel,
+/area/quartermaster/office)
+"aRi" = (
+/obj/structure/chair/stool,
+/turf/open/floor/plasteel,
+/area/quartermaster/office)
+"aRj" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/folder/yellow,
+/obj/item/weapon/pen,
+/obj/item/weapon/paper_bin{
+ layer = 2.9
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/office)
+"aRk" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel,
+/area/quartermaster/office)
+"aRl" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel,
+/area/quartermaster/office)
+"aRm" = (
+/obj/structure/closet/crate,
+/obj/item/weapon/reagent_containers/food/snacks/donut,
+/obj/item/weapon/reagent_containers/food/snacks/donut,
+/obj/item/weapon/reagent_containers/food/snacks/donut,
+/obj/item/weapon/reagent_containers/food/snacks/donut,
+/turf/open/floor/plating,
+/area/quartermaster/office)
+"aRn" = (
+/obj/machinery/door/poddoor/shutters{
+ id = "qm_warehouse";
+ name = "warehouse shutters"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"aRo" = (
+/obj/machinery/door/poddoor/shutters{
+ id = "qm_warehouse";
+ name = "warehouse shutters"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"aRp" = (
+/obj/machinery/door/poddoor/shutters{
+ id = "qm_warehouse";
+ name = "warehouse shutters"
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"aRq" = (
+/obj/structure/closet/crate/internals,
+/turf/open/floor/plasteel/floorgrime,
+/area/quartermaster/storage)
+"aRr" = (
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/supply)
+"aRs" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 5
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/cargo)
+"aRt" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/closed/wall,
+/area/maintenance/disposal)
+"aRu" = (
+/obj/structure/chair{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/disposal)
+"aRv" = (
+/obj/item/trash/can,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/disposal)
+"aRw" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/disposal)
+"aRx" = (
+/obj/machinery/conveyor_switch/oneway{
+ convdir = -1;
+ id = "garbage";
+ name = "disposal conveyor"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/disposal)
+"aRy" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/disposal)
+"aRz" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/airalarm{
+ dir = 8;
+ pixel_x = 24
+ },
+/obj/effect/turf_decal/stripes/corner{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/disposal)
+"aRA" = (
+/obj/machinery/light,
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/escape)
+"aRB" = (
+/obj/structure/chair,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit/departure_lounge)
+"aRC" = (
+/obj/structure/table,
+/obj/item/weapon/paper_bin,
+/obj/item/weapon/pen,
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit/departure_lounge)
+"aRD" = (
+/obj/structure/flora/ausbushes/ywflowers,
+/obj/structure/flora/ausbushes/lavendergrass,
+/obj/structure/flora/ausbushes/ppflowers,
+/obj/structure/flora/ausbushes/brflowers,
+/obj/structure/flora/ausbushes/palebush,
+/obj/structure/window/reinforced{
+ dir = 1;
+ pixel_y = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/open/floor/grass,
+/area/hallway/secondary/exit/departure_lounge)
+"aRE" = (
+/obj/structure/flora/ausbushes/ywflowers,
+/obj/structure/flora/ausbushes/lavendergrass,
+/obj/structure/flora/ausbushes/ppflowers,
+/obj/structure/flora/ausbushes/brflowers,
+/obj/structure/flora/ausbushes/palebush,
+/obj/structure/window/reinforced{
+ dir = 1;
+ pixel_y = 1
+ },
+/turf/open/floor/grass,
+/area/hallway/secondary/exit/departure_lounge)
+"aRF" = (
+/obj/structure/flora/ausbushes/ywflowers,
+/obj/structure/flora/ausbushes/lavendergrass,
+/obj/structure/flora/ausbushes/ppflowers,
+/obj/structure/flora/ausbushes/brflowers,
+/obj/structure/flora/ausbushes/palebush,
+/obj/structure/window/reinforced{
+ dir = 1;
+ pixel_y = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 4;
+ layer = 2.9
+ },
+/turf/open/floor/grass,
+/area/hallway/secondary/exit/departure_lounge)
+"aRG" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit/departure_lounge)
+"aRH" = (
+/obj/structure/grille,
+/obj/structure/window/fulltile,
+/turf/open/floor/plating,
+/area/hallway/secondary/exit/departure_lounge)
+"aRI" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/machinery/vending/coffee,
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"aRJ" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plating,
+/area/maintenance/department/crew_quarters/bar)
+"aRK" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/crew_quarters/bar)
+"aRL" = (
+/turf/closed/wall,
+/area/hydroponics)
+"aRM" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/airlock/maintenance{
+ name = "Hydroponics Maintenance";
+ req_access_txt = "35"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plating,
+/area/hydroponics)
+"aRN" = (
+/turf/closed/wall,
+/area/crew_quarters/kitchen)
+"aRO" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/light/small{
+ brightness = 3;
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/crew_quarters/kitchen)
+"aRP" = (
+/obj/structure/plasticflaps{
+ opacity = 1
+ },
+/turf/open/floor/plating{
+ broken = 1;
+ icon_state = "platingdmg3"
+ },
+/area/maintenance/department/crew_quarters/bar)
+"aRQ" = (
+/obj/item/weapon/reagent_containers/food/drinks/shaker,
+/obj/item/weapon/gun/ballistic/revolver/doublebarrel,
+/obj/structure/table/wood,
+/obj/item/weapon/coin/silver,
+/obj/item/stack/spacecash/c10,
+/obj/item/stack/spacecash/c100,
+/turf/open/floor/wood,
+/area/crew_quarters/bar)
+"aRR" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/chair/wood/normal{
+ dir = 8
+ },
+/turf/open/floor/wood{
+ icon_state = "wood-broken"
+ },
+/area/crew_quarters/bar)
+"aRS" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/bar)
+"aRT" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/bar)
+"aRU" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Bar Storage Maintenance";
+ req_access_txt = "25"
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/crew_quarters/bar)
+"aRV" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/crew_quarters/bar)
+"aRW" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/item/chair,
+/turf/open/floor/plating,
+/area/maintenance/department/crew_quarters/bar)
+"aRX" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/maintenance{
+ name = "EVA Maintenance";
+ req_access_txt = "18"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plating,
+/area/storage/eva)
+"aRY" = (
+/obj/structure/closet/crate{
+ icon_state = "crateopen";
+ opened = 1
+ },
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/plating,
+/area/maintenance/department/crew_quarters/bar)
+"aRZ" = (
+/obj/item/trash/tray,
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/crew_quarters/bar)
+"aSa" = (
+/obj/structure/closet/secure_closet/freezer/cream_pie,
+/obj/item/weapon/grown/bananapeel,
+/turf/open/floor/plating,
+/area/maintenance/department/crew_quarters/bar)
+"aSb" = (
+/obj/structure/closet/secure_closet/freezer/cream_pie,
+/obj/item/seeds/banana,
+/turf/open/floor/plating,
+/area/maintenance/department/crew_quarters/bar)
+"aSc" = (
+/turf/open/floor/plasteel/brown/corner{
+ dir = 4
+ },
+/area/quartermaster/office)
+"aSd" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/brown/corner{
+ dir = 4
+ },
+/area/quartermaster/office)
+"aSe" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/door/firedoor,
+/obj/structure/table/reinforced,
+/obj/machinery/door/window/westleft{
+ dir = 1;
+ name = "Delivery Desk";
+ req_access_txt = "50"
+ },
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/quartermaster/office)
+"aSf" = (
+/obj/machinery/door/firedoor,
+/obj/structure/table/reinforced,
+/obj/machinery/door/window/westleft{
+ dir = 1;
+ name = "Delivery Desk";
+ req_access_txt = "50"
+ },
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/quartermaster/office)
+"aSg" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/airlock/glass_mining{
+ name = "Mailroom";
+ req_access_txt = "0";
+ req_one_access_txt = "48;50"
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/office)
+"aSh" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plating,
+/area/quartermaster/office)
+"aSi" = (
+/obj/machinery/button/door{
+ id = "qm_warehouse";
+ name = "Warehouse Door Control";
+ pixel_x = -24;
+ req_access_txt = "31"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"aSj" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"aSk" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"aSl" = (
+/obj/machinery/power/apc{
+ cell_type = 2500;
+ dir = 4;
+ name = "Cargo Maintenance APC";
+ pixel_x = 24
+ },
+/obj/structure/cable{
+ icon_state = "0-2";
+ pixel_y = 1;
+ d2 = 2
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plating,
+/area/maintenance/department/cargo)
+"aSm" = (
+/obj/effect/landmark/xeno_spawn,
+/turf/open/floor/plating,
+/area/maintenance/disposal)
+"aSn" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plating,
+/area/maintenance/disposal)
+"aSo" = (
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "Disposal APC";
+ pixel_x = 24
+ },
+/obj/structure/cable{
+ icon_state = "0-2";
+ pixel_y = 1;
+ d2 = 2
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plating,
+/area/maintenance/disposal)
+"aSp" = (
+/obj/machinery/door/airlock/glass{
+ name = "Emergency Shuttle Infirmary"
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/escape)
+"aSq" = (
+/obj/machinery/camera{
+ c_tag = "Departures - Port";
+ dir = 4;
+ name = "security camera";
+ pixel_y = -7
+ },
+/turf/open/floor/plasteel/escape{
+ dir = 8
+ },
+/area/hallway/secondary/exit/departure_lounge)
+"aSr" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit/departure_lounge)
+"aSs" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit/departure_lounge)
+"aSt" = (
+/obj/item/device/radio/beacon,
+/obj/effect/landmark/event_spawn,
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit/departure_lounge)
+"aSu" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 9
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit/departure_lounge)
+"aSv" = (
+/obj/structure/flora/ausbushes/ywflowers,
+/obj/structure/flora/ausbushes/lavendergrass,
+/obj/structure/flora/ausbushes/ppflowers,
+/obj/structure/flora/ausbushes/brflowers,
+/obj/structure/flora/ausbushes/sunnybush,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/mob/living/simple_animal/butterfly,
+/turf/open/floor/grass,
+/area/hallway/secondary/exit/departure_lounge)
+"aSw" = (
+/obj/item/weapon/statuebust,
+/turf/open/floor/grass,
+/area/hallway/secondary/exit/departure_lounge)
+"aSx" = (
+/obj/structure/flora/ausbushes/ywflowers,
+/obj/structure/flora/ausbushes/lavendergrass,
+/obj/structure/flora/ausbushes/ppflowers,
+/obj/structure/flora/ausbushes/brflowers,
+/obj/structure/flora/ausbushes/sunnybush,
+/obj/structure/window/reinforced{
+ dir = 4;
+ layer = 2.9
+ },
+/turf/open/floor/grass,
+/area/hallway/secondary/exit/departure_lounge)
+"aSy" = (
+/obj/structure/table,
+/obj/item/weapon/storage/box/matches{
+ pixel_x = -3;
+ pixel_y = 8
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit/departure_lounge)
+"aSz" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plating,
+/area/maintenance/department/crew_quarters/bar)
+"aSA" = (
+/obj/structure/sink{
+ pixel_y = 28
+ },
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -28
+ },
+/turf/open/floor/plasteel/hydrofloor,
+/area/hydroponics)
+"aSB" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/hydrofloor,
+/area/hydroponics)
+"aSC" = (
+/obj/structure/closet/secure_closet/hydroponics,
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/open/floor/plasteel/hydrofloor,
+/area/hydroponics)
+"aSD" = (
+/obj/structure/closet/secure_closet/hydroponics,
+/turf/open/floor/plasteel/hydrofloor,
+/area/hydroponics)
+"aSE" = (
+/obj/machinery/airalarm{
+ pixel_y = 24
+ },
+/obj/machinery/camera{
+ c_tag = "Hydroponics Storage"
+ },
+/obj/machinery/plantgenes,
+/turf/open/floor/plasteel/hydrofloor,
+/area/hydroponics)
+"aSF" = (
+/obj/machinery/chem_master/condimaster,
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/open/floor/plasteel/hydrofloor,
+/area/hydroponics)
+"aSG" = (
+/obj/structure/table,
+/obj/item/weapon/book/manual/hydroponics_pod_people,
+/obj/item/weapon/paper/guides/jobs/hydroponics,
+/obj/item/weapon/reagent_containers/dropper,
+/obj/item/weapon/reagent_containers/glass/bottle/mutagen,
+/obj/item/weapon/reagent_containers/dropper,
+/turf/open/floor/plasteel/hydrofloor,
+/area/hydroponics)
+"aSH" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Kitchen Maintenance";
+ req_access_txt = "28"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plating,
+/area/crew_quarters/kitchen)
+"aSI" = (
+/obj/machinery/chem_master/condimaster{
+ name = "CondiMaster Neo";
+ pixel_x = -4
+ },
+/turf/open/floor/plasteel/showroomfloor,
+/area/crew_quarters/kitchen)
+"aSJ" = (
+/obj/machinery/gibber,
+/turf/open/floor/plasteel/showroomfloor,
+/area/crew_quarters/kitchen)
+"aSK" = (
+/turf/open/floor/plasteel/showroomfloor,
+/area/crew_quarters/kitchen)
+"aSL" = (
+/obj/machinery/navbeacon{
+ codes_txt = "delivery;dir=8";
+ freq = 1400;
+ location = "Kitchen"
+ },
+/obj/machinery/door/window/southleft{
+ base_state = "left";
+ dir = 8;
+ icon_state = "left";
+ name = "Kitchen Delivery";
+ req_access_txt = "28"
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/crew_quarters/kitchen)
+"aSM" = (
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/maintenance/department/crew_quarters/bar)
+"aSN" = (
+/obj/item/device/assembly/mousetrap,
+/turf/open/floor/wood{
+ icon_state = "wood-broken6"
+ },
+/area/crew_quarters/bar)
+"aSO" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
+/turf/open/floor/wood,
+/area/crew_quarters/bar)
+"aSP" = (
+/turf/open/floor/wood,
+/area/crew_quarters/bar)
+"aSQ" = (
+/obj/effect/landmark/xeno_spawn,
+/obj/item/weapon/storage/box/beanbag,
+/turf/open/floor/wood,
+/area/crew_quarters/bar)
+"aSR" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 5
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/crew_quarters/bar)
+"aSS" = (
+/obj/item/weapon/weldingtool,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/crew_quarters/bar)
+"aST" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/crew_quarters/bar)
+"aSU" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 10
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/crew_quarters/bar)
+"aSV" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 6
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/crew_quarters/bar)
+"aSW" = (
+/obj/machinery/door/airlock/maintenance{
+ req_access_txt = "12"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/crew_quarters/bar)
+"aSX" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/brown/corner{
+ dir = 1
+ },
+/area/hallway/primary/central)
+"aSY" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/office)
+"aSZ" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/office)
+"aTa" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
+/turf/open/floor/plasteel,
+/area/quartermaster/office)
+"aTb" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = 29
+ },
+/turf/open/floor/plasteel/brown/corner{
+ dir = 4
+ },
+/area/quartermaster/office)
+"aTc" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
+/turf/open/floor/plasteel/brown/corner{
+ dir = 4
+ },
+/area/quartermaster/office)
+"aTd" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/brown/corner{
+ dir = 4
+ },
+/area/quartermaster/office)
+"aTe" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/quartermaster/office)
+"aTf" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/office)
+"aTg" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/office)
+"aTh" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel,
+/area/quartermaster/office)
+"aTi" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/requests_console{
+ department = "Cargo Bay";
+ departmentType = 2;
+ pixel_y = 32
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"aTj" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"aTk" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 9
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"aTl" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"aTm" = (
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"aTn" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/machinery/conveyor{
+ dir = 8;
+ id = "QMLoad"
+ },
+/obj/machinery/airalarm{
+ pixel_y = 22
+ },
+/turf/open/floor/plating,
+/area/quartermaster/storage)
+"aTo" = (
+/obj/machinery/conveyor{
+ dir = 8;
+ id = "QMLoad"
+ },
+/obj/machinery/status_display{
+ density = 0;
+ layer = 4;
+ pixel_y = 30;
+ supply_display = 1
+ },
+/turf/open/floor/plating,
+/area/quartermaster/storage)
+"aTp" = (
+/obj/machinery/conveyor{
+ dir = 8;
+ id = "QMLoad"
+ },
+/obj/structure/sign/poster/official/random{
+ pixel_y = 32
+ },
+/turf/open/floor/plating,
+/area/quartermaster/storage)
+"aTq" = (
+/obj/machinery/conveyor{
+ dir = 8;
+ id = "QMLoad"
+ },
+/turf/open/floor/plating,
+/area/quartermaster/storage)
+"aTr" = (
+/obj/machinery/door/poddoor{
+ id = "QMLoaddoor";
+ name = "supply dock loading door"
+ },
+/obj/machinery/conveyor{
+ dir = 8;
+ id = "QMLoad"
+ },
+/turf/open/floor/plating,
+/area/quartermaster/storage)
+"aTs" = (
+/obj/structure/plasticflaps,
+/obj/machinery/conveyor{
+ dir = 8;
+ id = "QMLoad"
+ },
+/turf/open/floor/plating,
+/area/quartermaster/storage)
+"aTt" = (
+/obj/machinery/door/poddoor{
+ id = "QMLoaddoor";
+ name = "supply dock loading door"
+ },
+/obj/machinery/conveyor{
+ dir = 8;
+ id = "QMLoad"
+ },
+/turf/open/floor/plating,
+/area/shuttle/supply)
+"aTu" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/cargo)
+"aTv" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/cargo)
+"aTw" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 2;
+ icon_state = "pipe-y"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 6
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/cargo)
+"aTx" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/cargo)
+"aTy" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Disposal Access";
+ req_access_txt = "12"
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/disposal)
+"aTz" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/disposal)
+"aTA" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 9
+ },
+/turf/open/floor/plating,
+/area/maintenance/disposal)
+"aTB" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/plating,
+/area/maintenance/disposal)
+"aTC" = (
+/obj/structure/cable{
+ icon_state = "0-4";
+ d2 = 4
+ },
+/obj/machinery/power/solar{
+ id = "portsolar";
+ name = "Port Solar Array"
+ },
+/turf/open/floor/plasteel/airless/solarpanel,
+/area/solar/starboard)
+"aTD" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/open/space,
+/area/solar/starboard)
+"aTE" = (
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/machinery/power/solar{
+ id = "starboardsolar";
+ name = "Starboard Solar Array"
+ },
+/turf/open/floor/plasteel/airless/solarpanel,
+/area/solar/starboard)
+"aTF" = (
+/obj/machinery/sleeper{
+ dir = 4
+ },
+/turf/open/floor/mineral/titanium,
+/area/shuttle/escape)
+"aTG" = (
+/obj/machinery/vending/medical,
+/turf/open/floor/mineral/titanium,
+/area/shuttle/escape)
+"aTH" = (
+/obj/machinery/door/airlock/titanium{
+ name = "Emergency Shuttle Airlock"
+ },
+/obj/docking_port/stationary{
+ dheight = 0;
+ dir = 8;
+ dwidth = 4;
+ height = 15;
+ id = "emergency_home";
+ name = "PubbyStation emergency evac bay";
+ width = 20
+ },
+/obj/docking_port/mobile/emergency{
+ dheight = 0;
+ dir = 8;
+ dwidth = 4;
+ height = 15;
+ name = "Pubby emergency shuttle";
+ port_angle = 90;
+ width = 18
+ },
+/turf/open/floor/plating,
+/area/shuttle/escape)
+"aTI" = (
+/obj/machinery/light,
+/turf/open/floor/plating,
+/area/hallway/secondary/exit/departure_lounge)
+"aTJ" = (
+/obj/structure/table,
+/obj/item/weapon/folder,
+/obj/item/weapon/pen,
+/obj/machinery/light,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit/departure_lounge)
+"aTK" = (
+/obj/structure/flora/ausbushes/ywflowers,
+/obj/structure/flora/ausbushes/lavendergrass,
+/obj/structure/flora/ausbushes/ppflowers,
+/obj/structure/flora/ausbushes/brflowers,
+/obj/structure/flora/ausbushes/palebush,
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/open/floor/grass,
+/area/hallway/secondary/exit/departure_lounge)
+"aTL" = (
+/obj/structure/flora/ausbushes/ywflowers,
+/obj/structure/flora/ausbushes/lavendergrass,
+/obj/structure/flora/ausbushes/ppflowers,
+/obj/structure/flora/ausbushes/brflowers,
+/obj/structure/flora/ausbushes/palebush,
+/obj/structure/window/reinforced,
+/turf/open/floor/grass,
+/area/hallway/secondary/exit/departure_lounge)
+"aTM" = (
+/obj/structure/flora/ausbushes/ywflowers,
+/obj/structure/flora/ausbushes/lavendergrass,
+/obj/structure/flora/ausbushes/ppflowers,
+/obj/structure/flora/ausbushes/brflowers,
+/obj/structure/flora/ausbushes/palebush,
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 4;
+ layer = 2.9
+ },
+/turf/open/floor/grass,
+/area/hallway/secondary/exit/departure_lounge)
+"aTN" = (
+/obj/structure/chair{
+ dir = 1;
+ name = "Command Station"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit/departure_lounge)
+"aTO" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/camera{
+ c_tag = "Central Primary Hallway Escape";
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"aTP" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 28
+ },
+/turf/open/floor/plasteel/neutral/corner,
+/area/hallway/primary/central)
+"aTQ" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -24
+ },
+/turf/open/floor/plasteel/hydrofloor,
+/area/hydroponics)
+"aTR" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/open/floor/plasteel/hydrofloor,
+/area/hydroponics)
+"aTS" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel/hydrofloor,
+/area/hydroponics)
+"aTT" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/open/floor/plasteel/hydrofloor,
+/area/hydroponics)
+"aTU" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 10
+ },
+/turf/open/floor/plasteel/hydrofloor,
+/area/hydroponics)
+"aTV" = (
+/turf/open/floor/plasteel/hydrofloor,
+/area/hydroponics)
+"aTW" = (
+/obj/structure/table,
+/obj/item/weapon/reagent_containers/spray/plantbgone{
+ pixel_y = 3
+ },
+/obj/item/weapon/reagent_containers/spray/plantbgone{
+ pixel_x = 8;
+ pixel_y = 8
+ },
+/obj/item/weapon/reagent_containers/spray/plantbgone{
+ pixel_x = 13;
+ pixel_y = 5
+ },
+/obj/item/weapon/watertank,
+/turf/open/floor/plasteel/hydrofloor,
+/area/hydroponics)
+"aTX" = (
+/obj/structure/kitchenspike,
+/obj/item/device/assembly/mousetrap,
+/obj/item/trash/deadmouse,
+/turf/open/floor/plasteel/showroomfloor,
+/area/crew_quarters/kitchen)
+"aTY" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 5
+ },
+/turf/open/floor/plasteel/showroomfloor,
+/area/crew_quarters/kitchen)
+"aTZ" = (
+/obj/machinery/camera{
+ c_tag = "Kitchen Cold Room";
+ dir = 2;
+ network = list("SS13")
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 8
+ },
+/obj/machinery/requests_console{
+ department = "Kitchen";
+ departmentType = 2;
+ pixel_y = 30
+ },
+/turf/open/floor/plasteel/showroomfloor,
+/area/crew_quarters/kitchen)
+"aUa" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 26
+ },
+/turf/open/floor/plasteel/showroomfloor,
+/area/crew_quarters/kitchen)
+"aUb" = (
+/obj/structure/plasticflaps{
+ opacity = 1
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/maintenance/department/crew_quarters/bar)
+"aUc" = (
+/obj/structure/reagent_dispensers/beerkeg,
+/turf/open/floor/wood,
+/area/crew_quarters/bar)
+"aUd" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/wood,
+/area/crew_quarters/bar)
+"aUe" = (
+/obj/structure/closet/gmcloset,
+/obj/item/stack/sheet/metal{
+ amount = 50
+ },
+/obj/item/stack/sheet/glass{
+ amount = 50
+ },
+/obj/item/stack/cable_coil,
+/obj/item/weapon/storage/box/mousetraps,
+/turf/open/floor/wood{
+ icon_state = "wood-broken5"
+ },
+/area/crew_quarters/bar)
+"aUf" = (
+/turf/closed/wall,
+/area/crew_quarters/theatre)
+"aUg" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Theatre Maintenance";
+ req_access_txt = "0";
+ req_one_access_txt = "12;46"
+ },
+/turf/open/floor/plating,
+/area/crew_quarters/theatre)
+"aUh" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Theatre Maintenance";
+ req_access_txt = "0";
+ req_one_access_txt = "12;46"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plating,
+/area/crew_quarters/theatre)
+"aUi" = (
+/obj/machinery/camera{
+ c_tag = "Central Primary Hallway Cargo";
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel/brown/corner{
+ dir = 1
+ },
+/area/hallway/primary/central)
+"aUj" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"aUk" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"aUl" = (
+/obj/machinery/door/firedoor,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/office)
+"aUm" = (
+/obj/machinery/holopad,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/office)
+"aUn" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 6
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/office)
+"aUo" = (
+/obj/machinery/door/airlock/glass_mining{
+ name = "Cargo Bay";
+ req_access_txt = "0";
+ req_one_access_txt = "31;48"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/office)
+"aUp" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel,
+/area/quartermaster/office)
+"aUq" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/office)
+"aUr" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
+/turf/open/floor/plasteel,
+/area/quartermaster/office)
+"aUs" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/office)
+"aUt" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"aUu" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"aUv" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"aUw" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"aUx" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 10
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"aUy" = (
+/obj/machinery/door/airlock/external{
+ name = "Supply Dock Airlock";
+ req_access_txt = "31"
+ },
+/turf/open/floor/plating,
+/area/quartermaster/storage)
+"aUz" = (
+/obj/machinery/light/small,
+/turf/open/floor/plating,
+/area/quartermaster/storage)
+"aUA" = (
+/obj/machinery/door/airlock/titanium{
+ name = "Supply Shuttle Airlock";
+ req_access_txt = "31"
+ },
+/obj/docking_port/mobile/supply{
+ dir = 4
+ },
+/obj/docking_port/stationary{
+ dir = 4;
+ dwidth = 5;
+ height = 7;
+ id = "supply_home";
+ name = "Cargo Bay";
+ width = 12
+ },
+/turf/open/floor/plating,
+/area/shuttle/supply)
+"aUB" = (
+/obj/structure/rack,
+/obj/effect/spawner/lootdrop/maintenance,
+/obj/item/weapon/storage/toolbox/mechanical,
+/turf/open/floor/plating,
+/area/maintenance/department/cargo)
+"aUC" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plating,
+/area/maintenance/department/cargo)
+"aUD" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/space,
+/area/solar/starboard)
+"aUE" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/mineral/titanium,
+/area/shuttle/escape)
+"aUF" = (
+/obj/structure/table,
+/obj/item/weapon/storage/firstaid/fire,
+/obj/item/weapon/storage/firstaid/regular{
+ pixel_x = 2;
+ pixel_y = 3
+ },
+/obj/item/weapon/crowbar,
+/obj/structure/sign/nosmoking_2{
+ pixel_x = 32
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/mineral/titanium,
+/area/shuttle/escape)
+"aUG" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit/departure_lounge)
+"aUH" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit/departure_lounge)
+"aUI" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit/departure_lounge)
+"aUJ" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass{
+ name = "Departure Lounge"
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit/departure_lounge)
+"aUK" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"aUL" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"aUM" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/neutral/corner,
+/area/hallway/primary/central)
+"aUN" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/door/airlock/maintenance{
+ req_access_txt = "12"
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/crew_quarters/bar)
+"aUO" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/light/small,
+/turf/open/floor/plating,
+/area/maintenance/department/crew_quarters/bar)
+"aUP" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/crew_quarters/bar)
+"aUQ" = (
+/obj/structure/plasticflaps{
+ opacity = 1
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/hydroponics)
+"aUR" = (
+/obj/machinery/door/window/eastright{
+ name = "Hydroponics Delivery";
+ req_access_txt = "35"
+ },
+/obj/machinery/navbeacon{
+ codes_txt = "delivery;dir=4";
+ dir = 1;
+ freq = 1400;
+ location = "Hydroponics"
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/hydroponics)
+"aUS" = (
+/obj/structure/closet/crate/hydroponics,
+/obj/item/weapon/shovel/spade,
+/obj/item/weapon/wrench,
+/obj/item/weapon/reagent_containers/glass/bucket,
+/obj/item/weapon/reagent_containers/glass/bucket,
+/obj/item/weapon/wirecutters,
+/turf/open/floor/plasteel/hydrofloor,
+/area/hydroponics)
+"aUT" = (
+/obj/structure/closet/wardrobe/botanist,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/open/floor/plasteel/hydrofloor,
+/area/hydroponics)
+"aUU" = (
+/obj/machinery/power/apc{
+ name = "Hydroponics APC";
+ pixel_y = -24
+ },
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/turf/open/floor/plasteel/hydrofloor,
+/area/hydroponics)
+"aUV" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/hydrofloor,
+/area/hydroponics)
+"aUW" = (
+/obj/structure/table,
+/obj/machinery/reagentgrinder,
+/turf/open/floor/plasteel/hydrofloor,
+/area/hydroponics)
+"aUX" = (
+/obj/machinery/icecream_vat,
+/turf/open/floor/plasteel/showroomfloor,
+/area/crew_quarters/kitchen)
+"aUY" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/showroomfloor,
+/area/crew_quarters/kitchen)
+"aUZ" = (
+/mob/living/simple_animal/hostile/retaliate/goat{
+ name = "Pete"
+ },
+/turf/open/floor/plasteel/showroomfloor,
+/area/crew_quarters/kitchen)
+"aVa" = (
+/obj/machinery/holopad,
+/turf/open/floor/plasteel/showroomfloor,
+/area/crew_quarters/kitchen)
+"aVb" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/machinery/airalarm{
+ dir = 8;
+ pixel_x = 23
+ },
+/turf/open/floor/plasteel/showroomfloor,
+/area/crew_quarters/kitchen)
+"aVc" = (
+/obj/machinery/door/window/southleft{
+ base_state = "left";
+ dir = 2;
+ icon_state = "left";
+ name = "Bar Delivery";
+ req_access_txt = "25"
+ },
+/obj/machinery/navbeacon{
+ codes_txt = "delivery;dir=2";
+ freq = 1400;
+ location = "Bar"
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/crew_quarters/bar)
+"aVd" = (
+/obj/machinery/door/airlock{
+ name = "Bar Storage";
+ req_access_txt = "25"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/black,
+/area/crew_quarters/bar)
+"aVe" = (
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk,
+/turf/open/floor/plasteel/black,
+/area/crew_quarters/bar)
+"aVf" = (
+/obj/structure/sign/poster/random{
+ pixel_x = -32
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/theatre)
+"aVg" = (
+/turf/open/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/crew_quarters/theatre)
+"aVh" = (
+/obj/item/weapon/twohanded/required/kirbyplants{
+ icon_state = "plant-04";
+ layer = 4.1
+ },
+/obj/structure/sign/poster/random{
+ pixel_y = 32
+ },
+/turf/open/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/crew_quarters/theatre)
+"aVi" = (
+/obj/machinery/camera{
+ c_tag = "Theatre Stage";
+ dir = 2
+ },
+/obj/machinery/light/small{
+ dir = 1;
+ light_color = "#e82c86"
+ },
+/turf/open/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/crew_quarters/theatre)
+"aVj" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/sign/poster/random{
+ pixel_x = 32
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/theatre)
+"aVk" = (
+/obj/structure/table/wood,
+/obj/item/weapon/lipstick/random{
+ pixel_x = 2;
+ pixel_y = 2
+ },
+/obj/item/clothing/gloves/color/rainbow/clown,
+/obj/machinery/airalarm{
+ pixel_y = 22
+ },
+/obj/item/weapon/lipstick/random,
+/turf/open/floor/plasteel/black,
+/area/crew_quarters/theatre)
+"aVl" = (
+/obj/structure/dresser,
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/structure/sign/poster/contraband/clown{
+ pixel_y = 32
+ },
+/turf/open/floor/plasteel/black,
+/area/crew_quarters/theatre)
+"aVm" = (
+/obj/machinery/vending/autodrobe,
+/obj/machinery/computer/security/telescreen/entertainment{
+ pixel_y = 32
+ },
+/turf/open/floor/plasteel/black,
+/area/crew_quarters/theatre)
+"aVn" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Theatre Maintenance";
+ req_access_txt = "46"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plating,
+/area/crew_quarters/theatre)
+"aVo" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/plasteel/brown/corner{
+ dir = 1
+ },
+/area/hallway/primary/central)
+"aVp" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/office)
+"aVq" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/office)
+"aVr" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 9
+ },
+/turf/open/floor/plasteel/loadingarea{
+ dir = 8
+ },
+/area/quartermaster/office)
+"aVs" = (
+/obj/structure/plasticflaps{
+ opacity = 1
+ },
+/obj/machinery/conveyor{
+ dir = 4;
+ id = "cargodeliver"
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/quartermaster/office)
+"aVt" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/brown{
+ dir = 8
+ },
+/area/quartermaster/office)
+"aVu" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/office)
+"aVv" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 27
+ },
+/obj/machinery/conveyor_switch{
+ id = "cargodeliver"
+ },
+/turf/open/floor/plasteel/brown{
+ dir = 4
+ },
+/area/quartermaster/office)
+"aVw" = (
+/obj/machinery/navbeacon{
+ codes_txt = "delivery;dir=4";
+ freq = 1400;
+ location = "QM #1"
+ },
+/obj/effect/turf_decal/bot,
+/mob/living/simple_animal/bot/mulebot{
+ beacon_freq = 1400;
+ home_destination = "QM #1";
+ suffix = "#1"
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"aVx" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"aVy" = (
+/obj/effect/landmark/start/cargo_technician,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"aVz" = (
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"aVA" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"aVB" = (
+/obj/machinery/conveyor_switch/oneway{
+ convdir = -1;
+ id = "QMLoad"
+ },
+/obj/machinery/button/door{
+ id = "QMLoaddoor2";
+ layer = 4;
+ name = "Loading Doors";
+ pixel_x = 24;
+ pixel_y = -8
+ },
+/obj/machinery/button/door{
+ dir = 2;
+ id = "QMLoaddoor";
+ layer = 4;
+ name = "Loading Doors";
+ pixel_x = 24;
+ pixel_y = 8
+ },
+/obj/machinery/camera{
+ c_tag = "Cargo Supply Dock";
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"aVC" = (
+/obj/machinery/button/door{
+ id = "QMLoaddoor2";
+ layer = 4;
+ name = "Loading Doors";
+ pixel_x = -24;
+ pixel_y = -8
+ },
+/obj/machinery/button/door{
+ dir = 2;
+ id = "QMLoaddoor";
+ layer = 4;
+ name = "Loading Doors";
+ pixel_x = -24;
+ pixel_y = 8
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/supply)
+"aVD" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/supply)
+"aVE" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plating,
+/area/maintenance/department/cargo)
+"aVF" = (
+/obj/structure/closet,
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/plating,
+/area/maintenance/department/cargo)
+"aVG" = (
+/obj/structure/easel,
+/turf/open/floor/plating,
+/area/maintenance/department/cargo)
+"aVH" = (
+/obj/structure/closet/l3closet/scientist,
+/obj/item/weapon/book/manual/wiki/chemistry,
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/cargo)
+"aVI" = (
+/obj/structure/closet,
+/obj/item/weapon/canvas/twentythreeXnineteen,
+/obj/item/weapon/canvas/nineteenXnineteen,
+/obj/item/weapon/canvas/twentythreeXtwentythree,
+/obj/item/weapon/storage/crayons,
+/turf/open/floor/plating,
+/area/maintenance/department/cargo)
+"aVJ" = (
+/obj/structure/shuttle/engine/heater,
+/obj/structure/window/shuttle,
+/turf/open/floor/plating/airless,
+/area/shuttle/escape)
+"aVK" = (
+/obj/structure/table,
+/obj/item/weapon/defibrillator/loaded,
+/turf/open/floor/mineral/titanium,
+/area/shuttle/escape)
+"aVL" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 5
+ },
+/turf/open/floor/plasteel/neutral/side{
+ dir = 8;
+ heat_capacity = 1e+006
+ },
+/area/hallway/secondary/exit/departure_lounge)
+"aVM" = (
+/obj/structure/chair,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit/departure_lounge)
+"aVN" = (
+/obj/structure/table,
+/obj/item/weapon/storage/pill_bottle/dice,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit/departure_lounge)
+"aVO" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit/departure_lounge)
+"aVP" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit/departure_lounge)
+"aVQ" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass{
+ name = "Departure Lounge"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit/departure_lounge)
+"aVR" = (
+/obj/structure/sign/directions/evac{
+ dir = 1;
+ icon_state = "direction_evac";
+ pixel_x = 32
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/neutral/corner,
+/area/hallway/primary/central)
+"aVS" = (
+/turf/closed/wall,
+/area/janitor)
+"aVT" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/closed/wall,
+/area/janitor)
+"aVU" = (
+/obj/machinery/door/window/eastright{
+ dir = 2;
+ name = "Janitor Delivery";
+ req_access_txt = "26"
+ },
+/obj/machinery/navbeacon{
+ codes_txt = "delivery;dir=1";
+ dir = 1;
+ freq = 1400;
+ location = "Janitor"
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/janitor)
+"aVV" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass{
+ name = "Hydroponics";
+ req_access_txt = "35"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel,
+/area/hydroponics)
+"aVW" = (
+/obj/structure/closet/chefcloset,
+/obj/item/weapon/wrench,
+/obj/item/weapon/crowbar,
+/obj/item/stack/packageWrap,
+/obj/item/weapon/hand_labeler,
+/turf/open/floor/plasteel/showroomfloor,
+/area/crew_quarters/kitchen)
+"aVX" = (
+/obj/machinery/power/apc{
+ dir = 2;
+ name = "Kitchen APC";
+ pixel_y = -24
+ },
+/obj/structure/cable,
+/turf/open/floor/plasteel/showroomfloor,
+/area/crew_quarters/kitchen)
+"aVY" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 6
+ },
+/turf/open/floor/plasteel/showroomfloor,
+/area/crew_quarters/kitchen)
+"aVZ" = (
+/obj/structure/closet/secure_closet/freezer/kitchen,
+/obj/item/weapon/reagent_containers/food/snacks/grown/potato,
+/obj/item/weapon/reagent_containers/food/snacks/grown/potato,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/showroomfloor,
+/area/crew_quarters/kitchen)
+"aWa" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/closed/wall,
+/area/crew_quarters/kitchen)
+"aWb" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -26
+ },
+/turf/open/floor/plasteel/black,
+/area/crew_quarters/bar)
+"aWc" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/structure/sign/securearea{
+ desc = "Under the painting a plaque reads: 'While the meat grinder may not have spared you, fear not. Not one part of you has gone to waste... You were delicious.'";
+ icon_state = "monkey_painting";
+ name = "Mr. Deempisi portrait";
+ pixel_y = 28
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/black,
+/area/crew_quarters/bar)
+"aWd" = (
+/obj/structure/sink/kitchen{
+ pixel_y = 28
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/black,
+/area/crew_quarters/bar)
+"aWe" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
+/turf/open/floor/plasteel/black,
+/area/crew_quarters/bar)
+"aWf" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/requests_console{
+ department = "Bar";
+ departmentType = 2;
+ pixel_y = 30;
+ receive_ore_updates = 1
+ },
+/obj/machinery/camera{
+ c_tag = "Bar Access";
+ dir = 2;
+ network = list("SS13")
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/black,
+/area/crew_quarters/bar)
+"aWg" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/item/device/radio/intercom{
+ dir = 0;
+ name = "Station Intercom (General)";
+ pixel_y = 26
+ },
+/turf/open/floor/plasteel/black,
+/area/crew_quarters/bar)
+"aWh" = (
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "Bar APC";
+ pixel_x = 27
+ },
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 10
+ },
+/turf/open/floor/plasteel/black,
+/area/crew_quarters/bar)
+"aWi" = (
+/obj/structure/piano{
+ icon_state = "piano"
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/theatre)
+"aWj" = (
+/obj/structure/chair/wood/normal{
+ dir = 8
+ },
+/turf/open/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/crew_quarters/theatre)
+"aWk" = (
+/obj/structure/chair/wood/normal,
+/turf/open/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/crew_quarters/theatre)
+"aWl" = (
+/obj/structure/table/wood,
+/obj/item/device/instrument/violin,
+/turf/open/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/crew_quarters/theatre)
+"aWm" = (
+/obj/structure/table/wood,
+/obj/item/device/instrument/guitar,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/wood,
+/area/crew_quarters/theatre)
+"aWn" = (
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "Theatre APC";
+ pixel_x = -25
+ },
+/obj/structure/cable{
+ icon_state = "0-4";
+ d2 = 4
+ },
+/turf/open/floor/plasteel/redblue,
+/area/crew_quarters/theatre)
+"aWo" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/landmark/start/mime,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 6
+ },
+/turf/open/floor/plasteel/redblue,
+/area/crew_quarters/theatre)
+"aWp" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/redblue,
+/area/crew_quarters/theatre)
+"aWq" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/item/device/radio/intercom{
+ dir = 0;
+ name = "Station Intercom (General)";
+ pixel_y = 26
+ },
+/turf/open/floor/plasteel/redblue,
+/area/crew_quarters/theatre)
+"aWr" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 9
+ },
+/obj/machinery/light_switch{
+ pixel_x = 24;
+ pixel_y = 24
+ },
+/obj/structure/mirror{
+ pixel_x = 28;
+ pixel_y = -2
+ },
+/turf/open/floor/plasteel/redblue,
+/area/crew_quarters/theatre)
+"aWs" = (
+/obj/machinery/computer/cargo/request,
+/turf/open/floor/plasteel/brown/corner,
+/area/quartermaster/office)
+"aWt" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/brown/corner,
+/area/quartermaster/office)
+"aWu" = (
+/turf/open/floor/plasteel/brown/corner,
+/area/quartermaster/office)
+"aWv" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/mineral/ore_redemption{
+ input_dir = 4;
+ output_dir = 8
+ },
+/turf/open/floor/plasteel/black,
+/area/quartermaster/office)
+"aWw" = (
+/obj/machinery/status_display{
+ dir = 8;
+ layer = 4;
+ pixel_x = 32;
+ supply_display = 1
+ },
+/turf/open/floor/plasteel/brown{
+ dir = 4
+ },
+/area/quartermaster/office)
+"aWx" = (
+/obj/machinery/navbeacon{
+ codes_txt = "delivery;dir=4";
+ freq = 1400;
+ location = "QM #2"
+ },
+/obj/machinery/camera{
+ c_tag = "Cargo Bay";
+ dir = 4
+ },
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"aWy" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"aWz" = (
+/obj/structure/closet/crate{
+ icon_state = "crateopen";
+ opened = 1
+ },
+/obj/effect/spawner/lootdrop/maintenance{
+ lootcount = 2;
+ name = "2maintenance loot spawner"
+ },
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"aWA" = (
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"aWB" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/quartermaster/storage)
+"aWC" = (
+/obj/machinery/door/airlock/titanium{
+ name = "Supply Shuttle Airlock";
+ req_access_txt = "31"
+ },
+/turf/open/floor/plating,
+/area/shuttle/supply)
+"aWD" = (
+/obj/structure/shuttle/engine/propulsion,
+/turf/open/floor/plating/airless,
+/area/shuttle/escape)
+"aWE" = (
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 8
+ },
+/area/hallway/secondary/exit/departure_lounge)
+"aWF" = (
+/turf/open/floor/plasteel/escape/corner,
+/area/hallway/secondary/exit/departure_lounge)
+"aWG" = (
+/obj/structure/chair{
+ dir = 1
+ },
+/turf/open/floor/plasteel/escape,
+/area/hallway/secondary/exit/departure_lounge)
+"aWH" = (
+/obj/structure/chair{
+ dir = 1
+ },
+/obj/machinery/airalarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/turf/open/floor/plasteel/escape,
+/area/hallway/secondary/exit/departure_lounge)
+"aWI" = (
+/obj/structure/table,
+/obj/item/weapon/reagent_containers/food/snacks/cookie,
+/turf/open/floor/plasteel/escape,
+/area/hallway/secondary/exit/departure_lounge)
+"aWJ" = (
+/obj/machinery/light,
+/obj/structure/chair{
+ dir = 1
+ },
+/turf/open/floor/plasteel/escape,
+/area/hallway/secondary/exit/departure_lounge)
+"aWK" = (
+/turf/open/floor/plasteel/escape,
+/area/hallway/secondary/exit/departure_lounge)
+"aWL" = (
+/obj/item/weapon/twohanded/required/kirbyplants{
+ icon_state = "plant-14";
+ layer = 4.1
+ },
+/turf/open/floor/plasteel/escape{
+ dir = 6
+ },
+/area/hallway/secondary/exit/departure_lounge)
+"aWM" = (
+/obj/machinery/washing_machine,
+/obj/structure/sign/securearea{
+ desc = "Under the painting a plaque reads: 'While the meat grinder may not have spared you, fear not. Not one part of you has gone to waste... You were delicious.'";
+ icon_state = "monkey_painting";
+ name = "Mr. Deempisi portrait";
+ pixel_y = 28
+ },
+/turf/open/floor/plasteel/black,
+/area/janitor)
+"aWN" = (
+/obj/machinery/camera{
+ c_tag = "Custodial Quarters"
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 1
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/item/device/radio/intercom{
+ dir = 0;
+ name = "Station Intercom (General)";
+ pixel_y = 26
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/open/floor/plasteel/black,
+/area/janitor)
+"aWO" = (
+/obj/structure/bed,
+/obj/item/weapon/bedsheet,
+/obj/effect/landmark/start/janitor,
+/turf/open/floor/plasteel/black,
+/area/janitor)
+"aWP" = (
+/obj/machinery/hydroponics/constructable,
+/turf/open/floor/plasteel/green/side{
+ dir = 9
+ },
+/area/hydroponics)
+"aWQ" = (
+/obj/machinery/hydroponics/constructable,
+/turf/open/floor/plasteel/green/corner{
+ dir = 4
+ },
+/area/hydroponics)
+"aWR" = (
+/obj/structure/sink/kitchen{
+ name = "utility sink";
+ pixel_y = 28
+ },
+/turf/open/floor/plasteel,
+/area/hydroponics)
+"aWS" = (
+/obj/structure/disposalpipe/sortjunction{
+ dir = 2;
+ icon_state = "pipe-j2s";
+ sortType = 21
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel,
+/area/hydroponics)
+"aWT" = (
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/obj/machinery/light_switch{
+ pixel_x = -4;
+ pixel_y = 30
+ },
+/turf/open/floor/plasteel/green/corner{
+ dir = 4
+ },
+/area/hydroponics)
+"aWU" = (
+/obj/structure/closet/secure_closet/freezer/meat,
+/turf/open/floor/plasteel/showroomfloor,
+/area/crew_quarters/kitchen)
+"aWV" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/open/floor/plasteel/showroomfloor,
+/area/crew_quarters/kitchen)
+"aWW" = (
+/obj/structure/closet/secure_closet/freezer/fridge,
+/turf/open/floor/plasteel/showroomfloor,
+/area/crew_quarters/kitchen)
+"aWX" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/plasteel/black,
+/area/crew_quarters/bar)
+"aWY" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/open/floor/plasteel/black,
+/area/crew_quarters/bar)
+"aWZ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/black,
+/area/crew_quarters/bar)
+"aXa" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 10
+ },
+/obj/structure/disposalpipe/sortjunction{
+ dir = 4;
+ icon_state = "pipe-j1s";
+ sortType = 19
+ },
+/turf/open/floor/plasteel/black,
+/area/crew_quarters/bar)
+"aXb" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel/black,
+/area/crew_quarters/bar)
+"aXc" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 4
+ },
+/obj/structure/disposalpipe/junction{
+ icon_state = "pipe-j2";
+ dir = 4
+ },
+/turf/open/floor/plasteel/black,
+/area/crew_quarters/bar)
+"aXd" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/black,
+/area/crew_quarters/bar)
+"aXe" = (
+/obj/machinery/light/small{
+ brightness = 3;
+ dir = 8;
+ light_color = "#2cb2e8"
+ },
+/obj/structure/sign/poster/random{
+ pixel_x = -32
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/theatre)
+"aXf" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/festivus,
+/turf/open/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/crew_quarters/theatre)
+"aXg" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/crew_quarters/theatre)
+"aXh" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 10
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/crew_quarters/theatre)
+"aXi" = (
+/obj/structure/festivus,
+/turf/open/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/crew_quarters/theatre)
+"aXj" = (
+/obj/machinery/light/small{
+ dir = 4;
+ light_color = "#b4f237"
+ },
+/obj/structure/sign/poster/random{
+ pixel_x = 32
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/theatre)
+"aXk" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/plasteel/redblue,
+/area/crew_quarters/theatre)
+"aXl" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/camera{
+ c_tag = "Theatre Storage";
+ dir = 1
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/open/floor/plasteel/redblue,
+/area/crew_quarters/theatre)
+"aXm" = (
+/obj/structure/disposalpipe/sortjunction{
+ dir = 4;
+ icon_state = "pipe-j1s";
+ sortType = 18
+ },
+/obj/machinery/requests_console{
+ department = "Theatre";
+ departmentType = 0;
+ name = "theatre RC";
+ pixel_x = -32;
+ pixel_y = -32
+ },
+/turf/open/floor/plasteel/redblue,
+/area/crew_quarters/theatre)
+"aXn" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/landmark/start/clown,
+/turf/open/floor/plasteel/redblue,
+/area/crew_quarters/theatre)
+"aXo" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 4
+ },
+/obj/item/cardboard_cutout,
+/obj/structure/mirror{
+ pixel_x = 28;
+ pixel_y = -2
+ },
+/turf/open/floor/plasteel/redblue,
+/area/crew_quarters/theatre)
+"aXp" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/closed/wall,
+/area/crew_quarters/theatre)
+"aXq" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/brown/corner{
+ dir = 1
+ },
+/area/hallway/primary/central)
+"aXr" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/sign/cargo{
+ pixel_x = 32
+ },
+/turf/open/floor/plasteel/brown/corner{
+ dir = 4
+ },
+/area/hallway/primary/central)
+"aXs" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/firedoor,
+/obj/machinery/door/window/westleft{
+ dir = 2;
+ name = "Cargo Desk";
+ req_access_txt = "50"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel,
+/area/quartermaster/office)
+"aXt" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/firedoor,
+/obj/machinery/door/window/westleft{
+ dir = 2;
+ name = "Cargo Desk";
+ req_access_txt = "50"
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/office)
+"aXu" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/autolathe,
+/turf/open/floor/plasteel/black,
+/area/quartermaster/office)
+"aXv" = (
+/obj/machinery/newscaster{
+ pixel_x = 32
+ },
+/obj/machinery/camera{
+ c_tag = "Cargo Foyer";
+ dir = 8
+ },
+/turf/open/floor/plasteel/brown{
+ dir = 4
+ },
+/area/quartermaster/office)
+"aXw" = (
+/obj/machinery/navbeacon{
+ codes_txt = "delivery;dir=4";
+ freq = 1400;
+ location = "QM #3"
+ },
+/obj/effect/turf_decal/bot,
+/mob/living/simple_animal/bot/mulebot{
+ home_destination = "QM #2";
+ suffix = "#2"
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"aXx" = (
+/obj/effect/spawner/lootdrop/maintenance,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"aXy" = (
+/obj/machinery/conveyor{
+ dir = 8;
+ id = "QMLoad2"
+ },
+/turf/open/floor/plating,
+/area/quartermaster/storage)
+"aXz" = (
+/obj/machinery/door/poddoor{
+ id = "QMLoaddoor2";
+ name = "supply dock loading door"
+ },
+/obj/machinery/conveyor{
+ dir = 8;
+ id = "QMLoad2"
+ },
+/turf/open/floor/plating,
+/area/quartermaster/storage)
+"aXA" = (
+/obj/structure/plasticflaps,
+/obj/machinery/conveyor{
+ dir = 8;
+ id = "QMLoad2"
+ },
+/turf/open/floor/plating,
+/area/quartermaster/storage)
+"aXB" = (
+/obj/machinery/door/poddoor{
+ id = "QMLoaddoor2";
+ name = "supply dock loading door"
+ },
+/obj/machinery/conveyor{
+ dir = 8;
+ id = "QMLoad2"
+ },
+/turf/open/floor/plating,
+/area/shuttle/supply)
+"aXC" = (
+/obj/structure/chair/stool,
+/turf/open/floor/plating,
+/area/maintenance/department/cargo)
+"aXD" = (
+/obj/item/weapon/twohanded/required/kirbyplants{
+ icon_state = "plant-21";
+ layer = 4.1;
+ pixel_y = 3
+ },
+/turf/open/floor/plasteel/escape{
+ dir = 10
+ },
+/area/hallway/secondary/exit/departure_lounge)
+"aXE" = (
+/obj/machinery/camera{
+ c_tag = "Departure Lounge Port";
+ dir = 1
+ },
+/turf/open/floor/plasteel/escape,
+/area/hallway/secondary/exit/departure_lounge)
+"aXF" = (
+/obj/item/weapon/twohanded/required/kirbyplants{
+ icon_state = "plant-10";
+ layer = 4.1
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 27
+ },
+/turf/open/floor/plasteel/escape{
+ dir = 6
+ },
+/area/hallway/secondary/exit/departure_lounge)
+"aXG" = (
+/turf/closed/wall/r_wall,
+/area/hallway/secondary/exit/departure_lounge)
+"aXH" = (
+/turf/closed/wall/r_wall,
+/area/security/checkpoint/customs)
+"aXI" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "papersplease";
+ name = "security shutters"
+ },
+/turf/open/floor/plating,
+/area/security/checkpoint/customs)
+"aXJ" = (
+/obj/machinery/door/firedoor,
+/obj/structure/table/reinforced,
+/obj/machinery/door/window/westright{
+ dir = 2;
+ name = "Security Checkpoint";
+ req_access_txt = "1"
+ },
+/obj/machinery/door/window/northleft{
+ dir = 1;
+ icon_state = "left";
+ name = "Reception Window";
+ req_access_txt = "0"
+ },
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id = "papersplease";
+ layer = 3.1;
+ name = "privacy shutters";
+ opacity = 0
+ },
+/obj/item/weapon/folder/red,
+/obj/item/weapon/pen,
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/security/checkpoint/customs)
+"aXK" = (
+/turf/closed/wall,
+/area/security/checkpoint/customs)
+"aXL" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 8
+ },
+/obj/structure/sign/poster/official/random{
+ pixel_x = 32
+ },
+/turf/open/floor/plasteel/neutral/corner,
+/area/hallway/primary/central)
+"aXM" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/closed/wall,
+/area/janitor)
+"aXN" = (
+/obj/structure/bedsheetbin,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/vault,
+/area/janitor)
+"aXO" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 8
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel/vault,
+/area/janitor)
+"aXP" = (
+/obj/structure/table,
+/obj/item/clothing/under/maid,
+/obj/item/key/janitor,
+/obj/item/weapon/grenade/clusterbuster/cleaner,
+/obj/item/weapon/grenade/chem_grenade/cleaner,
+/obj/item/weapon/grenade/chem_grenade/cleaner,
+/turf/open/floor/plasteel/vault,
+/area/janitor)
+"aXQ" = (
+/obj/structure/sink{
+ dir = 8;
+ pixel_x = -12;
+ pixel_y = 2
+ },
+/turf/open/floor/plasteel/green/side{
+ dir = 8
+ },
+/area/hydroponics)
+"aXR" = (
+/obj/item/weapon/reagent_containers/glass/bucket,
+/turf/open/floor/plasteel/neutral/side{
+ dir = 9
+ },
+/area/hydroponics)
+"aXS" = (
+/turf/open/floor/plasteel,
+/area/hydroponics)
+"aXT" = (
+/turf/open/floor/plasteel/neutral/side{
+ dir = 1;
+ heat_capacity = 1e+006
+ },
+/area/hydroponics)
+"aXU" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel,
+/area/hydroponics)
+"aXV" = (
+/turf/open/floor/plasteel/neutral/side{
+ icon_state = "neutral";
+ dir = 5
+ },
+/area/hydroponics)
+"aXW" = (
+/obj/machinery/biogenerator,
+/obj/machinery/requests_console{
+ department = "Hydroponics";
+ departmentType = 2;
+ pixel_y = 30
+ },
+/turf/open/floor/plasteel/green/corner{
+ dir = 4
+ },
+/area/hydroponics)
+"aXX" = (
+/obj/machinery/hydroponics/constructable,
+/obj/item/device/radio/intercom{
+ dir = 0;
+ name = "Station Intercom (General)";
+ pixel_y = 26
+ },
+/turf/open/floor/plasteel/green/side{
+ dir = 1
+ },
+/area/hydroponics)
+"aXY" = (
+/obj/machinery/hydroponics/constructable,
+/obj/structure/sign/botany{
+ pixel_y = 32
+ },
+/turf/open/floor/plasteel/green/side{
+ dir = 1
+ },
+/area/hydroponics)
+"aXZ" = (
+/obj/machinery/hydroponics/constructable,
+/turf/open/floor/plasteel/green/side{
+ dir = 1
+ },
+/area/hydroponics)
+"aYa" = (
+/obj/machinery/door/airlock{
+ name = "Kitchen Cold Room";
+ req_access_txt = "28"
+ },
+/turf/open/floor/plasteel/showroomfloor,
+/area/crew_quarters/kitchen)
+"aYb" = (
+/obj/machinery/door/airlock{
+ name = "Bar Access";
+ req_access_txt = "28"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel/black,
+/area/crew_quarters/kitchen)
+"aYc" = (
+/obj/machinery/door/airlock{
+ cyclelinkeddir = 4;
+ name = "Bar Access";
+ req_access_txt = "25"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel/black,
+/area/crew_quarters/bar)
+"aYd" = (
+/obj/machinery/door/airlock{
+ cyclelinkeddir = 8;
+ name = "Bar Access";
+ req_access_txt = "0";
+ req_one_access_txt = "25; 28"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/black,
+/area/crew_quarters/bar)
+"aYe" = (
+/obj/structure/window/reinforced,
+/obj/item/device/flashlight/lantern,
+/turf/open/floor/wood,
+/area/crew_quarters/theatre)
+"aYf" = (
+/obj/structure/window/reinforced,
+/turf/open/floor/wood,
+/area/crew_quarters/theatre)
+"aYg" = (
+/obj/structure/window/reinforced,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/wood,
+/area/crew_quarters/theatre)
+"aYh" = (
+/obj/machinery/door/window{
+ base_state = "right";
+ icon_state = "right"
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/theatre)
+"aYi" = (
+/obj/item/device/flashlight/lantern,
+/obj/structure/window/reinforced,
+/turf/open/floor/wood,
+/area/crew_quarters/theatre)
+"aYj" = (
+/obj/machinery/door/airlock{
+ name = "Theatre Storage";
+ req_access_txt = "46"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel/vault{
+ dir = 5
+ },
+/area/crew_quarters/theatre)
+"aYk" = (
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/obj/machinery/disposal/bin,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/crew_quarters/theatre)
+"aYl" = (
+/obj/structure/table/wood,
+/obj/item/weapon/soap,
+/obj/structure/table/wood,
+/obj/item/weapon/bikehorn,
+/obj/item/toy/cattoy,
+/turf/open/floor/plasteel/black,
+/area/crew_quarters/theatre)
+"aYm" = (
+/obj/structure/closet/crate/wooden/toy,
+/turf/open/floor/plasteel/black,
+/area/crew_quarters/theatre)
+"aYn" = (
+/obj/machinery/computer/cargo,
+/obj/machinery/requests_console{
+ department = "Cargo Bay";
+ departmentType = 2;
+ pixel_x = -32
+ },
+/turf/open/floor/plasteel/brown{
+ dir = 1
+ },
+/area/quartermaster/office)
+"aYo" = (
+/obj/structure/chair/office/dark{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/brown{
+ dir = 1
+ },
+/area/quartermaster/office)
+"aYp" = (
+/obj/structure/chair/office/dark{
+ dir = 1
+ },
+/obj/effect/landmark/start/cargo_technician,
+/turf/open/floor/plasteel/brown{
+ dir = 1
+ },
+/area/quartermaster/office)
+"aYq" = (
+/obj/item/weapon/stamp{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/item/weapon/stamp/denied{
+ pixel_x = 4;
+ pixel_y = -2
+ },
+/obj/structure/table,
+/turf/open/floor/plasteel/brown{
+ dir = 1
+ },
+/area/quartermaster/office)
+"aYr" = (
+/turf/open/floor/plasteel/brown{
+ dir = 1
+ },
+/area/quartermaster/office)
+"aYs" = (
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk,
+/turf/open/floor/plasteel/brown{
+ dir = 1
+ },
+/area/quartermaster/office)
+"aYt" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/closed/wall,
+/area/quartermaster/office)
+"aYu" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 28
+ },
+/turf/open/floor/plasteel/brown{
+ dir = 4
+ },
+/area/quartermaster/office)
+"aYv" = (
+/obj/machinery/navbeacon{
+ codes_txt = "delivery;dir=4";
+ freq = 1400;
+ location = "QM #4"
+ },
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"aYw" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"aYx" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"aYy" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"aYz" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"aYA" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 10
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"aYB" = (
+/obj/machinery/conveyor_switch/oneway{
+ convdir = 1;
+ id = "QMLoad2"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"aYC" = (
+/obj/structure/grille/broken,
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/plating,
+/area/maintenance/department/cargo)
+"aYD" = (
+/obj/structure/table,
+/obj/item/stack/cable_coil,
+/obj/item/stack/cable_coil,
+/obj/effect/spawner/lootdrop/maintenance,
+/obj/item/weapon/storage/box/matches,
+/turf/open/floor/plating,
+/area/maintenance/department/cargo)
+"aYE" = (
+/obj/structure/table,
+/obj/item/device/assembly/igniter,
+/obj/item/device/assembly/igniter,
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/plating,
+/area/maintenance/department/cargo)
+"aYF" = (
+/obj/structure/table,
+/obj/item/stack/sheet/metal{
+ amount = 10
+ },
+/obj/item/stack/rods{
+ amount = 25
+ },
+/obj/item/weapon/shard{
+ icon_state = "small"
+ },
+/obj/effect/decal/cleanable/deadcockroach,
+/obj/item/weapon/light/bulb,
+/turf/open/floor/plating,
+/area/maintenance/department/cargo)
+"aYG" = (
+/turf/closed/wall/r_wall,
+/area/hallway/secondary/entry)
+"aYH" = (
+/obj/machinery/computer/security,
+/obj/machinery/requests_console{
+ department = "Security";
+ departmentType = 5;
+ pixel_y = 30
+ },
+/obj/structure/reagent_dispensers/peppertank{
+ pixel_x = -32
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 9
+ },
+/area/security/checkpoint/customs)
+"aYI" = (
+/turf/open/floor/plasteel/red/side{
+ dir = 1
+ },
+/area/security/checkpoint/customs)
+"aYJ" = (
+/obj/structure/closet/wardrobe/red,
+/turf/open/floor/plasteel/red/side{
+ dir = 1
+ },
+/area/security/checkpoint/customs)
+"aYK" = (
+/obj/structure/closet/secure_closet/security,
+/obj/item/device/radio/intercom{
+ dir = 0;
+ name = "Station Intercom (General)";
+ pixel_y = 26
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 5
+ },
+/area/security/checkpoint/customs)
+"aYL" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/neutral/corner,
+/area/hallway/primary/central)
+"aYM" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock{
+ name = "Custodial Quarters";
+ req_access_txt = "26"
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 5
+ },
+/area/janitor)
+"aYN" = (
+/obj/machinery/hydroponics/constructable,
+/turf/open/floor/plasteel/green/side{
+ dir = 8
+ },
+/area/hydroponics)
+"aYO" = (
+/turf/open/floor/plasteel/green/corner{
+ dir = 4
+ },
+/area/hydroponics)
+"aYP" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/green/corner{
+ dir = 1
+ },
+/area/hydroponics)
+"aYQ" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hydroponics)
+"aYR" = (
+/obj/machinery/vending/dinnerware,
+/turf/open/floor/plasteel/cafeteria,
+/area/crew_quarters/kitchen)
+"aYS" = (
+/turf/open/floor/plasteel/cafeteria,
+/area/crew_quarters/kitchen)
+"aYT" = (
+/obj/structure/sink/kitchen{
+ pixel_y = 28
+ },
+/turf/open/floor/plasteel/cafeteria,
+/area/crew_quarters/kitchen)
+"aYU" = (
+/obj/machinery/processor,
+/obj/item/device/radio/intercom{
+ dir = 0;
+ name = "Station Intercom (General)";
+ pixel_y = 26
+ },
+/turf/open/floor/plasteel/cafeteria,
+/area/crew_quarters/kitchen)
+"aYV" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 28
+ },
+/turf/open/floor/plasteel/cafeteria,
+/area/crew_quarters/kitchen)
+"aYW" = (
+/obj/structure/table,
+/obj/machinery/chem_dispenser/drinks/beer,
+/obj/machinery/button/door{
+ dir = 2;
+ id = "barshutters";
+ name = "Bar Lockdown";
+ pixel_x = 6;
+ pixel_y = 27;
+ req_access_txt = "7; 29"
+ },
+/obj/machinery/light_switch{
+ pixel_x = -5;
+ pixel_y = 28
+ },
+/turf/open/floor/plasteel/black,
+/area/crew_quarters/bar)
+"aYX" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel/black,
+/area/crew_quarters/bar)
+"aYY" = (
+/obj/structure/table/reinforced,
+/obj/machinery/chem_dispenser/drinks,
+/turf/open/floor/plasteel/darkred/side{
+ dir = 8
+ },
+/area/crew_quarters/bar)
+"aYZ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 5
+ },
+/turf/open/floor/plasteel/black,
+/area/crew_quarters/bar)
+"aZa" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_y = 30
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 5
+ },
+/area/crew_quarters/bar)
+"aZb" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/black,
+/area/crew_quarters/bar)
+"aZc" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 5
+ },
+/area/crew_quarters/bar)
+"aZd" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 5
+ },
+/area/crew_quarters/bar)
+"aZe" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 5
+ },
+/area/crew_quarters/bar)
+"aZf" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_y = 30
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 5
+ },
+/area/crew_quarters/bar)
+"aZg" = (
+/obj/structure/disposalpipe/junction{
+ icon_state = "pipe-j2";
+ dir = 1
+ },
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 28
+ },
+/turf/open/floor/plasteel/black,
+/area/crew_quarters/bar)
+"aZh" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = -28
+ },
+/turf/open/floor/plasteel/brown/corner{
+ dir = 1
+ },
+/area/hallway/primary/central)
+"aZi" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/plasteel/brown/corner{
+ dir = 4
+ },
+/area/hallway/primary/central)
+"aZj" = (
+/obj/structure/table,
+/obj/machinery/computer/stockexchange,
+/obj/machinery/status_display{
+ dir = 4;
+ layer = 4;
+ pixel_x = -32;
+ supply_display = 1
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/office)
+"aZk" = (
+/obj/structure/disposalpipe/junction{
+ dir = 8;
+ icon_state = "pipe-j1"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 6
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/office)
+"aZl" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass_mining{
+ name = "Cargo Office";
+ req_access_txt = "50"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/office)
+"aZm" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
+/turf/open/floor/plasteel,
+/area/quartermaster/office)
+"aZn" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/office)
+"aZo" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"aZp" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"aZq" = (
+/obj/structure/disposalpipe/sortjunction{
+ dir = 8;
+ icon_state = "pipe-j2s";
+ sortType = 3
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"aZr" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"aZs" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"aZt" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"aZu" = (
+/obj/machinery/light,
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/supply)
+"aZv" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 6
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/cargo)
+"aZw" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 9
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/cargo)
+"aZx" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/hallway/secondary/entry)
+"aZy" = (
+/turf/open/floor/plasteel/arrival{
+ dir = 1
+ },
+/area/hallway/secondary/entry)
+"aZz" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/open/floor/plasteel/arrival{
+ dir = 1
+ },
+/area/hallway/secondary/entry)
+"aZA" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/arrival{
+ dir = 1
+ },
+/area/hallway/secondary/entry)
+"aZB" = (
+/obj/machinery/camera{
+ c_tag = "Arrivals Fore";
+ dir = 2
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/arrival{
+ dir = 1
+ },
+/area/hallway/secondary/entry)
+"aZC" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/obj/item/device/radio/intercom{
+ dir = 0;
+ name = "Station Intercom (General)";
+ pixel_y = 26
+ },
+/turf/open/floor/plasteel/arrival{
+ dir = 1
+ },
+/area/hallway/secondary/entry)
+"aZD" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/obj/machinery/airalarm{
+ pixel_y = 22
+ },
+/turf/open/floor/plasteel/arrival{
+ dir = 1
+ },
+/area/hallway/secondary/entry)
+"aZE" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 10
+ },
+/turf/open/floor/plasteel/arrival{
+ dir = 1
+ },
+/area/hallway/secondary/entry)
+"aZF" = (
+/obj/machinery/computer/card,
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/machinery/camera{
+ c_tag = "Security Checkpoint";
+ dir = 4;
+ network = list("SS13")
+ },
+/obj/machinery/airalarm{
+ dir = 4;
+ pixel_x = -23
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 8
+ },
+/area/security/checkpoint/customs)
+"aZG" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/security/checkpoint/customs)
+"aZH" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 10
+ },
+/turf/open/floor/plasteel,
+/area/security/checkpoint/customs)
+"aZI" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/security/checkpoint/customs)
+"aZJ" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 4
+ },
+/area/security/checkpoint/customs)
+"aZK" = (
+/obj/machinery/door/airlock/security{
+ name = "Security Checkpoint";
+ req_access = null;
+ req_access_txt = "1"
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/red,
+/area/security/checkpoint/customs)
+"aZL" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"aZM" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"aZN" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/airalarm{
+ dir = 8;
+ pixel_x = 23
+ },
+/turf/open/floor/plasteel/neutral/corner,
+/area/hallway/primary/central)
+"aZO" = (
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk,
+/obj/machinery/airalarm{
+ pixel_y = 24
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/janitor)
+"aZP" = (
+/turf/open/floor/plasteel/floorgrime,
+/area/janitor)
+"aZQ" = (
+/obj/structure/reagent_dispensers/watertank,
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "Custodial Closet APC";
+ pixel_y = 24
+ },
+/obj/structure/cable{
+ icon_state = "0-2";
+ d2 = 2
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/janitor)
+"aZR" = (
+/obj/machinery/hydroponics/constructable,
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/plasteel/green/side{
+ dir = 8
+ },
+/area/hydroponics)
+"aZS" = (
+/turf/open/floor/plasteel/neutral/side{
+ dir = 8;
+ heat_capacity = 1e+006
+ },
+/area/hydroponics)
+"aZT" = (
+/turf/open/floor/plasteel/green/side{
+ dir = 4
+ },
+/area/hydroponics)
+"aZU" = (
+/obj/machinery/vending/hydronutrients,
+/turf/open/floor/plasteel/vault{
+ dir = 5
+ },
+/area/hydroponics)
+"aZV" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel/green/side{
+ dir = 8
+ },
+/area/hydroponics)
+"aZW" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hydroponics)
+"aZX" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hydroponics)
+"aZY" = (
+/obj/effect/landmark/start/botanist,
+/turf/open/floor/plasteel,
+/area/hydroponics)
+"aZZ" = (
+/obj/machinery/smartfridge,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/crew_quarters/kitchen)
+"baa" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel/cafeteria,
+/area/crew_quarters/kitchen)
+"bab" = (
+/obj/machinery/vending/boozeomat,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/crew_quarters/kitchen)
+"bac" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 6
+ },
+/turf/open/floor/plasteel/black,
+/area/crew_quarters/bar)
+"bad" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 9
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel/black,
+/area/crew_quarters/bar)
+"bae" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/book/manual/barman_recipes,
+/obj/item/weapon/reagent_containers/glass/rag,
+/turf/open/floor/plasteel/darkred/side{
+ dir = 8
+ },
+/area/crew_quarters/bar)
+"baf" = (
+/obj/structure/chair/stool/bar,
+/obj/machinery/computer/security/telescreen/entertainment{
+ pixel_y = 32
+ },
+/turf/open/floor/plasteel/black,
+/area/crew_quarters/bar)
+"bag" = (
+/turf/open/floor/plasteel/vault{
+ dir = 5
+ },
+/area/crew_quarters/bar)
+"bah" = (
+/turf/open/floor/plasteel/black,
+/area/crew_quarters/bar)
+"bai" = (
+/obj/structure/chair/wood/normal,
+/turf/open/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/crew_quarters/bar)
+"baj" = (
+/obj/effect/landmark/start/assistant,
+/obj/structure/chair/wood/normal,
+/turf/open/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/crew_quarters/bar)
+"bak" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 8
+ },
+/obj/effect/landmark/xmastree,
+/turf/open/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/crew_quarters/bar)
+"bal" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/chair/wood/normal,
+/turf/open/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/crew_quarters/bar)
+"bam" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 5
+ },
+/area/crew_quarters/bar)
+"ban" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/newscaster{
+ pixel_x = 32;
+ pixel_y = 1
+ },
+/obj/structure/chair/wood/normal,
+/turf/open/floor/plasteel/vault{
+ dir = 5
+ },
+/area/crew_quarters/bar)
+"bao" = (
+/obj/machinery/computer/slot_machine,
+/obj/item/device/radio/intercom{
+ dir = 0;
+ name = "Station Intercom (General)";
+ pixel_y = 26
+ },
+/turf/open/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/crew_quarters/bar)
+"bap" = (
+/obj/machinery/computer/slot_machine,
+/obj/machinery/airalarm{
+ pixel_y = 24
+ },
+/turf/open/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/crew_quarters/bar)
+"baq" = (
+/obj/machinery/computer/arcade,
+/obj/structure/noticeboard{
+ pixel_y = 32
+ },
+/turf/open/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/crew_quarters/bar)
+"bar" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -24
+ },
+/turf/open/floor/plasteel/brown/corner{
+ dir = 1
+ },
+/area/hallway/primary/central)
+"bas" = (
+/obj/structure/table,
+/obj/item/weapon/pen,
+/obj/item/device/radio/intercom{
+ dir = 0;
+ name = "Station Intercom (General)";
+ pixel_y = -26
+ },
+/obj/item/weapon/paper_bin{
+ layer = 2.9
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -26
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/office)
+"bat" = (
+/obj/structure/table,
+/obj/item/weapon/clipboard,
+/obj/item/weapon/folder/yellow,
+/obj/machinery/airalarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/office)
+"bau" = (
+/obj/machinery/photocopier,
+/obj/machinery/light,
+/obj/machinery/camera{
+ c_tag = "Cargo Office";
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/office)
+"bav" = (
+/obj/structure/cable{
+ icon_state = "0-4";
+ d2 = 4
+ },
+/obj/machinery/power/apc{
+ dir = 2;
+ name = "Cargo Office APC";
+ pixel_x = 1;
+ pixel_y = -24
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/office)
+"baw" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel,
+/area/quartermaster/office)
+"bax" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/office)
+"bay" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/closed/wall,
+/area/quartermaster/office)
+"baz" = (
+/obj/machinery/door/firedoor,
+/turf/open/floor/plasteel,
+/area/quartermaster/office)
+"baA" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"baB" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"baC" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/power/apc{
+ dir = 2;
+ name = "Cargo Bay APC";
+ pixel_y = -24
+ },
+/obj/structure/cable{
+ icon_state = "0-4";
+ d2 = 4
+ },
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"baD" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/light,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/item/device/radio/intercom{
+ dir = 0;
+ name = "Station Intercom (General)";
+ pixel_y = -26
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"baE" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/disposalpipe/sortjunction{
+ dir = 1;
+ icon_state = "pipe-j1s";
+ sortType = 2
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 10
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"baF" = (
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/obj/machinery/disposal/bin,
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"baG" = (
+/turf/closed/wall,
+/area/maintenance/solars/starboard)
+"baH" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/maintenance/solars/starboard)
+"baI" = (
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/machinery/power/solar{
+ id = "portsolar";
+ name = "Port Solar Array"
+ },
+/turf/open/floor/plasteel/airless/solarpanel,
+/area/solar/starboard)
+"baJ" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry)
+"baK" = (
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry)
+"baL" = (
+/obj/machinery/holopad,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry)
+"baM" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry)
+"baN" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry)
+"baO" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 10
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry)
+"baP" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 4
+ },
+/area/hallway/secondary/entry)
+"baQ" = (
+/obj/machinery/computer/secure_data,
+/obj/machinery/button/door{
+ dir = 2;
+ id = "papersplease";
+ name = "Shutters Control Button";
+ pixel_x = -26;
+ pixel_y = 6;
+ req_access_txt = "1"
+ },
+/obj/machinery/button/flasher{
+ id = "brigentry";
+ pixel_x = -26;
+ pixel_y = -4
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 10
+ },
+/area/security/checkpoint/customs)
+"baR" = (
+/obj/item/weapon/pen,
+/obj/structure/table,
+/obj/item/weapon/paper_bin{
+ layer = 2.9
+ },
+/turf/open/floor/plasteel/red/side,
+/area/security/checkpoint/customs)
+"baS" = (
+/obj/structure/chair/office/dark,
+/obj/effect/landmark/event_spawn,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/red/side,
+/area/security/checkpoint/customs)
+"baT" = (
+/obj/machinery/recharger{
+ pixel_y = 4
+ },
+/obj/structure/table,
+/turf/open/floor/plasteel/red/side,
+/area/security/checkpoint/customs)
+"baU" = (
+/obj/machinery/power/apc{
+ dir = 2;
+ name = "Security Checkpoint APC";
+ pixel_x = 1;
+ pixel_y = -24
+ },
+/obj/structure/cable,
+/turf/open/floor/plasteel/red/side{
+ dir = 6
+ },
+/area/security/checkpoint/customs)
+"baV" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"baW" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 8
+ },
+/obj/machinery/button/door{
+ dir = 2;
+ id = "jangarage";
+ name = "Custodial Closet Shutters Control";
+ pixel_x = 25;
+ req_access_txt = "26"
+ },
+/turf/open/floor/plasteel/neutral/corner,
+/area/hallway/primary/central)
+"baX" = (
+/obj/vehicle/janicart,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/machinery/button/door{
+ dir = 2;
+ id = "jangarage";
+ name = "Custodial Closet Shutters Control";
+ pixel_x = -25;
+ req_access_txt = "26"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/janitor)
+"baY" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 8
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/janitor)
+"baZ" = (
+/obj/structure/closet/l3closet/janitor,
+/obj/machinery/requests_console{
+ department = "Janitorial";
+ departmentType = 1;
+ pixel_x = 32
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/janitor)
+"bba" = (
+/obj/effect/landmark/start/botanist,
+/obj/machinery/holopad,
+/turf/open/floor/plasteel,
+/area/hydroponics)
+"bbb" = (
+/obj/machinery/vending/hydroseeds{
+ slogan_delay = 700
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 5
+ },
+/area/hydroponics)
+"bbc" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/green/side{
+ dir = 8
+ },
+/area/hydroponics)
+"bbd" = (
+/obj/item/weapon/twohanded/required/kirbyplants{
+ icon_state = "plant-10";
+ layer = 4.1
+ },
+/turf/open/floor/plasteel/green/corner,
+/area/hydroponics)
+"bbe" = (
+/obj/structure/chair/stool,
+/turf/open/floor/plasteel/green/side,
+/area/hydroponics)
+"bbf" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/window/eastleft{
+ dir = 8;
+ name = "Hydroponics Desk";
+ req_access_txt = "35"
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/window/eastleft{
+ dir = 4;
+ name = "Kitchen Desk";
+ req_access_txt = "28"
+ },
+/obj/item/weapon/reagent_containers/food/snacks/grown/tomato,
+/turf/open/floor/plasteel/cafeteria,
+/area/crew_quarters/kitchen)
+"bbg" = (
+/obj/effect/landmark/start/cook,
+/obj/machinery/atmospherics/components/unary/vent_pump/on,
+/turf/open/floor/plasteel/cafeteria,
+/area/crew_quarters/kitchen)
+"bbh" = (
+/obj/structure/table,
+/obj/item/weapon/reagent_containers/food/condiment/saltshaker{
+ pixel_x = 4;
+ pixel_y = 4
+ },
+/obj/item/weapon/reagent_containers/food/condiment/peppermill,
+/turf/open/floor/plasteel/cafeteria,
+/area/crew_quarters/kitchen)
+"bbi" = (
+/obj/structure/table,
+/obj/machinery/reagentgrinder,
+/turf/open/floor/plasteel/cafeteria,
+/area/crew_quarters/kitchen)
+"bbj" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/firedoor,
+/obj/item/weapon/reagent_containers/food/snacks/pie/cream,
+/obj/machinery/camera{
+ c_tag = "Kitchen";
+ dir = 1;
+ network = list("SS13")
+ },
+/turf/open/floor/plasteel/hydrofloor,
+/area/crew_quarters/kitchen)
+"bbk" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel/black,
+/area/crew_quarters/bar)
+"bbl" = (
+/obj/effect/landmark/start/bartender,
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel/black,
+/area/crew_quarters/bar)
+"bbm" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/gun/ballistic/revolver/russian,
+/turf/open/floor/plasteel/darkred/side{
+ dir = 8
+ },
+/area/crew_quarters/bar)
+"bbn" = (
+/obj/structure/chair/stool/bar,
+/obj/effect/landmark/start/assistant,
+/turf/open/floor/plasteel/vault{
+ dir = 5
+ },
+/area/crew_quarters/bar)
+"bbo" = (
+/obj/structure/table/wood/fancy,
+/obj/item/weapon/reagent_containers/food/drinks/soda_cans/cola,
+/turf/open/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/crew_quarters/bar)
+"bbp" = (
+/obj/item/weapon/coin/silver,
+/obj/structure/table/wood/fancy,
+/obj/item/weapon/cane,
+/obj/item/device/flashlight/glowstick/random,
+/obj/item/device/flashlight/glowstick/random,
+/turf/open/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/crew_quarters/bar)
+"bbq" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/holopad,
+/obj/item/device/radio/beacon,
+/turf/open/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/crew_quarters/bar)
+"bbr" = (
+/obj/structure/table/wood/fancy,
+/obj/item/weapon/storage/fancy/candle_box,
+/turf/open/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/crew_quarters/bar)
+"bbs" = (
+/obj/structure/table/wood/fancy,
+/obj/item/toy/cards/deck,
+/turf/open/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/crew_quarters/bar)
+"bbt" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/table/wood,
+/obj/item/clothing/under/sundress,
+/obj/item/clothing/under/waiter,
+/obj/item/clothing/under/blacktango,
+/turf/open/floor/plasteel/black,
+/area/crew_quarters/bar)
+"bbu" = (
+/obj/structure/grille,
+/obj/structure/window/fulltile,
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "barshutters";
+ name = "bar shutters"
+ },
+/turf/open/floor/plating,
+/area/crew_quarters/bar)
+"bbv" = (
+/obj/structure/chair/stool,
+/obj/item/trash/can,
+/turf/open/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/crew_quarters/bar)
+"bbw" = (
+/obj/effect/landmark/start/assistant,
+/obj/structure/chair/stool,
+/turf/open/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/crew_quarters/bar)
+"bbx" = (
+/obj/structure/chair/stool,
+/turf/open/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/crew_quarters/bar)
+"bby" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bbz" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/brown/corner{
+ dir = 4
+ },
+/area/hallway/primary/central)
+"bbA" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Cargo Office Maintenance";
+ req_access_txt = "50"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plating,
+/area/quartermaster/office)
+"bbB" = (
+/obj/structure/table,
+/obj/item/weapon/storage/firstaid/regular{
+ pixel_x = 6;
+ pixel_y = -5
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/office)
+"bbC" = (
+/obj/structure/table,
+/obj/machinery/cell_charger,
+/obj/item/weapon/hand_labeler,
+/obj/machinery/light/small,
+/turf/open/floor/plasteel,
+/area/quartermaster/office)
+"bbD" = (
+/obj/structure/closet/wardrobe/cargotech,
+/obj/item/clothing/head/mailman,
+/obj/item/clothing/under/rank/mailman,
+/turf/open/floor/plasteel,
+/area/quartermaster/office)
+"bbE" = (
+/turf/closed/wall,
+/area/quartermaster/qm)
+"bbF" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plating,
+/area/quartermaster/qm)
+"bbG" = (
+/obj/machinery/door/airlock/glass_mining{
+ name = "Quartermaster";
+ req_access_txt = "41"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/brown,
+/area/quartermaster/qm)
+"bbH" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/quartermaster/qm)
+"bbI" = (
+/turf/closed/wall,
+/area/quartermaster/miningdock)
+"bbJ" = (
+/obj/machinery/door/firedoor,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/brown,
+/area/quartermaster/miningdock)
+"bbK" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/brown,
+/area/quartermaster/miningdock)
+"bbL" = (
+/obj/machinery/power/smes,
+/obj/structure/cable{
+ icon_state = "0-2";
+ pixel_y = 1;
+ d2 = 2
+ },
+/turf/open/floor/plating,
+/area/maintenance/solars/starboard)
+"bbM" = (
+/obj/machinery/power/terminal{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "0-2";
+ pixel_y = 1;
+ d2 = 2
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/solars/starboard)
+"bbN" = (
+/obj/structure/rack,
+/obj/item/clothing/mask/gas,
+/obj/item/device/multitool,
+/turf/open/floor/plating,
+/area/maintenance/solars/starboard)
+"bbO" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
+ icon_state = "space";
+ layer = 4;
+ name = "EXTERNAL AIRLOCK";
+ pixel_x = 32
+ },
+/turf/open/floor/plating,
+/area/maintenance/solars/starboard)
+"bbP" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/cable,
+/turf/open/space,
+/area/solar/starboard)
+"bbQ" = (
+/obj/machinery/door/airlock/external{
+ cyclelinkeddir = 2;
+ name = "Port Docking Bay 1"
+ },
+/turf/open/floor/plating,
+/area/hallway/secondary/entry)
+"bbR" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry)
+"bbS" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry)
+"bbT" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry)
+"bbU" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 4
+ },
+/area/hallway/secondary/entry)
+"bbV" = (
+/obj/machinery/door/firedoor,
+/obj/structure/table/reinforced,
+/obj/machinery/door/window/westright{
+ dir = 1;
+ name = "Security Checkpoint";
+ req_access_txt = "1"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/door/window/northleft{
+ dir = 2;
+ icon_state = "left";
+ name = "Reception Window";
+ req_access_txt = "0"
+ },
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id = "papersplease";
+ layer = 3.1;
+ name = "privacy shutters";
+ opacity = 0
+ },
+/obj/item/weapon/crowbar,
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/security/checkpoint/customs)
+"bbW" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/poddoor/shutters{
+ id = "jangarage";
+ name = "Custodial Closet Shutters"
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/janitor)
+"bbX" = (
+/obj/structure/janitorialcart,
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/janitor)
+"bbY" = (
+/obj/structure/closet/jcloset,
+/obj/item/clothing/head/crown,
+/obj/machinery/camera{
+ c_tag = "Custodial Closet";
+ dir = 8
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 24
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/janitor)
+"bbZ" = (
+/obj/machinery/seed_extractor,
+/turf/open/floor/plasteel/vault{
+ dir = 5
+ },
+/area/hydroponics)
+"bca" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/machinery/camera{
+ c_tag = "Hydroponics South";
+ dir = 8;
+ network = list("SS13")
+ },
+/turf/open/floor/plasteel/neutral/side{
+ dir = 4
+ },
+/area/hydroponics)
+"bcb" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/firedoor,
+/obj/machinery/door/window/westright{
+ dir = 1;
+ name = "Hydroponics Desk";
+ req_access_txt = "35"
+ },
+/obj/item/weapon/reagent_containers/glass/bucket,
+/turf/open/floor/plasteel,
+/area/hydroponics)
+"bcc" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/firedoor,
+/obj/machinery/door/window/westright{
+ dir = 1;
+ name = "Hydroponics Desk";
+ req_access_txt = "35"
+ },
+/turf/open/floor/plasteel,
+/area/hydroponics)
+"bcd" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/firedoor,
+/obj/machinery/door/window/westright{
+ dir = 1;
+ name = "Hydroponics Desk";
+ req_access_txt = "35"
+ },
+/obj/item/weapon/reagent_containers/food/snacks/monkeycube,
+/turf/open/floor/plasteel,
+/area/hydroponics)
+"bce" = (
+/obj/structure/table,
+/obj/machinery/microwave{
+ pixel_x = -3;
+ pixel_y = 6
+ },
+/turf/open/floor/plasteel/cafeteria,
+/area/crew_quarters/kitchen)
+"bcf" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/cafeteria,
+/area/crew_quarters/kitchen)
+"bcg" = (
+/obj/structure/table,
+/obj/item/weapon/kitchen/rollingpin,
+/turf/open/floor/plasteel/cafeteria,
+/area/crew_quarters/kitchen)
+"bch" = (
+/obj/structure/table,
+/obj/item/weapon/storage/box/ingredients/wildcard,
+/turf/open/floor/plasteel/cafeteria,
+/area/crew_quarters/kitchen)
+"bci" = (
+/obj/machinery/newscaster{
+ pixel_y = 1
+ },
+/turf/closed/wall,
+/area/crew_quarters/kitchen)
+"bcj" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/black,
+/area/crew_quarters/bar)
+"bck" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel/black,
+/area/crew_quarters/bar)
+"bcl" = (
+/obj/structure/table/reinforced,
+/obj/item/clothing/head/that{
+ throwforce = 1
+ },
+/turf/open/floor/plasteel/darkred/side{
+ dir = 8
+ },
+/area/crew_quarters/bar)
+"bcm" = (
+/obj/structure/chair/stool/bar,
+/turf/open/floor/plasteel/black,
+/area/crew_quarters/bar)
+"bcn" = (
+/mob/living/carbon/monkey/punpun,
+/turf/open/floor/plasteel/black,
+/area/crew_quarters/bar)
+"bco" = (
+/obj/structure/chair/wood/normal{
+ dir = 1
+ },
+/turf/open/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/crew_quarters/bar)
+"bcp" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/crew_quarters/bar)
+"bcq" = (
+/obj/effect/landmark/start/assistant,
+/obj/structure/chair/wood/normal{
+ dir = 1
+ },
+/turf/open/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/crew_quarters/bar)
+"bcr" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/chair/wood/normal{
+ dir = 1
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 5
+ },
+/area/crew_quarters/bar)
+"bcs" = (
+/obj/item/clothing/shoes/sandal,
+/turf/open/floor/plasteel/black,
+/area/crew_quarters/bar)
+"bct" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 5
+ },
+/area/crew_quarters/bar)
+"bcu" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/black,
+/area/crew_quarters/bar)
+"bcv" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 5
+ },
+/area/crew_quarters/bar)
+"bcw" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass{
+ name = "Bar"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/sign/poster/random{
+ pixel_y = 32
+ },
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "barshutters";
+ name = "bar shutters"
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/bar)
+"bcx" = (
+/obj/effect/decal/cleanable/cobweb,
+/turf/open/floor/plating{
+ burnt = 1;
+ icon_state = "panelscorched"
+ },
+/area/maintenance/department/cargo)
+"bcy" = (
+/obj/item/chair,
+/turf/open/floor/plating{
+ broken = 1;
+ icon_state = "platingdmg3"
+ },
+/area/maintenance/department/cargo)
+"bcz" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plating,
+/area/maintenance/department/cargo)
+"bcA" = (
+/obj/structure/closet/secure_closet/quartermaster,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/airalarm{
+ dir = 4;
+ pixel_x = -23
+ },
+/obj/item/weapon/storage/belt/fannypack/yellow,
+/turf/open/floor/plasteel/brown{
+ dir = 9
+ },
+/area/quartermaster/qm)
+"bcB" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/open/floor/plasteel/brown{
+ dir = 1
+ },
+/area/quartermaster/qm)
+"bcC" = (
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/turf/open/floor/plasteel/brown{
+ dir = 5
+ },
+/area/quartermaster/qm)
+"bcD" = (
+/obj/structure/closet/wardrobe/miner,
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = -28
+ },
+/turf/open/floor/plasteel/brown{
+ dir = 9
+ },
+/area/quartermaster/miningdock)
+"bcE" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/brown{
+ dir = 1
+ },
+/area/quartermaster/miningdock)
+"bcF" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/brown{
+ dir = 1
+ },
+/area/quartermaster/miningdock)
+"bcG" = (
+/obj/structure/closet/emcloset,
+/obj/machinery/airalarm{
+ dir = 8;
+ pixel_x = 23
+ },
+/turf/open/floor/plasteel/brown{
+ dir = 5
+ },
+/area/quartermaster/miningdock)
+"bcH" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plating,
+/area/maintenance/department/cargo)
+"bcI" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/cargo)
+"bcJ" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/engineering{
+ name = "Starboard Solar Access";
+ req_access_txt = "10"
+ },
+/turf/open/floor/plating,
+/area/maintenance/solars/starboard)
+"bcK" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/open/floor/plating,
+/area/maintenance/solars/starboard)
+"bcL" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/open/floor/plating,
+/area/maintenance/solars/starboard)
+"bcM" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating,
+/area/maintenance/solars/starboard)
+"bcN" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/external{
+ cyclelinkeddir = 4;
+ name = "Solar Maintenance";
+ req_access = null;
+ req_access_txt = "10; 13"
+ },
+/turf/open/floor/plating,
+/area/maintenance/solars/starboard)
+"bcO" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating,
+/area/maintenance/solars/starboard)
+"bcP" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/external{
+ cyclelinkeddir = 8;
+ name = "Solar Maintenance";
+ req_access = null;
+ req_access_txt = "10; 13"
+ },
+/turf/open/floor/plating,
+/area/maintenance/solars/starboard)
+"bcQ" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/space,
+/area/solar/starboard)
+"bcR" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/turf/open/space,
+/area/solar/starboard)
+"bcS" = (
+/obj/structure/lattice/catwalk,
+/turf/open/space,
+/area/solar/starboard)
+"bcT" = (
+/obj/structure/lattice/catwalk,
+/obj/item/stack/cable_coil,
+/turf/open/space,
+/area/solar/starboard)
+"bcU" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/cable{
+ icon_state = "0-4";
+ d2 = 4
+ },
+/turf/open/space,
+/area/solar/starboard)
+"bcV" = (
+/obj/machinery/power/tracker,
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/turf/open/floor/plasteel/airless/solarpanel,
+/area/solar/starboard)
+"bcW" = (
+/obj/structure/grille,
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
+ icon_state = "space";
+ layer = 4;
+ name = "EXTERNAL AIRLOCK";
+ pixel_y = 32
+ },
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/hallway/secondary/entry)
+"bcX" = (
+/turf/open/floor/plating,
+/area/hallway/secondary/entry)
+"bcY" = (
+/obj/structure/closet/emcloset,
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry)
+"bcZ" = (
+/obj/machinery/light,
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry)
+"bda" = (
+/obj/structure/closet/emcloset,
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry)
+"bdb" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry)
+"bdc" = (
+/obj/machinery/door/firedoor,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry)
+"bdd" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry)
+"bde" = (
+/obj/machinery/flasher{
+ id = "brigentry";
+ pixel_x = -28;
+ pixel_y = 24
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry)
+"bdf" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass{
+ name = "Central Access"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry)
+"bdg" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 6
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/janitor)
+"bdh" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/janitor)
+"bdi" = (
+/obj/item/weapon/reagent_containers/glass/bucket,
+/obj/item/weapon/mop,
+/obj/structure/sink{
+ dir = 4;
+ pixel_x = 11
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/janitor)
+"bdj" = (
+/turf/open/floor/plasteel/green/corner,
+/area/hydroponics)
+"bdk" = (
+/turf/open/floor/plasteel/green/corner{
+ dir = 8
+ },
+/area/hydroponics)
+"bdl" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/green/corner{
+ dir = 8
+ },
+/area/hydroponics)
+"bdm" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/hydroponics)
+"bdn" = (
+/turf/open/floor/plasteel/green/corner{
+ dir = 1
+ },
+/area/hallway/primary/central)
+"bdo" = (
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 4
+ },
+/area/hallway/primary/central)
+"bdp" = (
+/obj/structure/table,
+/obj/item/weapon/reagent_containers/glass/beaker/large,
+/turf/open/floor/plasteel/cafeteria,
+/area/crew_quarters/kitchen)
+"bdq" = (
+/obj/structure/table,
+/obj/item/weapon/reagent_containers/food/condiment/enzyme,
+/turf/open/floor/plasteel/cafeteria,
+/area/crew_quarters/kitchen)
+"bdr" = (
+/obj/machinery/door/airlock/glass{
+ name = "Kitchen";
+ req_access_txt = "25;28"
+ },
+/turf/open/floor/plasteel/black,
+/area/crew_quarters/kitchen)
+"bds" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel/black,
+/area/crew_quarters/bar)
+"bdt" = (
+/obj/structure/table/reinforced,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/item/clothing/head/hardhat/cakehat,
+/turf/open/floor/plasteel/darkred/side{
+ dir = 8
+ },
+/area/crew_quarters/bar)
+"bdu" = (
+/obj/structure/chair/stool/bar,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 5
+ },
+/area/crew_quarters/bar)
+"bdv" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/black,
+/area/crew_quarters/bar)
+"bdw" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 5
+ },
+/area/crew_quarters/bar)
+"bdx" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 5
+ },
+/area/crew_quarters/bar)
+"bdy" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass{
+ name = "Bar"
+ },
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "barshutters";
+ name = "bar shutters"
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/bar)
+"bdz" = (
+/turf/open/floor/plating{
+ broken = 1;
+ icon_state = "platingdmg3"
+ },
+/area/maintenance/department/cargo)
+"bdA" = (
+/obj/item/weapon/cigbutt,
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/plating,
+/area/maintenance/department/cargo)
+"bdB" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/cargo)
+"bdC" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/cargo)
+"bdD" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/sign/poster/contraband/random{
+ pixel_y = 32
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/cargo)
+"bdE" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/cargo)
+"bdF" = (
+/obj/structure/cable{
+ icon_state = "0-4";
+ d2 = 4
+ },
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "Quartermaster APC";
+ pixel_x = -24
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/open/floor/plasteel/brown{
+ dir = 8
+ },
+/area/quartermaster/qm)
+"bdG" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/qm)
+"bdH" = (
+/obj/structure/filingcabinet,
+/turf/open/floor/plasteel/brown{
+ dir = 4
+ },
+/area/quartermaster/qm)
+"bdI" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/quartermaster/miningdock)
+"bdJ" = (
+/obj/structure/table,
+/obj/item/weapon/folder/yellow,
+/obj/item/weapon/pen,
+/turf/open/floor/plasteel/brown/corner{
+ dir = 1
+ },
+/area/quartermaster/miningdock)
+"bdK" = (
+/obj/structure/chair/office/dark{
+ dir = 8
+ },
+/obj/effect/landmark/start/shaft_miner,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel,
+/area/quartermaster/miningdock)
+"bdL" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/miningdock)
+"bdM" = (
+/obj/machinery/computer/security/mining,
+/obj/machinery/requests_console{
+ department = "Mining";
+ departmentType = 0;
+ pixel_x = 32
+ },
+/turf/open/floor/plasteel/brown/corner,
+/area/quartermaster/miningdock)
+"bdN" = (
+/obj/structure/table,
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/labor)
+"bdO" = (
+/obj/machinery/computer/shuttle/mining,
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/labor)
+"bdP" = (
+/obj/structure/table,
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/labor)
+"bdQ" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 6
+ },
+/turf/open/floor/plating{
+ icon_state = "platingdmg3"
+ },
+/area/maintenance/department/cargo)
+"bdR" = (
+/obj/structure/cable,
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "Starboard Solar APC";
+ pixel_x = -24
+ },
+/turf/open/floor/plating,
+/area/maintenance/solars/starboard)
+"bdS" = (
+/obj/structure/chair/stool,
+/obj/item/weapon/cigbutt/cigarbutt,
+/turf/open/floor/plating,
+/area/maintenance/solars/starboard)
+"bdT" = (
+/obj/machinery/power/solar_control{
+ id = "starboardsolar";
+ name = "Starboard Solar Control";
+ track = 0
+ },
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/maintenance/solars/starboard)
+"bdU" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/cable{
+ icon_state = "0-2";
+ pixel_y = 1;
+ d2 = 2
+ },
+/turf/open/space,
+/area/solar/starboard)
+"bdV" = (
+/obj/machinery/door/airlock/external{
+ cyclelinkeddir = 1;
+ name = "Port Docking Bay 1"
+ },
+/turf/open/floor/plating,
+/area/hallway/secondary/entry)
+"bdW" = (
+/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry)
+"bdX" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry)
+"bdY" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry)
+"bdZ" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry)
+"bea" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry)
+"beb" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/sign/custodian{
+ pixel_x = 32
+ },
+/turf/open/floor/plasteel/neutral/corner,
+/area/hallway/primary/central)
+"bec" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/floorgrime,
+/area/janitor)
+"bed" = (
+/obj/structure/table,
+/obj/item/weapon/restraints/legcuffs/beartrap,
+/obj/item/weapon/restraints/legcuffs/beartrap,
+/obj/item/weapon/reagent_containers/spray/cleaner,
+/turf/open/floor/plasteel/floorgrime,
+/area/janitor)
+"bee" = (
+/obj/structure/table,
+/obj/item/weapon/storage/box/lights/mixed{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/weapon/storage/box/mousetraps,
+/turf/open/floor/plasteel/floorgrime,
+/area/janitor)
+"bef" = (
+/turf/open/floor/plasteel/neutral/side{
+ dir = 10
+ },
+/area/hydroponics)
+"beg" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hydroponics)
+"beh" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/neutral/side,
+/area/hydroponics)
+"bei" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel,
+/area/hydroponics)
+"bej" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hydroponics)
+"bek" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass{
+ cyclelinkeddir = 4;
+ name = "Hydroponics";
+ req_access_txt = "35"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hydroponics)
+"bel" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/green/corner{
+ dir = 1
+ },
+/area/hallway/primary/central)
+"bem" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/holopad,
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"ben" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 1
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 4
+ },
+/area/hallway/primary/central)
+"beo" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass{
+ cyclelinkeddir = 8;
+ name = "Kitchen";
+ req_access_txt = "28"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/kitchen)
+"bep" = (
+/obj/structure/disposalpipe/sortjunction{
+ dir = 4;
+ icon_state = "pipe-j1s";
+ sortType = 20
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/cafeteria,
+/area/crew_quarters/kitchen)
+"beq" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/cafeteria,
+/area/crew_quarters/kitchen)
+"ber" = (
+/obj/effect/landmark/start/cook,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/open/floor/plasteel/cafeteria,
+/area/crew_quarters/kitchen)
+"bes" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/deepfryer,
+/turf/open/floor/plasteel/cafeteria,
+/area/crew_quarters/kitchen)
+"bet" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/plasteel/cafeteria,
+/area/crew_quarters/kitchen)
+"beu" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = -28
+ },
+/turf/open/floor/plasteel/black,
+/area/crew_quarters/bar)
+"bev" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/plasteel/black,
+/area/crew_quarters/bar)
+"bew" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/lighter,
+/turf/open/floor/plasteel/darkred/side{
+ dir = 8
+ },
+/area/crew_quarters/bar)
+"bex" = (
+/obj/structure/chair/stool/bar,
+/obj/machinery/camera{
+ c_tag = "Bar Port";
+ dir = 1
+ },
+/obj/machinery/light{
+ light_color = "#c9d3e8"
+ },
+/turf/open/floor/plasteel/black,
+/area/crew_quarters/bar)
+"bey" = (
+/obj/structure/chair/wood/normal{
+ dir = 4
+ },
+/turf/open/floor/plasteel/black,
+/area/crew_quarters/bar)
+"bez" = (
+/obj/item/weapon/reagent_containers/food/condiment/peppermill{
+ pixel_x = 5;
+ pixel_y = -2
+ },
+/obj/item/weapon/reagent_containers/food/condiment/saltshaker{
+ layer = 3.1;
+ pixel_x = -2;
+ pixel_y = 2
+ },
+/obj/structure/table/wood,
+/turf/open/floor/plasteel/vault{
+ dir = 5
+ },
+/area/crew_quarters/bar)
+"beA" = (
+/obj/structure/chair/wood/normal{
+ dir = 8
+ },
+/obj/machinery/light{
+ light_color = "#c9d3e8"
+ },
+/turf/open/floor/plasteel/black,
+/area/crew_quarters/bar)
+"beB" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/black,
+/area/crew_quarters/bar)
+"beC" = (
+/obj/structure/chair/wood/normal{
+ dir = 4
+ },
+/obj/machinery/light{
+ light_color = "#c9d3e8"
+ },
+/turf/open/floor/plasteel/black,
+/area/crew_quarters/bar)
+"beD" = (
+/obj/structure/table/wood,
+/obj/item/weapon/kitchen/fork,
+/obj/item/clothing/glasses/regular/hipster,
+/turf/open/floor/plasteel/vault{
+ dir = 5
+ },
+/area/crew_quarters/bar)
+"beE" = (
+/obj/structure/chair/wood/normal{
+ dir = 8
+ },
+/turf/open/floor/plasteel/black,
+/area/crew_quarters/bar)
+"beF" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 5
+ },
+/area/crew_quarters/bar)
+"beG" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/camera{
+ c_tag = "Bar Starboard";
+ dir = 1
+ },
+/obj/machinery/light{
+ light_color = "#c9d3e8"
+ },
+/turf/open/floor/plasteel/black,
+/area/crew_quarters/bar)
+"beH" = (
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 5
+ },
+/area/crew_quarters/bar)
+"beI" = (
+/turf/closed/wall,
+/area/science/robotics/mechbay)
+"beJ" = (
+/obj/structure/table,
+/obj/item/weapon/cartridge/quartermaster{
+ pixel_x = 6;
+ pixel_y = 5
+ },
+/obj/item/weapon/cartridge/quartermaster,
+/obj/item/weapon/cartridge/quartermaster{
+ pixel_x = -4;
+ pixel_y = 7
+ },
+/obj/item/weapon/coin/silver,
+/obj/machinery/status_display{
+ dir = 4;
+ layer = 4;
+ pixel_x = -32;
+ supply_display = 1
+ },
+/turf/open/floor/plasteel/brown{
+ dir = 8
+ },
+/area/quartermaster/qm)
+"beK" = (
+/obj/structure/chair/office/dark{
+ dir = 4
+ },
+/obj/effect/landmark/start/quartermaster,
+/turf/open/floor/plasteel,
+/area/quartermaster/qm)
+"beL" = (
+/obj/machinery/computer/cargo,
+/turf/open/floor/plasteel/brown{
+ dir = 4
+ },
+/area/quartermaster/qm)
+"beM" = (
+/obj/machinery/mineral/equipment_vendor,
+/turf/open/floor/plasteel/brown/corner{
+ dir = 1
+ },
+/area/quartermaster/miningdock)
+"beN" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/landmark/start/shaft_miner,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel,
+/area/quartermaster/miningdock)
+"beO" = (
+/obj/machinery/holopad,
+/turf/open/floor/plasteel,
+/area/quartermaster/miningdock)
+"beP" = (
+/obj/machinery/computer/shuttle/mining,
+/turf/open/floor/plasteel/brown/corner,
+/area/quartermaster/miningdock)
+"beQ" = (
+/obj/structure/chair{
+ dir = 1
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/labor)
+"beR" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/spawner/lootdrop/maintenance,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plating,
+/area/maintenance/department/cargo)
+"beS" = (
+/obj/item/weapon/caution,
+/turf/open/floor/plating,
+/area/maintenance/department/cargo)
+"beT" = (
+/obj/structure/table,
+/obj/item/weapon/paper_bin{
+ layer = 2.9
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/cargo)
+"beU" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/space,
+/area/solar/starboard)
+"beV" = (
+/turf/closed/wall/mineral/titanium,
+/area/shuttle/arrival)
+"beW" = (
+/obj/machinery/door/airlock/titanium{
+ name = "Arrivals Shuttle Airlock"
+ },
+/turf/open/floor/plating,
+/area/shuttle/arrival)
+"beX" = (
+/obj/structure/grille,
+/obj/structure/window/shuttle,
+/turf/open/floor/plating,
+/area/shuttle/arrival)
+"beY" = (
+/obj/machinery/camera{
+ c_tag = "Arrivals Central";
+ dir = 4;
+ network = list("SS13")
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry)
+"beZ" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry)
+"bfa" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry)
+"bfb" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -29
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry)
+"bfc" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry)
+"bfd" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry)
+"bfe" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass{
+ name = "Central Access"
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry)
+"bff" = (
+/obj/machinery/door/firedoor,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/sign/directions/evac{
+ dir = 8;
+ icon_state = "direction_evac";
+ pixel_y = -32
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bfg" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bfh" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bfi" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock{
+ name = "Custodial Closet";
+ req_access_txt = "26"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/floorgrime,
+/area/janitor)
+"bfj" = (
+/obj/machinery/hydroponics/constructable,
+/turf/open/floor/plasteel/green/side{
+ dir = 10
+ },
+/area/hydroponics)
+"bfk" = (
+/obj/machinery/hydroponics/constructable,
+/turf/open/floor/plasteel/green/side,
+/area/hydroponics)
+"bfl" = (
+/obj/machinery/hydroponics/constructable,
+/turf/open/floor/plasteel/green/corner,
+/area/hydroponics)
+"bfm" = (
+/obj/item/weapon/reagent_containers/glass/bucket,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel,
+/area/hydroponics)
+"bfn" = (
+/obj/structure/reagent_dispensers/watertank/high,
+/turf/open/floor/plasteel/green/corner,
+/area/hydroponics)
+"bfo" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 4
+ },
+/area/hallway/primary/central)
+"bfp" = (
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/obj/machinery/button/door{
+ id = "kitchen";
+ name = "Kitchen Shutters Control";
+ pixel_x = -24;
+ req_access_txt = "28"
+ },
+/obj/machinery/light_switch{
+ pixel_x = -34;
+ pixel_y = 1
+ },
+/turf/open/floor/plasteel/cafeteria,
+/area/crew_quarters/kitchen)
+"bfq" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/closed/wall,
+/area/crew_quarters/bar)
+"bfr" = (
+/obj/structure/sign/barsign,
+/turf/closed/wall,
+/area/crew_quarters/bar)
+"bfs" = (
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "barshutters";
+ name = "bar shutters"
+ },
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel/black,
+/area/crew_quarters/bar)
+"bft" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "barshutters";
+ name = "bar shutters"
+ },
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel/vault{
+ dir = 5
+ },
+/area/crew_quarters/bar)
+"bfu" = (
+/obj/machinery/door/airlock/maintenance{
+ req_access_txt = "12"
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/cargo)
+"bfv" = (
+/obj/structure/table,
+/obj/item/weapon/crowbar/large,
+/obj/machinery/airalarm{
+ pixel_y = 22
+ },
+/obj/item/clothing/head/welding,
+/turf/open/floor/plasteel/black,
+/area/science/robotics/mechbay)
+"bfw" = (
+/obj/structure/table,
+/obj/item/weapon/storage/toolbox/mechanical,
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "Mech Bay APC";
+ pixel_y = 24
+ },
+/obj/structure/cable{
+ icon_state = "0-2";
+ d2 = 2
+ },
+/turf/open/floor/plasteel/black,
+/area/science/robotics/mechbay)
+"bfx" = (
+/obj/structure/reagent_dispensers/fueltank,
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = 24
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel/black,
+/area/science/robotics/mechbay)
+"bfy" = (
+/obj/machinery/mech_bay_recharge_port,
+/obj/structure/cable{
+ icon_state = "0-2";
+ d2 = 2
+ },
+/obj/machinery/status_display{
+ density = 0;
+ layer = 4;
+ pixel_y = 30
+ },
+/turf/open/floor/plasteel/black,
+/area/science/robotics/mechbay)
+"bfz" = (
+/turf/open/floor/plasteel/black,
+/area/science/robotics/mechbay)
+"bfA" = (
+/obj/machinery/computer/mech_bay_power_console,
+/obj/structure/cable{
+ icon_state = "0-2";
+ d2 = 2
+ },
+/turf/open/floor/plasteel/black,
+/area/science/robotics/mechbay)
+"bfB" = (
+/obj/structure/table,
+/obj/machinery/computer/stockexchange,
+/obj/machinery/requests_console{
+ department = "Cargo Bay";
+ departmentType = 2;
+ pixel_x = -30
+ },
+/turf/open/floor/plasteel/brown{
+ dir = 10
+ },
+/area/quartermaster/qm)
+"bfC" = (
+/obj/structure/table,
+/obj/item/weapon/clipboard,
+/obj/item/weapon/stamp/qm,
+/obj/machinery/light,
+/obj/machinery/camera{
+ c_tag = "Cargo Quartermaster's Office";
+ dir = 1;
+ network = list("SS13")
+ },
+/turf/open/floor/plasteel/brown{
+ dir = 2
+ },
+/area/quartermaster/qm)
+"bfD" = (
+/obj/machinery/computer/security/mining,
+/obj/item/device/radio/intercom{
+ name = "Station Intercom (General)";
+ pixel_y = -35
+ },
+/turf/open/floor/plasteel/brown{
+ dir = 6
+ },
+/area/quartermaster/qm)
+"bfE" = (
+/obj/structure/rack{
+ dir = 1
+ },
+/obj/item/weapon/storage/toolbox/mechanical{
+ pixel_x = -2;
+ pixel_y = -1
+ },
+/obj/item/weapon/pickaxe{
+ pixel_x = 5
+ },
+/obj/item/weapon/shovel{
+ pixel_x = -5
+ },
+/obj/machinery/camera{
+ c_tag = "Cargo Mining Dock";
+ dir = 4
+ },
+/turf/open/floor/plasteel/brown/corner{
+ dir = 1
+ },
+/area/quartermaster/miningdock)
+"bfF" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/landmark/start/shaft_miner,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/miningdock)
+"bfG" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/miningdock)
+"bfH" = (
+/turf/open/floor/plasteel/brown/corner,
+/area/quartermaster/miningdock)
+"bfI" = (
+/obj/machinery/door/airlock/external{
+ name = "Mining Dock Airlock";
+ req_access = null;
+ req_access_txt = "48"
+ },
+/turf/open/floor/plating,
+/area/quartermaster/miningdock)
+"bfJ" = (
+/turf/open/floor/plating,
+/area/quartermaster/miningdock)
+"bfK" = (
+/obj/machinery/door/airlock/titanium{
+ name = "Mining Shuttle Airlock";
+ req_access_txt = "48"
+ },
+/turf/open/floor/plating,
+/area/shuttle/labor)
+"bfL" = (
+/obj/machinery/door/airlock/titanium{
+ name = "Mining Shuttle Airlock";
+ req_access_txt = "48"
+ },
+/obj/docking_port/mobile{
+ dir = 8;
+ dwidth = 3;
+ height = 5;
+ id = "mining";
+ name = "mining shuttle";
+ port_angle = 90;
+ width = 7
+ },
+/obj/docking_port/stationary{
+ dir = 8;
+ dwidth = 3;
+ height = 5;
+ id = "mining_home";
+ name = "mining shuttle bay";
+ width = 7
+ },
+/turf/open/floor/plating,
+/area/shuttle/labor)
+"bfM" = (
+/obj/structure/chair{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/cargo)
+"bfN" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/structure/table,
+/obj/item/weapon/paperplane,
+/obj/item/trash/chips,
+/turf/open/floor/plating,
+/area/maintenance/department/cargo)
+"bfO" = (
+/obj/structure/frame/machine,
+/turf/open/floor/plating,
+/area/maintenance/department/cargo)
+"bfP" = (
+/obj/structure/closet/cabinet,
+/obj/effect/spawner/lootdrop/maintenance,
+/obj/item/weapon/circuitboard/machine/hydroponics,
+/obj/item/weapon/electronics/apc,
+/turf/open/floor/plating,
+/area/maintenance/department/cargo)
+"bfQ" = (
+/obj/structure/table,
+/obj/item/weapon/storage/firstaid/regular{
+ pixel_y = 4
+ },
+/obj/item/weapon/storage/toolbox/emergency,
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/arrival)
+"bfR" = (
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/arrival)
+"bfS" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/structure/sign/poster/official/enlist{
+ pixel_y = 32
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/arrival)
+"bfT" = (
+/obj/structure/closet/wardrobe/black,
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/arrival)
+"bfU" = (
+/obj/structure/closet/wardrobe/mixed,
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/arrival)
+"bfV" = (
+/obj/machinery/requests_console{
+ department = "Arrival shuttle";
+ name = "Arrivals Shuttle console";
+ pixel_y = 30
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/arrival)
+"bfW" = (
+/obj/structure/shuttle/engine/heater{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/open/floor/plating/airless,
+/area/shuttle/arrival)
+"bfX" = (
+/obj/structure/shuttle/engine/propulsion/burst/right{
+ dir = 4
+ },
+/turf/open/floor/plating/airless,
+/area/shuttle/arrival)
+"bfY" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plasteel/neutral/corner,
+/area/hallway/secondary/entry)
+"bfZ" = (
+/turf/closed/wall/r_wall,
+/area/crew_quarters/lounge)
+"bga" = (
+/obj/structure/grille,
+/obj/structure/window/fulltile,
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "loungeshutters";
+ name = "privacy shutters"
+ },
+/turf/open/floor/plating,
+/area/crew_quarters/lounge)
+"bgb" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass{
+ name = "Lounge"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/lounge)
+"bgc" = (
+/obj/structure/grille,
+/obj/structure/window/fulltile,
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "loungeshutters";
+ name = "privacy shutters"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plating,
+/area/crew_quarters/lounge)
+"bgd" = (
+/turf/closed/wall,
+/area/crew_quarters/lounge)
+"bge" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/sign/directions/security{
+ dir = 1;
+ icon_state = "direction_sec";
+ pixel_x = 32;
+ pixel_y = 40
+ },
+/obj/structure/sign/directions/science{
+ dir = 4;
+ icon_state = "direction_sci";
+ pixel_x = 32;
+ pixel_y = 32
+ },
+/obj/structure/sign/directions/engineering{
+ pixel_x = 32;
+ pixel_y = 24
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bgf" = (
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk,
+/turf/open/floor/plasteel/purple/corner{
+ dir = 4
+ },
+/area/hallway/primary/central)
+"bgg" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/purple/corner{
+ dir = 4
+ },
+/area/hallway/primary/central)
+"bgh" = (
+/obj/structure/chair{
+ name = "Throne of Custodia"
+ },
+/obj/item/device/radio/intercom{
+ dir = 0;
+ name = "Station Intercom (General)";
+ pixel_y = 26
+ },
+/turf/open/floor/plasteel/purple/corner{
+ dir = 4
+ },
+/area/hallway/primary/central)
+"bgi" = (
+/obj/machinery/vending/cola,
+/obj/structure/sign/map{
+ icon_state = "map-pubby";
+ pixel_y = 32
+ },
+/turf/open/floor/plasteel/purple/corner{
+ dir = 4
+ },
+/area/hallway/primary/central)
+"bgj" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plating,
+/area/hydroponics)
+"bgk" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/firedoor,
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "kitchen";
+ name = "kitchen shutters"
+ },
+/turf/open/floor/plasteel/cafeteria,
+/area/crew_quarters/kitchen)
+"bgl" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/firedoor,
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "kitchen";
+ name = "kitchen shutters"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/white,
+/area/crew_quarters/kitchen)
+"bgm" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/firedoor,
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "kitchen";
+ name = "kitchen shutters"
+ },
+/turf/open/floor/plasteel/white,
+/area/crew_quarters/kitchen)
+"bgn" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/chair{
+ dir = 4
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -27
+ },
+/obj/structure/sign/poster/official/high_class_martini{
+ pixel_y = 32
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 1
+ },
+/area/hallway/primary/central)
+"bgo" = (
+/obj/structure/table,
+/obj/item/trash/plate,
+/obj/item/weapon/storage/fancy/rollingpapers,
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 1
+ },
+/area/hallway/primary/central)
+"bgp" = (
+/obj/structure/chair{
+ dir = 8
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 1
+ },
+/area/hallway/primary/central)
+"bgq" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 1
+ },
+/area/hallway/primary/central)
+"bgr" = (
+/obj/structure/chair{
+ dir = 4
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 1
+ },
+/area/hallway/primary/central)
+"bgs" = (
+/obj/structure/table,
+/obj/item/weapon/storage/fancy/donut_box,
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 1
+ },
+/area/hallway/primary/central)
+"bgt" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass{
+ name = "Bar"
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/bar)
+"bgu" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/door/airlock/glass{
+ name = "Bar"
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/bar)
+"bgv" = (
+/obj/item/weapon/twohanded/required/kirbyplants{
+ icon_state = "plant-14";
+ layer = 4.1
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 4
+ },
+/area/hallway/primary/central)
+"bgw" = (
+/obj/structure/chair,
+/obj/item/clothing/head/bowler,
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 4
+ },
+/area/hallway/primary/central)
+"bgx" = (
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = 27
+ },
+/obj/structure/chair,
+/obj/item/clothing/mask/cigarette,
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 4
+ },
+/area/hallway/primary/central)
+"bgy" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/machinery/airalarm{
+ pixel_y = 24
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 4
+ },
+/area/hallway/primary/central)
+"bgz" = (
+/obj/structure/sign/poster/official/cohiba_robusto_ad{
+ pixel_y = 32
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 4
+ },
+/area/hallway/primary/central)
+"bgA" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/sign/directions/evac{
+ dir = 1;
+ icon_state = "direction_evac";
+ pixel_x = -32;
+ pixel_y = 40
+ },
+/obj/structure/sign/directions/medical{
+ dir = 8;
+ icon_state = "direction_med";
+ pixel_x = -32;
+ pixel_y = 32
+ },
+/obj/structure/sign/directions/engineering{
+ pixel_x = -32;
+ pixel_y = 24
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bgB" = (
+/obj/machinery/computer/security/telescreen/entertainment{
+ pixel_y = 32
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bgC" = (
+/turf/open/floor/plasteel/purple/corner,
+/area/hallway/primary/central)
+"bgD" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/poddoor/shutters{
+ id = "Skynet_launch";
+ name = "mech bay"
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/science/robotics/mechbay)
+"bgE" = (
+/obj/effect/decal/cleanable/oil,
+/obj/effect/decal/cleanable/robot_debris{
+ icon_state = "gib3"
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/science/robotics/mechbay)
+"bgF" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/turf_decal/stripes/corner{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/science/robotics/mechbay)
+"bgG" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/turf/open/floor/plasteel,
+/area/science/robotics/mechbay)
+"bgH" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/circuit/green,
+/area/science/robotics/mechbay)
+"bgI" = (
+/turf/open/floor/circuit/green,
+/area/science/robotics/mechbay)
+"bgJ" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/light{
+ dir = 4;
+ light_color = "#c1caff"
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 27
+ },
+/turf/open/floor/circuit/green,
+/area/science/robotics/mechbay)
+"bgK" = (
+/obj/structure/cable{
+ icon_state = "0-2";
+ d2 = 2
+ },
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "Mining Dock APC";
+ pixel_x = -24
+ },
+/turf/open/floor/plasteel/brown/corner{
+ dir = 1
+ },
+/area/quartermaster/miningdock)
+"bgL" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel,
+/area/quartermaster/miningdock)
+"bgM" = (
+/turf/open/floor/plasteel,
+/area/quartermaster/miningdock)
+"bgN" = (
+/obj/structure/table,
+/obj/item/weapon/paperplane,
+/turf/open/floor/plating,
+/area/maintenance/department/cargo)
+"bgO" = (
+/turf/open/floor/plating{
+ icon_state = "platingdmg3"
+ },
+/area/maintenance/department/cargo)
+"bgP" = (
+/obj/structure/grille,
+/obj/structure/window/shuttle,
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "arrivy";
+ name = "ship shutters"
+ },
+/turf/open/floor/plating,
+/area/shuttle/arrival)
+"bgQ" = (
+/obj/machinery/door/airlock/titanium{
+ name = "Arrivals Shuttle Airlock"
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/arrival)
+"bgR" = (
+/obj/structure/chair{
+ dir = 8
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/arrival)
+"bgS" = (
+/obj/structure/shuttle/engine/propulsion{
+ dir = 4
+ },
+/obj/docking_port/mobile/arrivals{
+ height = 13;
+ name = "pubby arrivals shuttle";
+ width = 6
+ },
+/obj/docking_port/stationary{
+ dir = 8;
+ dwidth = 3;
+ height = 13;
+ id = "arrivals_stationary";
+ name = "pubby arrivals";
+ width = 6
+ },
+/turf/open/floor/plating/airless,
+/area/shuttle/arrival)
+"bgT" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry)
+"bgU" = (
+/obj/structure/table/wood,
+/obj/item/device/flashlight/lamp/green{
+ pixel_x = 1;
+ pixel_y = 5
+ },
+/turf/open/floor/plasteel/grimy,
+/area/crew_quarters/lounge)
+"bgV" = (
+/turf/open/floor/plasteel/grimy,
+/area/crew_quarters/lounge)
+"bgW" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/open/floor/plasteel/grimy,
+/area/crew_quarters/lounge)
+"bgX" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 9
+ },
+/turf/open/floor/plasteel/grimy,
+/area/crew_quarters/lounge)
+"bgY" = (
+/obj/structure/table/wood,
+/obj/item/device/flashlight/lamp/green{
+ pixel_x = 1;
+ pixel_y = 5
+ },
+/obj/machinery/button/door{
+ id = "loungeshutters";
+ name = "Privacy Shutters";
+ pixel_y = 25
+ },
+/turf/open/floor/plasteel/grimy,
+/area/crew_quarters/lounge)
+"bgZ" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/disposalpipe/sortjunction{
+ dir = 1;
+ icon_state = "pipe-j1s";
+ sortType = 22
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bha" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 5
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bhb" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 8;
+ icon_state = "pipe-j1"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bhc" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bhd" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bhe" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bhf" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/sign/directions/engineering{
+ pixel_x = 32;
+ pixel_y = 28
+ },
+/obj/structure/sign/directions/evac{
+ dir = 1;
+ icon_state = "direction_evac";
+ pixel_x = 32;
+ pixel_y = 38
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bhg" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/sign/map{
+ icon_state = "map-pubby";
+ pixel_y = 32
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bhh" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
+ },
+/obj/machinery/navbeacon{
+ codes_txt = "patrol;next_patrol=Bar1";
+ location = "Robo"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bhi" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/purple/corner,
+/area/hallway/primary/central)
+"bhj" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/poddoor/shutters{
+ id = "Skynet_launch";
+ name = "mech bay"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/science/robotics/mechbay)
+"bhk" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/science/robotics/mechbay)
+"bhl" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/science/robotics/mechbay)
+"bhm" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 10
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/science/robotics/mechbay)
+"bhn" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/circuit,
+/area/science/robotics/mechbay)
+"bho" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/circuit,
+/area/science/robotics/mechbay)
+"bhp" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Mech Bay Maintenance";
+ req_access_txt = "29"
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/science/robotics/mechbay)
+"bhq" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/cargo)
+"bhr" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Mining Maintenance";
+ req_access_txt = "48"
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/quartermaster/miningdock)
+"bhs" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/brown{
+ dir = 10
+ },
+/area/quartermaster/miningdock)
+"bht" = (
+/obj/structure/closet/secure_closet/miner,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 9
+ },
+/turf/open/floor/plasteel/brown,
+/area/quartermaster/miningdock)
+"bhu" = (
+/obj/structure/closet/secure_closet/miner,
+/obj/machinery/light,
+/turf/open/floor/plasteel/brown,
+/area/quartermaster/miningdock)
+"bhv" = (
+/obj/structure/closet/secure_closet/miner,
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 27
+ },
+/turf/open/floor/plasteel/brown{
+ dir = 6
+ },
+/area/quartermaster/miningdock)
+"bhw" = (
+/obj/structure/closet/crate,
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/labor)
+"bhx" = (
+/obj/structure/shuttle/engine/heater,
+/turf/open/floor/plating,
+/area/shuttle/labor)
+"bhy" = (
+/obj/structure/ore_box,
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/labor)
+"bhz" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plating,
+/area/maintenance/department/cargo)
+"bhA" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/grille/broken,
+/turf/open/floor/plating,
+/area/maintenance/department/cargo)
+"bhB" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/cargo)
+"bhC" = (
+/obj/machinery/light/small,
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/arrival)
+"bhD" = (
+/obj/structure/shuttle/engine/propulsion{
+ dir = 4
+ },
+/turf/open/floor/plating/airless,
+/area/shuttle/arrival)
+"bhE" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plasteel/neutral/corner,
+/area/hallway/secondary/entry)
+"bhF" = (
+/obj/structure/chair/comfy/beige{
+ dir = 4
+ },
+/obj/machinery/newscaster{
+ pixel_x = -32
+ },
+/turf/open/floor/plasteel/grimy,
+/area/crew_quarters/lounge)
+"bhG" = (
+/turf/open/floor/carpet,
+/area/crew_quarters/lounge)
+"bhH" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/carpet,
+/area/crew_quarters/lounge)
+"bhI" = (
+/obj/structure/chair/comfy/beige{
+ dir = 8
+ },
+/obj/machinery/camera{
+ c_tag = "Lounge";
+ dir = 8
+ },
+/turf/open/floor/plasteel/grimy,
+/area/crew_quarters/lounge)
+"bhJ" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 8
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -27;
+ pixel_y = -1
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bhK" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bhL" = (
+/obj/machinery/navbeacon{
+ codes_txt = "patrol;next_patrol=BrigS1";
+ location = "Lounge"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bhM" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bhN" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bhO" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/navbeacon{
+ codes_txt = "patrol;next_patrol=Eng";
+ location = "Bar1"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bhP" = (
+/obj/machinery/holopad,
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bhQ" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/machinery/button/door{
+ dir = 2;
+ id = "Skynet_launch";
+ name = "Mech Bay Door Control";
+ pixel_x = 25
+ },
+/turf/open/floor/plasteel/purple/corner,
+/area/hallway/primary/central)
+"bhR" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/machinery/button/door{
+ dir = 2;
+ id = "Skynet_launch";
+ name = "Mech Bay Door Control";
+ pixel_x = -25
+ },
+/obj/machinery/camera{
+ c_tag = "Mech Bay";
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/science/robotics/mechbay)
+"bhS" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel,
+/area/science/robotics/mechbay)
+"bhT" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/effect/landmark/event_spawn,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/science/robotics/mechbay)
+"bhU" = (
+/obj/machinery/mech_bay_recharge_port,
+/obj/structure/cable,
+/turf/open/floor/plasteel/black,
+/area/science/robotics/mechbay)
+"bhV" = (
+/obj/machinery/computer/mech_bay_power_console,
+/obj/structure/cable,
+/turf/open/floor/plasteel/black,
+/area/science/robotics/mechbay)
+"bhW" = (
+/obj/structure/shuttle/engine/propulsion/burst,
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 2.9
+ },
+/turf/open/floor/plating/airless,
+/area/shuttle/labor)
+"bhX" = (
+/obj/structure/closet/emcloset,
+/obj/item/weapon/storage/firstaid/o2,
+/obj/item/weapon/tank/internals/emergency_oxygen,
+/obj/item/clothing/mask/breath,
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/arrival)
+"bhY" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_y = -29
+ },
+/obj/machinery/light,
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/arrival)
+"bhZ" = (
+/obj/item/device/radio/intercom{
+ name = "Station Intercom (General)";
+ pixel_y = -29
+ },
+/obj/machinery/light,
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/arrival)
+"bia" = (
+/obj/structure/shuttle/engine/propulsion/burst/left{
+ dir = 4
+ },
+/turf/open/floor/plating/airless,
+/area/shuttle/arrival)
+"bib" = (
+/obj/structure/chair/comfy/beige{
+ dir = 4
+ },
+/turf/open/floor/plasteel/grimy,
+/area/crew_quarters/lounge)
+"bic" = (
+/obj/effect/landmark/start/assistant,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/open/floor/carpet,
+/area/crew_quarters/lounge)
+"bid" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/carpet,
+/area/crew_quarters/lounge)
+"bie" = (
+/obj/structure/chair/comfy/beige{
+ dir = 8
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/open/floor/plasteel/grimy,
+/area/crew_quarters/lounge)
+"bif" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 5
+ },
+/obj/structure/chair{
+ dir = 4
+ },
+/obj/structure/sign/poster/official/random{
+ pixel_x = -32
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"big" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bih" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bii" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/sign/bluecross_2{
+ pixel_x = 32;
+ pixel_y = -32
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bij" = (
+/obj/machinery/light,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/blue/corner,
+/area/hallway/primary/central)
+"bik" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/blue/corner,
+/area/hallway/primary/central)
+"bil" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -26
+ },
+/turf/open/floor/plasteel/blue/corner,
+/area/hallway/primary/central)
+"bim" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 1
+ },
+/turf/open/floor/plasteel/blue/corner,
+/area/hallway/primary/central)
+"bin" = (
+/obj/machinery/light,
+/obj/machinery/camera{
+ c_tag = "Central Primary Hallway Hydroponics";
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
+/turf/open/floor/plasteel/blue/corner,
+/area/hallway/primary/central)
+"bio" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
+/obj/machinery/navbeacon{
+ codes_txt = "patrol;next_patrol=Lounge";
+ location = "Bar2"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bip" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/purple/corner,
+/area/hallway/primary/central)
+"biq" = (
+/obj/machinery/light,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/purple/corner,
+/area/hallway/primary/central)
+"bir" = (
+/obj/machinery/camera{
+ c_tag = "Central Primary Hallway Robotics";
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/purple/corner,
+/area/hallway/primary/central)
+"bis" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
+/turf/open/floor/plasteel/purple/corner,
+/area/hallway/primary/central)
+"bit" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/research{
+ name = "Mech Bay";
+ req_access_txt = "29";
+ req_one_access_txt = "0"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/science/robotics/mechbay)
+"biu" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/science/robotics/mechbay)
+"biv" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/science/robotics/mechbay)
+"biw" = (
+/obj/machinery/recharge_station,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel/black,
+/area/science/robotics/mechbay)
+"bix" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/effect/decal/cleanable/robot_debris{
+ icon_state = "gib3"
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/cargo)
+"biy" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/cargo)
+"biz" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 5
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/cargo)
+"biA" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/mob/living/simple_animal/mouse/gray,
+/turf/open/floor/plating,
+/area/maintenance/department/cargo)
+"biB" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 8;
+ icon_state = "pipe-j2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/cargo)
+"biC" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 10
+ },
+/obj/item/weapon/shard{
+ icon_state = "small"
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/cargo)
+"biD" = (
+/obj/structure/reagent_dispensers/watertank,
+/turf/open/floor/plating,
+/area/maintenance/department/cargo)
+"biE" = (
+/obj/structure/girder,
+/turf/open/floor/plating{
+ icon_state = "platingdmg3"
+ },
+/area/maintenance/department/cargo)
+"biF" = (
+/obj/structure/rack,
+/obj/effect/spawner/lootdrop/maintenance{
+ lootcount = 2;
+ name = "2maintenance loot spawner"
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/cargo)
+"biG" = (
+/obj/item/weapon/cigbutt/cigarbutt,
+/turf/open/floor/plating{
+ icon_state = "platingdmg1"
+ },
+/area/maintenance/department/cargo)
+"biH" = (
+/obj/structure/closet/radiation,
+/obj/effect/decal/cleanable/cobweb{
+ icon_state = "cobweb2"
+ },
+/turf/open/floor/plating{
+ icon_state = "platingdmg1"
+ },
+/area/maintenance/department/cargo)
+"biI" = (
+/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel/neutral/corner,
+/area/hallway/secondary/entry)
+"biJ" = (
+/obj/structure/grille,
+/obj/structure/window/fulltile,
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "loungeshutters";
+ name = "privacy shutters"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/crew_quarters/lounge)
+"biK" = (
+/obj/structure/table/wood,
+/obj/item/device/flashlight/lamp/green{
+ pixel_x = 1;
+ pixel_y = 5
+ },
+/obj/machinery/airalarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/grimy,
+/area/crew_quarters/lounge)
+"biL" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/grimy,
+/area/crew_quarters/lounge)
+"biM" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/open/floor/plasteel/grimy,
+/area/crew_quarters/lounge)
+"biN" = (
+/obj/structure/table/wood,
+/obj/item/device/flashlight/lamp/green{
+ pixel_x = 1;
+ pixel_y = 5
+ },
+/obj/machinery/power/apc{
+ dir = 2;
+ name = "Lounge APC";
+ pixel_y = -24
+ },
+/obj/structure/cable,
+/turf/open/floor/plasteel/grimy,
+/area/crew_quarters/lounge)
+"biO" = (
+/obj/structure/table/glass,
+/obj/item/device/healthanalyzer{
+ layer = 3.1
+ },
+/obj/item/weapon/pen{
+ layer = 3.2
+ },
+/turf/open/floor/plasteel/blue/side,
+/area/hallway/primary/central)
+"biP" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/purple/side,
+/area/hallway/primary/central)
+"biQ" = (
+/obj/item/weapon/twohanded/required/kirbyplants{
+ icon_state = "plant-05";
+ layer = 4.1
+ },
+/turf/open/floor/plasteel/blue/side,
+/area/hallway/primary/central)
+"biR" = (
+/obj/structure/closet/emcloset,
+/obj/machinery/light,
+/obj/machinery/camera{
+ c_tag = "Central Primary Hallway Genetics";
+ dir = 1
+ },
+/turf/open/floor/plasteel/blue/corner{
+ dir = 8
+ },
+/area/hallway/primary/central)
+"biS" = (
+/obj/structure/closet/emcloset,
+/turf/open/floor/plasteel/blue/corner{
+ dir = 8
+ },
+/area/hallway/primary/central)
+"biT" = (
+/obj/structure/closet/firecloset,
+/turf/open/floor/plasteel/blue/corner{
+ dir = 8
+ },
+/area/hallway/primary/central)
+"biU" = (
+/obj/structure/grille,
+/obj/structure/window/fulltile,
+/turf/open/floor/plating,
+/area/medical/medbay/zone3)
+"biV" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass{
+ name = "Medbay"
+ },
+/turf/open/floor/plasteel/white/side,
+/area/medical/medbay/zone3)
+"biW" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass{
+ name = "Medbay"
+ },
+/turf/open/floor/plasteel/white/side,
+/area/medical/medbay/zone3)
+"biX" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass{
+ name = "Medbay"
+ },
+/turf/open/floor/plasteel/white/side,
+/area/medical/medbay/zone3)
+"biY" = (
+/turf/closed/wall,
+/area/medical/morgue)
+"biZ" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/centcom{
+ name = "Morgue";
+ opacity = 1;
+ req_access_txt = "6"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/black,
+/area/medical/morgue)
+"bja" = (
+/turf/closed/wall,
+/area/security/checkpoint/medical)
+"bjb" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/closed/wall,
+/area/security/checkpoint/medical)
+"bjc" = (
+/turf/closed/wall,
+/area/medical/medbay/central)
+"bjd" = (
+/obj/structure/grille,
+/obj/structure/window/fulltile,
+/turf/open/floor/plating,
+/area/medical/medbay/central)
+"bje" = (
+/obj/structure/sign/bluecross_2,
+/turf/closed/wall,
+/area/medical/medbay/central)
+"bjf" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/white/side,
+/area/medical/medbay/central)
+"bjg" = (
+/obj/machinery/door/firedoor,
+/turf/open/floor/plasteel/white/side,
+/area/medical/medbay/central)
+"bjh" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/white/side,
+/area/medical/medbay/central)
+"bji" = (
+/obj/item/weapon/twohanded/required/kirbyplants{
+ icon_state = "plant-10";
+ layer = 4.1
+ },
+/turf/open/floor/plasteel/blue/side,
+/area/hallway/primary/central)
+"bjj" = (
+/turf/open/floor/plasteel/blue/side,
+/area/hallway/primary/central)
+"bjk" = (
+/obj/machinery/camera{
+ c_tag = "Central Primary Hallway Bar";
+ dir = 1
+ },
+/obj/machinery/light,
+/turf/open/floor/plasteel/blue/side,
+/area/hallway/primary/central)
+"bjl" = (
+/obj/machinery/light,
+/turf/open/floor/plasteel/purple/side,
+/area/hallway/primary/central)
+"bjm" = (
+/turf/open/floor/plasteel/purple/side,
+/area/hallway/primary/central)
+"bjn" = (
+/obj/item/weapon/twohanded/required/kirbyplants{
+ icon_state = "plant-10";
+ layer = 4.1
+ },
+/turf/open/floor/plasteel/purple/side,
+/area/hallway/primary/central)
+"bjo" = (
+/obj/structure/grille,
+/obj/structure/window/fulltile,
+/turf/open/floor/plating,
+/area/science/research/lobby)
+"bjp" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel,
+/area/science/research/lobby)
+"bjq" = (
+/obj/machinery/door/firedoor,
+/turf/open/floor/plasteel,
+/area/science/research/lobby)
+"bjr" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel,
+/area/science/research/lobby)
+"bjs" = (
+/obj/structure/sign/science,
+/turf/closed/wall,
+/area/science/research/lobby)
+"bjt" = (
+/turf/closed/wall,
+/area/science/research/lobby)
+"bju" = (
+/turf/open/floor/plasteel,
+/area/science/robotics/mechbay)
+"bjv" = (
+/obj/structure/closet,
+/obj/item/weapon/weldingtool,
+/obj/item/weapon/crowbar,
+/turf/open/floor/plating,
+/area/maintenance/department/cargo)
+"bjw" = (
+/turf/closed/wall/r_wall,
+/area/science/explab)
+"bjx" = (
+/turf/closed/wall/r_wall,
+/area/maintenance/department/cargo)
+"bjy" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 5
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/cargo)
+"bjz" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/cargo)
+"bjA" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/cargo)
+"bjB" = (
+/obj/structure/grille,
+/obj/structure/window/fulltile,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/cargo)
+"bjC" = (
+/obj/structure/reagent_dispensers/fueltank,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/cargo)
+"bjD" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/cargo)
+"bjE" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 10
+ },
+/turf/open/floor/plating{
+ icon_state = "platingdmg3"
+ },
+/area/maintenance/department/cargo)
+"bjF" = (
+/obj/item/trash/sosjerky,
+/obj/effect/decal/cleanable/vomit/old,
+/turf/open/floor/plating,
+/area/maintenance/department/cargo)
+"bjG" = (
+/turf/open/floor/plating{
+ icon_state = "panelscorched"
+ },
+/area/maintenance/department/cargo)
+"bjH" = (
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/plating{
+ icon_state = "panelscorched"
+ },
+/area/maintenance/department/cargo)
+"bjI" = (
+/obj/structure/bookcase/random/nonfiction,
+/turf/open/floor/wood,
+/area/crew_quarters/lounge)
+"bjJ" = (
+/obj/structure/bookcase/random/fiction,
+/turf/open/floor/wood,
+/area/crew_quarters/lounge)
+"bjK" = (
+/obj/structure/bookcase/random/religion,
+/turf/open/floor/wood,
+/area/crew_quarters/lounge)
+"bjL" = (
+/turf/closed/wall,
+/area/storage/emergency/port)
+"bjM" = (
+/obj/machinery/door/firedoor,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/door/airlock{
+ name = "Port Emergency Storage";
+ req_access_txt = "0"
+ },
+/turf/open/floor/plasteel/freezer,
+/area/storage/emergency/port)
+"bjN" = (
+/obj/structure/grille,
+/obj/structure/window/fulltile,
+/turf/open/floor/plating,
+/area/storage/emergency/port)
+"bjO" = (
+/turf/closed/wall,
+/area/medical/medbay/zone3)
+"bjP" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/whiteblue/corner{
+ dir = 8
+ },
+/area/medical/medbay/zone3)
+"bjQ" = (
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/zone3)
+"bjR" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/whiteblue/corner,
+/area/medical/medbay/zone3)
+"bjS" = (
+/obj/machinery/airalarm{
+ frequency = 1439;
+ locked = 0;
+ pixel_y = 23
+ },
+/turf/open/floor/plasteel/black,
+/area/medical/morgue)
+"bjT" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 6
+ },
+/turf/open/floor/plasteel/black,
+/area/medical/morgue)
+"bjU" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 1;
+ light_color = "#e8eaff"
+ },
+/turf/open/floor/plasteel/black,
+/area/medical/morgue)
+"bjV" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 9
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/open/floor/plasteel/black,
+/area/medical/morgue)
+"bjW" = (
+/obj/effect/decal/cleanable/cobweb/cobweb2,
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "Morgue APC";
+ pixel_y = 24
+ },
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/turf/open/floor/plasteel/black,
+/area/medical/morgue)
+"bjX" = (
+/obj/structure/filingcabinet,
+/obj/machinery/requests_console{
+ department = "Security";
+ departmentType = 5;
+ pixel_y = 30
+ },
+/obj/machinery/airalarm{
+ dir = 4;
+ pixel_x = -23
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 9
+ },
+/area/security/checkpoint/medical)
+"bjY" = (
+/obj/structure/table,
+/obj/machinery/recharger{
+ pixel_y = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/item/device/radio/intercom{
+ dir = 0;
+ name = "Station Intercom (General)";
+ pixel_y = 26
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 1
+ },
+/area/security/checkpoint/medical)
+"bjZ" = (
+/obj/machinery/computer/secure_data,
+/obj/structure/reagent_dispensers/peppertank{
+ pixel_y = 30
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 1
+ },
+/area/security/checkpoint/medical)
+"bka" = (
+/obj/machinery/computer/security,
+/turf/open/floor/plasteel/red/side{
+ dir = 5
+ },
+/area/security/checkpoint/medical)
+"bkb" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/medical/medbay/central)
+"bkc" = (
+/obj/structure/table,
+/obj/item/weapon/storage/firstaid/regular,
+/obj/machinery/airalarm{
+ pixel_y = 22
+ },
+/turf/open/floor/plasteel/whiteblue/side{
+ dir = 1
+ },
+/area/medical/medbay/central)
+"bkd" = (
+/obj/structure/chair,
+/turf/open/floor/plasteel/whiteblue/side{
+ dir = 1
+ },
+/area/medical/medbay/central)
+"bke" = (
+/obj/structure/chair,
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/plasteel/whiteblue/side{
+ dir = 1
+ },
+/area/medical/medbay/central)
+"bkf" = (
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk,
+/turf/open/floor/plasteel/whiteblue/side{
+ dir = 1
+ },
+/area/medical/medbay/central)
+"bkg" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/central)
+"bkh" = (
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/central)
+"bki" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/shower{
+ dir = 8
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/central)
+"bkj" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/door/airlock/glass,
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bkk" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass,
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bkl" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/door/airlock/glass,
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bkm" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/sink{
+ dir = 8;
+ pixel_x = -12
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 8;
+ heat_capacity = 1e+006
+ },
+/area/science/research/lobby)
+"bkn" = (
+/turf/open/floor/plasteel,
+/area/science/research/lobby)
+"bko" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel,
+/area/science/research/lobby)
+"bkp" = (
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk,
+/turf/open/floor/plasteel/purple/side{
+ dir = 1
+ },
+/area/science/research/lobby)
+"bkq" = (
+/obj/structure/table,
+/obj/item/device/gps{
+ gpstag = "RD0"
+ },
+/obj/item/device/assembly/igniter{
+ pixel_x = -4;
+ pixel_y = -4
+ },
+/obj/item/clothing/head/welding,
+/obj/item/weapon/screwdriver{
+ pixel_y = 16
+ },
+/turf/open/floor/plasteel/purple/side{
+ dir = 1
+ },
+/area/science/research/lobby)
+"bkr" = (
+/obj/machinery/modular_computer/console/preset/civilian,
+/turf/open/floor/plasteel/purple/side{
+ dir = 1
+ },
+/area/science/research/lobby)
+"bks" = (
+/obj/structure/table,
+/obj/item/weapon/wrench,
+/obj/item/stack/cable_coil,
+/obj/item/weapon/electronics/apc,
+/obj/item/weapon/electronics/airlock,
+/turf/open/floor/plasteel/purple/side{
+ dir = 1
+ },
+/area/science/research/lobby)
+"bkt" = (
+/turf/closed/wall/r_wall,
+/area/science/robotics/lab)
+"bku" = (
+/obj/structure/grille,
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "robotics";
+ name = "robotics lab shutters"
+ },
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/science/robotics/lab)
+"bkv" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/window/eastright{
+ base_state = "left";
+ dir = 2;
+ icon_state = "left";
+ name = "Robotics Desk";
+ req_access_txt = "29"
+ },
+/obj/item/weapon/paper_bin,
+/obj/item/weapon/pen,
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "robotics";
+ name = "robotics lab shutters"
+ },
+/turf/open/floor/plating,
+/area/science/robotics/lab)
+"bkw" = (
+/obj/machinery/door/firedoor,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/research{
+ name = "Mech Bay";
+ req_access_txt = "29";
+ req_one_access_txt = "0"
+ },
+/turf/open/floor/plasteel,
+/area/science/robotics/lab)
+"bkx" = (
+/turf/closed/wall/r_wall,
+/area/science/server)
+"bky" = (
+/turf/open/floor/engine,
+/area/science/explab)
+"bkz" = (
+/obj/machinery/camera{
+ c_tag = "Experimentation Lab Chamber";
+ dir = 2;
+ network = list("SS13","RD")
+ },
+/turf/open/floor/engine,
+/area/science/explab)
+"bkA" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/open/floor/engine,
+/area/science/explab)
+"bkB" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 10
+ },
+/turf/open/floor/engine,
+/area/science/explab)
+"bkC" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Testing Lab Maintenance";
+ req_access_txt = "47"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plating,
+/area/science/explab)
+"bkD" = (
+/obj/structure/plasticflaps{
+ opacity = 1
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/science/explab)
+"bkE" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/lattice,
+/turf/open/space/basic,
+/area/space)
+"bkF" = (
+/turf/closed/wall/r_wall,
+/area/science/xenobiology)
+"bkG" = (
+/obj/machinery/atmospherics/pipe/simple/general/hidden{
+ dir = 6
+ },
+/turf/closed/wall/r_wall,
+/area/science/xenobiology)
+"bkH" = (
+/obj/machinery/atmospherics/pipe/simple/general/hidden{
+ dir = 4
+ },
+/turf/closed/wall/r_wall,
+/area/science/xenobiology)
+"bkI" = (
+/obj/machinery/atmospherics/pipe/simple/general/hidden{
+ dir = 10
+ },
+/turf/closed/wall/r_wall,
+/area/science/xenobiology)
+"bkJ" = (
+/obj/item/weapon/extinguisher,
+/turf/open/floor/plating,
+/area/maintenance/department/cargo)
+"bkK" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 5
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/cargo)
+"bkL" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/item/trash/deadmouse,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 10
+ },
+/obj/effect/landmark/revenantspawn,
+/turf/open/floor/plating{
+ broken = 1;
+ icon_state = "platingdmg1"
+ },
+/area/maintenance/department/cargo)
+"bkM" = (
+/obj/machinery/portable_atmospherics/canister,
+/turf/open/floor/plating,
+/area/maintenance/department/cargo)
+"bkN" = (
+/obj/machinery/portable_atmospherics/canister/oxygen,
+/turf/open/floor/plating,
+/area/maintenance/department/cargo)
+"bkO" = (
+/obj/item/weapon/tank/internals/air,
+/turf/open/floor/plating,
+/area/maintenance/department/cargo)
+"bkP" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/open/space,
+/area/solar/starboard)
+"bkQ" = (
+/obj/machinery/vending/snack,
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry)
+"bkR" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry)
+"bkS" = (
+/obj/structure/closet/emcloset,
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry)
+"bkT" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 27
+ },
+/turf/open/floor/plasteel/neutral/corner,
+/area/hallway/secondary/entry)
+"bkU" = (
+/turf/closed/wall/r_wall,
+/area/construction/mining/aux_base/closet)
+"bkV" = (
+/turf/closed/wall,
+/area/construction/mining/aux_base/closet)
+"bkW" = (
+/obj/item/weapon/hemostat,
+/obj/item/weapon/retractor,
+/obj/item/weapon/cautery,
+/obj/effect/spawner/lootdrop/maintenance,
+/obj/effect/decal/cleanable/cobweb{
+ icon_state = "cobweb2"
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/engine)
+"bkX" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -28
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/freezer,
+/area/storage/emergency/port)
+"bkY" = (
+/turf/open/floor/plasteel/freezer,
+/area/storage/emergency/port)
+"bkZ" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/machinery/camera{
+ c_tag = "Genetics Cloning Foyer";
+ dir = 2;
+ network = list("SS13")
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on,
+/obj/machinery/airalarm{
+ pixel_y = 22
+ },
+/turf/open/floor/plasteel/freezer,
+/area/storage/emergency/port)
+"bla" = (
+/obj/machinery/space_heater,
+/turf/open/floor/plasteel/freezer,
+/area/storage/emergency/port)
+"blb" = (
+/obj/structure/closet/l3closet,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel/black,
+/area/medical/medbay/zone3)
+"blc" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/sign/poster/official/walk{
+ pixel_x = 32
+ },
+/turf/open/floor/plasteel/whiteblue/corner,
+/area/medical/medbay/zone3)
+"bld" = (
+/obj/structure/bodycontainer/morgue,
+/obj/effect/landmark/revenantspawn,
+/turf/open/floor/plasteel/black,
+/area/medical/morgue)
+"ble" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/open/floor/plasteel/black,
+/area/medical/morgue)
+"blf" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/black,
+/area/medical/morgue)
+"blg" = (
+/obj/structure/chair{
+ dir = 8
+ },
+/turf/open/floor/plasteel/black,
+/area/medical/morgue)
+"blh" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/machinery/newscaster{
+ pixel_x = -32
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 8
+ },
+/area/security/checkpoint/medical)
+"bli" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 9
+ },
+/turf/open/floor/plasteel,
+/area/security/checkpoint/medical)
+"blj" = (
+/obj/structure/chair/office/light{
+ dir = 4
+ },
+/obj/effect/landmark/start/depsec/medical,
+/turf/open/floor/plasteel,
+/area/security/checkpoint/medical)
+"blk" = (
+/obj/structure/table,
+/obj/item/weapon/pen,
+/obj/item/weapon/paper_bin{
+ layer = 2.9
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 4
+ },
+/area/security/checkpoint/medical)
+"bll" = (
+/obj/structure/chair{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/central)
+"blm" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 6
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/central)
+"bln" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/central)
+"blo" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 9
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/central)
+"blp" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = 26;
+ pixel_y = 28
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/central)
+"blq" = (
+/obj/structure/table,
+/obj/item/weapon/storage/box/bodybags{
+ pixel_x = 3;
+ pixel_y = 2
+ },
+/turf/open/floor/plasteel/whiteblue/side{
+ dir = 1
+ },
+/area/medical/medbay/central)
+"blr" = (
+/obj/structure/table,
+/obj/item/weapon/folder/white,
+/obj/item/device/healthanalyzer,
+/turf/open/floor/plasteel/whiteblue/side{
+ dir = 1
+ },
+/area/medical/medbay/central)
+"bls" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/door/firedoor,
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"blt" = (
+/obj/machinery/door/firedoor,
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"blu" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/door/firedoor,
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"blv" = (
+/obj/structure/table,
+/obj/item/device/paicard,
+/obj/item/clothing/glasses/science,
+/turf/open/floor/plasteel/purple/side{
+ dir = 1
+ },
+/area/science/research/lobby)
+"blw" = (
+/obj/structure/table,
+/obj/machinery/cell_charger,
+/obj/item/weapon/stock_parts/cell/high/plus,
+/turf/open/floor/plasteel/purple/side{
+ dir = 1
+ },
+/area/science/research/lobby)
+"blx" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/machinery/portable_atmospherics/scrubber,
+/turf/open/floor/plasteel/purple/side{
+ dir = 1
+ },
+/area/science/research/lobby)
+"bly" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -26;
+ pixel_y = 28
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 8;
+ heat_capacity = 1e+006
+ },
+/area/science/research/lobby)
+"blz" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/science/research/lobby)
+"blA" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 4
+ },
+/area/science/research/lobby)
+"blB" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/chair/stool,
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 4
+ },
+/area/science/research/lobby)
+"blC" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 10
+ },
+/obj/structure/chair/stool,
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 4
+ },
+/area/science/research/lobby)
+"blD" = (
+/obj/structure/chair/stool,
+/turf/open/floor/plasteel/purple/side{
+ dir = 4
+ },
+/area/science/research/lobby)
+"blE" = (
+/obj/structure/filingcabinet/chestdrawer,
+/turf/open/floor/plasteel/black,
+/area/science/robotics/lab)
+"blF" = (
+/obj/structure/chair/office/light{
+ dir = 1
+ },
+/obj/effect/landmark/start/roboticist,
+/turf/open/floor/plasteel/green/side{
+ dir = 1
+ },
+/area/science/robotics/lab)
+"blG" = (
+/turf/open/floor/plasteel/green/side{
+ dir = 1
+ },
+/area/science/robotics/lab)
+"blH" = (
+/obj/machinery/camera{
+ c_tag = "Robotics Lab";
+ dir = 2;
+ network = list("SS13","RD")
+ },
+/obj/machinery/button/door{
+ dir = 2;
+ id = "robotics";
+ name = "Shutters Control Button";
+ pixel_x = -6;
+ pixel_y = 24;
+ req_access_txt = "29"
+ },
+/turf/open/floor/plasteel/green/side{
+ dir = 1
+ },
+/area/science/robotics/lab)
+"blI" = (
+/obj/machinery/requests_console{
+ department = "Robotics";
+ departmentType = 2;
+ name = "Robotics RC";
+ pixel_y = 30;
+ receive_ore_updates = 1
+ },
+/turf/open/floor/plasteel/green/side{
+ dir = 1
+ },
+/area/science/robotics/lab)
+"blJ" = (
+/obj/structure/disposalpipe/sortjunction{
+ dir = 2;
+ icon_state = "pipe-j2s";
+ sortType = 14
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/green/side{
+ dir = 1
+ },
+/area/science/robotics/lab)
+"blK" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "Robotics Lab APC";
+ pixel_y = 25
+ },
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/turf/open/floor/plasteel/green/side{
+ dir = 1
+ },
+/area/science/robotics/lab)
+"blL" = (
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/turf/open/floor/plasteel/black,
+/area/science/robotics/lab)
+"blM" = (
+/obj/machinery/r_n_d/server/core,
+/obj/structure/sign/poster/random{
+ pixel_x = 0;
+ pixel_y = 32
+ },
+/turf/open/floor/circuit,
+/area/science/server)
+"blN" = (
+/obj/machinery/light{
+ dir = 1;
+ light_color = "#c1caff"
+ },
+/obj/structure/sign/poster/random{
+ pixel_x = 0;
+ pixel_y = 32
+ },
+/turf/open/floor/plasteel/black,
+/area/science/server)
+"blO" = (
+/obj/machinery/r_n_d/server/robotics,
+/obj/structure/sign/poster/random{
+ pixel_x = 0;
+ pixel_y = 32
+ },
+/turf/open/floor/circuit,
+/area/science/server)
+"blP" = (
+/obj/effect/landmark/event_spawn,
+/obj/item/device/radio/beacon,
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/engine,
+/area/science/explab)
+"blQ" = (
+/obj/machinery/r_n_d/experimentor,
+/turf/open/floor/engine,
+/area/science/explab)
+"blR" = (
+/obj/effect/landmark/blobstart,
+/obj/effect/landmark/xeno_spawn,
+/turf/open/floor/engine,
+/area/science/explab)
+"blS" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/engine,
+/area/science/explab)
+"blT" = (
+/obj/machinery/atmospherics/components/unary/portables_connector/visible{
+ dir = 4
+ },
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "Testing Lab APC";
+ pixel_y = 25
+ },
+/obj/structure/cable{
+ icon_state = "0-4";
+ d2 = 4
+ },
+/turf/open/floor/engine,
+/area/science/explab)
+"blU" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 10
+ },
+/turf/open/floor/engine,
+/area/science/explab)
+"blV" = (
+/obj/structure/sign/atmosplaque{
+ desc = "A guide to the drone shell dispenser, detailing the constructive and destructive applications of modern repair drones, as well as the development of the incorruptible cyborg servants of tomorrow, available today.";
+ icon_state = "kiddieplaque";
+ name = "\improper 'Perfect Drone' sign";
+ pixel_y = 32
+ },
+/turf/open/floor/engine,
+/area/science/explab)
+"blW" = (
+/obj/machinery/door/window/eastright{
+ base_state = "left";
+ dir = 8;
+ icon_state = "left";
+ name = "Research Division Delivery";
+ req_access_txt = "47"
+ },
+/obj/machinery/navbeacon{
+ codes_txt = "delivery;dir=2";
+ dir = 8;
+ freq = 1400;
+ location = "Research Division"
+ },
+/obj/effect/turf_decal/delivery,
+/obj/structure/window/reinforced,
+/turf/open/floor/engine,
+/area/science/explab)
+"blX" = (
+/turf/open/floor/engine,
+/area/science/xenobiology)
+"blY" = (
+/obj/machinery/camera{
+ c_tag = "Xenobiology Test Chamber";
+ dir = 2;
+ network = list("Xeno","RD")
+ },
+/obj/machinery/atmospherics/pipe/simple/general/hidden,
+/obj/machinery/light{
+ dir = 1;
+ light_color = "#d1dfff"
+ },
+/turf/open/floor/engine,
+/area/science/xenobiology)
+"blZ" = (
+/obj/machinery/atmospherics/pipe/simple/general/hidden,
+/turf/closed/wall/r_wall,
+/area/science/xenobiology)
+"bma" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plating,
+/area/maintenance/department/cargo)
+"bmb" = (
+/obj/item/trash/candle,
+/obj/item/weapon/cautery,
+/turf/open/floor/plating,
+/area/maintenance/department/cargo)
+"bmc" = (
+/obj/structure/table,
+/obj/item/weapon/reagent_containers/food/drinks/britcup{
+ desc = "Kingston's personal cup."
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry)
+"bmd" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/open/floor/plating{
+ burnt = 1;
+ icon_state = "panelscorched"
+ },
+/area/maintenance/department/engine)
+"bme" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/plating{
+ broken = 1;
+ icon_state = "platingdmg1"
+ },
+/area/maintenance/department/engine)
+"bmf" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/engine)
+"bmg" = (
+/obj/machinery/door/airlock/maintenance{
+ req_access_txt = "12"
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating,
+/area/storage/emergency/port)
+"bmh" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/power/apc{
+ dir = 2;
+ name = "Lounge APC";
+ pixel_y = -24
+ },
+/obj/structure/cable{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/turf/open/floor/plasteel/freezer,
+/area/storage/emergency/port)
+"bmi" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel/freezer,
+/area/storage/emergency/port)
+"bmj" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/open/floor/plasteel/freezer,
+/area/storage/emergency/port)
+"bmk" = (
+/obj/structure/table,
+/obj/item/weapon/crowbar,
+/obj/item/weapon/storage/toolbox/emergency,
+/turf/open/floor/plasteel/freezer,
+/area/storage/emergency/port)
+"bml" = (
+/obj/structure/table,
+/obj/item/weapon/storage/box/gloves{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/weapon/storage/box/masks,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel/black,
+/area/medical/medbay/zone3)
+"bmm" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel/whiteblue/corner{
+ dir = 8
+ },
+/area/medical/medbay/zone3)
+"bmn" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/zone3)
+"bmo" = (
+/obj/structure/table,
+/obj/item/clothing/gloves/color/latex,
+/obj/item/device/healthanalyzer,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/whiteblue/corner,
+/area/medical/medbay/zone3)
+"bmp" = (
+/obj/structure/bodycontainer/morgue,
+/obj/effect/landmark/revenantspawn,
+/obj/machinery/light/small{
+ brightness = 3;
+ dir = 8
+ },
+/turf/open/floor/plasteel/black,
+/area/medical/morgue)
+"bmq" = (
+/turf/open/floor/plasteel/black,
+/area/medical/morgue)
+"bmr" = (
+/obj/structure/table,
+/obj/item/weapon/storage/box/bodybags,
+/obj/item/weapon/pen,
+/obj/machinery/camera{
+ c_tag = "Morgue";
+ dir = 8
+ },
+/turf/open/floor/plasteel/black,
+/area/medical/morgue)
+"bms" = (
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "Medbay Security APC";
+ pixel_x = -25
+ },
+/obj/structure/cable{
+ icon_state = "0-4";
+ d2 = 4
+ },
+/obj/machinery/camera{
+ c_tag = "Medbay Security Post";
+ dir = 4;
+ network = list("SS13")
+ },
+/obj/structure/closet/wardrobe/red,
+/turf/open/floor/plasteel/red/side{
+ dir = 10
+ },
+/area/security/checkpoint/medical)
+"bmt" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 6
+ },
+/turf/open/floor/plasteel/red/side,
+/area/security/checkpoint/medical)
+"bmu" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/open/floor/plasteel/red/side,
+/area/security/checkpoint/medical)
+"bmv" = (
+/obj/structure/table,
+/obj/item/weapon/book/manual/wiki/security_space_law,
+/turf/open/floor/plasteel/red/side{
+ dir = 6
+ },
+/area/security/checkpoint/medical)
+"bmw" = (
+/obj/item/weapon/twohanded/required/kirbyplants{
+ icon_state = "plant-05";
+ layer = 4.1
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/central)
+"bmx" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/central)
+"bmy" = (
+/obj/machinery/holopad,
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/central)
+"bmz" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/central)
+"bmA" = (
+/obj/machinery/door/firedoor,
+/turf/open/floor/plasteel/white/side{
+ dir = 8
+ },
+/area/medical/medbay/central)
+"bmB" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"bmC" = (
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"bmD" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"bmE" = (
+/obj/machinery/door/firedoor,
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 4
+ },
+/area/science/research/lobby)
+"bmF" = (
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 4
+ },
+/area/science/research/lobby)
+"bmG" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel,
+/area/science/research/lobby)
+"bmH" = (
+/obj/machinery/holopad,
+/turf/open/floor/plasteel,
+/area/science/research/lobby)
+"bmI" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 5
+ },
+/turf/open/floor/plasteel,
+/area/science/research/lobby)
+"bmJ" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/science/research/lobby)
+"bmK" = (
+/turf/open/floor/plasteel/purple/side{
+ dir = 4
+ },
+/area/science/research/lobby)
+"bmL" = (
+/obj/structure/rack{
+ dir = 8;
+ layer = 2.9
+ },
+/obj/item/weapon/storage/toolbox/electrical{
+ pixel_x = 1;
+ pixel_y = 6
+ },
+/obj/item/weapon/storage/toolbox/mechanical{
+ pixel_x = -2;
+ pixel_y = -1
+ },
+/obj/item/clothing/head/welding{
+ pixel_x = -3;
+ pixel_y = 5
+ },
+/obj/item/clothing/glasses/welding,
+/turf/open/floor/plasteel/black,
+/area/science/robotics/lab)
+"bmM" = (
+/turf/open/floor/plasteel,
+/area/science/robotics/lab)
+"bmN" = (
+/obj/effect/turf_decal/stripes/corner,
+/turf/open/floor/plasteel,
+/area/science/robotics/lab)
+"bmO" = (
+/obj/machinery/mecha_part_fabricator,
+/turf/open/floor/plasteel,
+/area/science/robotics/lab)
+"bmP" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 5
+ },
+/obj/effect/turf_decal/stripes/corner{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/science/robotics/lab)
+"bmQ" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/science/robotics/lab)
+"bmR" = (
+/obj/structure/table,
+/obj/item/stack/sheet/glass{
+ amount = 20;
+ pixel_x = 3;
+ pixel_y = -4
+ },
+/obj/item/stack/sheet/metal{
+ amount = 50
+ },
+/obj/item/stack/sheet/metal{
+ amount = 50
+ },
+/obj/item/stack/sheet/metal{
+ amount = 50
+ },
+/obj/item/stack/sheet/metal{
+ amount = 50
+ },
+/obj/item/stack/sheet/metal{
+ amount = 50
+ },
+/obj/item/stack/sheet/metal{
+ amount = 50
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 27
+ },
+/turf/open/floor/plasteel/black,
+/area/science/robotics/lab)
+"bmS" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 4;
+ external_pressure_bound = 140;
+ name = "server vent";
+ pressure_checks = 0
+ },
+/turf/open/floor/circuit,
+/area/science/server)
+"bmT" = (
+/obj/machinery/atmospherics/pipe/manifold/general/visible{
+ dir = 1
+ },
+/turf/open/floor/plasteel/black,
+/area/science/server)
+"bmU" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 8;
+ external_pressure_bound = 140;
+ name = "server vent";
+ pressure_checks = 0
+ },
+/turf/open/floor/circuit,
+/area/science/server)
+"bmV" = (
+/obj/machinery/atmospherics/components/unary/outlet_injector{
+ on = 1
+ },
+/turf/open/floor/engine,
+/area/science/explab)
+"bmW" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on,
+/turf/open/floor/engine,
+/area/science/explab)
+"bmX" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 6
+ },
+/turf/open/floor/engine,
+/area/science/explab)
+"bmY" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 9
+ },
+/turf/open/floor/engine,
+/area/science/explab)
+"bmZ" = (
+/obj/machinery/atmospherics/components/unary/portables_connector/visible{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/machinery/airalarm{
+ dir = 4;
+ pixel_x = -23
+ },
+/turf/open/floor/engine,
+/area/science/explab)
+"bna" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/landmark/start/scientist,
+/obj/machinery/atmospherics/components/trinary/filter,
+/turf/open/floor/engine{
+ name = "Holodeck Projector Floor"
+ },
+/area/science/explab)
+"bnb" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 6
+ },
+/turf/open/floor/engine,
+/area/science/explab)
+"bnc" = (
+/obj/machinery/atmospherics/components/unary/thermomachine/heater{
+ dir = 8
+ },
+/turf/open/floor/engine,
+/area/science/explab)
+"bnd" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/science/xenobiology)
+"bne" = (
+/obj/machinery/light/small{
+ brightness = 3;
+ dir = 8;
+ light_color = "#d1ffee"
+ },
+/turf/open/floor/engine,
+/area/science/xenobiology)
+"bnf" = (
+/obj/machinery/atmospherics/components/unary/outlet_injector/on{
+ dir = 1;
+ frequency = 1441;
+ id = "air_in"
+ },
+/turf/open/floor/engine,
+/area/science/xenobiology)
+"bng" = (
+/obj/machinery/light/small{
+ dir = 4;
+ light_color = "#d1ffee"
+ },
+/turf/open/floor/engine,
+/area/science/xenobiology)
+"bnh" = (
+/obj/machinery/light{
+ dir = 1;
+ light_color = "#d1dfff"
+ },
+/turf/open/floor/engine,
+/area/science/xenobiology)
+"bni" = (
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/engine,
+/area/science/xenobiology)
+"bnj" = (
+/turf/closed/wall,
+/area/science/xenobiology)
+"bnk" = (
+/obj/effect/decal/cleanable/ash,
+/obj/effect/landmark/revenantspawn,
+/turf/open/floor/plating,
+/area/maintenance/department/cargo)
+"bnl" = (
+/obj/machinery/atmospherics/components/unary/portables_connector/visible{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/cargo)
+"bnm" = (
+/obj/effect/spawner/lootdrop/maintenance,
+/obj/machinery/atmospherics/pipe/manifold/general/hidden{
+ dir = 1
+ },
+/turf/open/floor/plating{
+ broken = 1;
+ icon_state = "platingdmg1"
+ },
+/area/maintenance/department/cargo)
+"bnn" = (
+/obj/machinery/atmospherics/components/unary/thermomachine/freezer{
+ dir = 8
+ },
+/turf/open/floor/plating{
+ broken = 1;
+ icon_state = "platingdmg1"
+ },
+/area/maintenance/department/cargo)
+"bno" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry)
+"bnp" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry)
+"bnq" = (
+/obj/item/device/radio/beacon,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry)
+"bnr" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry)
+"bns" = (
+/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/neutral/corner,
+/area/hallway/secondary/entry)
+"bnt" = (
+/obj/structure/chair/comfy{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry)
+"bnu" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating{
+ broken = 1;
+ icon_state = "platingdmg1"
+ },
+/area/maintenance/department/engine)
+"bnv" = (
+/turf/closed/wall,
+/area/medical/genetics)
+"bnw" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass_medical{
+ id_tag = null;
+ name = "Cloning";
+ req_access_txt = "0";
+ req_one_access_txt = "5;9"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/freezer,
+/area/storage/emergency/port)
+"bnx" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/airalarm{
+ dir = 4;
+ pixel_x = -22
+ },
+/obj/machinery/camera{
+ c_tag = "Medbay Port Entrance";
+ dir = 4;
+ network = list("SS13")
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/plasteel/whiteblue/corner{
+ dir = 8
+ },
+/area/medical/medbay/zone3)
+"bny" = (
+/obj/structure/table,
+/obj/item/weapon/storage/firstaid/regular,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = 28;
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/whiteblue/corner,
+/area/medical/medbay/zone3)
+"bnz" = (
+/obj/structure/table,
+/obj/item/weapon/folder/white,
+/obj/item/clothing/gloves/color/latex,
+/obj/item/weapon/storage/fancy/candle_box,
+/turf/open/floor/plasteel/black,
+/area/medical/morgue)
+"bnA" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/security/checkpoint/medical)
+"bnB" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass_security{
+ name = "Medbay Security Post";
+ req_access_txt = "63"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/red,
+/area/security/checkpoint/medical)
+"bnC" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/reagent_containers/food/drinks/britcup{
+ desc = "Kingston's personal cup."
+ },
+/turf/open/floor/plasteel/whiteblue/side,
+/area/medical/medbay/central)
+"bnD" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/paper_bin{
+ pixel_x = 1
+ },
+/turf/open/floor/plasteel/whiteblue/corner{
+ dir = 8
+ },
+/area/medical/medbay/central)
+"bnE" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 6
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/central)
+"bnF" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/central)
+"bnG" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/central)
+"bnH" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/central)
+"bnI" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/science/research/lobby)
+"bnJ" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
+/turf/open/floor/plasteel,
+/area/science/research/lobby)
+"bnK" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/science/research/lobby)
+"bnL" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/science/research/lobby)
+"bnM" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 10
+ },
+/turf/open/floor/plasteel,
+/area/science/research/lobby)
+"bnN" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel,
+/area/science/research/lobby)
+"bnO" = (
+/obj/machinery/r_n_d/circuit_imprinter,
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/plasteel/black,
+/area/science/robotics/lab)
+"bnP" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/science/robotics/lab)
+"bnQ" = (
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/science/robotics/lab)
+"bnR" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/science/robotics/lab)
+"bnS" = (
+/obj/structure/table,
+/obj/item/stack/sheet/plasteel{
+ amount = 10
+ },
+/obj/item/device/assembly/flash/handheld,
+/obj/item/device/assembly/flash/handheld,
+/obj/item/device/assembly/flash/handheld,
+/obj/item/device/assembly/flash/handheld,
+/obj/item/device/assembly/flash/handheld,
+/obj/item/device/assembly/flash/handheld,
+/obj/item/device/assembly/flash/handheld,
+/obj/machinery/airalarm{
+ dir = 8;
+ pixel_x = 23
+ },
+/turf/open/floor/plasteel/black,
+/area/science/robotics/lab)
+"bnT" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plasteel/black,
+/area/science/server)
+"bnU" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass_command{
+ name = "Server Room";
+ req_access_txt = "30"
+ },
+/obj/machinery/atmospherics/pipe/simple/general/visible,
+/turf/open/floor/plasteel/black,
+/area/science/server)
+"bnV" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/door/poddoor/preopen{
+ id = "testlab";
+ name = "test chamber blast door"
+ },
+/obj/machinery/atmospherics/pipe/simple/general/hidden,
+/turf/open/floor/engine,
+/area/science/explab)
+"bnW" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/door/poddoor/preopen{
+ id = "testlab";
+ name = "test chamber blast door"
+ },
+/turf/open/floor/engine,
+/area/science/explab)
+"bnX" = (
+/obj/machinery/door/poddoor/preopen{
+ id = "telelab";
+ name = "test chamber blast door"
+ },
+/obj/machinery/door/firedoor/heavy,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/engine,
+/area/science/explab)
+"bnY" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/door/poddoor/preopen{
+ id = "testlab";
+ name = "test chamber blast door"
+ },
+/turf/open/floor/engine,
+/area/science/explab)
+"bnZ" = (
+/obj/machinery/atmospherics/components/unary/portables_connector/visible{
+ dir = 4
+ },
+/turf/open/floor/engine,
+/area/science/explab)
+"boa" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/general/visible,
+/turf/open/floor/engine,
+/area/science/explab)
+"bob" = (
+/obj/machinery/atmospherics/pipe/manifold/general/visible,
+/obj/item/weapon/wrench,
+/turf/open/floor/engine,
+/area/science/explab)
+"boc" = (
+/obj/machinery/atmospherics/components/unary/thermomachine/freezer{
+ dir = 8
+ },
+/turf/open/floor/engine,
+/area/science/explab)
+"bod" = (
+/turf/closed/wall,
+/area/science/explab)
+"boe" = (
+/obj/structure/table,
+/obj/machinery/reagentgrinder,
+/obj/item/device/radio/intercom{
+ dir = 0;
+ name = "Station Intercom (General)";
+ pixel_x = -28;
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/whitepurple/side{
+ dir = 1
+ },
+/area/science/xenobiology)
+"bof" = (
+/obj/structure/table,
+/obj/item/weapon/storage/box/beakers{
+ pixel_x = 2;
+ pixel_y = 2
+ },
+/obj/item/weapon/storage/box/syringes,
+/turf/open/floor/plasteel/whitepurple/side{
+ dir = 1
+ },
+/area/science/xenobiology)
+"bog" = (
+/obj/structure/table,
+/obj/item/stack/sheet/mineral/plasma,
+/obj/item/stack/sheet/mineral/plasma,
+/obj/item/stack/sheet/mineral/plasma,
+/turf/open/floor/plasteel/whitepurple/side{
+ dir = 1
+ },
+/area/science/xenobiology)
+"boh" = (
+/obj/structure/table,
+/obj/item/weapon/pen,
+/obj/item/clothing/glasses/science,
+/obj/item/clothing/glasses/science,
+/obj/item/weapon/paper_bin{
+ layer = 2.9
+ },
+/turf/open/floor/plasteel/whitepurple/side{
+ dir = 1
+ },
+/area/science/xenobiology)
+"boi" = (
+/obj/effect/landmark/revenantspawn,
+/turf/open/floor/engine,
+/area/science/xenobiology)
+"boj" = (
+/obj/item/weapon/weldingtool,
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/plating,
+/area/maintenance/department/cargo)
+"bok" = (
+/obj/machinery/atmospherics/components/unary/portables_connector/visible{
+ dir = 4
+ },
+/turf/open/floor/plating{
+ icon_state = "platingdmg3"
+ },
+/area/maintenance/department/cargo)
+"bol" = (
+/obj/machinery/atmospherics/pipe/manifold/general/hidden,
+/turf/open/floor/plating{
+ icon_state = "panelscorched"
+ },
+/area/maintenance/department/cargo)
+"bom" = (
+/obj/machinery/atmospherics/components/unary/thermomachine/heater{
+ dir = 8
+ },
+/turf/open/floor/plating{
+ icon_state = "panelscorched"
+ },
+/area/maintenance/department/cargo)
+"bon" = (
+/turf/open/floor/plasteel/arrival,
+/area/hallway/secondary/entry)
+"boo" = (
+/obj/machinery/camera{
+ c_tag = "Arrivals Port Aft";
+ dir = 1
+ },
+/turf/open/floor/plasteel/arrival,
+/area/hallway/secondary/entry)
+"bop" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry)
+"boq" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/engine)
+"bor" = (
+/obj/structure/flora/grass/jungle,
+/obj/structure/flora/ausbushes/brflowers,
+/obj/structure/flora/ausbushes/ywflowers,
+/turf/open/floor/grass,
+/area/medical/genetics)
+"bos" = (
+/obj/structure/flora/junglebush/large,
+/turf/open/floor/grass,
+/area/medical/genetics)
+"bot" = (
+/obj/structure/flora/junglebush,
+/obj/structure/flora/ausbushes/brflowers,
+/turf/open/floor/grass,
+/area/medical/genetics)
+"bou" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/medical/genetics)
+"bov" = (
+/obj/structure/closet/secure_closet/personal/patient,
+/turf/open/floor/plasteel/whiteblue/side{
+ dir = 1
+ },
+/area/medical/genetics)
+"bow" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/open/floor/plasteel/whiteblue/side{
+ dir = 1
+ },
+/area/medical/genetics)
+"box" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/whiteblue/side{
+ dir = 1
+ },
+/area/medical/genetics)
+"boy" = (
+/obj/structure/closet/wardrobe/mixed,
+/turf/open/floor/plasteel/whiteblue/side{
+ dir = 1
+ },
+/area/medical/genetics)
+"boz" = (
+/obj/machinery/vending/clothing,
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = 27
+ },
+/turf/open/floor/plasteel/whiteblue/side{
+ dir = 1
+ },
+/area/medical/genetics)
+"boA" = (
+/obj/structure/sign/poster/official/random{
+ pixel_x = -32
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/whiteblue/corner{
+ dir = 8
+ },
+/area/medical/medbay/zone3)
+"boB" = (
+/obj/structure/bed/roller,
+/obj/machinery/iv_drip{
+ density = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/whiteblue/corner,
+/area/medical/medbay/zone3)
+"boC" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on,
+/turf/open/floor/plasteel/black,
+/area/medical/morgue)
+"boD" = (
+/obj/item/weapon/ectoplasm,
+/turf/open/floor/plasteel/black,
+/area/medical/morgue)
+"boE" = (
+/obj/structure/sign/poster/official/random{
+ pixel_x = -32
+ },
+/turf/open/floor/plasteel/whiteblue/side{
+ dir = 9
+ },
+/area/medical/medbay/central)
+"boF" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 5
+ },
+/turf/open/floor/plasteel/whiteblue/side{
+ dir = 1
+ },
+/area/medical/medbay/central)
+"boG" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 10
+ },
+/turf/open/floor/plasteel/whiteblue/side{
+ dir = 5
+ },
+/area/medical/medbay/central)
+"boH" = (
+/obj/machinery/requests_console{
+ announcementConsole = 0;
+ department = "Medbay";
+ departmentType = 1;
+ name = "Medbay RC";
+ pixel_x = -32
+ },
+/obj/item/device/radio/intercom{
+ broadcasting = 0;
+ freerange = 0;
+ frequency = 1485;
+ listening = 1;
+ name = "Station Intercom (Medbay)";
+ pixel_y = 26
+ },
+/turf/open/floor/plasteel/whiteblue/side{
+ dir = 1
+ },
+/area/medical/medbay/central)
+"boI" = (
+/obj/structure/chair/office/light{
+ dir = 4
+ },
+/obj/effect/landmark/start/medical_doctor,
+/turf/open/floor/plasteel/whiteblue/side{
+ dir = 5
+ },
+/area/medical/medbay/central)
+"boJ" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/folder/white,
+/obj/item/weapon/pen,
+/turf/open/floor/plasteel/whiteblue/side{
+ dir = 8
+ },
+/area/medical/medbay/central)
+"boK" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/central)
+"boL" = (
+/obj/structure/bed/roller,
+/turf/open/floor/plasteel/whiteblue/side,
+/area/medical/medbay/central)
+"boM" = (
+/obj/structure/bed/roller,
+/obj/machinery/camera{
+ c_tag = "Medbay Entrance";
+ dir = 1
+ },
+/turf/open/floor/plasteel/whiteblue/side,
+/area/medical/medbay/central)
+"boN" = (
+/turf/open/floor/plasteel/whiteblue/side,
+/area/medical/medbay/central)
+"boO" = (
+/obj/structure/table/glass,
+/obj/item/stack/medical/gauze,
+/obj/item/weapon/reagent_containers/glass/bottle/epinephrine,
+/turf/open/floor/plasteel/whiteblue/side,
+/area/medical/medbay/central)
+"boP" = (
+/obj/structure/closet/emcloset,
+/turf/open/floor/plasteel/purple/side,
+/area/science/research/lobby)
+"boQ" = (
+/obj/structure/closet/firecloset/full,
+/turf/open/floor/plasteel/purple/side,
+/area/science/research/lobby)
+"boR" = (
+/obj/structure/table,
+/obj/item/weapon/paper_bin{
+ layer = 2.9;
+ pixel_x = -2;
+ pixel_y = 4
+ },
+/obj/item/weapon/pen,
+/turf/open/floor/plasteel/purple/side,
+/area/science/research/lobby)
+"boS" = (
+/obj/structure/chair,
+/turf/open/floor/plasteel/purple/side,
+/area/science/research/lobby)
+"boT" = (
+/obj/item/weapon/twohanded/required/kirbyplants{
+ icon_state = "plant-17"
+ },
+/turf/open/floor/plasteel/purple/side,
+/area/science/research/lobby)
+"boU" = (
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_x = -2;
+ pixel_y = -27
+ },
+/obj/machinery/camera{
+ c_tag = "Research Division Lobby";
+ dir = 1
+ },
+/obj/machinery/light,
+/turf/open/floor/plasteel/purple/side,
+/area/science/research/lobby)
+"boV" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/purple/corner{
+ dir = 8
+ },
+/area/science/research/lobby)
+"boW" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel,
+/area/science/research/lobby)
+"boX" = (
+/obj/machinery/computer/rdconsole/robotics,
+/turf/open/floor/plasteel/black,
+/area/science/robotics/lab)
+"boY" = (
+/obj/effect/landmark/start/roboticist,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/science/robotics/lab)
+"boZ" = (
+/obj/structure/table,
+/obj/machinery/cell_charger,
+/obj/item/weapon/stock_parts/cell/high/plus,
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 28
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/plasteel/black,
+/area/science/robotics/lab)
+"bpa" = (
+/obj/machinery/atmospherics/components/unary/thermomachine/freezer{
+ dir = 4;
+ on = 1;
+ target_temperature = 80
+ },
+/obj/machinery/airalarm{
+ dir = 4;
+ pixel_x = -23
+ },
+/turf/open/floor/plasteel/black,
+/area/science/server)
+"bpb" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 9
+ },
+/turf/open/floor/plasteel/black,
+/area/science/server)
+"bpc" = (
+/obj/machinery/computer/rdservercontrol,
+/obj/effect/decal/cleanable/cobweb/cobweb2,
+/obj/machinery/camera{
+ c_tag = "Server Room";
+ dir = 2;
+ network = list("SS13","RD");
+ pixel_x = 22
+ },
+/turf/open/floor/plasteel/black,
+/area/science/server)
+"bpd" = (
+/obj/machinery/button/door{
+ id = "testlab";
+ name = "Window Blast Doors";
+ pixel_x = -6
+ },
+/obj/structure/table/reinforced,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/button/door{
+ id = "telelab";
+ name = "Test Chamber Blast Door";
+ pixel_x = 6
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/science/explab)
+"bpe" = (
+/obj/machinery/computer/rdconsole/experiment,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/white,
+/area/science/explab)
+"bpf" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/white,
+/area/science/explab)
+"bpg" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/folder,
+/obj/item/weapon/book/manual/experimentor,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/science/explab)
+"bph" = (
+/obj/machinery/disposal/bin,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/obj/machinery/requests_console{
+ department = "Science";
+ departmentType = 2;
+ dir = 2;
+ name = "Science Requests Console";
+ pixel_y = 30;
+ receive_ore_updates = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/science/explab)
+"bpi" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/science/explab)
+"bpj" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/plasteel/white,
+/area/science/explab)
+"bpk" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/science/explab)
+"bpl" = (
+/obj/structure/rack,
+/obj/item/stack/packageWrap,
+/obj/item/stack/cable_coil,
+/obj/item/weapon/wirecutters,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/science/explab)
+"bpm" = (
+/obj/machinery/monkey_recycler,
+/obj/machinery/airalarm{
+ dir = 4;
+ pixel_x = -23
+ },
+/turf/open/floor/plasteel/white,
+/area/science/xenobiology)
+"bpn" = (
+/turf/open/floor/plasteel/white,
+/area/science/xenobiology)
+"bpo" = (
+/obj/effect/landmark/start/scientist,
+/obj/structure/chair/office/light{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/science/xenobiology)
+"bpp" = (
+/obj/machinery/computer/camera_advanced/xenobio,
+/turf/open/floor/plasteel/white,
+/area/science/xenobiology)
+"bpq" = (
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'HIGH VOLTAGE'";
+ icon_state = "shock";
+ name = "HIGH VOLTAGE"
+ },
+/turf/closed/wall/r_wall,
+/area/science/xenobiology)
+"bpr" = (
+/obj/structure/disposaloutlet{
+ dir = 1
+ },
+/obj/structure/disposalpipe/trunk,
+/turf/open/floor/engine,
+/area/science/xenobiology)
+"bps" = (
+/obj/machinery/space_heater,
+/turf/open/floor/plating{
+ icon_state = "platingdmg3"
+ },
+/area/maintenance/department/cargo)
+"bpt" = (
+/obj/structure/table,
+/obj/item/weapon/folder,
+/obj/item/weapon/pen,
+/obj/machinery/light/small,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry)
+"bpu" = (
+/obj/effect/spawner/lootdrop/maintenance,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/engine)
+"bpv" = (
+/obj/structure/flora/junglebush,
+/obj/structure/flora/ausbushes/sparsegrass,
+/turf/open/floor/grass,
+/area/medical/genetics)
+"bpw" = (
+/obj/structure/flora/grass/jungle,
+/obj/item/weapon/reagent_containers/food/snacks/grown/banana,
+/turf/open/floor/grass,
+/area/medical/genetics)
+"bpx" = (
+/obj/structure/flora/ausbushes/lavendergrass,
+/obj/structure/flora/ausbushes/sparsegrass,
+/obj/structure/flora/ausbushes/fullgrass,
+/obj/structure/flora/ausbushes/grassybush,
+/obj/structure/flora/ausbushes/ppflowers,
+/obj/structure/flora/ausbushes/pointybush,
+/obj/structure/flora/junglebush,
+/obj/structure/flora/junglebush/large,
+/turf/open/floor/grass,
+/area/medical/genetics)
+"bpy" = (
+/obj/machinery/clonepod,
+/obj/item/device/radio/intercom{
+ broadcasting = 0;
+ freerange = 0;
+ frequency = 1485;
+ listening = 1;
+ name = "Station Intercom (Medbay)";
+ pixel_x = -30;
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/blue,
+/area/medical/genetics)
+"bpz" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/genetics)
+"bpA" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/genetics)
+"bpB" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/genetics)
+"bpC" = (
+/obj/structure/grille,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/window/fulltile,
+/turf/open/floor/plating,
+/area/medical/genetics)
+"bpD" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/whiteblue/corner{
+ dir = 8
+ },
+/area/medical/medbay/zone3)
+"bpE" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/zone3)
+"bpF" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
+/turf/open/floor/plasteel/whiteblue/side{
+ dir = 4
+ },
+/area/medical/medbay/zone3)
+"bpG" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/centcom{
+ name = "Morgue";
+ opacity = 1;
+ req_access_txt = "6;5"
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/black,
+/area/medical/morgue)
+"bpH" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/black,
+/area/medical/morgue)
+"bpI" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
+/turf/open/floor/plasteel/black,
+/area/medical/morgue)
+"bpJ" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/light{
+ dir = 2;
+ light_color = "#e8eaff"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/black,
+/area/medical/morgue)
+"bpK" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/black,
+/area/medical/morgue)
+"bpL" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/black,
+/area/medical/morgue)
+"bpM" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/centcom{
+ name = "Morgue";
+ opacity = 1;
+ req_access_txt = "6;5"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/black,
+/area/medical/morgue)
+"bpN" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/open/floor/plasteel/whiteblue/side{
+ dir = 8
+ },
+/area/medical/medbay/central)
+"bpO" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/central)
+"bpP" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/whiteblue/side{
+ dir = 4
+ },
+/area/medical/medbay/central)
+"bpQ" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/medical{
+ name = "Medbay Reception";
+ req_access_txt = "5"
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/central)
+"bpR" = (
+/obj/structure/chair/office/light{
+ dir = 4
+ },
+/turf/open/floor/plasteel/whiteblue/side{
+ dir = 4
+ },
+/area/medical/medbay/central)
+"bpS" = (
+/obj/structure/table/reinforced,
+/turf/open/floor/plasteel/whiteblue/side{
+ dir = 8
+ },
+/area/medical/medbay/central)
+"bpT" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/whiteblue/corner{
+ dir = 8
+ },
+/area/medical/medbay/central)
+"bpU" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/whiteblue/corner,
+/area/medical/medbay/central)
+"bpV" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "chemistry_shutters";
+ name = "chemistry shutters"
+ },
+/turf/open/floor/plating,
+/area/medical/chemistry)
+"bpW" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/window/northleft{
+ dir = 2;
+ name = "Chemistry Desk";
+ req_access_txt = "5; 33"
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "chemistry_shutters";
+ name = "chemistry shutters"
+ },
+/obj/item/weapon/folder/white,
+/obj/item/weapon/pen,
+/turf/open/floor/plasteel/whiteyellow{
+ dir = 4
+ },
+/area/medical/chemistry)
+"bpX" = (
+/obj/machinery/smartfridge/chemistry/preloaded,
+/turf/open/floor/plasteel/black,
+/area/medical/chemistry)
+"bpY" = (
+/turf/closed/wall,
+/area/medical/chemistry)
+"bpZ" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -24
+ },
+/turf/open/floor/plasteel/yellow/corner{
+ dir = 1
+ },
+/area/hallway/primary/aft)
+"bqa" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/sign/directions/engineering{
+ pixel_x = 32;
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/yellow/corner{
+ icon_state = "yellowcorner";
+ dir = 4
+ },
+/area/hallway/primary/aft)
+"bqb" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "research_shutters_2";
+ name = "research shutters"
+ },
+/turf/open/floor/plating,
+/area/science/explab)
+"bqc" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/pen{
+ layer = 3.1
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/window/eastright{
+ dir = 2;
+ name = "Research and Development Desk";
+ req_access_txt = "7"
+ },
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "research_shutters_2";
+ name = "research shutters"
+ },
+/obj/item/weapon/folder/white,
+/turf/open/floor/plating,
+/area/science/explab)
+"bqd" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/door/airlock/glass{
+ name = "Research Division"
+ },
+/turf/open/floor/plasteel/purple/side{
+ dir = 8
+ },
+/area/science/research/lobby)
+"bqe" = (
+/obj/machinery/door/firedoor,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/door/airlock/glass{
+ name = "Research Division"
+ },
+/turf/open/floor/plasteel,
+/area/science/research/lobby)
+"bqf" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass{
+ name = "Research Division"
+ },
+/turf/open/floor/plasteel/purple/side{
+ dir = 4
+ },
+/area/science/research/lobby)
+"bqg" = (
+/obj/structure/table,
+/obj/item/weapon/book/manual/robotics_cyborgs{
+ pixel_x = 2;
+ pixel_y = 5
+ },
+/obj/item/weapon/storage/belt/utility,
+/obj/item/weapon/reagent_containers/glass/beaker/large,
+/obj/item/device/radio/intercom{
+ dir = 0;
+ name = "Station Intercom (General)";
+ pixel_x = -27
+ },
+/turf/open/floor/plasteel/black,
+/area/science/robotics/lab)
+"bqh" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/open/floor/plasteel,
+/area/science/robotics/lab)
+"bqi" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel,
+/area/science/robotics/lab)
+"bqj" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/open/floor/plasteel,
+/area/science/robotics/lab)
+"bqk" = (
+/obj/structure/sink{
+ dir = 4;
+ pixel_x = 11
+ },
+/obj/effect/decal/cleanable/oil{
+ icon_state = "floor6"
+ },
+/turf/open/floor/plasteel/black,
+/area/science/robotics/lab)
+"bql" = (
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "Server Room APC";
+ pixel_x = -25
+ },
+/obj/structure/cable{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/turf/open/floor/plasteel/black,
+/area/science/server)
+"bqm" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
+/turf/open/floor/plasteel/black,
+/area/science/server)
+"bqn" = (
+/obj/structure/table,
+/obj/item/weapon/folder/white,
+/obj/item/weapon/pen,
+/turf/open/floor/plasteel/black,
+/area/science/server)
+"bqo" = (
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 1
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -24
+ },
+/turf/open/floor/plasteel/white,
+/area/science/explab)
+"bqp" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 8
+ },
+/obj/structure/chair/stool,
+/turf/open/floor/plasteel/white,
+/area/science/explab)
+"bqq" = (
+/obj/effect/landmark/start/scientist,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/white,
+/area/science/explab)
+"bqr" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/open/floor/plasteel/white,
+/area/science/explab)
+"bqs" = (
+/turf/open/floor/plasteel/white,
+/area/science/explab)
+"bqt" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
+/turf/open/floor/plasteel/white,
+/area/science/explab)
+"bqu" = (
+/obj/structure/table,
+/obj/item/stack/sheet/glass{
+ amount = 50;
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/stack/sheet/metal{
+ amount = 50
+ },
+/obj/item/device/assembly/timer,
+/obj/item/device/assembly/timer,
+/turf/open/floor/plasteel/white,
+/area/science/explab)
+"bqv" = (
+/obj/machinery/processor{
+ desc = "A machine used to process slimes and retrieve their extract.";
+ name = "Slime Processor"
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/structure/sign/poster/official/random{
+ pixel_x = -32
+ },
+/turf/open/floor/plasteel/white,
+/area/science/xenobiology)
+"bqw" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on,
+/turf/open/floor/plasteel/white,
+/area/science/xenobiology)
+"bqx" = (
+/obj/machinery/smartfridge/extract/preloaded,
+/turf/open/floor/plasteel/white,
+/area/science/xenobiology)
+"bqy" = (
+/obj/structure/cable{
+ icon_state = "0-4";
+ d2 = 4
+ },
+/obj/machinery/shieldwallgen/xenobiologyaccess,
+/turf/open/floor/plating,
+/area/science/xenobiology)
+"bqz" = (
+/obj/structure/grille,
+/obj/structure/cable{
+ icon_state = "0-4";
+ d2 = 4
+ },
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/machinery/door/poddoor/preopen{
+ id = "misclab";
+ name = "test chamber blast door"
+ },
+/turf/open/floor/engine,
+/area/science/xenobiology)
+"bqA" = (
+/obj/structure/grille,
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/structure/cable{
+ icon_state = "0-4";
+ d2 = 4
+ },
+/obj/machinery/door/poddoor/preopen{
+ id = "misclab";
+ name = "test chamber blast door"
+ },
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/engine,
+/area/science/xenobiology)
+"bqB" = (
+/obj/machinery/door/window/southleft{
+ dir = 1;
+ name = "Test Chamber";
+ req_access_txt = "55"
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/poddoor/preopen{
+ id = "misclab";
+ name = "test chamber blast door"
+ },
+/turf/open/floor/engine,
+/area/science/xenobiology)
+"bqC" = (
+/obj/structure/grille,
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/structure/cable{
+ icon_state = "0-4";
+ d2 = 4
+ },
+/obj/machinery/door/poddoor/preopen{
+ id = "misclab";
+ name = "test chamber blast door"
+ },
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/engine,
+/area/science/xenobiology)
+"bqD" = (
+/obj/structure/grille,
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/machinery/door/poddoor/preopen{
+ id = "misclab";
+ name = "test chamber blast door"
+ },
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable{
+ icon_state = "0-4";
+ d2 = 4
+ },
+/turf/open/floor/engine,
+/area/science/xenobiology)
+"bqE" = (
+/obj/structure/cable{
+ icon_state = "0-2";
+ pixel_y = 1;
+ d2 = 2
+ },
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/machinery/shieldwallgen/xenobiologyaccess,
+/turf/open/floor/plating,
+/area/science/xenobiology)
+"bqF" = (
+/obj/machinery/atmospherics/pipe/simple/general/hidden,
+/turf/closed/wall,
+/area/science/xenobiology)
+"bqG" = (
+/obj/machinery/door/poddoor/preopen{
+ id = "xenobio5";
+ name = "containment blast door"
+ },
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable{
+ icon_state = "0-4";
+ d2 = 4
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/engine,
+/area/science/xenobiology)
+"bqH" = (
+/obj/machinery/door/window/northleft{
+ base_state = "right";
+ dir = 1;
+ icon_state = "right";
+ name = "Containment Pen #5";
+ req_access_txt = "55"
+ },
+/obj/machinery/door/poddoor/preopen{
+ id = "xenobio5";
+ name = "containment blast door"
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/engine,
+/area/science/xenobiology)
+"bqI" = (
+/obj/machinery/door/poddoor/preopen{
+ id = "xenobio5";
+ name = "containment blast door"
+ },
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable{
+ icon_state = "0-2";
+ pixel_y = 1;
+ d2 = 2
+ },
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/turf/open/floor/engine,
+/area/science/xenobiology)
+"bqJ" = (
+/obj/machinery/door/poddoor/preopen{
+ id = "xenobio6";
+ name = "containment blast door"
+ },
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable{
+ icon_state = "0-4";
+ d2 = 4
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/engine,
+/area/science/xenobiology)
+"bqK" = (
+/obj/machinery/door/window/northleft{
+ base_state = "right";
+ dir = 1;
+ icon_state = "right";
+ name = "Containment Pen #6";
+ req_access_txt = "55"
+ },
+/obj/machinery/door/poddoor/preopen{
+ id = "xenobio6";
+ name = "containment blast door"
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/engine,
+/area/science/xenobiology)
+"bqL" = (
+/obj/machinery/door/poddoor/preopen{
+ id = "xenobio6";
+ name = "containment blast door"
+ },
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable{
+ icon_state = "0-2";
+ pixel_y = 1;
+ d2 = 2
+ },
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/turf/open/floor/engine,
+/area/science/xenobiology)
+"bqM" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plating,
+/area/maintenance/department/cargo)
+"bqN" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/cargo)
+"bqO" = (
+/obj/structure/chair{
+ dir = 4
+ },
+/obj/item/weapon/cigbutt,
+/turf/open/floor/plating,
+/area/maintenance/department/cargo)
+"bqP" = (
+/turf/closed/wall/mineral/titanium,
+/area/shuttle/transport)
+"bqQ" = (
+/obj/structure/grille,
+/obj/structure/window/shuttle,
+/turf/open/floor/plating,
+/area/shuttle/transport)
+"bqR" = (
+/obj/machinery/door/airlock/external,
+/turf/open/floor/pod/dark,
+/area/shuttle/transport)
+"bqS" = (
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "Arrivals APC";
+ pixel_x = 24
+ },
+/obj/structure/cable{
+ icon_state = "0-2";
+ pixel_y = 1;
+ d2 = 2
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plasteel/neutral/corner,
+/area/hallway/secondary/entry)
+"bqT" = (
+/obj/structure/flora/grass/jungle/b,
+/obj/structure/flora/ausbushes/ppflowers,
+/obj/item/weapon/reagent_containers/food/snacks/grown/banana,
+/obj/machinery/camera{
+ c_tag = "Genetics Monkey Pen Fore";
+ dir = 4;
+ network = list("SS13","RD")
+ },
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/open/floor/grass,
+/area/medical/genetics)
+"bqU" = (
+/obj/structure/sink/puddle,
+/obj/structure/flora/ausbushes/reedbush{
+ pixel_y = 6
+ },
+/turf/open/floor/grass,
+/area/medical/genetics)
+"bqV" = (
+/obj/structure/flora/grass/jungle/b,
+/obj/machinery/light/small{
+ dir = 4
+ },
+/mob/living/carbon/monkey,
+/turf/open/floor/grass,
+/area/medical/genetics)
+"bqW" = (
+/obj/machinery/computer/cloning,
+/turf/open/floor/plasteel/blue,
+/area/medical/genetics)
+"bqX" = (
+/obj/machinery/holopad,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/white,
+/area/medical/genetics)
+"bqY" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/sortjunction{
+ dir = 8;
+ icon_state = "pipe-j2s";
+ sortType = 23
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/genetics)
+"bqZ" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/genetics)
+"bra" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass_medical{
+ id_tag = "GeneticsDoor";
+ name = "Cloning";
+ req_access_txt = "0";
+ req_one_access_txt = "5;9"
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/genetics)
+"brb" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/whiteblue/side{
+ dir = 8
+ },
+/area/medical/medbay/zone3)
+"brc" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/zone3)
+"brd" = (
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "Medbay APC";
+ pixel_x = 24
+ },
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/turf/open/floor/plasteel/whiteblue/corner{
+ dir = 4
+ },
+/area/medical/medbay/zone3)
+"bre" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 5
+ },
+/obj/structure/cable,
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "Medbay APC";
+ pixel_x = -24
+ },
+/turf/open/floor/plasteel/whiteblue/corner{
+ dir = 1
+ },
+/area/medical/medbay/central)
+"brf" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/central)
+"brg" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 9
+ },
+/obj/structure/sign/poster/official/random{
+ pixel_x = 32
+ },
+/turf/open/floor/plasteel/whiteblue/corner{
+ dir = 4
+ },
+/area/medical/medbay/central)
+"brh" = (
+/obj/machinery/computer/med_data,
+/turf/open/floor/plasteel/whiteblue/side,
+/area/medical/medbay/central)
+"bri" = (
+/obj/machinery/computer/crew,
+/turf/open/floor/plasteel/whiteblue/side{
+ dir = 6
+ },
+/area/medical/medbay/central)
+"brj" = (
+/obj/machinery/chem_master{
+ layer = 2.7;
+ pixel_x = -2
+ },
+/turf/open/floor/plasteel/whiteyellow/side{
+ dir = 9
+ },
+/area/medical/chemistry)
+"brk" = (
+/obj/structure/chair/office/light{
+ dir = 1
+ },
+/obj/effect/landmark/start/chemist,
+/turf/open/floor/plasteel/whiteyellow/side{
+ dir = 1
+ },
+/area/medical/chemistry)
+"brl" = (
+/obj/item/weapon/reagent_containers/glass/beaker/large,
+/obj/item/weapon/reagent_containers/glass/beaker/large,
+/obj/structure/table/glass,
+/obj/item/weapon/reagent_containers/glass/beaker/large,
+/obj/item/weapon/reagent_containers/glass/beaker/large,
+/obj/item/clothing/glasses/science,
+/turf/open/floor/plasteel/whiteyellow/side{
+ dir = 1
+ },
+/area/medical/chemistry)
+"brm" = (
+/obj/machinery/chem_master{
+ layer = 2.7;
+ pixel_x = -2
+ },
+/obj/machinery/button/door{
+ id = "chemistry_shutters";
+ name = "Shutters Control";
+ pixel_x = 26;
+ pixel_y = 4;
+ req_access_txt = "5; 33"
+ },
+/turf/open/floor/plasteel/whiteyellow/side{
+ dir = 5
+ },
+/area/medical/chemistry)
+"brn" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/yellow/corner{
+ dir = 1
+ },
+/area/hallway/primary/aft)
+"bro" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/yellow/corner{
+ icon_state = "yellowcorner";
+ dir = 4
+ },
+/area/hallway/primary/aft)
+"brp" = (
+/obj/structure/table,
+/obj/item/weapon/crowbar,
+/obj/item/weapon/wrench,
+/obj/machinery/requests_console{
+ department = "Science";
+ departmentType = 2;
+ name = "Science Requests Console";
+ pixel_x = -32;
+ receive_ore_updates = 1
+ },
+/obj/item/weapon/book/manual/research_and_development,
+/turf/open/floor/plasteel/whitepurple/side{
+ dir = 1
+ },
+/area/science/explab)
+"brq" = (
+/obj/structure/sink/kitchen{
+ desc = "A sink used for washing one's hands and face. It looks rusty and home-made";
+ name = "old sink";
+ pixel_y = 28
+ },
+/turf/open/floor/plasteel/whitepurple/side{
+ dir = 1
+ },
+/area/science/explab)
+"brr" = (
+/obj/machinery/disposal/bin,
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/turf/open/floor/plasteel/whitepurple/side{
+ dir = 1
+ },
+/area/science/explab)
+"brs" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
+/turf/open/floor/plasteel/whitepurple/side{
+ dir = 1
+ },
+/area/science/explab)
+"brt" = (
+/obj/structure/chair/office/light{
+ dir = 1
+ },
+/turf/open/floor/plasteel/whitepurple/side{
+ dir = 1
+ },
+/area/science/explab)
+"bru" = (
+/obj/item/weapon/storage/toolbox/mechanical,
+/obj/machinery/holopad,
+/turf/open/floor/plasteel/whitepurple/side{
+ dir = 1
+ },
+/area/science/explab)
+"brv" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/airalarm{
+ dir = 4;
+ locked = 0;
+ pixel_x = -23
+ },
+/turf/open/floor/plasteel/purple/side{
+ dir = 8
+ },
+/area/science/research/lobby)
+"brw" = (
+/obj/structure/closet/wardrobe/robotics_black,
+/obj/item/device/radio/headset/headset_sci{
+ pixel_x = -3
+ },
+/turf/open/floor/plasteel/black,
+/area/science/robotics/lab)
+"brx" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
+/turf/open/floor/plasteel,
+/area/science/robotics/lab)
+"bry" = (
+/obj/item/device/assembly/prox_sensor{
+ pixel_x = -8;
+ pixel_y = 4
+ },
+/obj/item/device/assembly/prox_sensor{
+ pixel_x = -8;
+ pixel_y = 4
+ },
+/obj/item/device/assembly/prox_sensor{
+ pixel_x = -8;
+ pixel_y = 4
+ },
+/obj/item/device/assembly/prox_sensor{
+ pixel_x = -8;
+ pixel_y = 4
+ },
+/obj/item/weapon/stock_parts/cell/high/plus,
+/obj/item/weapon/stock_parts/cell/high/plus{
+ pixel_x = 5;
+ pixel_y = -5
+ },
+/obj/item/weapon/crowbar,
+/obj/structure/table,
+/turf/open/floor/plasteel,
+/area/science/robotics/lab)
+"brz" = (
+/obj/item/weapon/circular_saw,
+/obj/item/weapon/scalpel{
+ pixel_y = 12
+ },
+/obj/structure/window/reinforced{
+ dir = 1;
+ pixel_y = 1
+ },
+/obj/item/weapon/razor{
+ pixel_y = 5
+ },
+/obj/structure/window/reinforced{
+ dir = 8;
+ layer = 2.9
+ },
+/obj/structure/table,
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/turf/open/floor/plasteel/white,
+/area/science/robotics/lab)
+"brA" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/science/robotics/lab)
+"brB" = (
+/obj/machinery/holopad,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/science/robotics/lab)
+"brC" = (
+/obj/item/clothing/gloves/color/latex,
+/obj/item/weapon/surgical_drapes,
+/obj/structure/window/reinforced{
+ dir = 1;
+ pixel_y = 1
+ },
+/obj/structure/table,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/science/robotics/lab)
+"brD" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on,
+/turf/open/floor/plasteel/black,
+/area/science/server)
+"brE" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/black,
+/area/science/server)
+"brF" = (
+/obj/structure/chair/office/dark{
+ dir = 1
+ },
+/turf/open/floor/plasteel/black,
+/area/science/server)
+"brG" = (
+/obj/machinery/atmospherics/components/unary/portables_connector/visible{
+ dir = 1;
+ name = "Connector Port (Air Supply)"
+ },
+/obj/machinery/light_switch{
+ pixel_x = -25
+ },
+/turf/open/floor/plasteel/white,
+/area/science/explab)
+"brH" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/white,
+/area/science/explab)
+"brI" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 5
+ },
+/turf/open/floor/plasteel/white,
+/area/science/explab)
+"brJ" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/science/explab)
+"brK" = (
+/obj/structure/chair/stool,
+/obj/effect/decal/cleanable/oil{
+ icon_state = "floor5"
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
+/turf/open/floor/plasteel/white,
+/area/science/explab)
+"brL" = (
+/obj/structure/chair/stool,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 10
+ },
+/turf/open/floor/plasteel/white,
+/area/science/explab)
+"brM" = (
+/obj/structure/table,
+/obj/item/weapon/storage/box/beakers{
+ pixel_x = 2;
+ pixel_y = 2
+ },
+/obj/item/weapon/grenade/chem_grenade,
+/obj/item/weapon/grenade/chem_grenade,
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 28
+ },
+/turf/open/floor/plasteel/white,
+/area/science/explab)
+"brN" = (
+/obj/structure/table/glass,
+/obj/item/weapon/folder,
+/obj/item/weapon/pen,
+/turf/open/floor/plasteel/white,
+/area/science/xenobiology)
+"brO" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/white,
+/area/science/xenobiology)
+"brP" = (
+/obj/structure/chair/office/light{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/science/xenobiology)
+"brQ" = (
+/obj/machinery/computer/camera_advanced/xenobio,
+/obj/machinery/camera{
+ c_tag = "Xenobiology Port";
+ dir = 8;
+ network = list("SS13","RD")
+ },
+/obj/effect/turf_decal/stripes/line{
+ tag = "icon-warninglinecorner";
+ icon_state = "warninglinecorner";
+ dir = 2
+ },
+/turf/open/floor/plasteel/white,
+/area/science/xenobiology)
+"brR" = (
+/obj/structure/sign/biohazard,
+/turf/closed/wall,
+/area/science/xenobiology)
+"brS" = (
+/obj/item/weapon/wrench,
+/obj/effect/turf_decal/stripes/line{
+ dir = 2
+ },
+/turf/open/floor/plasteel,
+/area/science/xenobiology)
+"brT" = (
+/obj/machinery/computer/security/telescreen{
+ name = "Test Chamber Monitor";
+ network = list("Xeno");
+ pixel_y = 2
+ },
+/obj/structure/table/reinforced,
+/obj/effect/turf_decal/stripes/line{
+ dir = 2
+ },
+/turf/open/floor/plasteel,
+/area/science/xenobiology)
+"brU" = (
+/obj/machinery/button/door{
+ id = "misclab";
+ name = "Test Chamber Blast Doors";
+ pixel_y = -2;
+ req_access_txt = "55"
+ },
+/obj/structure/table/reinforced,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/turf/open/floor/plasteel,
+/area/science/xenobiology)
+"brV" = (
+/obj/machinery/door/window/southleft{
+ name = "Test Chamber";
+ req_access_txt = "55"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 2
+ },
+/turf/open/floor/plasteel,
+/area/science/xenobiology)
+"brW" = (
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/turf/open/floor/plasteel,
+/area/science/xenobiology)
+"brX" = (
+/obj/machinery/atmospherics/components/unary/portables_connector/visible{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel,
+/area/science/xenobiology)
+"brY" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 2
+ },
+/turf/open/floor/plasteel,
+/area/science/xenobiology)
+"brZ" = (
+/obj/structure/sign/xenobio,
+/obj/machinery/atmospherics/pipe/simple/general/hidden{
+ dir = 9
+ },
+/turf/closed/wall,
+/area/science/xenobiology)
+"bsa" = (
+/obj/machinery/disposal/bin,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/turf/open/floor/plasteel,
+/area/science/xenobiology)
+"bsb" = (
+/obj/machinery/door/window/northleft{
+ base_state = "right";
+ dir = 2;
+ icon_state = "right";
+ name = "Containment Pen #5";
+ req_access_txt = "55"
+ },
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel,
+/area/science/xenobiology)
+"bsc" = (
+/obj/structure/table/reinforced,
+/obj/machinery/button/door{
+ id = "xenobio5";
+ name = "Containment Blast Doors";
+ pixel_y = 4;
+ req_access_txt = "55"
+ },
+/obj/structure/window/reinforced{
+ dir = 8;
+ layer = 2.9
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/turf/open/floor/plasteel,
+/area/science/xenobiology)
+"bsd" = (
+/obj/machinery/door/window/northleft{
+ base_state = "right";
+ dir = 2;
+ icon_state = "right";
+ name = "Containment Pen #6";
+ req_access_txt = "55"
+ },
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel,
+/area/science/xenobiology)
+"bse" = (
+/obj/structure/table/reinforced,
+/obj/machinery/button/door{
+ id = "xenobio6";
+ name = "Containment Blast Doors";
+ pixel_y = 4;
+ req_access_txt = "55"
+ },
+/obj/structure/window/reinforced{
+ dir = 8;
+ layer = 2.9
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/turf/open/floor/plasteel,
+/area/science/xenobiology)
+"bsf" = (
+/obj/machinery/door/airlock/maintenance{
+ req_access_txt = "0";
+ req_one_access_txt = "12; 55"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plating,
+/area/maintenance/department/cargo)
+"bsg" = (
+/obj/structure/shuttle/engine/propulsion/left{
+ dir = 8
+ },
+/turf/open/floor/plating/airless,
+/area/shuttle/transport)
+"bsh" = (
+/obj/structure/shuttle/engine/heater{
+ dir = 8
+ },
+/obj/structure/window/reinforced,
+/turf/open/floor/plating/airless,
+/area/shuttle/transport)
+"bsi" = (
+/obj/structure/chair,
+/turf/open/floor/pod/dark,
+/area/shuttle/transport)
+"bsj" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/pod/light,
+/area/shuttle/transport)
+"bsk" = (
+/turf/open/floor/pod/light,
+/area/shuttle/transport)
+"bsl" = (
+/obj/structure/grille,
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
+ icon_state = "space";
+ layer = 4;
+ name = "EXTERNAL AIRLOCK"
+ },
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/hallway/secondary/entry)
+"bsm" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/camera{
+ c_tag = "Arrivals Starboard Aft";
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plasteel/neutral/corner,
+/area/hallway/secondary/entry)
+"bsn" = (
+/obj/structure/girder,
+/turf/open/floor/plating,
+/area/maintenance/department/engine)
+"bso" = (
+/obj/structure/flora/junglebush,
+/obj/structure/flora/grass/jungle/b,
+/mob/living/simple_animal/butterfly,
+/turf/open/floor/grass,
+/area/medical/genetics)
+"bsp" = (
+/obj/item/toy/beach_ball,
+/turf/open/floor/grass,
+/area/medical/genetics)
+"bsq" = (
+/obj/structure/flora/grass/jungle/b,
+/obj/structure/flora/ausbushes/ppflowers,
+/turf/open/floor/grass,
+/area/medical/genetics)
+"bsr" = (
+/obj/machinery/dna_scannernew,
+/obj/machinery/camera{
+ c_tag = "Genetics Cloning";
+ dir = 4;
+ network = list("SS13")
+ },
+/obj/machinery/airalarm{
+ dir = 4;
+ locked = 0;
+ pixel_x = -23
+ },
+/turf/open/floor/plasteel/blue,
+/area/medical/genetics)
+"bss" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 6
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/genetics)
+"bst" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/genetics)
+"bsu" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/genetics)
+"bsv" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/chair/stool,
+/turf/open/floor/plasteel/white,
+/area/medical/genetics)
+"bsw" = (
+/obj/structure/grille,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/window/fulltile,
+/turf/open/floor/plating,
+/area/medical/genetics)
+"bsx" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/whiteblue/corner{
+ dir = 1
+ },
+/area/medical/medbay/zone3)
+"bsy" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/zone3)
+"bsz" = (
+/obj/machinery/shower{
+ dir = 8
+ },
+/turf/open/floor/plasteel/whiteblue/corner{
+ dir = 4
+ },
+/area/medical/medbay/zone3)
+"bsA" = (
+/turf/closed/wall,
+/area/medical/sleeper)
+"bsB" = (
+/obj/machinery/atmospherics/components/unary/thermomachine/freezer,
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -26
+ },
+/obj/structure/sign/poster/official/random{
+ pixel_y = 32
+ },
+/turf/open/floor/plasteel/blue,
+/area/medical/sleeper)
+"bsC" = (
+/obj/machinery/atmospherics/components/unary/cryo_cell,
+/turf/open/floor/plasteel/blue,
+/area/medical/sleeper)
+"bsD" = (
+/obj/machinery/portable_atmospherics/canister/oxygen,
+/obj/machinery/atmospherics/components/unary/portables_connector/visible,
+/obj/structure/noticeboard{
+ pixel_y = 32
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/plasteel/blue,
+/area/medical/sleeper)
+"bsE" = (
+/obj/machinery/portable_atmospherics/canister/oxygen,
+/obj/machinery/atmospherics/components/unary/portables_connector/visible,
+/obj/item/device/radio/intercom{
+ broadcasting = 0;
+ freerange = 0;
+ frequency = 1485;
+ listening = 1;
+ name = "Station Intercom (Medbay)";
+ pixel_x = 28
+ },
+/obj/machinery/airalarm{
+ pixel_y = 22
+ },
+/turf/open/floor/plasteel/blue,
+/area/medical/sleeper)
+"bsF" = (
+/obj/machinery/shower{
+ dir = 4
+ },
+/turf/open/floor/plasteel/whiteblue/corner{
+ dir = 1
+ },
+/area/medical/medbay/central)
+"bsG" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 24
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/plasteel/whiteblue/corner{
+ dir = 4
+ },
+/area/medical/medbay/central)
+"bsH" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass{
+ name = "Medbay"
+ },
+/turf/open/floor/plasteel/whiteblue/corner{
+ dir = 8
+ },
+/area/medical/medbay/central)
+"bsI" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass{
+ name = "Medbay"
+ },
+/turf/open/floor/plasteel/whiteblue/corner,
+/area/medical/medbay/central)
+"bsJ" = (
+/obj/machinery/chem_dispenser{
+ layer = 2.7
+ },
+/obj/structure/sign/poster/official/safety_eye_protection{
+ pixel_x = -32
+ },
+/turf/open/floor/plasteel/whiteyellow/side{
+ dir = 8
+ },
+/area/medical/chemistry)
+"bsK" = (
+/turf/open/floor/plasteel/white,
+/area/medical/chemistry)
+"bsL" = (
+/obj/item/weapon/book/manual/wiki/chemistry,
+/obj/item/weapon/storage/box/beakers,
+/obj/structure/table/glass,
+/turf/open/floor/plasteel/white,
+/area/medical/chemistry)
+"bsM" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on,
+/turf/open/floor/plasteel/white,
+/area/medical/chemistry)
+"bsN" = (
+/obj/machinery/chem_dispenser{
+ layer = 2.7
+ },
+/obj/item/device/radio/intercom{
+ dir = 0;
+ name = "Station Intercom (General)";
+ pixel_x = 29
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/chemistry)
+"bsO" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel/yellow/corner{
+ dir = 1
+ },
+/area/hallway/primary/aft)
+"bsP" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"bsQ" = (
+/obj/structure/table,
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -26
+ },
+/obj/item/weapon/disk/tech_disk,
+/obj/item/weapon/disk/design_disk,
+/turf/open/floor/plasteel/white,
+/area/science/explab)
+"bsR" = (
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel/white,
+/area/science/explab)
+"bsS" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel/white,
+/area/science/explab)
+"bsT" = (
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "Research Lab APC";
+ pixel_x = 26
+ },
+/obj/structure/cable{
+ icon_state = "0-2";
+ pixel_y = 1;
+ d2 = 2
+ },
+/turf/open/floor/plasteel/white,
+/area/science/explab)
+"bsU" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/purple/side{
+ dir = 8
+ },
+/area/science/research/lobby)
+"bsV" = (
+/obj/structure/chair{
+ dir = 8
+ },
+/turf/open/floor/plasteel/purple/side{
+ dir = 4
+ },
+/area/science/research/lobby)
+"bsW" = (
+/obj/item/weapon/twohanded/required/kirbyplants,
+/turf/open/floor/plasteel/black,
+/area/science/robotics/lab)
+"bsX" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/green/side,
+/area/science/robotics/lab)
+"bsY" = (
+/turf/open/floor/plasteel/green/side,
+/area/science/robotics/lab)
+"bsZ" = (
+/obj/item/weapon/storage/firstaid/regular{
+ empty = 1;
+ name = "First-Aid (empty)"
+ },
+/obj/item/weapon/storage/firstaid/regular{
+ empty = 1;
+ name = "First-Aid (empty)"
+ },
+/obj/item/weapon/storage/firstaid/regular{
+ empty = 1;
+ name = "First-Aid (empty)"
+ },
+/obj/item/device/healthanalyzer,
+/obj/item/device/healthanalyzer,
+/obj/item/device/healthanalyzer,
+/obj/item/stack/cable_coil,
+/obj/item/stack/cable_coil,
+/obj/structure/table,
+/turf/open/floor/plasteel/green/side,
+/area/science/robotics/lab)
+"bta" = (
+/obj/item/weapon/retractor,
+/obj/item/weapon/hemostat,
+/obj/structure/window/reinforced{
+ dir = 8;
+ layer = 2.9
+ },
+/obj/structure/table,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel/white,
+/area/science/robotics/lab)
+"btb" = (
+/obj/structure/table/optable{
+ name = "Robotics Operating Table"
+ },
+/obj/machinery/camera{
+ c_tag = "Robotics - Aft";
+ dir = 1;
+ network = list("SS13","RD")
+ },
+/turf/open/floor/plasteel/white,
+/area/science/robotics/lab)
+"btc" = (
+/obj/machinery/computer/operating{
+ name = "Robotics Operating Computer"
+ },
+/turf/open/floor/plasteel/white,
+/area/science/robotics/lab)
+"btd" = (
+/obj/item/device/mmi,
+/obj/item/device/mmi,
+/obj/item/device/mmi,
+/obj/structure/table,
+/turf/open/floor/plasteel/white,
+/area/science/robotics/lab)
+"bte" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/closed/wall/r_wall,
+/area/science/server)
+"btf" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/command{
+ name = "Server Room";
+ req_access = null;
+ req_access_txt = "30"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/black,
+/area/science/server)
+"btg" = (
+/obj/structure/rack,
+/obj/item/weapon/crowbar,
+/obj/item/weapon/wrench,
+/turf/open/floor/plasteel/white,
+/area/science/explab)
+"bth" = (
+/obj/structure/closet/emcloset,
+/turf/open/floor/plasteel/white,
+/area/science/explab)
+"bti" = (
+/obj/machinery/light,
+/obj/structure/closet/radiation,
+/turf/open/floor/plasteel/white,
+/area/science/explab)
+"btj" = (
+/obj/machinery/droneDispenser,
+/turf/open/floor/plasteel/white,
+/area/science/explab)
+"btk" = (
+/obj/structure/table,
+/obj/item/weapon/storage/toolbox/mechanical,
+/obj/item/clothing/ears/earmuffs,
+/turf/open/floor/plasteel/white,
+/area/science/explab)
+"btl" = (
+/obj/structure/table,
+/obj/item/device/electropack,
+/obj/item/device/healthanalyzer,
+/obj/item/device/assembly/signaler,
+/obj/machinery/light,
+/obj/item/device/assembly/voice,
+/obj/machinery/camera{
+ c_tag = "Experimentation Lab";
+ dir = 1;
+ network = list("SS13","RD")
+ },
+/turf/open/floor/plasteel/white,
+/area/science/explab)
+"btm" = (
+/obj/structure/table,
+/obj/machinery/cell_charger{
+ pixel_y = 5
+ },
+/obj/item/stack/cable_coil,
+/obj/item/device/multitool,
+/obj/item/weapon/screwdriver,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/white,
+/area/science/explab)
+"btn" = (
+/obj/structure/table,
+/obj/item/weapon/hand_labeler,
+/obj/item/clothing/glasses/science,
+/obj/item/clothing/glasses/science,
+/turf/open/floor/plasteel/white,
+/area/science/explab)
+"bto" = (
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk,
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -27
+ },
+/turf/open/floor/plasteel/white,
+/area/science/xenobiology)
+"btp" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel/white,
+/area/science/xenobiology)
+"btq" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/science/xenobiology)
+"btr" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/science/xenobiology)
+"bts" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/darkpurple/side{
+ icon_state = "darkpurple";
+ dir = 1
+ },
+/area/science/xenobiology)
+"btt" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/darkgreen/side{
+ icon_state = "darkgreen";
+ dir = 1
+ },
+/area/science/xenobiology)
+"btu" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/darkgreen/side{
+ icon_state = "darkgreen";
+ dir = 1
+ },
+/area/science/xenobiology)
+"btv" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/darkpurple/side{
+ icon_state = "darkpurple";
+ dir = 1
+ },
+/area/science/xenobiology)
+"btw" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/darkpurple/side{
+ icon_state = "darkpurple";
+ dir = 1
+ },
+/area/science/xenobiology)
+"btx" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/darkpurple/side{
+ icon_state = "darkpurple";
+ dir = 1
+ },
+/area/science/xenobiology)
+"bty" = (
+/obj/machinery/camera{
+ c_tag = "Xenobiology Starboard Fore";
+ dir = 2;
+ network = list("SS13","RD")
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
+ },
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = 28
+ },
+/turf/open/floor/plasteel/darkpurple/side{
+ icon_state = "darkpurple";
+ dir = 1
+ },
+/area/science/xenobiology)
+"btz" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 10
+ },
+/turf/open/floor/plasteel/darkpurple/side{
+ icon_state = "darkpurple";
+ dir = 1
+ },
+/area/science/xenobiology)
+"btA" = (
+/obj/structure/chair{
+ dir = 4
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/effect/landmark/xeno_spawn,
+/turf/open/floor/plasteel/floorgrime,
+/area/science/xenobiology)
+"btB" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/science/xenobiology)
+"btC" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/sign/biohazard,
+/turf/open/floor/plating,
+/area/science/xenobiology)
+"btD" = (
+/turf/open/floor/plating/airless,
+/area/science/xenobiology)
+"btE" = (
+/obj/effect/decal/remains/xeno,
+/turf/open/floor/plating/airless,
+/area/science/xenobiology)
+"btF" = (
+/obj/structure/chair{
+ dir = 4
+ },
+/obj/item/weapon/reagent_containers/food/drinks/soda_cans/dr_gibb,
+/turf/open/floor/plating,
+/area/maintenance/department/cargo)
+"btG" = (
+/obj/structure/shuttle/engine/heater{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/open/floor/plating/airless,
+/area/shuttle/transport)
+"btH" = (
+/obj/machinery/light/small,
+/turf/open/floor/pod/light,
+/area/shuttle/transport)
+"btI" = (
+/obj/machinery/door/airlock/titanium,
+/turf/open/floor/pod/light,
+/area/shuttle/transport)
+"btJ" = (
+/obj/machinery/computer/shuttle/ferry/request,
+/turf/open/floor/pod/dark,
+/area/shuttle/transport)
+"btK" = (
+/obj/machinery/door/airlock/titanium,
+/obj/docking_port/mobile{
+ dir = 8;
+ dwidth = 2;
+ height = 13;
+ id = "ferry";
+ name = "ferry shuttle";
+ port_angle = 0;
+ preferred_direction = 4;
+ roundstart_move = "ferry_away";
+ width = 5
+ },
+/obj/docking_port/stationary{
+ dir = 8;
+ dwidth = 2;
+ height = 13;
+ id = "ferry_home";
+ name = "port bay 2";
+ turf_type = /turf/open/space;
+ width = 5
+ },
+/turf/open/floor/pod/light,
+/area/shuttle/transport)
+"btL" = (
+/obj/machinery/door/airlock/external{
+ cyclelinkeddir = 4;
+ id_tag = null;
+ name = "Port Docking Bay 2";
+ req_access_txt = "0"
+ },
+/turf/open/floor/plating,
+/area/hallway/secondary/entry)
+"btM" = (
+/obj/machinery/door/airlock/external{
+ cyclelinkeddir = 8;
+ id_tag = null;
+ name = "Port Docking Bay 2";
+ req_access_txt = "0"
+ },
+/turf/open/floor/plating,
+/area/hallway/secondary/entry)
+"btN" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel/neutral/corner,
+/area/hallway/secondary/entry)
+"btO" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/maintenance{
+ req_access_txt = "12"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/hallway/secondary/entry)
+"btP" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/engine)
+"btQ" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 10
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/engine)
+"btR" = (
+/obj/structure/flora/ausbushes/brflowers,
+/mob/living/carbon/monkey,
+/turf/open/floor/grass,
+/area/medical/genetics)
+"btS" = (
+/turf/open/floor/grass,
+/area/medical/genetics)
+"btT" = (
+/obj/structure/flora/junglebush,
+/obj/structure/flora/ausbushes/sunnybush,
+/obj/item/weapon/reagent_containers/food/snacks/grown/banana,
+/mob/living/carbon/monkey,
+/turf/open/floor/grass,
+/area/medical/genetics)
+"btU" = (
+/obj/item/weapon/twohanded/required/kirbyplants{
+ icon_state = "plant-21"
+ },
+/turf/open/floor/plasteel/whiteblue/side,
+/area/medical/genetics)
+"btV" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/open/floor/plasteel/whiteblue/side,
+/area/medical/genetics)
+"btW" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/whiteblue/side,
+/area/medical/genetics)
+"btX" = (
+/obj/structure/table,
+/obj/item/weapon/book/manual/medical_cloning{
+ pixel_y = 6
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/whiteblue/side,
+/area/medical/genetics)
+"btY" = (
+/obj/structure/table,
+/obj/item/weapon/storage/box/rxglasses{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/weapon/storage/box/bodybags,
+/obj/item/weapon/pen,
+/obj/machinery/button/door{
+ desc = "A remote control switch for the genetics doors.";
+ id = "GeneticsDoor";
+ name = "Genetics Exit Button";
+ normaldoorcontrol = 1;
+ pixel_x = 24;
+ pixel_y = 8
+ },
+/turf/open/floor/plasteel/whiteblue/side,
+/area/medical/genetics)
+"btZ" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/zone3)
+"bua" = (
+/obj/machinery/door/firedoor,
+/turf/open/floor/plasteel/white,
+/area/medical/sleeper)
+"bub" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 5
+ },
+/obj/effect/turf_decal/stripes/corner{
+ dir = 8
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/sleeper)
+"buc" = (
+/obj/machinery/atmospherics/pipe/manifold/general/visible,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/sleeper)
+"bud" = (
+/obj/item/weapon/wrench/medical,
+/obj/machinery/atmospherics/pipe/manifold/general/visible,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/sleeper)
+"bue" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 9
+ },
+/obj/effect/turf_decal/stripes/corner{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white{
+ heat_capacity = 1e+006
+ },
+/area/medical/sleeper)
+"buf" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 5
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/central)
+"bug" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/central)
+"buh" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/central)
+"bui" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/whiteblue/corner,
+/area/medical/medbay/central)
+"buj" = (
+/obj/machinery/chem_heater,
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -28
+ },
+/obj/machinery/camera{
+ c_tag = "Chemistry";
+ dir = 4;
+ network = list("SS13")
+ },
+/turf/open/floor/plasteel/whiteyellow/side{
+ dir = 8
+ },
+/area/medical/chemistry)
+"buk" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/chemistry)
+"bul" = (
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/chemistry)
+"bum" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/white,
+/area/medical/chemistry)
+"bun" = (
+/obj/machinery/chem_heater,
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 28
+ },
+/turf/open/floor/plasteel/whiteyellow/side{
+ dir = 6
+ },
+/area/medical/chemistry)
+"buo" = (
+/obj/structure/rack,
+/obj/effect/decal/cleanable/oil{
+ icon_state = "floor6"
+ },
+/obj/item/stack/sheet/metal{
+ amount = 50
+ },
+/obj/item/stack/sheet/glass{
+ amount = 50;
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/weapon/reagent_containers/glass/beaker/large,
+/obj/machinery/airalarm{
+ dir = 4;
+ pixel_x = -22
+ },
+/obj/item/weapon/storage/box/beakers,
+/obj/item/clothing/glasses/welding,
+/turf/open/floor/plasteel/white,
+/area/science/explab)
+"bup" = (
+/obj/machinery/r_n_d/destructive_analyzer,
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/science/explab)
+"buq" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/science/explab)
+"bur" = (
+/obj/machinery/r_n_d/protolathe,
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/science/explab)
+"bus" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/camera{
+ c_tag = "Research and Development Lab";
+ dir = 8;
+ network = list("SS13","RD")
+ },
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 28
+ },
+/turf/open/floor/plasteel/white,
+/area/science/explab)
+"but" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/plasteel/purple/side{
+ dir = 8
+ },
+/area/science/research/lobby)
+"buu" = (
+/obj/structure/chair{
+ dir = 8
+ },
+/obj/item/clothing/mask/cigarette,
+/turf/open/floor/plasteel/purple/side{
+ dir = 4
+ },
+/area/science/research/lobby)
+"buv" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/door/airlock/research{
+ name = "Robotics Lab";
+ req_access_txt = "29";
+ req_one_access_txt = "0"
+ },
+/turf/open/floor/plasteel,
+/area/science/robotics/lab)
+"buw" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/item/weapon/twohanded/required/kirbyplants{
+ icon_state = "plant-07";
+ name = "Photosynthetic Potted plant";
+ pixel_y = 10
+ },
+/turf/open/floor/plasteel/darkpurple/side{
+ dir = 8
+ },
+/area/science/server)
+"bux" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/black,
+/area/science/server)
+"buy" = (
+/obj/item/weapon/twohanded/required/kirbyplants{
+ icon_state = "plant-07";
+ name = "Photosynthetic Potted plant";
+ pixel_y = 10
+ },
+/turf/open/floor/plasteel/darkpurple/side{
+ tag = "icon-darkpurple (EAST)";
+ icon_state = "darkpurple";
+ dir = 4
+ },
+/area/science/server)
+"buz" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/science/explab)
+"buA" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass_research{
+ name = "Experimentation Lab";
+ req_access_txt = "47"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel,
+/area/science/explab)
+"buB" = (
+/obj/item/device/radio/intercom{
+ dir = 0;
+ name = "Station Intercom (General)";
+ pixel_y = -28
+ },
+/turf/closed/wall,
+/area/science/explab)
+"buC" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/closed/wall,
+/area/science/explab)
+"buD" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/item/weapon/twohanded/required/kirbyplants{
+ icon_state = "plant-14";
+ layer = 4.1
+ },
+/turf/open/floor/plasteel/white,
+/area/science/xenobiology)
+"buE" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/white,
+/area/science/xenobiology)
+"buF" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
+/turf/open/floor/plasteel/white,
+/area/science/xenobiology)
+"buG" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/science/xenobiology)
+"buH" = (
+/obj/machinery/door/firedoor,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel/black,
+/area/science/xenobiology)
+"buI" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel/black,
+/area/science/xenobiology)
+"buJ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/holopad,
+/turf/open/floor/plasteel/black,
+/area/science/xenobiology)
+"buK" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/open/floor/plasteel/black,
+/area/science/xenobiology)
+"buL" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/open/floor/plasteel/black,
+/area/science/xenobiology)
+"buM" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 10
+ },
+/turf/open/floor/plasteel/black,
+/area/science/xenobiology)
+"buN" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/black,
+/area/science/xenobiology)
+"buO" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/black,
+/area/science/xenobiology)
+"buP" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/open/floor/plasteel/black,
+/area/science/xenobiology)
+"buQ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/open/floor/plasteel/black,
+/area/science/xenobiology)
+"buR" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 5
+ },
+/turf/open/floor/plasteel/black,
+/area/science/xenobiology)
+"buS" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/research{
+ name = "Kill Room Access";
+ req_access_txt = "55"
+ },
+/turf/open/floor/plasteel,
+/area/science/xenobiology)
+"buT" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel/floorgrime,
+/area/science/xenobiology)
+"buU" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 4
+ },
+/obj/effect/landmark/blobstart,
+/turf/open/floor/plasteel/floorgrime,
+/area/science/xenobiology)
+"buV" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass_research{
+ name = "Kill Room";
+ req_access_txt = "55"
+ },
+/turf/open/floor/plating,
+/area/science/xenobiology)
+"buW" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/machinery/camera{
+ c_tag = "Xenobiology Kill Room";
+ dir = 8;
+ network = list("SS13","RD")
+ },
+/turf/open/floor/plating/airless,
+/area/science/xenobiology)
+"buX" = (
+/obj/structure/shuttle/engine/heater{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 1;
+ pixel_y = 1
+ },
+/turf/open/floor/plating/airless,
+/area/shuttle/transport)
+"buY" = (
+/obj/structure/chair{
+ dir = 1
+ },
+/turf/open/floor/pod/dark,
+/area/shuttle/transport)
+"buZ" = (
+/obj/machinery/light,
+/turf/open/floor/pod/light,
+/area/shuttle/transport)
+"bva" = (
+/turf/closed/wall,
+/area/maintenance/department/engine)
+"bvb" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/engine)
+"bvc" = (
+/turf/closed/wall/r_wall,
+/area/medical/genetics)
+"bvd" = (
+/obj/machinery/door/airlock/glass_research{
+ name = "Genetics";
+ req_access_txt = "9"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/whiteblue,
+/area/medical/genetics)
+"bve" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plating,
+/area/medical/genetics)
+"bvf" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/camera{
+ c_tag = "Medbay Port Hallway";
+ dir = 4;
+ network = list("SS13")
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/zone3)
+"bvg" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/zone3)
+"bvh" = (
+/obj/structure/disposalpipe/sortjunction{
+ dir = 8;
+ icon_state = "pipe-j2s";
+ sortType = 9
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/zone3)
+"bvi" = (
+/obj/machinery/door/firedoor,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/sleeper)
+"bvj" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/sleeper)
+"bvk" = (
+/obj/machinery/holopad,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/sleeper)
+"bvl" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/central)
+"bvm" = (
+/obj/structure/disposalpipe/junction{
+ dir = 8;
+ icon_state = "pipe-j2"
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/central)
+"bvn" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/central)
+"bvo" = (
+/obj/machinery/door/firedoor,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/central)
+"bvp" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel/whiteblue/corner,
+/area/medical/medbay/central)
+"bvq" = (
+/obj/machinery/door/airlock/glass_medical{
+ id_tag = null;
+ name = "Chemistry Lab";
+ req_access_txt = "5; 33"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/chemistry)
+"bvr" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 10
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/chemistry)
+"bvs" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel/white,
+/area/medical/chemistry)
+"bvt" = (
+/obj/machinery/shower{
+ dir = 8;
+ name = "emergency shower"
+ },
+/obj/machinery/requests_console{
+ department = "Chemistry";
+ departmentType = 2;
+ pixel_x = 32;
+ receive_ore_updates = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/white,
+/area/medical/chemistry)
+"bvu" = (
+/obj/machinery/camera{
+ c_tag = "Aft Primary Hallway Chemistry";
+ dir = 4;
+ network = list("SS13");
+ start_active = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/yellow/corner{
+ dir = 1
+ },
+/area/hallway/primary/aft)
+"bvv" = (
+/obj/item/device/radio/intercom{
+ dir = 0;
+ name = "Station Intercom (General)";
+ pixel_x = -28;
+ pixel_y = 3
+ },
+/obj/machinery/button/door{
+ dir = 2;
+ id = "research_shutters_2";
+ name = "Shutters Control Button";
+ pixel_x = -28;
+ pixel_y = -7;
+ req_access_txt = "7; 29"
+ },
+/turf/open/floor/plasteel/white,
+/area/science/explab)
+"bvw" = (
+/obj/machinery/computer/rdconsole/core,
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/science/explab)
+"bvx" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/landmark/start/scientist,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/science/explab)
+"bvy" = (
+/obj/machinery/r_n_d/circuit_imprinter{
+ pixel_y = 4
+ },
+/obj/item/weapon/reagent_containers/glass/beaker/sulphuric,
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/science/explab)
+"bvz" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/white,
+/area/science/explab)
+"bvA" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/science/research/lobby)
+"bvB" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/purple/corner{
+ dir = 4
+ },
+/area/science/research/lobby)
+"bvC" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/power/apc{
+ cell_type = 10000;
+ dir = 1;
+ name = "Research Lobby APC";
+ pixel_y = 25
+ },
+/obj/structure/cable{
+ icon_state = "0-2";
+ pixel_y = 1;
+ d2 = 2
+ },
+/turf/open/floor/plasteel/purple/side{
+ dir = 1
+ },
+/area/science/research/lobby)
+"bvD" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/purple/side{
+ dir = 1
+ },
+/area/science/research/lobby)
+"bvE" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/purple/side{
+ dir = 1
+ },
+/area/science/research/lobby)
+"bvF" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
+ },
+/turf/open/floor/plasteel/purple/side{
+ dir = 5
+ },
+/area/science/research/lobby)
+"bvG" = (
+/obj/machinery/door/poddoor/preopen{
+ id = "rndshutters";
+ name = "research shutters"
+ },
+/obj/machinery/door/firedoor/heavy,
+/obj/structure/sign/securearea{
+ pixel_x = 32
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel/black,
+/area/science/research/lobby)
+"bvH" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/closed/wall/r_wall,
+/area/science/research/lobby)
+"bvI" = (
+/obj/structure/closet/emcloset,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel/white,
+/area/science/research)
+"bvJ" = (
+/obj/structure/closet/firecloset/full,
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel/white,
+/area/science/research)
+"bvK" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/closed/wall,
+/area/science/research)
+"bvL" = (
+/obj/machinery/power/apc{
+ cell_type = 10000;
+ dir = 1;
+ name = "Research Division APC";
+ pixel_y = 25
+ },
+/obj/structure/cable{
+ icon_state = "0-2";
+ pixel_y = 1;
+ d2 = 2
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
+ },
+/obj/structure/sign/poster/random{
+ pixel_x = -32
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/plasteel/darkpurple/side{
+ icon_state = "darkpurple";
+ dir = 1
+ },
+/area/science/research)
+"bvM" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
+/turf/open/floor/plasteel/darkpurple/corner{
+ dir = 1
+ },
+/area/science/research)
+"bvN" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/black,
+/area/science/research)
+"bvO" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
+ },
+/turf/open/floor/plasteel/darkpurple/corner{
+ tag = "icon-darkpurplecorners (EAST)";
+ icon_state = "darkpurplecorners";
+ dir = 4
+ },
+/area/science/research)
+"bvP" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 0;
+ pixel_y = 30
+ },
+/turf/open/floor/plasteel/darkpurple/side{
+ icon_state = "darkpurple";
+ dir = 1
+ },
+/area/science/research)
+"bvQ" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/darkpurple/side{
+ icon_state = "darkpurple";
+ dir = 1
+ },
+/area/science/research)
+"bvR" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/darkpurple/side{
+ icon_state = "darkpurple";
+ dir = 1
+ },
+/area/science/research)
+"bvS" = (
+/turf/open/floor/plasteel/darkpurple/side{
+ icon_state = "darkpurple";
+ dir = 1
+ },
+/area/science/research)
+"bvT" = (
+/obj/machinery/vending/assist,
+/obj/machinery/airalarm{
+ dir = 2;
+ pixel_y = 22
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/plasteel/darkpurple/side{
+ icon_state = "darkpurple";
+ dir = 1
+ },
+/area/science/research)
+"bvU" = (
+/obj/item/weapon/twohanded/required/kirbyplants{
+ icon_state = "plant-18";
+ layer = 4.1
+ },
+/turf/open/floor/plasteel/darkpurple/side{
+ icon_state = "darkpurple";
+ dir = 1
+ },
+/area/science/research)
+"bvV" = (
+/obj/structure/closet/firecloset,
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/turf/open/floor/plasteel/whitepurple/side{
+ dir = 1
+ },
+/area/science/xenobiology)
+"bvW" = (
+/obj/structure/closet/l3closet,
+/obj/machinery/camera{
+ c_tag = "Xenobiology Access";
+ dir = 2;
+ network = list("SS13")
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel/whitepurple/side{
+ dir = 1
+ },
+/area/science/xenobiology)
+"bvX" = (
+/obj/structure/closet/l3closet,
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/whitepurple/side{
+ dir = 1
+ },
+/area/science/xenobiology)
+"bvY" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/closed/wall,
+/area/science/xenobiology)
+"bvZ" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/science/xenobiology)
+"bwa" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 9
+ },
+/turf/open/floor/plasteel/white,
+/area/science/xenobiology)
+"bwb" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel/white,
+/area/science/xenobiology)
+"bwc" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/science/xenobiology)
+"bwd" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/darkpurple/side,
+/area/science/xenobiology)
+"bwe" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/darkpurple/side,
+/area/science/xenobiology)
+"bwf" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/darkpurple/side,
+/area/science/xenobiology)
+"bwg" = (
+/obj/machinery/light,
+/obj/machinery/camera{
+ c_tag = "Xenobiology Central";
+ dir = 1;
+ network = list("SS13","RD")
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 1
+ },
+/turf/open/floor/plasteel/darkpurple/side,
+/area/science/xenobiology)
+"bwh" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
+/turf/open/floor/plasteel/darkpurple/side,
+/area/science/xenobiology)
+"bwi" = (
+/obj/machinery/light,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/camera{
+ c_tag = "Xenobiology Starboard Aft";
+ dir = 1;
+ network = list("SS13","RD")
+ },
+/turf/open/floor/plasteel/darkpurple/side,
+/area/science/xenobiology)
+"bwj" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/closed/wall/r_wall,
+/area/science/xenobiology)
+"bwk" = (
+/obj/structure/cable{
+ icon_state = "0-4";
+ d2 = 4
+ },
+/obj/machinery/power/apc{
+ cell_type = 5000;
+ dir = 8;
+ name = "Xenobiology APC";
+ pixel_x = -25
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/machinery/light/small{
+ brightness = 3;
+ dir = 8
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/science/xenobiology)
+"bwl" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/floorgrime,
+/area/science/xenobiology)
+"bwm" = (
+/obj/effect/spawner/lootdrop/maintenance,
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/cargo)
+"bwn" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/closed/wall,
+/area/maintenance/department/cargo)
+"bwo" = (
+/obj/structure/disposaloutlet{
+ dir = 4
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/turf/open/floor/plating/airless,
+/area/space)
+"bwp" = (
+/obj/machinery/door/airlock/external,
+/turf/open/floor/pod/light,
+/area/shuttle/transport)
+"bwq" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass{
+ name = "Monastery Transit"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry)
+"bwr" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass{
+ name = "Monastery Transit"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plasteel/neutral/corner,
+/area/hallway/secondary/entry)
+"bws" = (
+/obj/structure/closet,
+/obj/item/stack/cable_coil/random,
+/obj/item/weapon/electronics/airalarm,
+/turf/open/floor/plating,
+/area/maintenance/department/engine)
+"bwt" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating{
+ broken = 1;
+ icon_state = "platingdmg1"
+ },
+/area/maintenance/department/engine)
+"bwu" = (
+/mob/living/carbon/monkey,
+/turf/open/floor/grass,
+/area/medical/genetics)
+"bwv" = (
+/obj/structure/table,
+/obj/item/weapon/folder/white,
+/obj/item/weapon/pen,
+/obj/machinery/airalarm{
+ pixel_y = 22
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -26
+ },
+/turf/open/floor/plasteel/whitepurple/side{
+ dir = 9
+ },
+/area/medical/genetics)
+"bww" = (
+/obj/machinery/computer/scan_consolenew,
+/turf/open/floor/plasteel/whitepurple/side{
+ dir = 1
+ },
+/area/medical/genetics)
+"bwx" = (
+/obj/machinery/dna_scannernew,
+/turf/open/floor/plasteel/whitepurple/side{
+ dir = 1
+ },
+/area/medical/genetics)
+"bwy" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/whitepurple/side{
+ dir = 1
+ },
+/area/medical/genetics)
+"bwz" = (
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/whitepurple/side{
+ dir = 1
+ },
+/area/medical/genetics)
+"bwA" = (
+/obj/structure/table,
+/obj/item/weapon/storage/box/rxglasses{
+ pixel_x = 4;
+ pixel_y = 4
+ },
+/obj/item/weapon/storage/box/bodybags,
+/turf/open/floor/plasteel/whitepurple/side{
+ dir = 5
+ },
+/area/medical/genetics)
+"bwB" = (
+/obj/machinery/requests_console{
+ announcementConsole = 0;
+ department = "Medbay";
+ departmentType = 1;
+ name = "Medbay RC";
+ pixel_x = -32
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 8
+ },
+/obj/machinery/navbeacon{
+ codes_txt = "delivery;dir=2";
+ dir = 4;
+ freq = 1400;
+ location = "Medbay"
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/zone3)
+"bwC" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/zone3)
+"bwD" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/zone3)
+"bwE" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/sleeper)
+"bwF" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/whiteblue/side,
+/area/medical/sleeper)
+"bwG" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 1
+ },
+/turf/open/floor/plasteel/whiteblue/side,
+/area/medical/sleeper)
+"bwH" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/camera{
+ c_tag = "Medbay Sleepers";
+ dir = 1;
+ network = list("SS13")
+ },
+/turf/open/floor/plasteel/whiteblue/side,
+/area/medical/sleeper)
+"bwI" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/whiteblue/side,
+/area/medical/sleeper)
+"bwJ" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/sleeper)
+"bwK" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/central)
+"bwL" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/central)
+"bwM" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/central)
+"bwN" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/central)
+"bwO" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/bed/roller,
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/central)
+"bwP" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/bed/roller,
+/obj/machinery/iv_drip{
+ density = 0
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/central)
+"bwQ" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 9
+ },
+/turf/open/floor/plasteel/whiteblue/corner,
+/area/medical/medbay/central)
+"bwR" = (
+/obj/machinery/smartfridge/chemistry/preloaded,
+/turf/closed/wall,
+/area/medical/chemistry)
+"bwS" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/chemistry)
+"bwT" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/chemistry)
+"bwU" = (
+/obj/machinery/holopad,
+/turf/open/floor/plasteel/white,
+/area/medical/chemistry)
+"bwV" = (
+/obj/structure/rack,
+/obj/item/stack/packageWrap,
+/obj/item/weapon/hand_labeler,
+/obj/item/device/radio/headset/headset_med,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/white,
+/area/medical/chemistry)
+"bwW" = (
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/turf/open/floor/plasteel/yellow/side{
+ dir = 8
+ },
+/area/hallway/primary/aft)
+"bwX" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"bwY" = (
+/obj/structure/disposalpipe/junction{
+ dir = 2;
+ icon_state = "pipe-y"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"bwZ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"bxa" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/chair{
+ dir = 4
+ },
+/turf/open/floor/plasteel/purple/side{
+ dir = 4
+ },
+/area/hallway/primary/aft)
+"bxb" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "research_shutters_2";
+ name = "research shutters"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/science/explab)
+"bxc" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/science/explab)
+"bxd" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/disposalpipe/sortjunction{
+ dir = 8;
+ icon_state = "pipe-j2s";
+ sortType = 13
+ },
+/turf/open/floor/plasteel/white,
+/area/science/explab)
+"bxe" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/sortjunction{
+ dir = 8;
+ icon_state = "pipe-j1s";
+ sortType = 12
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 5
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/science/explab)
+"bxf" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/science/explab)
+"bxg" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/science/explab)
+"bxh" = (
+/obj/machinery/door/firedoor,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/door/airlock/research{
+ name = "R&D Lab";
+ req_access_txt = "0";
+ req_one_access_txt = "7;29;30"
+ },
+/turf/open/floor/plasteel,
+/area/science/explab)
+"bxi" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/purple/side{
+ dir = 8
+ },
+/area/science/research/lobby)
+"bxj" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/science/research/lobby)
+"bxk" = (
+/obj/structure/disposalpipe/junction{
+ dir = 8;
+ icon_state = "pipe-j1"
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel,
+/area/science/research/lobby)
+"bxl" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/open/floor/plasteel,
+/area/science/research/lobby)
+"bxm" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/science/research/lobby)
+"bxn" = (
+/obj/structure/disposalpipe/junction{
+ icon_state = "pipe-j2";
+ dir = 8
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/open/floor/plasteel,
+/area/science/research/lobby)
+"bxo" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/purple/side{
+ dir = 4
+ },
+/area/science/research/lobby)
+"bxp" = (
+/obj/machinery/door/poddoor/preopen{
+ id = "rndshutters";
+ name = "research shutters"
+ },
+/obj/machinery/door/firedoor/heavy,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel/black,
+/area/science/research/lobby)
+"bxq" = (
+/obj/machinery/door/airlock/research{
+ cyclelinkeddir = 4;
+ name = "Research Division Access";
+ req_access_txt = "47"
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel/black,
+/area/science/research/lobby)
+"bxr" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel/black,
+/area/science/research)
+"bxs" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel/black,
+/area/science/research)
+"bxt" = (
+/obj/machinery/door/airlock/research{
+ cyclelinkeddir = 8;
+ name = "Research Division Access";
+ req_access_txt = "47"
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel/black,
+/area/science/research)
+"bxu" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel/black,
+/area/science/research)
+"bxv" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel/black,
+/area/science/research)
+"bxw" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/black,
+/area/science/research)
+"bxx" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/black,
+/area/science/research)
+"bxy" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/black,
+/area/science/research)
+"bxz" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/black,
+/area/science/research)
+"bxA" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/open/floor/plasteel/black,
+/area/science/research)
+"bxB" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/open/floor/plasteel/black,
+/area/science/research)
+"bxC" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/black,
+/area/science/research)
+"bxD" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 1
+ },
+/turf/open/floor/plasteel/black,
+/area/science/research)
+"bxE" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/research{
+ autoclose = 0;
+ frequency = 1449;
+ icon_state = "door_locked";
+ id_tag = "xeno_airlock_exterior";
+ locked = 1;
+ name = "Xenobiology Lab External Airlock";
+ req_access_txt = "55"
+ },
+/obj/machinery/doorButtons/access_button{
+ idDoor = "xeno_airlock_exterior";
+ idSelf = "xeno_airlock_control";
+ name = "Access Button";
+ pixel_y = -24;
+ req_access_txt = "0"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/black,
+/area/science/xenobiology)
+"bxF" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/science/xenobiology)
+"bxG" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
+/turf/open/floor/plasteel/white,
+/area/science/xenobiology)
+"bxH" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/science/xenobiology)
+"bxI" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/research{
+ autoclose = 0;
+ frequency = 1449;
+ icon_state = "door_locked";
+ id_tag = "xeno_airlock_interior";
+ locked = 1;
+ name = "Xenobiology Lab Internal Airlock";
+ req_access_txt = "55"
+ },
+/obj/machinery/doorButtons/access_button{
+ idDoor = "xeno_airlock_interior";
+ idSelf = "xeno_airlock_control";
+ name = "Access Button";
+ pixel_y = -24;
+ req_access_txt = "0"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/science/xenobiology)
+"bxJ" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/doorButtons/airlock_controller{
+ idExterior = "xeno_airlock_exterior";
+ idInterior = "xeno_airlock_interior";
+ idSelf = "xeno_airlock_control";
+ name = "Access Console";
+ pixel_x = -25;
+ pixel_y = 25
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/white,
+/area/science/xenobiology)
+"bxK" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 9
+ },
+/obj/structure/chair/office/light,
+/turf/open/floor/plasteel/white,
+/area/science/xenobiology)
+"bxL" = (
+/obj/structure/sink{
+ dir = 4;
+ pixel_x = 11
+ },
+/obj/effect/turf_decal/stripes/line{
+ tag = "icon-warninglinecorner (WEST)";
+ icon_state = "warninglinecorner";
+ dir = 8
+ },
+/turf/open/floor/plasteel/white,
+/area/science/xenobiology)
+"bxM" = (
+/obj/machinery/disposal/bin,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/disposalpipe/trunk,
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/turf/open/floor/plasteel,
+/area/science/xenobiology)
+"bxN" = (
+/obj/machinery/door/window/northleft{
+ base_state = "right";
+ dir = 1;
+ icon_state = "right";
+ name = "Containment Pen #1";
+ req_access_txt = "55"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/science/xenobiology)
+"bxO" = (
+/obj/structure/table/reinforced,
+/obj/machinery/button/door{
+ id = "xenobio1";
+ name = "Containment Blast Doors";
+ pixel_y = 4;
+ req_access_txt = "55"
+ },
+/obj/structure/window/reinforced{
+ dir = 8;
+ layer = 2.9
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/turf/open/floor/plasteel,
+/area/science/xenobiology)
+"bxP" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/closed/wall,
+/area/science/xenobiology)
+"bxQ" = (
+/obj/machinery/door/window/northleft{
+ base_state = "right";
+ dir = 1;
+ icon_state = "right";
+ name = "Containment Pen #2";
+ req_access_txt = "55"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/science/xenobiology)
+"bxR" = (
+/obj/structure/table/reinforced,
+/obj/machinery/button/door{
+ id = "xenobio2";
+ name = "Containment Blast Doors";
+ pixel_y = 4;
+ req_access_txt = "55"
+ },
+/obj/structure/window/reinforced{
+ dir = 8;
+ layer = 2.9
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/turf/open/floor/plasteel,
+/area/science/xenobiology)
+"bxS" = (
+/obj/machinery/door/window/northleft{
+ base_state = "right";
+ dir = 1;
+ icon_state = "right";
+ name = "Containment Pen #3";
+ req_access_txt = "55"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/science/xenobiology)
+"bxT" = (
+/obj/structure/table/reinforced,
+/obj/machinery/button/door{
+ id = "xenobio3";
+ name = "Containment Blast Doors";
+ pixel_y = 4;
+ req_access_txt = "55"
+ },
+/obj/structure/window/reinforced{
+ dir = 8;
+ layer = 2.9
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/turf/open/floor/plasteel,
+/area/science/xenobiology)
+"bxU" = (
+/obj/machinery/door/window/northleft{
+ base_state = "right";
+ dir = 1;
+ icon_state = "right";
+ name = "Containment Pen #4";
+ req_access_txt = "55"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/science/xenobiology)
+"bxV" = (
+/obj/structure/table/reinforced,
+/obj/machinery/button/door{
+ id = "xenobio4";
+ name = "Containment Blast Doors";
+ pixel_y = 4;
+ req_access_txt = "55"
+ },
+/obj/structure/window/reinforced{
+ dir = 8;
+ layer = 2.9
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/turf/open/floor/plasteel,
+/area/science/xenobiology)
+"bxW" = (
+/obj/machinery/door/airlock/maintenance{
+ req_access_txt = "0";
+ req_one_access_txt = "12; 55"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plating,
+/area/maintenance/department/cargo)
+"bxX" = (
+/obj/structure/girder,
+/turf/open/floor/plating/airless,
+/area/maintenance/department/cargo)
+"bxY" = (
+/obj/structure/closet/emcloset,
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/open/floor/plasteel/black,
+/area/hallway/secondary/entry)
+"bxZ" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/open/floor/plasteel/black,
+/area/hallway/secondary/entry)
+"bya" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 27
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plasteel/black,
+/area/hallway/secondary/entry)
+"byb" = (
+/obj/structure/table,
+/obj/effect/spawner/lootdrop/maintenance,
+/obj/item/clothing/shoes/winterboots,
+/turf/open/floor/plating,
+/area/maintenance/department/engine)
+"byc" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating{
+ burnt = 1;
+ icon_state = "panelscorched"
+ },
+/area/maintenance/department/engine)
+"byd" = (
+/obj/structure/flora/junglebush/c,
+/mob/living/carbon/monkey,
+/turf/open/floor/grass,
+/area/medical/genetics)
+"bye" = (
+/obj/structure/window/reinforced{
+ dir = 4;
+ layer = 2.9
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/open/floor/grass,
+/area/medical/genetics)
+"byf" = (
+/obj/structure/table,
+/obj/item/weapon/storage/box/disks,
+/obj/item/device/flashlight/pen,
+/obj/item/device/flashlight/pen,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/whitepurple/side{
+ dir = 8
+ },
+/area/medical/genetics)
+"byg" = (
+/obj/structure/chair/stool,
+/obj/effect/landmark/start/geneticist,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/genetics)
+"byh" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/genetics)
+"byi" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 9
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/genetics)
+"byj" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/white,
+/area/medical/genetics)
+"byk" = (
+/obj/structure/table,
+/obj/item/clothing/gloves/color/latex,
+/obj/item/clothing/gloves/color/latex,
+/obj/item/weapon/storage/box/monkeycubes,
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/plasteel/whitepurple/side{
+ dir = 4
+ },
+/area/medical/genetics)
+"byl" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -24
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/turf/open/floor/plasteel/whiteblue/corner{
+ dir = 8
+ },
+/area/medical/medbay/zone3)
+"bym" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ icon_state = "pipe-s";
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/zone3)
+"byn" = (
+/obj/structure/chair{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/plasteel/whiteblue/corner,
+/area/medical/medbay/zone3)
+"byo" = (
+/obj/structure/grille,
+/obj/structure/window/fulltile,
+/turf/open/floor/plating,
+/area/medical/sleeper)
+"byp" = (
+/obj/machinery/door/airlock/glass_medical{
+ id_tag = null;
+ name = "Sleepers";
+ req_access_txt = "5"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/white,
+/area/medical/sleeper)
+"byq" = (
+/obj/machinery/door/airlock/glass_medical{
+ id_tag = null;
+ name = "Sleepers";
+ req_access_txt = "5"
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/sleeper)
+"byr" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/whiteblue/corner{
+ dir = 8
+ },
+/area/medical/medbay/central)
+"bys" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/central)
+"byt" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/whiteblue/corner,
+/area/medical/medbay/central)
+"byu" = (
+/turf/closed/wall,
+/area/crew_quarters/heads/cmo)
+"byv" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/crew_quarters/heads/cmo)
+"byw" = (
+/obj/structure/closet/secure_closet/chemical,
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "Chemistry APC";
+ pixel_x = -24
+ },
+/obj/structure/cable{
+ icon_state = "0-4";
+ d2 = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/whiteyellow/side{
+ dir = 8
+ },
+/area/medical/chemistry)
+"byx" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel/white,
+/area/medical/chemistry)
+"byy" = (
+/obj/structure/chair/office/light{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 5
+ },
+/turf/open/floor/plasteel/whiteyellow/side{
+ dir = 4
+ },
+/area/medical/chemistry)
+"byz" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/firedoor,
+/obj/machinery/door/window/eastright{
+ dir = 8;
+ name = "Chemistry Desk";
+ req_access_txt = "5; 33"
+ },
+/obj/item/weapon/pen,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/item/weapon/paper_bin{
+ layer = 2.9;
+ pixel_x = -2
+ },
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "chemistry_shutters";
+ name = "chemistry shutters"
+ },
+/turf/open/floor/plasteel/whiteyellow{
+ dir = 4
+ },
+/area/medical/chemistry)
+"byA" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/chair{
+ dir = 8
+ },
+/turf/open/floor/plasteel/yellow/side{
+ dir = 8
+ },
+/area/hallway/primary/aft)
+"byB" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"byC" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"byD" = (
+/obj/structure/chair{
+ dir = 4
+ },
+/turf/open/floor/plasteel/purple/side{
+ dir = 4
+ },
+/area/hallway/primary/aft)
+"byE" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/window/eastright{
+ dir = 4;
+ name = "Research and Development Desk";
+ req_access_txt = "7"
+ },
+/obj/item/weapon/folder/white,
+/obj/machinery/door/firedoor,
+/obj/item/weapon/pen,
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "research_shutters_2";
+ name = "research shutters"
+ },
+/turf/open/floor/plating,
+/area/science/explab)
+"byF" = (
+/obj/structure/chair/office/light{
+ dir = 8
+ },
+/turf/open/floor/plasteel/white,
+/area/science/explab)
+"byG" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel/white,
+/area/science/explab)
+"byH" = (
+/obj/structure/chair/stool,
+/turf/open/floor/plasteel/white,
+/area/science/explab)
+"byI" = (
+/obj/structure/chair/stool,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/white,
+/area/science/explab)
+"byJ" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 5
+ },
+/turf/open/floor/plasteel/purple/side{
+ tag = "icon-purple (SOUTHWEST)";
+ icon_state = "purple";
+ dir = 10
+ },
+/area/science/research/lobby)
+"byK" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/purple/side,
+/area/science/research/lobby)
+"byL" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 1
+ },
+/turf/open/floor/plasteel/purple/corner{
+ dir = 8
+ },
+/area/science/research/lobby)
+"byM" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
+/obj/structure/disposalpipe/junction{
+ tag = "icon-pipe-j1 (NORTH)";
+ icon_state = "pipe-j1";
+ dir = 1
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel,
+/area/science/research/lobby)
+"byN" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel/purple/side{
+ dir = 4
+ },
+/area/science/research/lobby)
+"byO" = (
+/obj/machinery/door/poddoor/preopen{
+ id = "rndshutters";
+ name = "research shutters"
+ },
+/obj/machinery/door/firedoor/heavy,
+/obj/effect/turf_decal/stripes/line,
+/obj/structure/sign/securearea{
+ pixel_x = 32
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel/black,
+/area/science/research/lobby)
+"byP" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/closed/wall/r_wall,
+/area/science/research/lobby)
+"byQ" = (
+/obj/structure/sink{
+ dir = 8;
+ pixel_x = -12
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
+/turf/open/floor/plasteel/white,
+/area/science/research)
+"byR" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/shower{
+ dir = 8;
+ name = "emergency shower";
+ pixel_y = -4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/science/research)
+"byS" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/closed/wall,
+/area/science/research)
+"byT" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/item/weapon/twohanded/required/kirbyplants{
+ icon_state = "plant-09";
+ name = "Photosynthetic Potted plant";
+ pixel_y = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/darkpurple/side,
+/area/science/research)
+"byU" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/chair/comfy{
+ tag = "icon-comfychair (EAST)";
+ icon_state = "comfychair";
+ dir = 4
+ },
+/turf/open/floor/plasteel/darkpurple/side,
+/area/science/research)
+"byV" = (
+/obj/structure/table,
+/obj/item/weapon/folder,
+/obj/item/weapon/pen,
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
+/turf/open/floor/plasteel/black,
+/area/science/research)
+"byW" = (
+/obj/structure/chair/comfy{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/darkpurple/side,
+/area/science/research)
+"byX" = (
+/obj/machinery/camera{
+ c_tag = "Research Division Secure Hallway";
+ dir = 1
+ },
+/obj/machinery/disposal/bin,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/disposalpipe/trunk{
+ icon_state = "pipe-t";
+ dir = 1
+ },
+/turf/open/floor/plasteel/darkpurple/side,
+/area/science/research)
+"byY" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/darkpurple/corner{
+ tag = "icon-darkpurplecorners (WEST)";
+ icon_state = "darkpurplecorners";
+ dir = 8
+ },
+/area/science/research)
+"byZ" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/black,
+/area/science/research)
+"bza" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 1
+ },
+/turf/open/floor/plasteel/darkpurple/corner,
+/area/science/research)
+"bzb" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/darkpurple/side,
+/area/science/research)
+"bzc" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 9
+ },
+/turf/open/floor/plasteel/darkpurple/side,
+/area/science/research)
+"bzd" = (
+/obj/structure/sink{
+ dir = 8;
+ pixel_x = -12
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/turf/open/floor/plasteel/whitepurple/side,
+/area/science/xenobiology)
+"bze" = (
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel/whitepurple/side,
+/area/science/xenobiology)
+"bzf" = (
+/obj/machinery/shower{
+ dir = 8;
+ name = "emergency shower";
+ pixel_y = -4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/turf/open/floor/plasteel/whitepurple/side,
+/area/science/xenobiology)
+"bzg" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/whitepurple/side,
+/area/science/xenobiology)
+"bzh" = (
+/obj/item/weapon/storage/box/monkeycubes,
+/obj/item/weapon/storage/box/monkeycubes,
+/obj/structure/table/glass,
+/turf/open/floor/plasteel/whitepurple/side,
+/area/science/xenobiology)
+"bzi" = (
+/obj/item/weapon/extinguisher{
+ pixel_x = 4;
+ pixel_y = 3
+ },
+/obj/item/weapon/extinguisher,
+/obj/structure/table/glass,
+/turf/open/floor/plasteel/whitepurple/side,
+/area/science/xenobiology)
+"bzj" = (
+/obj/structure/reagent_dispensers/watertank,
+/obj/machinery/requests_console{
+ department = "Science";
+ departmentType = 2;
+ name = "Science Requests Console";
+ pixel_x = 32;
+ receive_ore_updates = 1
+ },
+/turf/open/floor/plasteel/whitepurple/side,
+/area/science/xenobiology)
+"bzk" = (
+/obj/machinery/door/poddoor/preopen{
+ id = "xenobio1";
+ name = "containment blast door"
+ },
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable{
+ icon_state = "0-4";
+ d2 = 4
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/engine,
+/area/science/xenobiology)
+"bzl" = (
+/obj/machinery/door/poddoor/preopen{
+ id = "xenobio1";
+ name = "containment blast door"
+ },
+/obj/machinery/door/window/northleft{
+ base_state = "right";
+ dir = 2;
+ icon_state = "right";
+ name = "Containment Pen #1";
+ req_access_txt = "55"
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/engine,
+/area/science/xenobiology)
+"bzm" = (
+/obj/machinery/door/poddoor/preopen{
+ id = "xenobio1";
+ name = "containment blast door"
+ },
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/structure/cable,
+/turf/open/floor/engine,
+/area/science/xenobiology)
+"bzn" = (
+/obj/machinery/door/poddoor/preopen{
+ id = "xenobio2";
+ name = "containment blast door"
+ },
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable{
+ icon_state = "0-4";
+ d2 = 4
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/engine,
+/area/science/xenobiology)
+"bzo" = (
+/obj/machinery/door/poddoor/preopen{
+ id = "xenobio3";
+ name = "containment blast door"
+ },
+/obj/machinery/door/window/northleft{
+ base_state = "right";
+ dir = 2;
+ icon_state = "right";
+ name = "Containment Pen #2";
+ req_access_txt = "55"
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/engine,
+/area/science/xenobiology)
+"bzp" = (
+/obj/machinery/door/poddoor/preopen{
+ id = "xenobio2";
+ name = "containment blast door"
+ },
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable,
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/turf/open/floor/engine,
+/area/science/xenobiology)
+"bzq" = (
+/obj/machinery/door/poddoor/preopen{
+ id = "xenobio3";
+ name = "containment blast door"
+ },
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable{
+ icon_state = "0-4";
+ d2 = 4
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/engine,
+/area/science/xenobiology)
+"bzr" = (
+/obj/machinery/door/poddoor/preopen{
+ id = "xenobio3";
+ name = "containment blast door"
+ },
+/obj/machinery/door/window/northleft{
+ base_state = "right";
+ dir = 2;
+ icon_state = "right";
+ name = "Containment Pen #3";
+ req_access_txt = "55"
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/engine,
+/area/science/xenobiology)
+"bzs" = (
+/obj/machinery/door/poddoor/preopen{
+ id = "xenobio3";
+ name = "containment blast door"
+ },
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/structure/cable,
+/turf/open/floor/engine,
+/area/science/xenobiology)
+"bzt" = (
+/obj/machinery/door/poddoor/preopen{
+ id = "xenobio4";
+ name = "containment blast door"
+ },
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable{
+ icon_state = "0-4";
+ d2 = 4
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/engine,
+/area/science/xenobiology)
+"bzu" = (
+/obj/machinery/door/poddoor/preopen{
+ id = "xenobio4";
+ name = "containment blast door"
+ },
+/obj/machinery/door/window/northleft{
+ base_state = "right";
+ dir = 2;
+ icon_state = "right";
+ name = "Containment Pen #4";
+ req_access_txt = "55"
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/engine,
+/area/science/xenobiology)
+"bzv" = (
+/obj/machinery/door/poddoor/preopen{
+ id = "xenobio4";
+ name = "containment blast door"
+ },
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable,
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/turf/open/floor/engine,
+/area/science/xenobiology)
+"bzw" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 6
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/cargo)
+"bzx" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 9
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/cargo)
+"bzy" = (
+/obj/structure/grille,
+/turf/open/space,
+/area/space)
+"bzz" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/structure/chair{
+ dir = 4
+ },
+/obj/structure/sign/holy{
+ pixel_x = -32
+ },
+/turf/open/floor/plasteel/black,
+/area/hallway/secondary/entry)
+"bzA" = (
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel/black,
+/area/hallway/secondary/entry)
+"bzB" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/machinery/computer/security/telescreen{
+ desc = "Used for watching the monastery.";
+ dir = 8;
+ name = "Monastery Monitor";
+ network = list("Monastery");
+ pixel_x = 28;
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/black,
+/area/hallway/secondary/entry)
+"bzC" = (
+/obj/structure/table,
+/obj/effect/spawner/lootdrop/maintenance{
+ lootcount = 2;
+ name = "2maintenance loot spawner"
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/engine)
+"bzD" = (
+/obj/structure/chair/stool,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/plating{
+ burnt = 1;
+ icon_state = "panelscorched"
+ },
+/area/maintenance/department/engine)
+"bzE" = (
+/obj/structure/flora/grass/jungle/b,
+/obj/machinery/camera{
+ c_tag = "Genetics Monkey Pen Aft";
+ dir = 4;
+ network = list("SS13","RD")
+ },
+/obj/structure/flora/ausbushes/grassybush,
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/open/floor/grass,
+/area/medical/genetics)
+"bzF" = (
+/obj/machinery/door/window/eastleft{
+ name = "Monkey Pen";
+ req_one_access_txt = "9"
+ },
+/obj/item/weapon/reagent_containers/food/snacks/grown/banana,
+/turf/open/floor/grass,
+/area/medical/genetics)
+"bzG" = (
+/turf/open/floor/plasteel/whitepurple/side{
+ dir = 8
+ },
+/area/medical/genetics)
+"bzH" = (
+/turf/open/floor/plasteel/white,
+/area/medical/genetics)
+"bzI" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/genetics)
+"bzJ" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 6
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/genetics)
+"bzK" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/genetics)
+"bzL" = (
+/obj/structure/sink{
+ dir = 4;
+ pixel_x = 11
+ },
+/obj/structure/mirror{
+ pixel_x = 28
+ },
+/turf/open/floor/plasteel/whitepurple/side{
+ dir = 4
+ },
+/area/medical/genetics)
+"bzM" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 5
+ },
+/obj/item/weapon/twohanded/required/kirbyplants{
+ icon_state = "plant-10";
+ layer = 4.1
+ },
+/turf/open/floor/plasteel/whitegreen/side,
+/area/medical/medbay/zone3)
+"bzN" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 10
+ },
+/turf/open/floor/plasteel/whitegreen/side,
+/area/medical/medbay/zone3)
+"bzO" = (
+/obj/structure/chair{
+ dir = 8
+ },
+/turf/open/floor/plasteel/whitegreen/side,
+/area/medical/medbay/zone3)
+"bzP" = (
+/obj/machinery/vending/medical,
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/machinery/airalarm{
+ dir = 4;
+ pixel_x = -22
+ },
+/turf/open/floor/plasteel/whiteblue/side{
+ dir = 1
+ },
+/area/medical/sleeper)
+"bzQ" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/open/floor/plasteel/whiteblue/side{
+ dir = 1
+ },
+/area/medical/sleeper)
+"bzR" = (
+/turf/open/floor/plasteel/whiteblue/side{
+ dir = 1
+ },
+/area/medical/sleeper)
+"bzS" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/open/floor/plasteel/whiteblue/side{
+ dir = 1
+ },
+/area/medical/sleeper)
+"bzT" = (
+/obj/structure/sink{
+ dir = 4;
+ pixel_x = 11
+ },
+/obj/machinery/button/door{
+ desc = "A remote control switch for exiting the sleeper room.";
+ id = "MedbaySleepers";
+ name = "Medbay Exit Button";
+ normaldoorcontrol = 1;
+ pixel_x = 24;
+ pixel_y = 24
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/whiteblue/side{
+ dir = 1
+ },
+/area/medical/sleeper)
+"bzU" = (
+/obj/structure/grille,
+/obj/structure/window/fulltile,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/medical/sleeper)
+"bzV" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/whiteblue/corner{
+ dir = 8
+ },
+/area/medical/medbay/central)
+"bzW" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/central)
+"bzX" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/whiteblue/corner,
+/area/medical/medbay/central)
+"bzY" = (
+/obj/structure/sign/bluecross_2,
+/turf/closed/wall,
+/area/crew_quarters/heads/cmo)
+"bzZ" = (
+/obj/machinery/suit_storage_unit/cmo,
+/turf/open/floor/plasteel/cmo,
+/area/crew_quarters/heads/cmo)
+"bAa" = (
+/obj/machinery/computer/crew,
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/machinery/requests_console{
+ announcementConsole = 1;
+ department = "Chief Medical Officer's Desk";
+ departmentType = 5;
+ name = "Chief Medical Officer RC";
+ pixel_y = 30
+ },
+/turf/open/floor/plasteel/cmo,
+/area/crew_quarters/heads/cmo)
+"bAb" = (
+/obj/machinery/computer/med_data,
+/turf/open/floor/plasteel/cmo,
+/area/crew_quarters/heads/cmo)
+"bAc" = (
+/obj/machinery/computer/card/minor/cmo,
+/obj/machinery/airalarm{
+ pixel_y = 22
+ },
+/turf/open/floor/plasteel/cmo,
+/area/crew_quarters/heads/cmo)
+"bAd" = (
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk,
+/obj/machinery/keycard_auth{
+ pixel_x = 26;
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/cmo,
+/area/crew_quarters/heads/cmo)
+"bAe" = (
+/obj/structure/closet/wardrobe/chemistry_white,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 5
+ },
+/turf/open/floor/plasteel/whiteyellow/side{
+ dir = 10
+ },
+/area/medical/chemistry)
+"bAf" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 10
+ },
+/turf/open/floor/plasteel/whiteyellow/side,
+/area/medical/chemistry)
+"bAg" = (
+/obj/structure/table/glass,
+/obj/machinery/reagentgrinder,
+/obj/machinery/light,
+/obj/machinery/airalarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/turf/open/floor/plasteel/whiteyellow/side,
+/area/medical/chemistry)
+"bAh" = (
+/obj/structure/table/glass,
+/obj/item/stack/sheet/mineral/plasma{
+ amount = 2;
+ layer = 2.9
+ },
+/obj/item/weapon/grenade/chem_grenade,
+/obj/item/weapon/grenade/chem_grenade,
+/obj/item/weapon/grenade/chem_grenade,
+/obj/item/stack/cable_coil/random,
+/obj/item/weapon/screwdriver,
+/turf/open/floor/plasteel/whiteyellow/side{
+ dir = 6
+ },
+/area/medical/chemistry)
+"bAi" = (
+/obj/item/weapon/folder/white,
+/obj/item/clothing/gloves/color/latex,
+/obj/structure/table/glass,
+/turf/open/floor/plasteel/yellow/side{
+ dir = 8
+ },
+/area/hallway/primary/aft)
+"bAj" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"bAk" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"bAl" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"bAm" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/table/glass,
+/obj/item/weapon/paper_bin{
+ layer = 2.9;
+ pixel_x = -2;
+ pixel_y = 4
+ },
+/turf/open/floor/plasteel/purple/side{
+ dir = 4
+ },
+/area/hallway/primary/aft)
+"bAn" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "research_shutters_2";
+ name = "research shutters"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/science/explab)
+"bAo" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/window/reinforced,
+/turf/open/floor/plasteel/whitepurple/side,
+/area/science/explab)
+"bAp" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/door/window{
+ name = "Research Director's Office";
+ req_access_txt = "30"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/whitepurple/side,
+/area/science/explab)
+"bAq" = (
+/obj/structure/table,
+/obj/item/weapon/stock_parts/console_screen,
+/obj/item/weapon/stock_parts/console_screen,
+/obj/item/weapon/stock_parts/capacitor,
+/obj/item/weapon/stock_parts/capacitor,
+/obj/item/weapon/stock_parts/manipulator,
+/obj/item/weapon/stock_parts/manipulator,
+/obj/item/weapon/stock_parts/scanning_module,
+/obj/item/weapon/stock_parts/scanning_module,
+/obj/item/device/multitool,
+/obj/structure/window/reinforced,
+/turf/open/floor/plasteel/whitepurple/side,
+/area/science/explab)
+"bAr" = (
+/obj/structure/table,
+/obj/machinery/cell_charger,
+/obj/item/weapon/stock_parts/cell/high/plus,
+/obj/item/weapon/stock_parts/cell/high/plus,
+/obj/structure/window/reinforced,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/whitepurple/side,
+/area/science/explab)
+"bAs" = (
+/obj/structure/table,
+/obj/item/weapon/stock_parts/matter_bin,
+/obj/item/weapon/stock_parts/matter_bin,
+/obj/item/weapon/stock_parts/micro_laser,
+/obj/item/weapon/stock_parts/micro_laser,
+/obj/item/stack/cable_coil,
+/obj/item/stack/cable_coil,
+/obj/machinery/light_switch{
+ pixel_x = 25
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/structure/window/reinforced,
+/turf/open/floor/plasteel/whitepurple/side,
+/area/science/explab)
+"bAt" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/security/checkpoint/science)
+"bAu" = (
+/turf/closed/wall,
+/area/security/checkpoint/science)
+"bAv" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 8
+ },
+/obj/machinery/camera{
+ c_tag = "Research Division Hallway";
+ dir = 4
+ },
+/turf/open/floor/plasteel/purple/side{
+ dir = 8
+ },
+/area/science/research/lobby)
+"bAw" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel,
+/area/science/research/lobby)
+"bAx" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 27
+ },
+/obj/effect/turf_decal/stripes/line{
+ tag = "icon-warninglinecorner (WEST)";
+ icon_state = "warninglinecorner";
+ dir = 8
+ },
+/turf/open/floor/plasteel/purple/side{
+ dir = 4
+ },
+/area/science/research/lobby)
+"bAy" = (
+/turf/closed/wall/r_wall,
+/area/science/research/lobby)
+"bAz" = (
+/turf/closed/wall,
+/area/science/research)
+"bAA" = (
+/turf/closed/wall,
+/area/science/storage)
+"bAB" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/closed/wall,
+/area/science/storage)
+"bAC" = (
+/obj/machinery/door/firedoor,
+/turf/open/floor/plasteel/darkpurple/side{
+ dir = 8
+ },
+/area/science/research)
+"bAD" = (
+/obj/machinery/door/firedoor,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/black,
+/area/science/research)
+"bAE" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/door/firedoor,
+/turf/open/floor/plasteel/darkpurple/side{
+ tag = "icon-darkpurple (EAST)";
+ icon_state = "darkpurple";
+ dir = 4
+ },
+/area/science/research)
+"bAF" = (
+/turf/closed/wall,
+/area/science/mixing)
+"bAG" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/closed/wall,
+/area/science/mixing)
+"bAH" = (
+/obj/structure/disposaloutlet,
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/turf/open/floor/engine,
+/area/science/xenobiology)
+"bAI" = (
+/obj/structure/transit_tube/curved/flipped{
+ icon_state = "curved1";
+ dir = 4
+ },
+/turf/open/space/basic,
+/area/space)
+"bAJ" = (
+/obj/structure/transit_tube/horizontal,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/hallway/secondary/entry)
+"bAK" = (
+/obj/structure/transit_tube/horizontal,
+/turf/open/floor/plating,
+/area/hallway/secondary/entry)
+"bAL" = (
+/obj/structure/transit_tube/station/reverse/flipped,
+/obj/structure/transit_tube_pod{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/hallway/secondary/entry)
+"bAM" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/item/weapon/extinguisher,
+/turf/open/floor/plating{
+ burnt = 1;
+ icon_state = "panelscorched"
+ },
+/area/maintenance/department/engine)
+"bAN" = (
+/obj/structure/flora/ausbushes/sparsegrass,
+/turf/open/floor/grass,
+/area/medical/genetics)
+"bAO" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 4
+ },
+/obj/machinery/light/small,
+/turf/open/floor/grass,
+/area/medical/genetics)
+"bAP" = (
+/obj/structure/window/reinforced{
+ dir = 4;
+ layer = 2.9
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/flora/ausbushes/palebush,
+/turf/open/floor/grass,
+/area/medical/genetics)
+"bAQ" = (
+/obj/structure/table,
+/obj/item/weapon/reagent_containers/glass/beaker,
+/obj/item/weapon/reagent_containers/dropper,
+/obj/item/weapon/storage/pill_bottle/mutadone,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/whitepurple/side{
+ dir = 8
+ },
+/area/medical/genetics)
+"bAR" = (
+/obj/structure/chair/stool,
+/obj/effect/landmark/start/geneticist,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/genetics)
+"bAS" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/genetics)
+"bAT" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 9
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/genetics)
+"bAU" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/genetics)
+"bAV" = (
+/obj/machinery/shower{
+ dir = 8
+ },
+/obj/machinery/requests_console{
+ department = "Genetics";
+ departmentType = 0;
+ name = "Genetics Requests Console";
+ pixel_x = 32
+ },
+/turf/open/floor/plasteel/whitepurple/side{
+ dir = 4
+ },
+/area/medical/genetics)
+"bAW" = (
+/turf/closed/wall,
+/area/medical/virology)
+"bAX" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/virology{
+ autoclose = 0;
+ frequency = 1449;
+ icon_state = "door_locked";
+ id_tag = "virology_airlock_exterior";
+ locked = 1;
+ name = "Virology Exterior Airlock";
+ req_access_txt = "39"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/doorButtons/access_button{
+ idDoor = "virology_airlock_exterior";
+ idSelf = "virology_airlock_control";
+ name = "Virology Access Button";
+ pixel_x = -24;
+ req_access_txt = "39"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/white,
+/area/medical/virology)
+"bAY" = (
+/obj/structure/sign/biohazard,
+/turf/closed/wall,
+/area/medical/virology)
+"bAZ" = (
+/obj/effect/turf_decal/stripes/corner,
+/obj/structure/chair,
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/sleeper)
+"bBa" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/sleeper)
+"bBb" = (
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel/white,
+/area/medical/sleeper)
+"bBc" = (
+/obj/effect/turf_decal/stripes/corner{
+ dir = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/sleeper)
+"bBd" = (
+/obj/machinery/door/airlock/glass_medical{
+ id_tag = "MedbaySleepers";
+ name = "Sleepers";
+ req_access_txt = "5"
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/sleeper)
+"bBe" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel/whiteblue/side{
+ dir = 8
+ },
+/area/medical/medbay/central)
+"bBf" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/central)
+"bBg" = (
+/turf/open/floor/plasteel/cmo,
+/area/crew_quarters/heads/cmo)
+"bBh" = (
+/mob/living/simple_animal/pet/cat/Runtime,
+/turf/open/floor/plasteel/cmo,
+/area/crew_quarters/heads/cmo)
+"bBi" = (
+/obj/effect/landmark/start/chief_medical_officer,
+/obj/structure/chair/office/light{
+ dir = 1
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/open/floor/plasteel/cmo,
+/area/crew_quarters/heads/cmo)
+"bBj" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/cmo,
+/area/crew_quarters/heads/cmo)
+"bBk" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/camera{
+ c_tag = "Chief Medical Office";
+ dir = 8;
+ network = list("SS13")
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 10
+ },
+/obj/machinery/computer/security/telescreen{
+ desc = "Used for watching surgery.";
+ dir = 8;
+ layer = 4;
+ name = "Surgery Telescreen";
+ network = list("Surgery");
+ pixel_x = 30
+ },
+/turf/open/floor/plasteel/cmo,
+/area/crew_quarters/heads/cmo)
+"bBl" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Chemistry Lab Maintenance";
+ req_access_txt = "5; 33"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plating,
+/area/medical/chemistry)
+"bBm" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/yellow/corner{
+ dir = 8
+ },
+/area/hallway/primary/aft)
+"bBn" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/plasteel/yellow/corner,
+/area/hallway/primary/aft)
+"bBo" = (
+/turf/closed/wall,
+/area/hallway/primary/aft)
+"bBp" = (
+/turf/closed/wall/r_wall,
+/area/crew_quarters/heads/hor)
+"bBq" = (
+/obj/structure/closet/secure_closet/RD,
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "RD Office APC";
+ pixel_x = -25
+ },
+/obj/structure/cable{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/turf/open/floor/plasteel/darkpurple/side{
+ tag = "icon-darkpurple (NORTHWEST)";
+ icon_state = "darkpurple";
+ dir = 9
+ },
+/area/crew_quarters/heads/hor)
+"bBr" = (
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/darkpurple/side{
+ icon_state = "darkpurple";
+ dir = 1
+ },
+/area/crew_quarters/heads/hor)
+"bBs" = (
+/obj/structure/disposalpipe/segment{
+ icon_state = "pipe-s";
+ dir = 4
+ },
+/turf/open/floor/plasteel/darkpurple/side{
+ icon_state = "darkpurple";
+ dir = 1
+ },
+/area/crew_quarters/heads/hor)
+"bBt" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/disposalpipe/segment{
+ icon_state = "pipe-s";
+ dir = 4
+ },
+/turf/open/floor/plasteel/darkpurple/side{
+ icon_state = "darkpurple";
+ dir = 1
+ },
+/area/crew_quarters/heads/hor)
+"bBu" = (
+/obj/item/weapon/twohanded/required/kirbyplants/dead,
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/button/door{
+ id = "rndshutters";
+ name = "Research Lockdown";
+ pixel_x = 28;
+ pixel_y = -5;
+ req_access_txt = "47"
+ },
+/obj/machinery/keycard_auth{
+ pixel_x = 28;
+ pixel_y = 6
+ },
+/turf/open/floor/plasteel/darkpurple/side{
+ tag = "icon-darkpurple (NORTHEAST)";
+ icon_state = "darkpurple";
+ dir = 5
+ },
+/area/crew_quarters/heads/hor)
+"bBv" = (
+/turf/closed/wall,
+/area/crew_quarters/heads/hor)
+"bBw" = (
+/obj/machinery/computer/security,
+/turf/open/floor/plasteel/red/side{
+ dir = 8
+ },
+/area/security/checkpoint/science)
+"bBx" = (
+/obj/machinery/computer/security/mining,
+/turf/open/floor/plasteel/red/side,
+/area/security/checkpoint/science)
+"bBy" = (
+/obj/machinery/computer/secure_data,
+/obj/machinery/airalarm{
+ dir = 8;
+ pixel_x = 23
+ },
+/obj/item/device/radio/intercom{
+ dir = 8;
+ freerange = 1;
+ name = "Station Intercom (Telecomms)";
+ pixel_x = 28;
+ pixel_y = 24
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 6
+ },
+/area/security/checkpoint/science)
+"bBz" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel,
+/area/science/research/lobby)
+"bBA" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/purple/side{
+ dir = 4
+ },
+/area/science/research/lobby)
+"bBB" = (
+/obj/item/weapon/twohanded/required/kirbyplants{
+ icon_state = "plant-20";
+ layer = 4.1;
+ pixel_y = 3
+ },
+/turf/open/floor/plasteel/black,
+/area/science/research/lobby)
+"bBC" = (
+/obj/machinery/portable_atmospherics/canister/toxins,
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/engine,
+/area/science/storage)
+"bBD" = (
+/obj/machinery/portable_atmospherics/canister/toxins,
+/obj/effect/turf_decal/delivery,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/engine,
+/area/science/storage)
+"bBE" = (
+/obj/machinery/portable_atmospherics/canister/toxins,
+/obj/effect/turf_decal/delivery,
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/engine,
+/area/science/storage)
+"bBF" = (
+/obj/machinery/portable_atmospherics/scrubber/huge,
+/obj/machinery/airalarm{
+ dir = 2;
+ pixel_y = 22
+ },
+/turf/open/floor/engine,
+/area/science/storage)
+"bBG" = (
+/obj/machinery/portable_atmospherics/scrubber/huge,
+/turf/open/floor/engine,
+/area/science/storage)
+"bBH" = (
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -28
+ },
+/turf/open/floor/plasteel/darkpurple/side{
+ dir = 8
+ },
+/area/science/research)
+"bBI" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/black,
+/area/science/research)
+"bBJ" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/darkpurple/side{
+ tag = "icon-darkpurple (EAST)";
+ icon_state = "darkpurple";
+ dir = 4
+ },
+/area/science/research)
+"bBK" = (
+/obj/structure/closet/bombcloset,
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
+ },
+/turf/open/floor/plasteel/black,
+/area/science/mixing)
+"bBL" = (
+/obj/structure/closet/bombcloset,
+/turf/open/floor/plasteel/black,
+/area/science/mixing)
+"bBM" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/machinery/airalarm{
+ pixel_y = 22
+ },
+/obj/machinery/atmospherics/components/unary/portables_connector/visible,
+/obj/machinery/portable_atmospherics/canister,
+/turf/open/floor/plasteel/black,
+/area/science/mixing)
+"bBN" = (
+/obj/item/device/radio/intercom{
+ dir = 0;
+ name = "Station Intercom (General)";
+ pixel_y = 26
+ },
+/obj/machinery/atmospherics/components/unary/portables_connector/visible,
+/obj/machinery/portable_atmospherics/canister,
+/obj/machinery/camera{
+ c_tag = "Toxins Lab Port";
+ dir = 2;
+ network = list("SS13","RD")
+ },
+/turf/open/floor/plasteel/black,
+/area/science/mixing)
+"bBO" = (
+/obj/machinery/atmospherics/components/unary/portables_connector/visible,
+/turf/open/floor/plasteel/black,
+/area/science/mixing)
+"bBP" = (
+/obj/machinery/portable_atmospherics/scrubber,
+/turf/open/floor/plasteel/black,
+/area/science/mixing)
+"bBQ" = (
+/obj/structure/cable{
+ icon_state = "0-2";
+ d2 = 2
+ },
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "Toxins Lab APC";
+ pixel_y = 25
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/black,
+/area/science/mixing)
+"bBR" = (
+/obj/machinery/atmospherics/components/unary/portables_connector/visible,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/structure/sign/poster/official/random{
+ pixel_y = 32
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 5
+ },
+/area/science/mixing)
+"bBS" = (
+/obj/machinery/atmospherics/components/unary/portables_connector/visible,
+/obj/machinery/camera{
+ c_tag = "Toxins Lab Starboard";
+ dir = 2;
+ network = list("SS13","RD")
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 5
+ },
+/area/science/mixing)
+"bBT" = (
+/obj/machinery/atmospherics/components/unary/portables_connector/visible,
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 24
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/structure/sign/poster/official/random{
+ pixel_y = 32
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 5
+ },
+/area/science/mixing)
+"bBU" = (
+/obj/effect/landmark/revenantspawn,
+/mob/living/simple_animal/slime,
+/turf/open/floor/engine,
+/area/science/xenobiology)
+"bBV" = (
+/obj/structure/transit_tube/curved,
+/turf/open/space,
+/area/space)
+"bBW" = (
+/turf/open/space,
+/area/space)
+"bBX" = (
+/turf/closed/wall/r_wall,
+/area/maintenance/department/engine)
+"bBY" = (
+/obj/structure/closet/crate/medical,
+/obj/item/stack/medical/ointment,
+/obj/item/stack/medical/bruise_pack,
+/turf/open/floor/plating,
+/area/maintenance/department/engine)
+"bBZ" = (
+/obj/structure/table,
+/obj/item/weapon/pen,
+/obj/item/device/radio/intercom{
+ dir = 0;
+ name = "Station Intercom (General)";
+ pixel_x = -27
+ },
+/obj/item/weapon/paper_bin{
+ layer = 2.9
+ },
+/turf/open/floor/plasteel/whitepurple/side{
+ dir = 10
+ },
+/area/medical/genetics)
+"bCa" = (
+/obj/machinery/computer/scan_consolenew,
+/turf/open/floor/plasteel/whitepurple/side,
+/area/medical/genetics)
+"bCb" = (
+/obj/machinery/dna_scannernew,
+/obj/machinery/camera{
+ c_tag = "Genetics";
+ dir = 1;
+ network = list("SS13","RD")
+ },
+/turf/open/floor/plasteel/whitepurple/side,
+/area/medical/genetics)
+"bCc" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/open/floor/plasteel/whitepurple/corner{
+ dir = 8
+ },
+/area/medical/genetics)
+"bCd" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/genetics)
+"bCe" = (
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "Genetics APC";
+ pixel_x = 27
+ },
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/turf/open/floor/plasteel/whitepurple/side{
+ dir = 4
+ },
+/area/medical/genetics)
+"bCf" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 4
+ },
+/obj/machinery/shower{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/virology)
+"bCg" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/virology)
+"bCh" = (
+/obj/structure/closet/emcloset,
+/obj/machinery/camera{
+ c_tag = "Virology Airlock";
+ dir = 2;
+ network = list("SS13")
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/virology)
+"bCi" = (
+/obj/structure/table/glass,
+/obj/item/stack/medical/gauze,
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "Treatment Center APC";
+ pixel_x = -24
+ },
+/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone,
+/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone,
+/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone,
+/obj/structure/cable,
+/turf/open/floor/plasteel/blue,
+/area/medical/sleeper)
+"bCj" = (
+/obj/machinery/sleeper{
+ dir = 4
+ },
+/turf/open/floor/plasteel/blue,
+/area/medical/sleeper)
+"bCk" = (
+/obj/machinery/light,
+/turf/open/floor/plasteel/blue,
+/area/medical/sleeper)
+"bCl" = (
+/obj/machinery/sleeper{
+ dir = 8
+ },
+/turf/open/floor/plasteel/blue,
+/area/medical/sleeper)
+"bCm" = (
+/obj/structure/table/glass,
+/obj/item/clothing/neck/stethoscope,
+/obj/item/device/healthanalyzer,
+/turf/open/floor/plasteel/blue,
+/area/medical/sleeper)
+"bCn" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/whiteblue/side{
+ dir = 8
+ },
+/area/medical/medbay/central)
+"bCo" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/central)
+"bCp" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel/whiteblue/side{
+ dir = 4
+ },
+/area/medical/medbay/central)
+"bCq" = (
+/obj/machinery/door/airlock/glass_command{
+ name = "Chief Medical Office";
+ req_access_txt = "40"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/barber,
+/area/crew_quarters/heads/cmo)
+"bCr" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 10
+ },
+/turf/open/floor/plasteel/cmo,
+/area/crew_quarters/heads/cmo)
+"bCs" = (
+/obj/structure/table/glass,
+/obj/item/weapon/paper_bin{
+ pixel_x = -2;
+ pixel_y = 5
+ },
+/obj/item/weapon/pen{
+ layer = 3.1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel/cmo,
+/area/crew_quarters/heads/cmo)
+"bCt" = (
+/obj/structure/table/glass,
+/obj/item/weapon/folder/white,
+/obj/item/clothing/glasses/hud/health,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel/cmo,
+/area/crew_quarters/heads/cmo)
+"bCu" = (
+/obj/structure/table/glass,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/item/stack/medical/gauze,
+/obj/item/clothing/neck/stethoscope,
+/turf/open/floor/plasteel/cmo,
+/area/crew_quarters/heads/cmo)
+"bCv" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/disposalpipe/sortjunction{
+ dir = 8;
+ icon_state = "pipe-j1s";
+ sortType = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 5
+ },
+/turf/open/floor/plasteel/cmo,
+/area/crew_quarters/heads/cmo)
+"bCw" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "CMO Maintenance";
+ req_access_txt = "40"
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/engine)
+"bCx" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/engine)
+"bCy" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/disposalpipe/sortjunction{
+ dir = 8;
+ icon_state = "pipe-j1s";
+ sortType = 11
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
+/turf/open/floor/plating,
+/area/maintenance/department/engine)
+"bCz" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/engine)
+"bCA" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/engine)
+"bCB" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 10
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/engine)
+"bCC" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/yellow/corner,
+/area/hallway/primary/aft)
+"bCD" = (
+/obj/machinery/vending/cola,
+/turf/open/floor/plasteel/black,
+/area/hallway/primary/aft)
+"bCE" = (
+/obj/machinery/computer/robotics,
+/turf/open/floor/plasteel/darkpurple/side{
+ dir = 8
+ },
+/area/crew_quarters/heads/hor)
+"bCF" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/black,
+/area/crew_quarters/heads/hor)
+"bCG" = (
+/obj/structure/displaycase/labcage,
+/turf/open/floor/plasteel/black,
+/area/crew_quarters/heads/hor)
+"bCH" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/open/floor/plasteel/black,
+/area/crew_quarters/heads/hor)
+"bCI" = (
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk{
+ icon_state = "pipe-t";
+ dir = 1
+ },
+/obj/machinery/light{
+ dir = 4;
+ light_color = "#c1caff"
+ },
+/turf/open/floor/plasteel/darkpurple/side{
+ tag = "icon-darkpurple (EAST)";
+ icon_state = "darkpurple";
+ dir = 4
+ },
+/area/crew_quarters/heads/hor)
+"bCJ" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "research_shutters_2";
+ name = "research shutters"
+ },
+/turf/open/floor/plating,
+/area/crew_quarters/heads/hor)
+"bCK" = (
+/obj/machinery/recharger{
+ pixel_y = 4
+ },
+/obj/structure/table,
+/obj/machinery/camera{
+ c_tag = "Science Security Post";
+ dir = 4;
+ network = list("SS13","RD")
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 10
+ },
+/area/security/checkpoint/science)
+"bCL" = (
+/obj/effect/landmark/start/depsec/science,
+/obj/structure/chair/office/dark{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/security/checkpoint/science)
+"bCM" = (
+/turf/open/floor/plasteel/red/side{
+ dir = 4
+ },
+/area/security/checkpoint/science)
+"bCN" = (
+/obj/structure/chair/comfy,
+/turf/open/floor/plasteel/black,
+/area/science/research/lobby)
+"bCO" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/science/research/lobby)
+"bCP" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/science/storage)
+"bCQ" = (
+/obj/machinery/portable_atmospherics/canister/toxins,
+/obj/effect/turf_decal/delivery,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/engine,
+/area/science/storage)
+"bCR" = (
+/turf/open/floor/engine,
+/area/science/storage)
+"bCS" = (
+/obj/structure/sign/fire,
+/turf/closed/wall,
+/area/science/storage)
+"bCT" = (
+/turf/open/floor/plasteel/darkpurple/side{
+ dir = 8
+ },
+/area/science/research)
+"bCU" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/black,
+/area/science/research)
+"bCV" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/science/mixing)
+"bCW" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/science/mixing)
+"bCX" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 5
+ },
+/turf/open/floor/plasteel/white,
+/area/science/mixing)
+"bCY" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/general/visible,
+/turf/open/floor/plasteel/white,
+/area/science/mixing)
+"bCZ" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 9
+ },
+/turf/open/floor/plasteel/white,
+/area/science/mixing)
+"bDa" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/white,
+/area/science/mixing)
+"bDb" = (
+/obj/machinery/atmospherics/components/trinary/mixer/flipped{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 5
+ },
+/area/science/mixing)
+"bDc" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 9
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 5
+ },
+/area/science/mixing)
+"bDd" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible,
+/obj/machinery/requests_console{
+ department = "Science";
+ departmentType = 2;
+ name = "Science Requests Console";
+ pixel_x = 32;
+ receive_ore_updates = 1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/item/weapon/wrench,
+/turf/open/floor/plasteel/vault{
+ dir = 5
+ },
+/area/science/mixing)
+"bDe" = (
+/obj/machinery/light{
+ light_color = "#d1dfff"
+ },
+/turf/open/floor/engine,
+/area/science/xenobiology)
+"bDf" = (
+/obj/structure/transit_tube,
+/obj/structure/lattice,
+/turf/open/space,
+/area/space)
+"bDg" = (
+/obj/machinery/atmospherics/components/unary/tank/air{
+ dir = 2
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/engine)
+"bDh" = (
+/obj/machinery/portable_atmospherics/canister/oxygen,
+/turf/open/floor/plating,
+/area/maintenance/department/engine)
+"bDi" = (
+/turf/open/floor/plating,
+/area/maintenance/department/engine)
+"bDj" = (
+/obj/item/trash/candy,
+/obj/effect/decal/cleanable/deadcockroach,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/engine)
+"bDk" = (
+/obj/item/chair,
+/obj/item/weapon/cigbutt/roach,
+/turf/open/floor/plating,
+/area/maintenance/department/engine)
+"bDl" = (
+/obj/structure/closet/secure_closet/medical1,
+/turf/open/floor/plasteel/whitepurple/side{
+ dir = 10
+ },
+/area/medical/genetics)
+"bDm" = (
+/obj/structure/closet/secure_closet/personal/patient,
+/obj/machinery/light,
+/obj/machinery/airalarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/turf/open/floor/plasteel/whitepurple/side,
+/area/medical/genetics)
+"bDn" = (
+/obj/structure/closet/wardrobe/genetics_white,
+/turf/open/floor/plasteel/whitepurple/side{
+ dir = 6
+ },
+/area/medical/genetics)
+"bDo" = (
+/obj/machinery/shower{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/virology)
+"bDp" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/white,
+/area/medical/virology)
+"bDq" = (
+/obj/structure/closet/l3closet,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/virology)
+"bDr" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/medical/sleeper)
+"bDs" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/airalarm{
+ dir = 4;
+ pixel_x = -22
+ },
+/turf/open/floor/plasteel/whiteblue/side{
+ dir = 8
+ },
+/area/medical/medbay/central)
+"bDt" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 5
+ },
+/turf/open/floor/plasteel/cmo,
+/area/crew_quarters/heads/cmo)
+"bDu" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/cmo,
+/area/crew_quarters/heads/cmo)
+"bDv" = (
+/obj/structure/chair/office/light{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/cmo,
+/area/crew_quarters/heads/cmo)
+"bDw" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/open/floor/plasteel/cmo,
+/area/crew_quarters/heads/cmo)
+"bDx" = (
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "CMO's Office APC";
+ pixel_x = 26
+ },
+/obj/structure/cable,
+/turf/open/floor/plasteel/cmo,
+/area/crew_quarters/heads/cmo)
+"bDy" = (
+/turf/closed/wall,
+/area/medical/exam_room)
+"bDz" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plating,
+/area/maintenance/department/engine)
+"bDA" = (
+/obj/machinery/vending/cigarette,
+/turf/open/floor/plasteel/black,
+/area/hallway/primary/aft)
+"bDB" = (
+/obj/machinery/computer/aifixer,
+/obj/machinery/airalarm{
+ dir = 4;
+ locked = 0;
+ pixel_x = -23
+ },
+/turf/open/floor/plasteel/darkpurple/side{
+ dir = 8
+ },
+/area/crew_quarters/heads/hor)
+"bDC" = (
+/obj/structure/chair/office/light{
+ dir = 8
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/open/floor/plasteel/black,
+/area/crew_quarters/heads/hor)
+"bDD" = (
+/turf/open/floor/plasteel/black,
+/area/crew_quarters/heads/hor)
+"bDE" = (
+/obj/structure/chair/office/light,
+/obj/effect/landmark/start/research_director,
+/turf/open/floor/plasteel/black,
+/area/crew_quarters/heads/hor)
+"bDF" = (
+/obj/machinery/computer/card/minor/rd,
+/turf/open/floor/plasteel/darkpurple/side{
+ tag = "icon-darkpurple (EAST)";
+ icon_state = "darkpurple";
+ dir = 4
+ },
+/area/crew_quarters/heads/hor)
+"bDG" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 8
+ },
+/area/security/checkpoint/science)
+"bDH" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 10
+ },
+/turf/open/floor/plasteel,
+/area/security/checkpoint/science)
+"bDI" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on,
+/turf/open/floor/plasteel/red/side{
+ dir = 4
+ },
+/area/security/checkpoint/science)
+"bDJ" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel,
+/area/science/research/lobby)
+"bDK" = (
+/obj/structure/table,
+/obj/item/weapon/folder,
+/obj/item/weapon/pen,
+/obj/structure/sign/poster/random{
+ pixel_x = 32
+ },
+/turf/open/floor/plasteel/black,
+/area/science/research/lobby)
+"bDL" = (
+/obj/machinery/portable_atmospherics/canister/oxygen,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/engine,
+/area/science/storage)
+"bDM" = (
+/obj/machinery/portable_atmospherics/canister/oxygen,
+/obj/effect/turf_decal/bot,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/engine,
+/area/science/storage)
+"bDN" = (
+/obj/machinery/portable_atmospherics/canister/oxygen,
+/obj/effect/turf_decal/bot,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/engine,
+/area/science/storage)
+"bDO" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/open/floor/engine,
+/area/science/storage)
+"bDP" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/open/floor/engine,
+/area/science/storage)
+"bDQ" = (
+/obj/machinery/door/firedoor/heavy,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/door/airlock/glass_research{
+ name = "Toxins Storage";
+ req_access_txt = "8"
+ },
+/turf/open/floor/plasteel/black,
+/area/science/storage)
+"bDR" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/darkpurple/side{
+ dir = 8
+ },
+/area/science/research)
+"bDS" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 1
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/open/floor/plasteel/black,
+/area/science/research)
+"bDT" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
+/turf/open/floor/plasteel/darkpurple/side{
+ tag = "icon-darkpurple (EAST)";
+ icon_state = "darkpurple";
+ dir = 4
+ },
+/area/science/research)
+"bDU" = (
+/obj/machinery/door/firedoor/heavy,
+/obj/machinery/door/airlock/glass_research{
+ name = "Toxins Lab";
+ req_access_txt = "8"
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/science/mixing)
+"bDV" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/science/mixing)
+"bDW" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 10
+ },
+/turf/open/floor/plasteel/white,
+/area/science/mixing)
+"bDX" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/white,
+/area/science/mixing)
+"bDY" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 6
+ },
+/turf/open/floor/plasteel/white,
+/area/science/mixing)
+"bDZ" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/science/mixing)
+"bEa" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 9
+ },
+/turf/open/floor/plasteel/white,
+/area/science/mixing)
+"bEb" = (
+/obj/machinery/atmospherics/pipe/manifold/general/visible{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 5
+ },
+/area/science/mixing)
+"bEc" = (
+/obj/machinery/atmospherics/components/binary/valve{
+ dir = 4
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 5
+ },
+/area/science/mixing)
+"bEd" = (
+/obj/machinery/atmospherics/pipe/manifold/general/visible{
+ dir = 4
+ },
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 28
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 5
+ },
+/area/science/mixing)
+"bEe" = (
+/turf/closed/wall,
+/area/science/mineral_storeroom)
+"bEf" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/closed/wall,
+/area/science/mineral_storeroom)
+"bEg" = (
+/turf/closed/wall/r_wall,
+/area/science/mineral_storeroom)
+"bEh" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/item/trash/sosjerky,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plating,
+/area/maintenance/department/cargo)
+"bEi" = (
+/obj/structure/transit_tube,
+/turf/open/space,
+/area/space)
+"bEj" = (
+/obj/machinery/atmospherics/pipe/manifold/general/hidden{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/engine)
+"bEk" = (
+/obj/machinery/atmospherics/pipe/manifold/general/hidden,
+/obj/machinery/meter,
+/obj/machinery/light/small,
+/turf/open/floor/plating,
+/area/maintenance/department/engine)
+"bEl" = (
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 4;
+ name = "Air Out";
+ on = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/engine)
+"bEm" = (
+/obj/machinery/door/airlock/atmos{
+ name = "Atmospherics Maintenance";
+ req_access_txt = "12;24"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/engine)
+"bEn" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/engine)
+"bEo" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 9
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/engine)
+"bEp" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/plating,
+/area/maintenance/department/engine)
+"bEq" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/engine)
+"bEr" = (
+/turf/closed/wall/r_wall,
+/area/medical/virology)
+"bEs" = (
+/obj/structure/sink{
+ dir = 8;
+ pixel_x = -12;
+ pixel_y = 2
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/virology)
+"bEt" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/virology)
+"bEu" = (
+/obj/structure/closet/l3closet,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 10
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/virology)
+"bEv" = (
+/obj/structure/table,
+/obj/item/weapon/storage/box/beakers{
+ pixel_x = 2;
+ pixel_y = 2
+ },
+/obj/item/weapon/storage/box/syringes,
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -26
+ },
+/turf/open/floor/plasteel/whiteblue/side{
+ dir = 1
+ },
+/area/medical/medbay/central)
+"bEw" = (
+/obj/structure/table,
+/obj/item/weapon/storage/firstaid/brute{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/weapon/storage/firstaid/brute,
+/obj/item/weapon/storage/firstaid/regular{
+ pixel_x = -3;
+ pixel_y = -3
+ },
+/turf/open/floor/plasteel/whiteblue/side{
+ dir = 1
+ },
+/area/medical/medbay/central)
+"bEx" = (
+/obj/structure/table,
+/obj/item/weapon/storage/firstaid/fire{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/weapon/storage/firstaid/fire,
+/obj/item/weapon/storage/firstaid/regular{
+ pixel_x = -3;
+ pixel_y = -3
+ },
+/turf/open/floor/plasteel/whiteblue/side{
+ dir = 1
+ },
+/area/medical/medbay/central)
+"bEy" = (
+/obj/structure/table,
+/obj/item/weapon/storage/firstaid/toxin{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/weapon/storage/firstaid/toxin,
+/obj/item/weapon/storage/firstaid/regular{
+ pixel_x = -3;
+ pixel_y = -3
+ },
+/turf/open/floor/plasteel/whiteblue/side{
+ dir = 1
+ },
+/area/medical/medbay/central)
+"bEz" = (
+/obj/structure/table,
+/obj/item/weapon/storage/firstaid/o2{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/weapon/storage/firstaid/o2,
+/obj/item/weapon/storage/firstaid/regular{
+ pixel_x = -3;
+ pixel_y = -3
+ },
+/turf/open/floor/plasteel/whiteblue/side{
+ dir = 1
+ },
+/area/medical/medbay/central)
+"bEA" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/door/firedoor,
+/turf/open/floor/plasteel/whiteblue/corner{
+ dir = 1
+ },
+/area/medical/medbay/central)
+"bEB" = (
+/obj/machinery/door/firedoor,
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/central)
+"bEC" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/door/firedoor,
+/turf/open/floor/plasteel/whiteblue/corner{
+ dir = 4
+ },
+/area/medical/medbay/central)
+"bED" = (
+/obj/structure/closet/secure_closet/CMO,
+/obj/item/weapon/valentine,
+/turf/open/floor/plasteel/cmo,
+/area/crew_quarters/heads/cmo)
+"bEE" = (
+/obj/machinery/modular_computer/console/preset/civilian,
+/turf/open/floor/plasteel/cmo,
+/area/crew_quarters/heads/cmo)
+"bEF" = (
+/obj/item/weapon/cartridge/medical{
+ pixel_x = -2;
+ pixel_y = 6
+ },
+/obj/item/weapon/cartridge/medical{
+ pixel_x = 6;
+ pixel_y = 3
+ },
+/obj/item/weapon/cartridge/medical,
+/obj/item/weapon/cartridge/chemistry{
+ pixel_y = 2
+ },
+/obj/structure/table,
+/obj/machinery/light,
+/obj/item/weapon/wrench/medical,
+/turf/open/floor/plasteel/cmo,
+/area/crew_quarters/heads/cmo)
+"bEG" = (
+/obj/item/weapon/folder/blue,
+/obj/item/weapon/stamp/cmo,
+/obj/structure/table,
+/turf/open/floor/plasteel/cmo,
+/area/crew_quarters/heads/cmo)
+"bEH" = (
+/obj/item/weapon/twohanded/required/kirbyplants{
+ icon_state = "plant-16";
+ layer = 4.1
+ },
+/turf/open/floor/plasteel/cmo,
+/area/crew_quarters/heads/cmo)
+"bEI" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/closet,
+/obj/item/clothing/under/rank/nursesuit,
+/obj/item/clothing/head/nursehat,
+/obj/effect/decal/cleanable/cobweb,
+/obj/machinery/airalarm{
+ pixel_y = 22
+ },
+/obj/structure/sign/poster/official/no_erp{
+ pixel_x = -32
+ },
+/turf/open/floor/plasteel/black,
+/area/medical/exam_room)
+"bEJ" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/machinery/vending/wallmed{
+ pixel_y = 28;
+ products = list(/obj/item/weapon/reagent_containers/syringe = 3, /obj/item/weapon/reagent_containers/pill/patch/styptic = 1, /obj/item/weapon/reagent_containers/pill/patch/silver_sulf = 1, /obj/item/weapon/reagent_containers/spray/medical/sterilizer = 1)
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on,
+/obj/effect/landmark/blobstart,
+/obj/item/weapon/melee/baton/cattleprod{
+ cell = new /obj/item/weapon/stock_parts/cell/high()
+ },
+/turf/open/floor/plasteel/black,
+/area/medical/exam_room)
+"bEK" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/button/door{
+ id = "CMOCell";
+ name = "Door Bolt Control";
+ normaldoorcontrol = 1;
+ pixel_y = 26;
+ req_access_txt = "0";
+ specialfunctions = 4
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 4
+ },
+/obj/effect/landmark/xeno_spawn,
+/turf/open/floor/plasteel/black,
+/area/medical/exam_room)
+"bEL" = (
+/obj/machinery/door/airlock/command{
+ id_tag = "CMOCell";
+ name = "Personal Examination Room";
+ req_access_txt = "40"
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/black,
+/area/medical/exam_room)
+"bEM" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/engine)
+"bEN" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/sign/poster/official/random{
+ pixel_x = -32
+ },
+/turf/open/floor/plasteel/yellow/corner{
+ dir = 8
+ },
+/area/hallway/primary/aft)
+"bEO" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"bEP" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/yellow/corner,
+/area/hallway/primary/aft)
+"bEQ" = (
+/obj/item/weapon/twohanded/required/kirbyplants{
+ icon_state = "plant-03";
+ layer = 4.1
+ },
+/turf/open/floor/plasteel/black,
+/area/hallway/primary/aft)
+"bER" = (
+/obj/machinery/computer/mecha,
+/obj/item/device/radio/intercom{
+ dir = 0;
+ name = "Station Intercom (General)";
+ pixel_y = -26
+ },
+/turf/open/floor/plasteel/darkpurple/side{
+ tag = "icon-darkpurple (SOUTHWEST)";
+ icon_state = "darkpurple";
+ dir = 10
+ },
+/area/crew_quarters/heads/hor)
+"bES" = (
+/obj/structure/table,
+/obj/item/device/aicard,
+/obj/item/weapon/circuitboard/aicore,
+/obj/machinery/requests_console{
+ announcementConsole = 1;
+ department = "Research Director's Desk";
+ departmentType = 5;
+ name = "Research Director RC";
+ pixel_y = -30;
+ receive_ore_updates = 1
+ },
+/obj/machinery/light,
+/turf/open/floor/plasteel/darkpurple/side,
+/area/crew_quarters/heads/hor)
+"bET" = (
+/obj/item/weapon/paper_bin{
+ layer = 2.9;
+ pixel_x = -2;
+ pixel_y = 5
+ },
+/obj/item/weapon/folder/white,
+/obj/item/weapon/pen,
+/obj/item/weapon/stamp/rd,
+/obj/machinery/status_display{
+ density = 0;
+ pixel_y = -30;
+ supply_display = 0
+ },
+/obj/machinery/camera{
+ c_tag = "Research Director's Office";
+ dir = 1;
+ network = list("SS13","RD")
+ },
+/obj/structure/table/glass,
+/turf/open/floor/plasteel/darkpurple/side,
+/area/crew_quarters/heads/hor)
+"bEU" = (
+/obj/item/weapon/cartridge/signal/toxins,
+/obj/item/weapon/cartridge/signal/toxins{
+ pixel_x = -4;
+ pixel_y = 2
+ },
+/obj/item/weapon/cartridge/signal/toxins{
+ pixel_x = 4;
+ pixel_y = 6
+ },
+/obj/machinery/computer/security/telescreen{
+ desc = "Used for watching the RD's goons and the AI's satellite from the safety of his office.";
+ name = "Research Monitor";
+ network = list("RD","MiniSat");
+ pixel_y = -32
+ },
+/obj/structure/table/glass,
+/turf/open/floor/plasteel/darkpurple/side,
+/area/crew_quarters/heads/hor)
+"bEV" = (
+/obj/machinery/newscaster{
+ pixel_y = -30
+ },
+/obj/machinery/modular_computer/console/preset/research,
+/turf/open/floor/plasteel/darkpurple/side{
+ tag = "icon-darkpurple (SOUTHEAST)";
+ icon_state = "darkpurple";
+ dir = 6
+ },
+/area/crew_quarters/heads/hor)
+"bEW" = (
+/obj/structure/reagent_dispensers/peppertank{
+ pixel_x = -32
+ },
+/obj/structure/filingcabinet,
+/turf/open/floor/plasteel/red/side{
+ dir = 10
+ },
+/area/security/checkpoint/science)
+"bEX" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/open/floor/plasteel/red/side,
+/area/security/checkpoint/science)
+"bEY" = (
+/obj/structure/closet/wardrobe/red,
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "Science Security APC";
+ pixel_x = 24
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 6
+ },
+/area/security/checkpoint/science)
+"bEZ" = (
+/obj/structure/chair/comfy{
+ dir = 1
+ },
+/turf/open/floor/plasteel/black,
+/area/science/research/lobby)
+"bFa" = (
+/obj/effect/turf_decal/bot,
+/obj/machinery/portable_atmospherics/canister/oxygen,
+/turf/open/floor/engine,
+/area/science/storage)
+"bFb" = (
+/obj/machinery/portable_atmospherics/canister/carbon_dioxide,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/engine,
+/area/science/storage)
+"bFc" = (
+/obj/machinery/portable_atmospherics/canister/nitrous_oxide,
+/obj/effect/turf_decal/bot,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/engine,
+/area/science/storage)
+"bFd" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/engine,
+/area/science/storage)
+"bFe" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/open/floor/plasteel/black,
+/area/science/research)
+"bFf" = (
+/turf/open/floor/plasteel/darkpurple/side{
+ tag = "icon-darkpurple (EAST)";
+ icon_state = "darkpurple";
+ dir = 4
+ },
+/area/science/research)
+"bFg" = (
+/turf/open/floor/plasteel/white,
+/area/science/mixing)
+"bFh" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/science/mixing)
+"bFi" = (
+/obj/item/device/assembly/prox_sensor{
+ pixel_x = -4;
+ pixel_y = 1
+ },
+/obj/item/device/assembly/prox_sensor{
+ pixel_x = 8;
+ pixel_y = 9
+ },
+/obj/item/device/assembly/prox_sensor{
+ pixel_x = 9;
+ pixel_y = -2
+ },
+/obj/item/device/assembly/prox_sensor{
+ pixel_y = 2
+ },
+/obj/structure/table/reinforced,
+/turf/open/floor/plasteel/white,
+/area/science/mixing)
+"bFj" = (
+/obj/structure/chair/stool,
+/obj/effect/landmark/start/scientist,
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/science/mixing)
+"bFk" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/wrench,
+/obj/item/weapon/screwdriver{
+ pixel_y = 10
+ },
+/obj/item/device/analyzer,
+/turf/open/floor/plasteel/white,
+/area/science/mixing)
+"bFl" = (
+/obj/machinery/portable_atmospherics/pump,
+/turf/open/floor/plasteel/white,
+/area/science/mixing)
+"bFm" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/science/mixing)
+"bFn" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 5
+ },
+/area/science/mixing)
+"bFo" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 5
+ },
+/area/science/mixing)
+"bFp" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 5
+ },
+/area/science/mixing)
+"bFq" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/closed/wall,
+/area/science/mixing)
+"bFr" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/closet/emcloset,
+/turf/open/floor/plasteel,
+/area/science/mineral_storeroom)
+"bFs" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/closet/firecloset,
+/turf/open/floor/plasteel,
+/area/science/mineral_storeroom)
+"bFt" = (
+/obj/machinery/suit_storage_unit/rd,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/machinery/airalarm{
+ pixel_y = 22
+ },
+/turf/open/floor/plasteel,
+/area/science/mineral_storeroom)
+"bFu" = (
+/obj/structure/ore_box,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel,
+/area/science/mineral_storeroom)
+"bFv" = (
+/obj/structure/ore_box,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/camera{
+ c_tag = "Toxins Launch Area";
+ dir = 2;
+ network = list("SS13","RD")
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 6
+ },
+/obj/structure/sign/poster/official/random{
+ pixel_y = 32
+ },
+/turf/open/floor/plasteel,
+/area/science/mineral_storeroom)
+"bFw" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/science/mineral_storeroom)
+"bFx" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/science/mineral_storeroom)
+"bFy" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/science/mineral_storeroom)
+"bFz" = (
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "Toxins Launch Room APC";
+ pixel_y = 25
+ },
+/obj/structure/cable{
+ icon_state = "0-4";
+ d2 = 4
+ },
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/science/mineral_storeroom)
+"bFA" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Toxins Launch Room Maintenance";
+ req_access_txt = "8"
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/science/mineral_storeroom)
+"bFB" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/item/weapon/cigbutt/cigarbutt,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/cargo)
+"bFC" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/cargo)
+"bFD" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/effect/landmark/xeno_spawn,
+/turf/open/floor/plating,
+/area/maintenance/department/cargo)
+"bFE" = (
+/obj/docking_port/stationary{
+ dwidth = 2;
+ height = 6;
+ id = "monastery_shuttle_asteroid";
+ name = "monastery";
+ width = 5
+ },
+/turf/open/space,
+/area/space)
+"bFF" = (
+/obj/machinery/atmospherics/components/unary/tank/air{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/engine)
+"bFG" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 6
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/engine)
+"bFH" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/closed/wall/r_wall,
+/area/medical/virology)
+"bFI" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/mob/living/carbon/monkey,
+/turf/open/floor/plasteel/freezer,
+/area/medical/virology)
+"bFJ" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/obj/effect/landmark/xeno_spawn,
+/turf/open/floor/plasteel/freezer,
+/area/medical/virology)
+"bFK" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 8
+ },
+/mob/living/carbon/monkey,
+/turf/open/floor/plasteel/freezer,
+/area/medical/virology)
+"bFL" = (
+/obj/effect/decal/cleanable/deadcockroach,
+/turf/open/floor/plasteel/freezer,
+/area/medical/virology)
+"bFM" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/virology{
+ autoclose = 0;
+ frequency = 1449;
+ icon_state = "door_locked";
+ id_tag = "virology_airlock_interior";
+ locked = 1;
+ name = "Virology Interior Airlock";
+ req_access_txt = "39"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/doorButtons/access_button{
+ idDoor = "virology_airlock_interior";
+ idSelf = "virology_airlock_control";
+ name = "Virology Access Button";
+ pixel_x = -24;
+ req_access_txt = "39"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/white,
+/area/medical/virology)
+"bFN" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/closed/wall/r_wall,
+/area/medical/virology)
+"bFO" = (
+/turf/closed/wall/r_wall,
+/area/medical/medbay/central)
+"bFP" = (
+/obj/structure/sink{
+ dir = 8;
+ pixel_x = -12;
+ pixel_y = 2
+ },
+/obj/machinery/requests_console{
+ announcementConsole = 0;
+ department = "Medbay";
+ departmentType = 1;
+ name = "Medbay RC";
+ pixel_x = -32
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/central)
+"bFQ" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/central)
+"bFR" = (
+/obj/machinery/door/airlock/glass_medical{
+ id_tag = null;
+ name = "Medbay Storage";
+ req_access_txt = "45"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/central)
+"bFS" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/whiteblue/corner{
+ dir = 1
+ },
+/area/medical/medbay/central)
+"bFT" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/whiteblue/corner{
+ dir = 4
+ },
+/area/medical/medbay/central)
+"bFU" = (
+/turf/closed/wall,
+/area/medical/surgery)
+"bFV" = (
+/obj/structure/table/glass,
+/obj/item/device/flashlight/pen,
+/obj/item/clothing/neck/stethoscope,
+/obj/item/weapon/lipstick/black,
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "Personal Examination Room APC";
+ pixel_x = -25
+ },
+/obj/structure/cable,
+/obj/item/weapon/reagent_containers/pill/morphine,
+/turf/open/floor/plasteel/black,
+/area/medical/exam_room)
+"bFW" = (
+/obj/effect/decal/remains/human,
+/obj/structure/chair/office/dark{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/effect/landmark/revenantspawn,
+/turf/open/floor/plasteel/black,
+/area/medical/exam_room)
+"bFX" = (
+/obj/structure/bed,
+/obj/item/weapon/bedsheet/cmo,
+/obj/effect/decal/cleanable/blood/drip,
+/obj/item/weapon/restraints/handcuffs,
+/obj/item/clothing/mask/muzzle,
+/obj/effect/landmark/revenantspawn,
+/turf/open/floor/plasteel/black,
+/area/medical/exam_room)
+"bFY" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/sign/examroom{
+ pixel_x = -32
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plating,
+/area/maintenance/department/engine)
+"bFZ" = (
+/obj/machinery/camera{
+ c_tag = "Aft Primary Hallway Central";
+ dir = 8;
+ network = list("SS13")
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/yellow/corner,
+/area/hallway/primary/aft)
+"bGa" = (
+/obj/structure/sign/science,
+/turf/closed/wall,
+/area/hallway/primary/aft)
+"bGb" = (
+/obj/machinery/door/airlock/glass_security{
+ name = "Research Security Post";
+ req_access_txt = "63"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/red,
+/area/security/checkpoint/science)
+"bGc" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plating,
+/area/security/checkpoint/science)
+"bGd" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -27
+ },
+/turf/open/floor/plasteel/purple/side{
+ dir = 8
+ },
+/area/science/research/lobby)
+"bGe" = (
+/obj/machinery/portable_atmospherics/scrubber,
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/plasteel/black,
+/area/science/research/lobby)
+"bGf" = (
+/obj/effect/turf_decal/bot,
+/obj/machinery/portable_atmospherics/canister/nitrogen,
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/engine,
+/area/science/storage)
+"bGg" = (
+/obj/machinery/portable_atmospherics/canister/carbon_dioxide,
+/obj/effect/turf_decal/bot,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/engine,
+/area/science/storage)
+"bGh" = (
+/obj/machinery/portable_atmospherics/canister/nitrous_oxide,
+/obj/effect/turf_decal/bot,
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/turf/open/floor/engine,
+/area/science/storage)
+"bGi" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/camera{
+ c_tag = "Toxins Storage";
+ dir = 8;
+ network = list("SS13","RD")
+ },
+/turf/open/floor/engine,
+/area/science/storage)
+"bGj" = (
+/obj/structure/closet/firecloset,
+/turf/open/floor/plasteel/darkpurple/side{
+ dir = 8
+ },
+/area/science/research)
+"bGk" = (
+/obj/structure/reagent_dispensers/watertank,
+/obj/machinery/light,
+/turf/open/floor/plasteel/black,
+/area/science/research)
+"bGl" = (
+/obj/structure/reagent_dispensers/fueltank,
+/turf/open/floor/plasteel/darkpurple/side{
+ tag = "icon-darkpurple (EAST)";
+ icon_state = "darkpurple";
+ dir = 4
+ },
+/area/science/research)
+"bGm" = (
+/obj/structure/closet/emcloset,
+/turf/open/floor/plasteel/whitepurple/side,
+/area/science/mixing)
+"bGn" = (
+/obj/structure/closet/wardrobe/science_white,
+/turf/open/floor/plasteel/whitepurple/side,
+/area/science/mixing)
+"bGo" = (
+/obj/item/device/assembly/signaler{
+ pixel_y = 8
+ },
+/obj/item/device/assembly/signaler{
+ pixel_x = -8;
+ pixel_y = 5
+ },
+/obj/item/device/assembly/signaler{
+ pixel_x = 6;
+ pixel_y = 5
+ },
+/obj/item/device/assembly/signaler{
+ pixel_x = -2;
+ pixel_y = -2
+ },
+/obj/structure/table/reinforced,
+/turf/open/floor/plasteel/whitepurple/side,
+/area/science/mixing)
+"bGp" = (
+/obj/item/device/transfer_valve{
+ pixel_x = -5
+ },
+/obj/item/device/transfer_valve{
+ pixel_x = -5
+ },
+/obj/item/device/transfer_valve,
+/obj/item/device/transfer_valve,
+/obj/item/device/transfer_valve{
+ pixel_x = 5
+ },
+/obj/item/device/transfer_valve{
+ pixel_x = 5
+ },
+/obj/structure/table/reinforced,
+/turf/open/floor/plasteel/whitepurple/side,
+/area/science/mixing)
+"bGq" = (
+/obj/item/device/assembly/timer{
+ pixel_x = 5;
+ pixel_y = 4
+ },
+/obj/item/device/assembly/timer{
+ pixel_x = -4;
+ pixel_y = 2
+ },
+/obj/item/device/assembly/timer{
+ pixel_x = 6;
+ pixel_y = -4
+ },
+/obj/item/device/assembly/timer,
+/obj/structure/table/reinforced,
+/turf/open/floor/plasteel/whitepurple/side,
+/area/science/mixing)
+"bGr" = (
+/obj/structure/tank_dispenser,
+/turf/open/floor/plasteel/whitepurple/side,
+/area/science/mixing)
+"bGs" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel/whitepurple/side,
+/area/science/mixing)
+"bGt" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible,
+/obj/machinery/meter,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 5
+ },
+/area/science/mixing)
+"bGu" = (
+/turf/open/floor/plasteel/vault{
+ dir = 5
+ },
+/area/science/mixing)
+"bGv" = (
+/obj/machinery/meter,
+/obj/machinery/atmospherics/pipe/manifold/general/visible{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 5
+ },
+/area/science/mixing)
+"bGw" = (
+/obj/machinery/door/firedoor/heavy,
+/obj/machinery/door/airlock/research{
+ name = "Toxins Launch Room";
+ req_access_txt = "8"
+ },
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/science/mixing)
+"bGx" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 10
+ },
+/turf/open/floor/plasteel,
+/area/science/mineral_storeroom)
+"bGy" = (
+/turf/open/floor/plasteel,
+/area/science/mineral_storeroom)
+"bGz" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel,
+/area/science/mineral_storeroom)
+"bGA" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel,
+/area/science/mineral_storeroom)
+"bGB" = (
+/turf/open/floor/plasteel/loadingarea{
+ dir = 4
+ },
+/area/science/mineral_storeroom)
+"bGC" = (
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/science/mineral_storeroom)
+"bGD" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/open/space,
+/area/space)
+"bGE" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/chapel/dock)
+"bGF" = (
+/obj/machinery/door/airlock/external{
+ name = "Pod Docking Bay"
+ },
+/turf/open/floor/plating,
+/area/chapel/dock)
+"bGG" = (
+/obj/machinery/atmospherics/components/unary/outlet_injector/on{
+ dir = 2
+ },
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 8;
+ layer = 2.9
+ },
+/turf/open/floor/plating/airless,
+/area/space/nearstation)
+"bGH" = (
+/obj/structure/window/reinforced,
+/turf/open/space,
+/area/space)
+"bGI" = (
+/obj/structure/window/reinforced,
+/turf/open/space/basic,
+/area/space)
+"bGJ" = (
+/obj/structure/transit_tube,
+/turf/open/space/basic,
+/area/space)
+"bGK" = (
+/obj/structure/closet/boxinggloves,
+/turf/open/floor/plating{
+ icon_state = "platingdmg3"
+ },
+/area/maintenance/department/engine)
+"bGL" = (
+/obj/structure/closet/masks,
+/obj/item/trash/deadmouse,
+/obj/effect/landmark/revenantspawn,
+/turf/open/floor/plating,
+/area/maintenance/department/engine)
+"bGM" = (
+/obj/machinery/vending/cigarette,
+/turf/open/floor/plating,
+/area/maintenance/department/engine)
+"bGN" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plating,
+/area/maintenance/department/engine)
+"bGO" = (
+/obj/structure/window/reinforced,
+/turf/open/floor/plasteel/freezer,
+/area/medical/virology)
+"bGP" = (
+/obj/structure/window/reinforced,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
+/mob/living/carbon/monkey,
+/turf/open/floor/plasteel/freezer,
+/area/medical/virology)
+"bGQ" = (
+/obj/structure/window/reinforced,
+/obj/effect/landmark/blobstart,
+/turf/open/floor/plasteel/freezer,
+/area/medical/virology)
+"bGR" = (
+/obj/machinery/door/window/eastleft{
+ dir = 2;
+ name = "Monkey Pen";
+ req_one_access_txt = "39"
+ },
+/mob/living/carbon/monkey,
+/turf/open/floor/plasteel/freezer,
+/area/medical/virology)
+"bGS" = (
+/obj/machinery/doorButtons/airlock_controller{
+ idExterior = "virology_airlock_exterior";
+ idInterior = "virology_airlock_interior";
+ idSelf = "virology_airlock_control";
+ name = "Virology Access Console";
+ pixel_x = 8;
+ pixel_y = 22;
+ req_access_txt = "39"
+ },
+/obj/machinery/light_switch{
+ pixel_x = -4;
+ pixel_y = 24
+ },
+/turf/open/floor/plasteel/whitegreen/side{
+ icon_state = "whitegreen";
+ dir = 9
+ },
+/area/medical/virology)
+"bGT" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/white,
+/area/medical/virology)
+"bGU" = (
+/obj/machinery/power/apc{
+ cell_type = 5000;
+ dir = 1;
+ name = "Virology APC";
+ pixel_y = 24
+ },
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plasteel/whitegreen/side{
+ icon_state = "whitegreen";
+ dir = 5
+ },
+/area/medical/virology)
+"bGV" = (
+/obj/machinery/shower{
+ icon_state = "shower";
+ dir = 4
+ },
+/obj/item/device/radio/intercom{
+ broadcasting = 0;
+ freerange = 0;
+ frequency = 1485;
+ listening = 1;
+ name = "Station Intercom (Medbay)";
+ pixel_x = -28
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/central)
+"bGW" = (
+/turf/open/floor/plasteel/white,
+/area/medical/virology)
+"bGX" = (
+/obj/effect/landmark/start/medical_doctor,
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/central)
+"bGY" = (
+/obj/machinery/door/airlock/glass_medical{
+ id_tag = null;
+ name = "Medbay Storage";
+ req_access_txt = "45"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/central)
+"bGZ" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/whiteblue/side{
+ dir = 8
+ },
+/area/medical/medbay/central)
+"bHa" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 28
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/whiteblue/side{
+ dir = 4
+ },
+/area/medical/medbay/central)
+"bHb" = (
+/obj/structure/closet/crate/freezer/surplus_limbs,
+/obj/item/weapon/reagent_containers/glass/beaker/synthflesh,
+/obj/machinery/newscaster/security_unit{
+ pixel_y = 32
+ },
+/turf/open/floor/plasteel/freezer,
+/area/medical/surgery)
+"bHc" = (
+/obj/machinery/computer/med_data,
+/obj/machinery/status_display{
+ density = 0;
+ layer = 4;
+ pixel_y = 32
+ },
+/turf/open/floor/plasteel/freezer,
+/area/medical/surgery)
+"bHd" = (
+/obj/structure/table,
+/obj/structure/bedsheetbin,
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 24
+ },
+/obj/machinery/computer/security/telescreen/entertainment{
+ pixel_y = 32
+ },
+/turf/open/floor/plasteel/freezer,
+/area/medical/surgery)
+"bHe" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/closed/wall,
+/area/medical/surgery)
+"bHf" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel/yellow/corner{
+ dir = 8
+ },
+/area/hallway/primary/aft)
+"bHg" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/door/airlock/glass{
+ name = "Research Division"
+ },
+/turf/open/floor/plasteel/purple/side{
+ dir = 1
+ },
+/area/science/research/lobby)
+"bHh" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/purple/side{
+ dir = 1
+ },
+/area/science/research/lobby)
+"bHi" = (
+/obj/structure/chair,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/purple/side{
+ dir = 1
+ },
+/area/science/research/lobby)
+"bHj" = (
+/obj/item/weapon/storage/belt/utility,
+/obj/item/clothing/glasses/science,
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
+ },
+/obj/structure/table/glass,
+/turf/open/floor/plasteel/purple/side{
+ dir = 1
+ },
+/area/science/research/lobby)
+"bHk" = (
+/obj/item/device/gps{
+ gpstag = "RD0"
+ },
+/obj/item/device/assembly/prox_sensor{
+ pixel_x = -8;
+ pixel_y = 4
+ },
+/obj/item/clothing/ears/earmuffs,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/table/glass,
+/turf/open/floor/plasteel/purple/side{
+ dir = 1
+ },
+/area/science/research/lobby)
+"bHl" = (
+/obj/structure/chair,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/item/clothing/mask/gas,
+/turf/open/floor/plasteel/purple/side{
+ dir = 1
+ },
+/area/science/research/lobby)
+"bHm" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
+ },
+/turf/open/floor/plasteel/purple/side{
+ dir = 1
+ },
+/area/science/research/lobby)
+"bHn" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/purple/side{
+ dir = 1
+ },
+/area/science/research/lobby)
+"bHo" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
+/turf/open/floor/plasteel/purple/side{
+ dir = 1
+ },
+/area/science/research/lobby)
+"bHp" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/plasteel/purple/side{
+ dir = 1
+ },
+/area/science/research/lobby)
+"bHq" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/purple/corner{
+ dir = 1
+ },
+/area/science/research/lobby)
+"bHr" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel,
+/area/science/research/lobby)
+"bHs" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/purple/side{
+ dir = 4
+ },
+/area/science/research/lobby)
+"bHt" = (
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/turf/open/floor/plasteel/black,
+/area/science/research/lobby)
+"bHu" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/open/floor/engine,
+/area/science/storage)
+"bHv" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/sign/poster/random{
+ pixel_x = 32
+ },
+/turf/open/floor/engine,
+/area/science/storage)
+"bHw" = (
+/turf/closed/wall/r_wall,
+/area/science/storage)
+"bHx" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/science/research)
+"bHy" = (
+/turf/closed/wall/r_wall,
+/area/science/mixing)
+"bHz" = (
+/obj/machinery/atmospherics/components/binary/valve,
+/obj/machinery/button/door{
+ id = "toxvent";
+ name = "Aft Vent Control";
+ pixel_x = 0;
+ pixel_y = -24;
+ req_access_txt = "0";
+ req_one_access_txt = "8;24"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 5
+ },
+/area/science/mixing)
+"bHA" = (
+/obj/machinery/atmospherics/components/binary/valve,
+/obj/machinery/button/ignition{
+ id = "toxigniter";
+ pixel_x = -6;
+ pixel_y = -24
+ },
+/obj/machinery/doorButtons/airlock_controller{
+ idExterior = "tox_airlock_exterior";
+ idInterior = "tox_airlock_interior";
+ idSelf = "tox_access_control";
+ name = "Mixing Chamber Access Console";
+ pixel_x = 6;
+ pixel_y = -26;
+ req_access_txt = "0"
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 24
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 5
+ },
+/area/science/mixing)
+"bHB" = (
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 2;
+ name = "Incinerator Output Pump";
+ on = 0
+ },
+/turf/open/floor/plasteel,
+/area/science/mineral_storeroom)
+"bHC" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/science/mineral_storeroom)
+"bHD" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/science/mineral_storeroom)
+"bHE" = (
+/obj/machinery/holopad,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 9
+ },
+/turf/open/floor/plasteel,
+/area/science/mineral_storeroom)
+"bHF" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/science/mineral_storeroom)
+"bHG" = (
+/obj/item/device/radio/intercom{
+ dir = 8;
+ name = "Station Intercom (General)";
+ pixel_x = 28
+ },
+/turf/open/floor/plasteel/brown{
+ dir = 4
+ },
+/area/science/mineral_storeroom)
+"bHH" = (
+/obj/machinery/mineral/unloading_machine{
+ dir = 1;
+ icon_state = "unloader-corner";
+ input_dir = 1;
+ output_dir = 2
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/turf/open/floor/plating,
+/area/science/mineral_storeroom)
+"bHI" = (
+/obj/structure/grille/broken,
+/turf/open/space/basic,
+/area/space)
+"bHJ" = (
+/turf/open/floor/plating,
+/area/chapel/dock)
+"bHK" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 6
+ },
+/turf/open/floor/plating,
+/area/chapel/dock)
+"bHL" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 9
+ },
+/turf/open/floor/plating,
+/area/chapel/dock)
+"bHM" = (
+/turf/closed/wall/r_wall,
+/area/chapel/dock)
+"bHN" = (
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 8;
+ layer = 2.9
+ },
+/turf/open/space/basic,
+/area/space)
+"bHO" = (
+/obj/structure/transit_tube,
+/obj/structure/lattice,
+/turf/open/space/basic,
+/area/space)
+"bHP" = (
+/obj/effect/decal/cleanable/cobweb,
+/turf/open/floor/plasteel/black,
+/area/maintenance/department/engine)
+"bHQ" = (
+/turf/open/floor/plasteel/black,
+/area/maintenance/department/engine)
+"bHR" = (
+/obj/effect/decal/cleanable/vomit/old,
+/turf/open/floor/plasteel/black,
+/area/maintenance/department/engine)
+"bHS" = (
+/obj/structure/table,
+/obj/item/device/flashlight/lamp,
+/obj/effect/decal/cleanable/cobweb{
+ icon_state = "cobweb2"
+ },
+/turf/open/floor/plasteel/black,
+/area/maintenance/department/engine)
+"bHT" = (
+/obj/effect/spawner/lootdrop/grille_or_trash,
+/turf/open/floor/plating,
+/area/maintenance/department/engine)
+"bHU" = (
+/obj/machinery/vending/medical,
+/turf/open/floor/plasteel/whitegreen/side{
+ icon_state = "whitegreen";
+ dir = 9
+ },
+/area/medical/virology)
+"bHV" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel/whitegreen/side{
+ dir = 1
+ },
+/area/medical/virology)
+"bHW" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/whitegreen/side{
+ dir = 1
+ },
+/area/medical/virology)
+"bHX" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 1
+ },
+/turf/open/floor/plasteel/whitegreen/side{
+ dir = 1
+ },
+/area/medical/virology)
+"bHY" = (
+/obj/machinery/camera{
+ c_tag = "Virology";
+ dir = 2;
+ network = list("SS13")
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/item/device/radio/intercom{
+ broadcasting = 0;
+ freerange = 0;
+ frequency = 1485;
+ listening = 1;
+ name = "Station Intercom (Medbay)";
+ pixel_x = 0;
+ pixel_y = 28
+ },
+/turf/open/floor/plasteel/whitegreen/side{
+ dir = 1
+ },
+/area/medical/virology)
+"bHZ" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 1
+ },
+/turf/open/floor/plasteel/whitegreen/corner{
+ dir = 1
+ },
+/area/medical/virology)
+"bIa" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 9
+ },
+/obj/machinery/holopad,
+/turf/open/floor/plasteel/white,
+/area/medical/virology)
+"bIb" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/obj/item/device/radio/intercom{
+ broadcasting = 0;
+ freerange = 0;
+ frequency = 1485;
+ listening = 1;
+ name = "Station Intercom (Medbay)";
+ pixel_x = 28
+ },
+/obj/structure/sink{
+ dir = 4;
+ pixel_x = 11
+ },
+/turf/open/floor/plasteel/whitegreen/corner{
+ dir = 4
+ },
+/area/medical/virology)
+"bIc" = (
+/obj/machinery/vending/medical,
+/turf/open/floor/plasteel/whiteblue/side,
+/area/medical/medbay/central)
+"bId" = (
+/obj/structure/closet/secure_closet/medical3,
+/turf/open/floor/plasteel/whiteblue/side,
+/area/medical/medbay/central)
+"bIe" = (
+/obj/structure/closet/secure_closet/medical3,
+/obj/machinery/light,
+/obj/machinery/camera{
+ c_tag = "Medbay Equipment Room";
+ dir = 1;
+ network = list("SS13")
+ },
+/turf/open/floor/plasteel/whiteblue/side,
+/area/medical/medbay/central)
+"bIf" = (
+/obj/structure/closet/wardrobe/white/medical,
+/turf/open/floor/plasteel/whiteblue/side,
+/area/medical/medbay/central)
+"bIg" = (
+/obj/structure/table,
+/obj/item/weapon/storage/belt/medical{
+ pixel_y = 2
+ },
+/obj/item/weapon/storage/belt/medical{
+ pixel_y = 2
+ },
+/obj/item/weapon/storage/belt/medical{
+ pixel_y = 2
+ },
+/obj/item/clothing/glasses/hud/health,
+/obj/item/clothing/glasses/hud/health,
+/obj/item/clothing/glasses/hud/health,
+/obj/item/weapon/reagent_containers/spray/cleaner,
+/turf/open/floor/plasteel/whiteblue/side,
+/area/medical/medbay/central)
+"bIh" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/central)
+"bIi" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/whiteblue/side{
+ dir = 4
+ },
+/area/medical/medbay/central)
+"bIj" = (
+/obj/structure/grille,
+/obj/structure/window/fulltile,
+/turf/open/floor/plating,
+/area/medical/surgery)
+"bIk" = (
+/turf/open/floor/plasteel/freezer,
+/area/medical/surgery)
+"bIl" = (
+/obj/structure/chair/office/light{
+ dir = 1
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/open/floor/plasteel/freezer,
+/area/medical/surgery)
+"bIm" = (
+/obj/machinery/camera{
+ c_tag = "Medbay Recovery Room";
+ dir = 8;
+ network = list("SS13")
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/item/device/radio/intercom{
+ broadcasting = 0;
+ freerange = 0;
+ frequency = 1485;
+ listening = 1;
+ name = "Station Intercom (Medbay)";
+ pixel_x = 28
+ },
+/turf/open/floor/plasteel/freezer,
+/area/medical/surgery)
+"bIn" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/closed/wall,
+/area/medical/surgery)
+"bIo" = (
+/obj/structure/closet/crate/freezer/blood,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/whiteblue,
+/area/medical/surgery)
+"bIp" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/sink{
+ pixel_y = 28
+ },
+/turf/open/floor/plasteel/whiteblue/side{
+ dir = 1
+ },
+/area/medical/surgery)
+"bIq" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/machinery/camera{
+ c_tag = "Surgery";
+ dir = 2;
+ network = list("SS13","Surgery")
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/airalarm{
+ pixel_y = 22
+ },
+/turf/open/floor/plasteel/whiteblue/side{
+ dir = 1
+ },
+/area/medical/surgery)
+"bIr" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/vending/wallmed{
+ pixel_y = 28;
+ products = list(/obj/item/weapon/reagent_containers/syringe = 3, /obj/item/weapon/reagent_containers/pill/patch/styptic = 1, /obj/item/weapon/reagent_containers/pill/patch/silver_sulf = 1, /obj/item/weapon/reagent_containers/spray/medical/sterilizer = 1)
+ },
+/turf/open/floor/plasteel/whiteblue/side{
+ dir = 1
+ },
+/area/medical/surgery)
+"bIs" = (
+/obj/structure/closet/secure_closet/medical2,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 10
+ },
+/turf/open/floor/plasteel/whiteblue,
+/area/medical/surgery)
+"bIt" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"bIu" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"bIv" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass{
+ name = "Research Division"
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel,
+/area/science/research/lobby)
+"bIw" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel,
+/area/science/research/lobby)
+"bIx" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel,
+/area/science/research/lobby)
+"bIy" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel,
+/area/science/research/lobby)
+"bIz" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel,
+/area/science/research/lobby)
+"bIA" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/open/floor/plasteel,
+/area/science/research/lobby)
+"bIB" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel,
+/area/science/research/lobby)
+"bIC" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel,
+/area/science/research/lobby)
+"bID" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/open/floor/plasteel,
+/area/science/research/lobby)
+"bIE" = (
+/obj/machinery/vending/assist,
+/turf/open/floor/plasteel/black,
+/area/science/research/lobby)
+"bIF" = (
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "Toxins Storage APC";
+ pixel_x = -25
+ },
+/obj/structure/cable{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/engine,
+/area/science/storage)
+"bIG" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/engine,
+/area/science/storage)
+"bIH" = (
+/obj/machinery/light,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/engine,
+/area/science/storage)
+"bII" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/sign/nosmoking_2{
+ pixel_y = -32
+ },
+/obj/effect/turf_decal/stripes/line{
+ tag = "icon-warninglinecorner (NORTH)";
+ icon_state = "warninglinecorner";
+ dir = 1
+ },
+/turf/open/floor/engine,
+/area/science/storage)
+"bIJ" = (
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/turf/open/floor/engine,
+/area/science/storage)
+"bIK" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 2
+ },
+/turf/closed/wall/r_wall,
+/area/science/mixing)
+"bIL" = (
+/obj/machinery/door/airlock/glass{
+ autoclose = 0;
+ frequency = 1449;
+ heat_proof = 1;
+ icon_state = "door_locked";
+ id_tag = "tox_airlock_interior";
+ locked = 1;
+ name = "Interior Airlock";
+ req_access_txt = "8";
+ req_one_access_txt = "0"
+ },
+/turf/open/floor/engine,
+/area/science/mixing)
+"bIM" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible,
+/turf/closed/wall/r_wall,
+/area/science/mixing)
+"bIN" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
+/turf/open/floor/plasteel,
+/area/science/mineral_storeroom)
+"bIO" = (
+/obj/structure/window/reinforced,
+/obj/machinery/doppler_array{
+ dir = 2
+ },
+/obj/effect/turf_decal/bot{
+ dir = 2
+ },
+/turf/open/floor/plasteel{
+ dir = 2
+ },
+/area/science/mineral_storeroom)
+"bIP" = (
+/obj/machinery/conveyor_switch/oneway{
+ id = "toxmineral";
+ name = "smelting conveyor"
+ },
+/turf/open/floor/plasteel/brown{
+ dir = 4
+ },
+/area/science/mineral_storeroom)
+"bIQ" = (
+/obj/effect/spawner/structure/window,
+/turf/open/floor/plating,
+/area/science/mineral_storeroom)
+"bIR" = (
+/obj/machinery/conveyor{
+ dir = 2;
+ id = "toxmineral"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/science/mineral_storeroom)
+"bIS" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/science/mineral_storeroom)
+"bIT" = (
+/obj/structure/window/reinforced{
+ dir = 4;
+ layer = 2.9
+ },
+/turf/open/space/basic,
+/area/space)
+"bIU" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/closed/wall,
+/area/chapel/dock)
+"bIV" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
+ icon_state = "space";
+ layer = 4;
+ name = "EXTERNAL AIRLOCK"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plating,
+/area/chapel/dock)
+"bIW" = (
+/obj/machinery/computer/shuttle/monastery_shuttle,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/chapel/dock)
+"bIX" = (
+/obj/machinery/atmospherics/components/unary/tank/air{
+ dir = 2
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/chapel/dock)
+"bIY" = (
+/obj/structure/lattice,
+/obj/structure/window/reinforced{
+ dir = 8;
+ layer = 2.9
+ },
+/turf/open/space/basic,
+/area/space)
+"bIZ" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/maintenance/department/engine)
+"bJa" = (
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/plasteel/black,
+/area/maintenance/department/engine)
+"bJb" = (
+/turf/open/floor/plasteel/vault{
+ dir = 5
+ },
+/area/maintenance/department/engine)
+"bJc" = (
+/obj/structure/chair/comfy/black,
+/obj/item/trash/pistachios,
+/turf/open/floor/plasteel/vault{
+ dir = 5
+ },
+/area/maintenance/department/engine)
+"bJd" = (
+/obj/structure/chair/comfy/black,
+/obj/item/stack/spacecash/c100,
+/turf/open/floor/plasteel/vault{
+ dir = 5
+ },
+/area/maintenance/department/engine)
+"bJe" = (
+/obj/structure/chair/comfy/black,
+/turf/open/floor/plasteel/vault{
+ dir = 5
+ },
+/area/maintenance/department/engine)
+"bJf" = (
+/obj/structure/chair/comfy/black,
+/obj/item/weapon/cigbutt,
+/turf/open/floor/plasteel/vault{
+ dir = 5
+ },
+/area/maintenance/department/engine)
+"bJg" = (
+/obj/item/trash/popcorn,
+/turf/open/floor/plasteel/vault{
+ dir = 5
+ },
+/area/maintenance/department/engine)
+"bJh" = (
+/obj/structure/sign/poster/contraband/random{
+ pixel_x = 32
+ },
+/turf/open/floor/plasteel/black,
+/area/maintenance/department/engine)
+"bJi" = (
+/obj/item/weapon/twohanded/required/kirbyplants{
+ icon_state = "plant-21"
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/engine)
+"bJj" = (
+/obj/structure/rack,
+/obj/item/weapon/cartridge/medical,
+/turf/open/floor/plating,
+/area/maintenance/department/engine)
+"bJk" = (
+/obj/structure/table/glass,
+/obj/item/weapon/book/manual/wiki/infections,
+/obj/item/weapon/hand_labeler,
+/obj/item/device/radio/headset/headset_med,
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -26
+ },
+/turf/open/floor/plasteel/whitegreen/side{
+ dir = 8
+ },
+/area/medical/virology)
+"bJl" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/white,
+/area/medical/virology)
+"bJm" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/virology)
+"bJn" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/virology)
+"bJo" = (
+/obj/machinery/requests_console{
+ announcementConsole = 0;
+ department = "Medbay";
+ departmentType = 1;
+ name = "Medbay RC";
+ pixel_x = -30
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/whiteblue/side{
+ dir = 8
+ },
+/area/medical/medbay/central)
+"bJp" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel/whiteblue/side{
+ dir = 4
+ },
+/area/medical/medbay/central)
+"bJq" = (
+/obj/machinery/door/airlock/glass_medical{
+ id_tag = null;
+ name = "Recovery Room";
+ req_access_txt = "0"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/freezer,
+/area/medical/surgery)
+"bJr" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/freezer,
+/area/medical/surgery)
+"bJs" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
+ },
+/turf/open/floor/plasteel/freezer,
+/area/medical/surgery)
+"bJt" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/medical{
+ name = "Surgery";
+ req_access_txt = "45"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/freezer,
+/area/medical/surgery)
+"bJu" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
+ },
+/turf/open/floor/plasteel/whiteblue/side{
+ dir = 8
+ },
+/area/medical/surgery)
+"bJv" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 10
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/surgery)
+"bJw" = (
+/obj/machinery/computer/operating,
+/turf/open/floor/plasteel/white,
+/area/medical/surgery)
+"bJx" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/white,
+/area/medical/surgery)
+"bJy" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel/whiteblue/side{
+ dir = 4
+ },
+/area/medical/surgery)
+"bJz" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Surgery Maintenance";
+ req_access_txt = "45"
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/medical/surgery)
+"bJA" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 9
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/engine)
+"bJB" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"bJC" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"bJD" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass{
+ name = "Research Division"
+ },
+/turf/open/floor/plasteel/purple/side,
+/area/science/research/lobby)
+"bJE" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ tag = "icon-warninglinecorner";
+ icon_state = "warninglinecorner";
+ dir = 2
+ },
+/turf/open/floor/plasteel/purple/side,
+/area/science/research/lobby)
+"bJF" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel/purple/side,
+/area/science/research/lobby)
+"bJG" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel/purple/side,
+/area/science/research/lobby)
+"bJH" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -29
+ },
+/obj/machinery/camera{
+ c_tag = "Research Division Entrance";
+ dir = 1
+ },
+/turf/open/floor/plasteel/purple/side,
+/area/science/research/lobby)
+"bJI" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
+/turf/open/floor/plasteel/purple/side,
+/area/science/research/lobby)
+"bJJ" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 1
+ },
+/obj/item/weapon/twohanded/required/kirbyplants{
+ icon_state = "plant-18";
+ layer = 3
+ },
+/turf/open/floor/plasteel/purple/side,
+/area/science/research/lobby)
+"bJK" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 9
+ },
+/obj/machinery/space_heater,
+/obj/structure/sign/poster/random{
+ pixel_x = 0;
+ pixel_y = -32
+ },
+/turf/open/floor/plasteel/purple/side,
+/area/science/research/lobby)
+"bJL" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 6
+ },
+/obj/machinery/portable_atmospherics/canister/air,
+/turf/open/floor/plasteel/purple/side,
+/area/science/research/lobby)
+"bJM" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 9
+ },
+/obj/machinery/portable_atmospherics/canister/air,
+/obj/structure/sign/poster/random{
+ pixel_x = 32
+ },
+/obj/structure/sign/poster/random{
+ pixel_x = 0;
+ pixel_y = -32
+ },
+/turf/open/floor/plasteel/purple/side{
+ dir = 6
+ },
+/area/science/research/lobby)
+"bJN" = (
+/turf/closed/wall/r_wall,
+/area/engine/atmos)
+"bJO" = (
+/obj/machinery/door/firedoor/heavy,
+/obj/machinery/door/airlock/atmos{
+ name = "Toxins Storage";
+ req_access_txt = "24"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/black,
+/area/science/storage)
+"bJP" = (
+/obj/structure/grille,
+/turf/closed/wall/r_wall,
+/area/engine/atmos)
+"bJQ" = (
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 2;
+ on = 1;
+ target_pressure = 101.325
+ },
+/obj/machinery/doorButtons/access_button{
+ idDoor = "tox_airlock_exterior";
+ idSelf = "tox_access_control";
+ layer = 3.1;
+ name = "airlock control";
+ pixel_x = 8;
+ pixel_y = -24
+ },
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/open/floor/engine,
+/area/science/mixing)
+"bJR" = (
+/turf/open/floor/engine,
+/area/science/mixing)
+"bJS" = (
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 1;
+ on = 0;
+ target_pressure = 101.325
+ },
+/obj/machinery/doorButtons/access_button{
+ idDoor = "tox_airlock_interior";
+ idSelf = "tox_access_control";
+ name = "airlock control";
+ pixel_x = -8;
+ pixel_y = 24
+ },
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/engine,
+/area/science/mixing)
+"bJT" = (
+/obj/machinery/computer/security/telescreen{
+ desc = "Used for watching the test chamber.";
+ dir = 2;
+ layer = 4;
+ name = "Test Chamber Telescreen";
+ network = list("Toxins");
+ pixel_y = -32
+ },
+/turf/open/floor/plasteel,
+/area/science/mineral_storeroom)
+"bJU" = (
+/obj/machinery/button/massdriver{
+ dir = 2;
+ id = "toxinsdriver";
+ pixel_y = -24
+ },
+/turf/open/floor/plasteel/loadingarea{
+ dir = 4
+ },
+/area/science/mineral_storeroom)
+"bJV" = (
+/obj/machinery/mass_driver{
+ id = "toxinsdriver"
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/machinery/door/window/southleft{
+ dir = 8;
+ name = "Mass Driver Door";
+ req_access_txt = "7"
+ },
+/obj/effect/turf_decal/stripes/end{
+ dir = 1
+ },
+/turf/open/floor/plating{
+ icon_state = "plating_warn_end"
+ },
+/area/science/mineral_storeroom)
+"bJW" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/plasteel/brown{
+ dir = 4
+ },
+/area/science/mineral_storeroom)
+"bJX" = (
+/obj/machinery/mineral/processing_unit_console,
+/turf/closed/wall,
+/area/science/mineral_storeroom)
+"bJY" = (
+/obj/machinery/mineral/processing_unit{
+ dir = 1;
+ output_dir = 2
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/turf/open/floor/plating,
+/area/science/mineral_storeroom)
+"bJZ" = (
+/obj/structure/window/reinforced{
+ dir = 4;
+ layer = 2.9
+ },
+/obj/structure/lattice,
+/turf/open/space/basic,
+/area/space)
+"bKa" = (
+/obj/machinery/airalarm{
+ dir = 4;
+ pixel_x = -22
+ },
+/turf/open/floor/plasteel/black,
+/area/chapel/dock)
+"bKb" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/open/floor/plasteel/black,
+/area/chapel/dock)
+"bKc" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/black,
+/area/chapel/dock)
+"bKd" = (
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "Monastery Docking Bay APC";
+ pixel_x = 24
+ },
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/black,
+/area/chapel/dock)
+"bKe" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on,
+/turf/open/floor/plasteel/black,
+/area/chapel/dock)
+"bKf" = (
+/obj/structure/chair,
+/turf/open/floor/plasteel/black,
+/area/chapel/dock)
+"bKg" = (
+/obj/structure/closet/emcloset,
+/turf/open/floor/plasteel/black,
+/area/chapel/dock)
+"bKh" = (
+/obj/machinery/door/window/eastright{
+ base_state = "left";
+ dir = 8;
+ icon_state = "left";
+ name = "Arena"
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/chair/stool,
+/turf/open/floor/engine,
+/area/maintenance/department/engine)
+"bKi" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/mob/living/simple_animal/chicken{
+ name = "Bloodthirsty Peckins"
+ },
+/turf/open/floor/engine,
+/area/maintenance/department/engine)
+"bKj" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/turf/open/floor/engine,
+/area/maintenance/department/engine)
+"bKk" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/turf/open/floor/engine,
+/area/maintenance/department/engine)
+"bKl" = (
+/obj/item/stack/medical/gauze,
+/turf/open/floor/plasteel/vault{
+ dir = 5
+ },
+/area/maintenance/department/engine)
+"bKm" = (
+/obj/structure/light_construct{
+ icon_state = "tube-construct-stage1";
+ dir = 4
+ },
+/turf/open/floor/plasteel/black,
+/area/maintenance/department/engine)
+"bKn" = (
+/obj/structure/grille,
+/obj/structure/window/fulltile,
+/turf/open/floor/plating,
+/area/medical/virology)
+"bKo" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass_virology{
+ name = "Isolation B";
+ req_access_txt = "39"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/freezer,
+/area/medical/virology)
+"bKp" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass_virology{
+ name = "Isolation A";
+ req_access_txt = "39"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/freezer,
+/area/medical/virology)
+"bKq" = (
+/obj/structure/grille,
+/obj/structure/window/fulltile,
+/obj/structure/sign/deathsposal,
+/turf/open/floor/plating,
+/area/medical/virology)
+"bKr" = (
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk,
+/turf/open/floor/plasteel/white,
+/area/medical/virology)
+"bKs" = (
+/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/virology)
+"bKt" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 8
+ },
+/obj/machinery/computer/pandemic,
+/turf/open/floor/plasteel/white,
+/area/medical/virology)
+"bKu" = (
+/obj/machinery/smartfridge/chemistry/virology/preloaded,
+/turf/open/floor/plasteel/whitegreen/side{
+ icon_state = "whitegreen";
+ dir = 4
+ },
+/area/medical/virology)
+"bKv" = (
+/obj/item/weapon/bedsheet/medical,
+/obj/structure/bed,
+/obj/effect/landmark/revenantspawn,
+/obj/structure/mirror{
+ pixel_x = -28
+ },
+/obj/structure/curtain{
+ layer = 4.5
+ },
+/turf/open/floor/plasteel/freezer,
+/area/medical/medbay/central)
+"bKw" = (
+/obj/machinery/vending/wallmed{
+ pixel_y = 28;
+ products = list(/obj/item/weapon/reagent_containers/syringe = 3, /obj/item/weapon/reagent_containers/pill/patch/styptic = 1, /obj/item/weapon/reagent_containers/pill/patch/silver_sulf = 1, /obj/item/weapon/reagent_containers/spray/medical/sterilizer = 1)
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/plasteel/freezer,
+/area/medical/medbay/central)
+"bKx" = (
+/obj/machinery/button/door{
+ id = "patientB";
+ name = "Privacy Shutters";
+ pixel_y = 25
+ },
+/obj/machinery/camera{
+ c_tag = "Patient Room";
+ dir = 2
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/freezer,
+/area/medical/medbay/central)
+"bKy" = (
+/obj/machinery/door/airlock/medical{
+ name = "Patient Room";
+ req_access_txt = "5"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/freezer,
+/area/medical/medbay/central)
+"bKz" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/effect/landmark/event_spawn,
+/obj/item/device/radio/beacon,
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/central)
+"bKA" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 9
+ },
+/turf/open/floor/plasteel/whiteblue/side{
+ dir = 4
+ },
+/area/medical/medbay/central)
+"bKB" = (
+/obj/structure/bed/roller,
+/obj/machinery/iv_drip{
+ density = 0
+ },
+/turf/open/floor/plasteel/freezer,
+/area/medical/surgery)
+"bKC" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/freezer,
+/area/medical/surgery)
+"bKD" = (
+/obj/structure/bed,
+/turf/open/floor/plasteel/freezer,
+/area/medical/surgery)
+"bKE" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/open/floor/plasteel/whiteblue/side{
+ dir = 8
+ },
+/area/medical/surgery)
+"bKF" = (
+/obj/structure/table/optable,
+/obj/effect/landmark/revenantspawn,
+/turf/open/floor/plasteel/white,
+/area/medical/surgery)
+"bKG" = (
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "Surgery APC";
+ pixel_x = 26
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/open/floor/plasteel/whiteblue/side{
+ dir = 4
+ },
+/area/medical/surgery)
+"bKH" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plating,
+/area/maintenance/department/engine)
+"bKI" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/yellow/corner{
+ dir = 8
+ },
+/area/hallway/primary/aft)
+"bKJ" = (
+/obj/machinery/door/firedoor,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"bKK" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/plasteel/yellow/corner,
+/area/hallway/primary/aft)
+"bKL" = (
+/obj/structure/sign/science,
+/turf/closed/wall,
+/area/maintenance/department/engine/atmos)
+"bKM" = (
+/obj/structure/grille,
+/obj/structure/window/fulltile,
+/turf/open/floor/plating,
+/area/hallway/primary/aft)
+"bKN" = (
+/turf/closed/wall,
+/area/maintenance/department/engine/atmos)
+"bKO" = (
+/obj/effect/turf_decal/delivery,
+/obj/machinery/door/poddoor/preopen{
+ id = "atmos";
+ name = "atmos blast door"
+ },
+/obj/machinery/door/firedoor/heavy,
+/turf/open/floor/plasteel/black,
+/area/engine/atmos)
+"bKP" = (
+/obj/effect/turf_decal/delivery,
+/obj/machinery/door/poddoor/preopen{
+ id = "atmos";
+ name = "atmos blast door"
+ },
+/obj/machinery/door/firedoor/heavy,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/black,
+/area/engine/atmos)
+"bKQ" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/closed/wall/r_wall,
+/area/engine/atmos)
+"bKR" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/closed/wall/r_wall,
+/area/engine/atmos)
+"bKS" = (
+/obj/machinery/atmospherics/pipe/simple/yellow/visible{
+ dir = 6
+ },
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "Atmospherics APC";
+ pixel_x = -24
+ },
+/obj/structure/cable{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"bKT" = (
+/obj/machinery/atmospherics/pipe/simple/yellow/visible{
+ dir = 4
+ },
+/obj/machinery/airalarm{
+ dir = 2;
+ pixel_y = 22
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"bKU" = (
+/obj/machinery/atmospherics/pipe/simple/yellow/visible{
+ dir = 4
+ },
+/obj/machinery/requests_console{
+ announcementConsole = 1;
+ department = "Head of Security's Desk";
+ departmentType = 5;
+ name = "Head of Security RC";
+ pixel_y = 30
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"bKV" = (
+/obj/machinery/atmospherics/pipe/simple/yellow/visible{
+ dir = 4
+ },
+/obj/item/device/radio/intercom{
+ dir = 0;
+ name = "Station Intercom (General)";
+ pixel_y = 26
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"bKW" = (
+/obj/machinery/atmospherics/pipe/simple/yellow/visible{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"bKX" = (
+/obj/machinery/atmospherics/pipe/simple/yellow/visible{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"bKY" = (
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 8;
+ name = "Mix Outlet Pump";
+ on = 0
+ },
+/turf/open/floor/plasteel/yellow/side{
+ dir = 4
+ },
+/area/engine/atmos)
+"bKZ" = (
+/obj/structure/grille,
+/obj/machinery/atmospherics/pipe/simple/yellow/visible{
+ dir = 4
+ },
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/engine/atmos)
+"bLa" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/yellow/visible{
+ dir = 4
+ },
+/turf/open/space,
+/area/space)
+"bLb" = (
+/obj/machinery/atmospherics/pipe/simple{
+ dir = 4
+ },
+/obj/structure/grille,
+/obj/machinery/meter,
+/turf/closed/wall/r_wall,
+/area/engine/atmos)
+"bLc" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{
+ dir = 8;
+ frequency = 1441;
+ id_tag = "mix_in";
+ name = "distro out"
+ },
+/turf/open/floor/engine/vacuum,
+/area/engine/atmos)
+"bLd" = (
+/obj/machinery/camera{
+ c_tag = "Atmospherics Waste Tank"
+ },
+/turf/open/floor/engine/vacuum,
+/area/engine/atmos)
+"bLe" = (
+/turf/open/floor/engine/vacuum,
+/area/engine/atmos)
+"bLf" = (
+/obj/machinery/door/airlock/glass{
+ autoclose = 0;
+ frequency = 1449;
+ heat_proof = 1;
+ icon_state = "door_locked";
+ id_tag = "tox_airlock_exterior";
+ locked = 1;
+ name = "Exterior Airlock";
+ req_access_txt = "8";
+ req_one_access_txt = "0"
+ },
+/turf/open/floor/engine,
+/area/science/mixing)
+"bLg" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
+/obj/machinery/door/airlock/external{
+ cyclelinkeddir = 2;
+ req_access_txt = "8";
+ req_one_access_txt = "0"
+ },
+/turf/open/floor/plating,
+/area/science/mineral_storeroom)
+"bLh" = (
+/obj/structure/window/reinforced{
+ dir = 8;
+ layer = 2.9
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/science/mineral_storeroom)
+"bLi" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 9
+ },
+/turf/closed/wall,
+/area/science/mineral_storeroom)
+"bLj" = (
+/obj/structure/closet/crate{
+ icon_state = "crateopen";
+ opened = 1
+ },
+/obj/item/weapon/storage/bag/ore,
+/obj/item/weapon/storage/bag/ore,
+/turf/open/floor/plasteel,
+/area/science/mineral_storeroom)
+"bLk" = (
+/turf/open/floor/plasteel/loadingarea{
+ dir = 8
+ },
+/area/science/mineral_storeroom)
+"bLl" = (
+/obj/machinery/conveyor{
+ dir = 8;
+ id = "toxmineral"
+ },
+/obj/structure/plasticflaps,
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/turf/open/floor/plating,
+/area/science/mineral_storeroom)
+"bLm" = (
+/obj/machinery/conveyor{
+ dir = 10;
+ id = "toxmineral"
+ },
+/obj/machinery/light/small,
+/obj/effect/turf_decal/stripes/corner{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/science/mineral_storeroom)
+"bLn" = (
+/turf/open/floor/plasteel/black,
+/area/chapel/dock)
+"bLo" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/black,
+/area/chapel/dock)
+"bLp" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel/black,
+/area/chapel/dock)
+"bLq" = (
+/obj/machinery/door/airlock/centcom{
+ name = "Monastery Transit";
+ opacity = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/black,
+/area/chapel/dock)
+"bLr" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 9
+ },
+/turf/open/floor/plasteel/black,
+/area/chapel/dock)
+"bLs" = (
+/obj/structure/lattice,
+/obj/structure/window/reinforced{
+ dir = 8;
+ layer = 2.9
+ },
+/turf/open/space,
+/area/space)
+"bLt" = (
+/obj/effect/decal/cleanable/oil{
+ icon_state = "floor6"
+ },
+/obj/effect/decal/cleanable/robot_debris/old,
+/turf/open/floor/plasteel/black,
+/area/maintenance/department/engine)
+"bLu" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/open/floor/engine,
+/area/maintenance/department/engine)
+"bLv" = (
+/obj/effect/landmark/revenantspawn,
+/turf/open/floor/engine,
+/area/maintenance/department/engine)
+"bLw" = (
+/turf/open/floor/engine,
+/area/maintenance/department/engine)
+"bLx" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/open/floor/engine,
+/area/maintenance/department/engine)
+"bLy" = (
+/obj/structure/mineral_door/wood{
+ name = "The Roosterdome"
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/engine)
+"bLz" = (
+/obj/item/weapon/bedsheet/medical,
+/obj/structure/bed,
+/obj/effect/decal/cleanable/cobweb,
+/obj/effect/landmark/revenantspawn,
+/turf/open/floor/plasteel/freezer,
+/area/medical/virology)
+"bLA" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/freezer,
+/area/medical/virology)
+"bLB" = (
+/obj/structure/bed,
+/obj/item/weapon/bedsheet/medical,
+/obj/effect/landmark/revenantspawn,
+/turf/open/floor/plasteel/freezer,
+/area/medical/virology)
+"bLC" = (
+/obj/structure/table,
+/obj/item/weapon/reagent_containers/dropper,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel/white,
+/area/medical/virology)
+"bLD" = (
+/obj/effect/landmark/start/virologist,
+/obj/structure/chair/office/light{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plasteel/white,
+/area/medical/virology)
+"bLE" = (
+/obj/structure/table/glass,
+/obj/item/clothing/gloves/color/latex,
+/obj/machinery/requests_console{
+ department = "Virology";
+ name = "Virology Requests Console";
+ pixel_x = 32;
+ receive_ore_updates = 1
+ },
+/obj/item/weapon/storage/box/monkeycubes{
+ layer = 3.1
+ },
+/obj/item/stack/sheet/mineral/plasma{
+ amount = 1;
+ layer = 3
+ },
+/turf/open/floor/plasteel/whitegreen/side{
+ icon_state = "whitegreen";
+ dir = 4
+ },
+/area/medical/virology)
+"bLF" = (
+/obj/structure/table,
+/obj/item/weapon/clipboard{
+ toppaper = null
+ },
+/obj/item/weapon/pen{
+ layer = 3.1
+ },
+/obj/item/clothing/neck/stethoscope{
+ layer = 3.2
+ },
+/turf/open/floor/plasteel/freezer,
+/area/medical/medbay/central)
+"bLG" = (
+/obj/structure/chair/office/light{
+ dir = 8
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/open/floor/plasteel/freezer,
+/area/medical/medbay/central)
+"bLH" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/closet/secure_closet/personal/patient,
+/turf/open/floor/plasteel/freezer,
+/area/medical/medbay/central)
+"bLI" = (
+/obj/structure/grille,
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "patientB";
+ name = "privacy shutters"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/medical/medbay/central)
+"bLJ" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
+/turf/open/floor/plasteel/whiteblue/side{
+ dir = 8
+ },
+/area/medical/medbay/central)
+"bLK" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/plasteel/whiteblue/side{
+ dir = 4
+ },
+/area/medical/medbay/central)
+"bLL" = (
+/obj/machinery/light,
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/open/floor/plasteel/freezer,
+/area/medical/surgery)
+"bLM" = (
+/obj/structure/table,
+/obj/item/clothing/gloves/color/latex,
+/obj/item/clothing/mask/surgical,
+/obj/item/clothing/suit/apron/surgical,
+/turf/open/floor/plasteel/whiteblue/side{
+ dir = 8
+ },
+/area/medical/surgery)
+"bLN" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 5
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/surgery)
+"bLO" = (
+/obj/effect/landmark/start/medical_doctor,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/surgery)
+"bLP" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 9
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/surgery)
+"bLQ" = (
+/obj/structure/table,
+/obj/item/weapon/surgical_drapes,
+/turf/open/floor/plasteel/whiteblue/side{
+ dir = 4
+ },
+/area/medical/surgery)
+"bLR" = (
+/obj/machinery/vending/cigarette,
+/turf/open/floor/plasteel/yellow/corner{
+ dir = 1
+ },
+/area/hallway/primary/aft)
+"bLS" = (
+/obj/machinery/vending/cola,
+/turf/open/floor/plasteel/yellow/corner{
+ dir = 1
+ },
+/area/hallway/primary/aft)
+"bLT" = (
+/obj/item/weapon/twohanded/required/kirbyplants{
+ icon_state = "applebush";
+ layer = 4.1
+ },
+/obj/machinery/airalarm{
+ pixel_y = 22
+ },
+/turf/open/floor/plasteel/yellow/corner{
+ dir = 1
+ },
+/area/hallway/primary/aft)
+"bLU" = (
+/obj/machinery/atmospherics/components/unary/portables_connector/visible{
+ dir = 4
+ },
+/obj/machinery/portable_atmospherics/scrubber,
+/turf/open/floor/plasteel/escape{
+ dir = 9
+ },
+/area/hallway/primary/aft)
+"bLV" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
+ dir = 10
+ },
+/turf/closed/wall/r_wall,
+/area/engine/atmos)
+"bLW" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/engine/atmos)
+"bLX" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/door/airlock/glass_atmos{
+ cyclelinkeddir = 0;
+ name = "Atmospherics";
+ req_access_txt = "24"
+ },
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"bLY" = (
+/obj/structure/rack,
+/obj/item/clothing/suit/hazardvest,
+/obj/item/clothing/suit/hazardvest{
+ pixel_x = 3
+ },
+/obj/item/clothing/mask/gas{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/clothing/mask/gas,
+/obj/item/clothing/mask/gas{
+ pixel_x = -3;
+ pixel_y = -3
+ },
+/turf/open/floor/plasteel/yellow/side{
+ dir = 1
+ },
+/area/engine/atmos)
+"bLZ" = (
+/obj/machinery/meter{
+ frequency = 1441;
+ id_tag = "waste_meter";
+ name = "Waste Loop"
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{
+ dir = 8
+ },
+/turf/open/floor/plasteel/yellow/side{
+ dir = 1
+ },
+/area/engine/atmos)
+"bMa" = (
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 8;
+ name = "Distro to Waste";
+ on = 0
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/plasteel/yellow/side{
+ dir = 1
+ },
+/area/engine/atmos)
+"bMb" = (
+/obj/machinery/meter{
+ frequency = 1441;
+ id_tag = "distro_meter";
+ name = "Distribution Loop"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/visible,
+/turf/open/floor/plasteel/yellow/side{
+ dir = 1
+ },
+/area/engine/atmos)
+"bMc" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/visible{
+ dir = 1
+ },
+/turf/open/floor/plasteel/yellow/side{
+ dir = 1
+ },
+/area/engine/atmos)
+"bMd" = (
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 8;
+ name = "Mix to Distro";
+ on = 0
+ },
+/turf/open/floor/plasteel/yellow/side{
+ dir = 1
+ },
+/area/engine/atmos)
+"bMe" = (
+/obj/machinery/atmospherics/pipe/manifold/yellow/visible{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"bMf" = (
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"bMg" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"bMh" = (
+/obj/machinery/computer/atmos_control/tank{
+ frequency = 1441;
+ input_tag = "mix_in";
+ name = "Gas Mix Tank Control";
+ output_tag = "mix_in";
+ sensors = list("mix_sensor" = "Tank")
+ },
+/turf/open/floor/plasteel/yellow/side{
+ dir = 4
+ },
+/area/engine/atmos)
+"bMi" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating/airless,
+/area/engine/atmos)
+"bMj" = (
+/obj/machinery/air_sensor{
+ frequency = 1441;
+ id_tag = "mix_sensor"
+ },
+/turf/open/floor/engine/vacuum,
+/area/engine/atmos)
+"bMk" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/engine/vacuum,
+/area/engine/atmos)
+"bMl" = (
+/obj/machinery/atmospherics/components/unary/outlet_injector/on{
+ dir = 1;
+ frequency = 1441;
+ id = "inc_in"
+ },
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
+ icon_state = "space";
+ layer = 4;
+ name = "EXTERNAL AIRLOCK";
+ pixel_x = -32
+ },
+/turf/open/floor/engine/vacuum,
+/area/science/mixing)
+"bMm" = (
+/obj/machinery/igniter{
+ icon_state = "igniter0";
+ id = "toxigniter";
+ luminosity = 2;
+ on = 0
+ },
+/turf/open/floor/engine/vacuum,
+/area/science/mixing)
+"bMn" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{
+ dir = 1
+ },
+/turf/open/floor/engine/vacuum,
+/area/science/mixing)
+"bMo" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
+ icon_state = "space";
+ layer = 4;
+ name = "EXTERNAL AIRLOCK";
+ pixel_x = -32
+ },
+/turf/open/floor/plating,
+/area/science/mineral_storeroom)
+"bMp" = (
+/obj/structure/closet/emcloset/anchored,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/science/mineral_storeroom)
+"bMq" = (
+/obj/machinery/door/poddoor{
+ id = "toxinsdriver";
+ name = "toxins launcher bay door"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/science/mineral_storeroom)
+"bMr" = (
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 4;
+ layer = 2.9
+ },
+/turf/open/space/basic,
+/area/space)
+"bMs" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel/black,
+/area/chapel/dock)
+"bMt" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/black,
+/area/chapel/dock)
+"bMu" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/black,
+/area/chapel/dock)
+"bMv" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/closed/wall,
+/area/chapel/dock)
+"bMw" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/black,
+/area/chapel/dock)
+"bMx" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/plasteel/black,
+/area/chapel/dock)
+"bMy" = (
+/obj/structure/window/reinforced{
+ dir = 8;
+ layer = 2.9
+ },
+/obj/structure/lattice,
+/turf/open/space,
+/area/space)
+"bMz" = (
+/obj/structure/transit_tube/curved{
+ dir = 1
+ },
+/obj/structure/lattice,
+/turf/open/space/basic,
+/area/space)
+"bMA" = (
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/engine,
+/area/maintenance/department/engine)
+"bMB" = (
+/obj/effect/decal/cleanable/blood/old,
+/turf/open/floor/engine,
+/area/maintenance/department/engine)
+"bMC" = (
+/obj/item/stack/spacecash/c10,
+/turf/open/floor/plasteel/vault{
+ dir = 5
+ },
+/area/maintenance/department/engine)
+"bMD" = (
+/obj/effect/decal/cleanable/oil,
+/turf/open/floor/plasteel/black,
+/area/maintenance/department/engine)
+"bME" = (
+/obj/structure/barricade/wooden,
+/turf/open/floor/plating,
+/area/maintenance/department/engine)
+"bMF" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on,
+/turf/open/floor/plasteel/freezer,
+/area/medical/virology)
+"bMG" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/open/floor/plasteel/freezer,
+/area/medical/virology)
+"bMH" = (
+/obj/structure/table,
+/obj/structure/disposalpipe/segment,
+/obj/structure/table,
+/obj/item/clothing/gloves/color/latex,
+/obj/item/clothing/glasses/hud/health,
+/turf/open/floor/plasteel/white,
+/area/medical/virology)
+"bMI" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/obj/structure/chair/office/light{
+ dir = 8
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/virology)
+"bMJ" = (
+/obj/structure/table/glass,
+/obj/item/weapon/storage/box/beakers{
+ pixel_x = 4;
+ pixel_y = 4
+ },
+/obj/item/weapon/storage/box/syringes,
+/obj/structure/reagent_dispensers/virusfood{
+ density = 0;
+ pixel_x = 32
+ },
+/obj/item/weapon/reagent_containers/spray/cleaner,
+/turf/open/floor/plasteel/whitegreen/side{
+ icon_state = "whitegreen";
+ dir = 6
+ },
+/area/medical/virology)
+"bMK" = (
+/obj/machinery/vending/cigarette,
+/turf/open/floor/plasteel/whiteblue/side{
+ dir = 10
+ },
+/area/medical/medbay/central)
+"bML" = (
+/obj/machinery/light,
+/obj/item/weapon/soap/nanotrasen,
+/obj/item/clothing/neck/stethoscope,
+/obj/item/weapon/gun/syringe,
+/obj/structure/table/glass,
+/turf/open/floor/plasteel/whiteblue/side,
+/area/medical/medbay/central)
+"bMM" = (
+/obj/structure/closet/l3closet,
+/turf/open/floor/plasteel/whiteblue/side{
+ dir = 6
+ },
+/area/medical/medbay/central)
+"bMN" = (
+/obj/structure/table,
+/obj/item/weapon/hemostat,
+/obj/item/stack/medical/gauze,
+/turf/open/floor/plasteel/whiteblue,
+/area/medical/surgery)
+"bMO" = (
+/obj/structure/table,
+/obj/item/weapon/surgicaldrill,
+/turf/open/floor/plasteel/whiteblue,
+/area/medical/surgery)
+"bMP" = (
+/obj/structure/table,
+/obj/item/weapon/scalpel{
+ pixel_y = 12
+ },
+/obj/item/weapon/circular_saw,
+/obj/machinery/light,
+/turf/open/floor/plasteel/whiteblue,
+/area/medical/surgery)
+"bMQ" = (
+/obj/structure/table,
+/obj/item/weapon/cautery{
+ pixel_x = 4
+ },
+/obj/item/weapon/razor{
+ pixel_y = 5
+ },
+/turf/open/floor/plasteel/whiteblue,
+/area/medical/surgery)
+"bMR" = (
+/obj/structure/table,
+/obj/item/weapon/retractor,
+/turf/open/floor/plasteel/whiteblue,
+/area/medical/surgery)
+"bMS" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"bMT" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"bMU" = (
+/obj/machinery/camera{
+ c_tag = "Aft Primary Hallway Atmospherics";
+ dir = 2;
+ network = list("SS13");
+ start_active = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/item/device/radio/intercom{
+ dir = 8;
+ freerange = 1;
+ name = "Station Intercom (Telecomms)";
+ pixel_y = 26
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"bMV" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 10
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"bMW" = (
+/obj/machinery/atmospherics/components/unary/portables_connector/visible{
+ dir = 4
+ },
+/obj/machinery/portable_atmospherics/scrubber,
+/turf/open/floor/plasteel/escape{
+ dir = 10
+ },
+/area/hallway/primary/aft)
+"bMX" = (
+/obj/machinery/meter,
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible,
+/turf/closed/wall/r_wall,
+/area/engine/atmos)
+"bMY" = (
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 4;
+ name = "External to Filter";
+ on = 1
+ },
+/turf/open/floor/plasteel/yellow/side{
+ dir = 8
+ },
+/area/engine/atmos)
+"bMZ" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"bNa" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
+ dir = 4
+ },
+/turf/open/floor/plasteel/yellow/side{
+ dir = 4
+ },
+/area/engine/atmos)
+"bNb" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/heavy,
+/obj/machinery/door/airlock/glass_atmos{
+ name = "Atmospherics Monitoring";
+ req_access_txt = "24"
+ },
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"bNc" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"bNd" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"bNe" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 6
+ },
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"bNf" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"bNg" = (
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 1;
+ name = "Air to Distro";
+ on = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"bNh" = (
+/obj/machinery/atmospherics/pipe/simple/yellow/visible,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"bNi" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"bNj" = (
+/obj/machinery/atmospherics/pipe/simple/green/visible{
+ dir = 6
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"bNk" = (
+/obj/machinery/atmospherics/pipe/manifold/green/visible{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"bNl" = (
+/obj/machinery/atmospherics/pipe/simple/green/visible{
+ dir = 4
+ },
+/turf/open/floor/plasteel/yellow/side{
+ dir = 4
+ },
+/area/engine/atmos)
+"bNm" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/atmospherics/pipe/simple/green/visible{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/engine/atmos)
+"bNn" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/green/visible{
+ dir = 4
+ },
+/turf/open/space,
+/area/space)
+"bNo" = (
+/obj/machinery/atmospherics/components/unary/outlet_injector/on{
+ dir = 8;
+ frequency = 1441;
+ id = "mix_in";
+ pixel_y = 1
+ },
+/turf/open/floor/engine/vacuum,
+/area/engine/atmos)
+"bNp" = (
+/turf/open/floor/engine/vacuum,
+/area/science/mixing)
+"bNq" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
+/turf/open/floor/plating,
+/area/science/mineral_storeroom)
+"bNr" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced,
+/obj/structure/lattice,
+/turf/open/space,
+/area/space)
+"bNs" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/chapel/asteroid{
+ name = "Monastery Asteroid"
+ })
+"bNt" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 4
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -24
+ },
+/obj/machinery/light/small,
+/obj/machinery/camera{
+ c_tag = "Monastery Dock";
+ dir = 1;
+ network = list("SS13","Monastery")
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 4
+ },
+/area/chapel/dock)
+"bNu" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 9
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/black,
+/area/chapel/dock)
+"bNv" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/item/device/radio/intercom{
+ dir = 0;
+ name = "Station Intercom (General)";
+ pixel_x = 27
+ },
+/obj/machinery/light/small,
+/turf/open/floor/plasteel/vault{
+ dir = 1
+ },
+/area/chapel/dock)
+"bNw" = (
+/turf/closed/wall,
+/area/chapel/dock)
+"bNx" = (
+/obj/structure/transit_tube/station/reverse{
+ tag = "icon-closed_terminus0 (NORTH)";
+ icon_state = "closed_terminus0";
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/chapel/dock)
+"bNy" = (
+/obj/structure/transit_tube/horizontal,
+/obj/machinery/camera{
+ c_tag = "Monastery Transit";
+ dir = 1;
+ network = list("SS13","Monastery")
+ },
+/turf/open/floor/plating,
+/area/chapel/dock)
+"bNz" = (
+/obj/structure/transit_tube/horizontal,
+/turf/open/floor/plating,
+/area/chapel/dock)
+"bNA" = (
+/obj/structure/transit_tube/horizontal,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/chapel/dock)
+"bNB" = (
+/obj/structure/transit_tube/horizontal,
+/obj/structure/window/reinforced{
+ dir = 8;
+ layer = 2.9
+ },
+/obj/structure/lattice,
+/obj/structure/lattice,
+/turf/open/space,
+/area/space)
+"bNC" = (
+/obj/structure/transit_tube/horizontal,
+/turf/open/space/basic,
+/area/space)
+"bND" = (
+/obj/structure/transit_tube/horizontal,
+/obj/structure/lattice,
+/turf/open/space/basic,
+/area/space)
+"bNE" = (
+/obj/structure/transit_tube/curved/flipped{
+ icon_state = "curved1";
+ dir = 8
+ },
+/turf/open/space/basic,
+/area/space)
+"bNF" = (
+/obj/item/stack/medical/bruise_pack,
+/turf/open/floor/plasteel/black,
+/area/maintenance/department/engine)
+"bNG" = (
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/open/floor/engine,
+/area/maintenance/department/engine)
+"bNH" = (
+/obj/structure/window/reinforced,
+/turf/open/floor/engine,
+/area/maintenance/department/engine)
+"bNI" = (
+/obj/structure/window/reinforced,
+/mob/living/simple_animal/chicken{
+ name = "Killer Cluck"
+ },
+/turf/open/floor/engine,
+/area/maintenance/department/engine)
+"bNJ" = (
+/obj/machinery/door/window/eastright{
+ base_state = "left";
+ icon_state = "left";
+ name = "Arena"
+ },
+/obj/structure/window/reinforced,
+/obj/structure/chair/stool,
+/turf/open/floor/engine,
+/area/maintenance/department/engine)
+"bNK" = (
+/obj/structure/grille/broken,
+/turf/open/floor/plating,
+/area/maintenance/department/engine)
+"bNL" = (
+/obj/structure/table/glass,
+/obj/item/weapon/reagent_containers/dropper,
+/obj/item/weapon/reagent_containers/syringe,
+/obj/item/weapon/reagent_containers/glass/beaker,
+/obj/machinery/light/small,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plasteel/freezer,
+/area/medical/virology)
+"bNM" = (
+/obj/structure/table/glass,
+/obj/item/weapon/folder/white{
+ pixel_y = 4
+ },
+/obj/item/weapon/pen/red,
+/turf/open/floor/plasteel/freezer,
+/area/medical/virology)
+"bNN" = (
+/obj/structure/table/glass,
+/obj/item/weapon/folder/white{
+ pixel_y = 4
+ },
+/obj/item/weapon/pen/red,
+/obj/machinery/light/small,
+/turf/open/floor/plasteel/freezer,
+/area/medical/virology)
+"bNO" = (
+/obj/structure/table/glass,
+/obj/item/weapon/reagent_containers/dropper,
+/obj/item/weapon/reagent_containers/syringe,
+/obj/item/weapon/reagent_containers/glass/beaker,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plasteel/freezer,
+/area/medical/virology)
+"bNP" = (
+/obj/structure/table,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/reagentgrinder,
+/turf/open/floor/plasteel/whitegreen/side,
+/area/medical/virology)
+"bNQ" = (
+/obj/machinery/light,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/obj/structure/table,
+/obj/item/weapon/paper_bin{
+ layer = 2.9
+ },
+/obj/item/weapon/pen/red,
+/turf/open/floor/plasteel/whitegreen/side,
+/area/medical/virology)
+"bNR" = (
+/obj/item/weapon/twohanded/required/kirbyplants{
+ icon_state = "plant-21"
+ },
+/turf/open/floor/plasteel/whitegreen/side,
+/area/medical/virology)
+"bNS" = (
+/obj/structure/closet/emcloset,
+/turf/open/floor/plating,
+/area/maintenance/department/engine)
+"bNT" = (
+/obj/structure/closet/firecloset,
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/engine)
+"bNU" = (
+/obj/structure/chair,
+/turf/open/floor/plating,
+/area/maintenance/department/engine)
+"bNV" = (
+/obj/item/weapon/wrench/medical,
+/turf/open/floor/plating,
+/area/maintenance/department/engine)
+"bNW" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/open/floor/plating{
+ icon_state = "platingdmg3"
+ },
+/area/maintenance/department/engine)
+"bNX" = (
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/plating,
+/area/maintenance/department/engine)
+"bNY" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 6
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/engine)
+"bNZ" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/door/airlock/maintenance{
+ req_access_txt = "12"
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/engine)
+"bOa" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/yellow/corner{
+ dir = 8
+ },
+/area/hallway/primary/aft)
+"bOb" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"bOc" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"bOd" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"bOe" = (
+/obj/machinery/atmospherics/components/unary/portables_connector/visible{
+ dir = 4
+ },
+/obj/machinery/portable_atmospherics/pump,
+/turf/open/floor/plasteel/arrival{
+ icon_state = "arrival";
+ dir = 9
+ },
+/area/hallway/primary/aft)
+"bOf" = (
+/obj/machinery/atmospherics/pipe/manifold/cyan/visible{
+ dir = 1
+ },
+/obj/machinery/meter,
+/turf/closed/wall/r_wall,
+/area/engine/atmos)
+"bOg" = (
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 8;
+ name = "Air to External";
+ on = 1
+ },
+/turf/open/floor/plasteel/yellow/side{
+ dir = 8
+ },
+/area/engine/atmos)
+"bOh" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/visible{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"bOi" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/visible{
+ dir = 4
+ },
+/turf/open/floor/plasteel/yellow/side{
+ dir = 4
+ },
+/area/engine/atmos)
+"bOj" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/visible{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/heavy,
+/obj/machinery/door/airlock/glass_atmos{
+ name = "Atmospherics Monitoring";
+ req_access_txt = "24"
+ },
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"bOk" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/visible{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"bOl" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/visible{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"bOm" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/visible{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"bOn" = (
+/obj/machinery/atmospherics/pipe/manifold/cyan/visible,
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"bOo" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/visible{
+ dir = 4
+ },
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 0;
+ name = "Mix to Port";
+ on = 0
+ },
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"bOp" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/visible{
+ dir = 4
+ },
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 1;
+ name = "Pure to Mix";
+ on = 0
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"bOq" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/visible{
+ dir = 4
+ },
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 1;
+ name = "Unfiltered to Mix";
+ on = 1
+ },
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"bOr" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/atmospherics/pipe/simple/cyan/visible{
+ dir = 10
+ },
+/turf/open/floor/plating,
+/area/engine/atmos)
+"bOs" = (
+/obj/structure/sign/fire,
+/turf/closed/wall/r_wall,
+/area/science/mixing)
+"bOt" = (
+/obj/machinery/door/poddoor{
+ id = "toxvent";
+ name = "Aft Vent"
+ },
+/turf/open/floor/engine/vacuum,
+/area/science/mixing)
+"bOu" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
+/obj/machinery/door/airlock/external{
+ cyclelinkeddir = 1;
+ req_access_txt = "8";
+ req_one_access_txt = "0"
+ },
+/turf/open/floor/plating,
+/area/science/mineral_storeroom)
+"bOv" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/lattice,
+/turf/open/space,
+/area/space)
+"bOw" = (
+/turf/open/floor/plating/asteroid,
+/area/chapel/asteroid{
+ name = "Monastery Asteroid"
+ })
+"bOx" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/vault,
+/area/chapel/dock)
+"bOy" = (
+/turf/open/floor/plasteel/vault,
+/area/chapel/dock)
+"bOz" = (
+/obj/structure/chair/comfy/black{
+ dir = 1
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 5
+ },
+/area/maintenance/department/engine)
+"bOA" = (
+/obj/structure/chair/stool,
+/turf/open/floor/plasteel/black,
+/area/maintenance/department/engine)
+"bOB" = (
+/obj/structure/grille,
+/turf/open/floor/plating,
+/area/maintenance/department/engine)
+"bOC" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plating,
+/area/medical/virology)
+"bOD" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/medical/virology)
+"bOE" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plating,
+/area/medical/virology)
+"bOF" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/engine)
+"bOG" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/engine)
+"bOH" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/landmark/blobstart,
+/turf/open/floor/plating,
+/area/maintenance/department/engine)
+"bOI" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 6
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/engine)
+"bOJ" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 9
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/engine)
+"bOK" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -24
+ },
+/turf/open/floor/plasteel/yellow/corner{
+ dir = 8
+ },
+/area/hallway/primary/aft)
+"bOL" = (
+/obj/structure/chair/stool,
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"bOM" = (
+/obj/machinery/atmospherics/components/unary/portables_connector/visible{
+ dir = 4
+ },
+/obj/machinery/portable_atmospherics/pump,
+/turf/open/floor/plasteel/arrival{
+ dir = 10
+ },
+/area/hallway/primary/aft)
+"bON" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/visible{
+ dir = 9
+ },
+/turf/closed/wall/r_wall,
+/area/engine/atmos)
+"bOO" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/plasteel/yellow/side{
+ dir = 8
+ },
+/area/engine/atmos)
+"bOP" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"bOQ" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/yellow/side{
+ dir = 4
+ },
+/area/engine/atmos)
+"bOR" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/closed/wall/r_wall,
+/area/engine/atmos)
+"bOS" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/camera{
+ c_tag = "Atmospherics Monitoring";
+ dir = 1;
+ network = list("SS13")
+ },
+/obj/machinery/space_heater,
+/turf/open/floor/plasteel/yellow/side,
+/area/engine/atmos)
+"bOT" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"bOU" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"bOV" = (
+/obj/structure/table,
+/obj/item/clothing/head/welding{
+ pixel_x = -3;
+ pixel_y = 7
+ },
+/obj/item/clothing/head/welding{
+ pixel_x = -5;
+ pixel_y = 3
+ },
+/obj/item/device/multitool{
+ layer = 4
+ },
+/turf/open/floor/plasteel/yellow/side,
+/area/engine/atmos)
+"bOW" = (
+/obj/structure/table,
+/obj/item/stack/sheet/glass{
+ amount = 50
+ },
+/obj/item/weapon/storage/belt/utility,
+/obj/item/device/t_scanner,
+/obj/item/device/t_scanner,
+/obj/item/device/t_scanner,
+/turf/open/floor/plasteel/yellow/side,
+/area/engine/atmos)
+"bOX" = (
+/obj/structure/table,
+/obj/item/stack/sheet/metal{
+ amount = 50
+ },
+/obj/item/stack/sheet/metal{
+ amount = 50;
+ pixel_x = 2;
+ pixel_y = 2
+ },
+/obj/item/stack/sheet/glass{
+ layer = 3.1
+ },
+/obj/item/stack/rods{
+ amount = 50;
+ layer = 3.2
+ },
+/turf/open/floor/plasteel/yellow/side,
+/area/engine/atmos)
+"bOY" = (
+/obj/machinery/atmospherics/pipe/manifold/general/visible{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"bOZ" = (
+/obj/machinery/meter,
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"bPa" = (
+/obj/machinery/atmospherics/pipe/manifold/general/visible{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"bPb" = (
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 8;
+ name = "Pure to Port"
+ },
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"bPc" = (
+/obj/machinery/atmospherics/pipe/manifold4w/yellow/visible,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"bPd" = (
+/obj/machinery/atmospherics/pipe/simple/green/visible,
+/obj/machinery/atmospherics/pipe/simple/yellow/visible{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"bPe" = (
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 8;
+ name = "N2O Outlet Pump";
+ on = 0
+ },
+/turf/open/floor/plasteel/yellow/side{
+ dir = 4
+ },
+/area/engine/atmos)
+"bPf" = (
+/obj/structure/grille,
+/obj/machinery/atmospherics/pipe/simple/cyan/visible,
+/obj/machinery/atmospherics/pipe/simple/yellow/visible{
+ dir = 4
+ },
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/engine/atmos)
+"bPg" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{
+ dir = 8;
+ frequency = 1441;
+ id_tag = "n2o_out";
+ name = "n2o out"
+ },
+/turf/open/floor/engine/n2o,
+/area/engine/atmos)
+"bPh" = (
+/turf/open/floor/engine/n2o,
+/area/engine/atmos)
+"bPi" = (
+/obj/machinery/atmospherics/components/unary/outlet_injector/on{
+ dir = 4
+ },
+/turf/open/floor/plating/airless,
+/area/space/nearstation)
+"bPj" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
+ dir = 4
+ },
+/obj/structure/lattice,
+/turf/open/space/basic,
+/area/space/nearstation)
+"bPk" = (
+/obj/structure/lattice/catwalk,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
+ dir = 4
+ },
+/turf/open/space,
+/area/space/nearstation)
+"bPl" = (
+/obj/structure/lattice/catwalk,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
+ dir = 9
+ },
+/turf/open/space,
+/area/space/nearstation)
+"bPm" = (
+/obj/structure/lattice/catwalk,
+/turf/open/space,
+/area/space/nearstation)
+"bPn" = (
+/obj/machinery/door/airlock/centcom{
+ name = "Chapel";
+ opacity = 1
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 5
+ },
+/area/chapel/dock)
+"bPo" = (
+/obj/machinery/door/airlock/centcom{
+ name = "Chapel";
+ opacity = 1
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 5
+ },
+/area/chapel/dock)
+"bPp" = (
+/obj/structure/sign/poster/contraband/random{
+ pixel_y = -32
+ },
+/turf/open/floor/plasteel/black,
+/area/maintenance/department/engine)
+"bPq" = (
+/obj/item/trash/chips,
+/obj/effect/decal/cleanable/deadcockroach,
+/turf/open/floor/plasteel/black,
+/area/maintenance/department/engine)
+"bPr" = (
+/obj/structure/table,
+/obj/item/weapon/paper,
+/obj/item/weapon/pen,
+/turf/open/floor/plasteel/black,
+/area/maintenance/department/engine)
+"bPs" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 5
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/engine)
+"bPt" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/engine)
+"bPu" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/closed/wall,
+/area/maintenance/department/engine)
+"bPv" = (
+/obj/machinery/atmospherics/pipe/manifold/cyan/hidden,
+/obj/structure/lattice,
+/turf/open/space/basic,
+/area/space)
+"bPw" = (
+/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
+ dir = 1
+ },
+/obj/structure/lattice,
+/turf/open/space/basic,
+/area/space)
+"bPx" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/obj/structure/lattice,
+/turf/open/space/basic,
+/area/space)
+"bPy" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/obj/structure/lattice,
+/obj/structure/disposalpipe/segment,
+/turf/open/space/basic,
+/area/space)
+"bPz" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 9
+ },
+/obj/structure/lattice,
+/turf/open/space/basic,
+/area/space)
+"bPA" = (
+/obj/machinery/portable_atmospherics/canister/air,
+/turf/open/floor/plating,
+/area/maintenance/department/engine)
+"bPB" = (
+/turf/closed/wall/r_wall,
+/area/engine/gravity_generator)
+"bPC" = (
+/obj/structure/chair/stool,
+/turf/open/floor/plating,
+/area/maintenance/department/engine)
+"bPD" = (
+/obj/structure/table,
+/obj/item/trash/chips,
+/turf/open/floor/plating,
+/area/maintenance/department/engine)
+"bPE" = (
+/turf/closed/wall,
+/area/storage/tech)
+"bPF" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/closed/wall,
+/area/storage/tech)
+"bPG" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
+ },
+/turf/open/floor/plasteel/yellow/corner{
+ dir = 8
+ },
+/area/hallway/primary/aft)
+"bPH" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/holopad,
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"bPI" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"bPJ" = (
+/obj/structure/table,
+/obj/item/weapon/reagent_containers/food/drinks/soda_cans/lemon_lime,
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"bPK" = (
+/obj/structure/table,
+/obj/item/clothing/gloves/color/fyellow,
+/obj/item/weapon/wrench,
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"bPL" = (
+/obj/structure/table,
+/obj/item/weapon/storage/toolbox/mechanical,
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"bPM" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/plasteel/yellow/corner,
+/area/hallway/primary/aft)
+"bPN" = (
+/obj/machinery/conveyor_switch{
+ id = "atmosdeliver"
+ },
+/turf/open/floor/plasteel/yellow/side{
+ dir = 8
+ },
+/area/engine/atmos)
+"bPO" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"bPP" = (
+/obj/structure/tank_dispenser,
+/turf/open/floor/plasteel/yellow/side{
+ dir = 4
+ },
+/area/engine/atmos)
+"bPQ" = (
+/turf/closed/wall,
+/area/engine/atmos)
+"bPR" = (
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 0;
+ name = "Waste In";
+ on = 1
+ },
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"bPS" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"bPT" = (
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 0;
+ name = "Air to Port";
+ on = 0
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -27
+ },
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"bPU" = (
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 0;
+ name = "Mix to Port";
+ on = 0
+ },
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"bPV" = (
+/obj/machinery/atmospherics/pipe/simple/yellow/visible,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"bPW" = (
+/obj/machinery/atmospherics/pipe/simple/green/visible,
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"bPX" = (
+/obj/machinery/computer/atmos_control/tank{
+ frequency = 1441;
+ input_tag = "n2o_in";
+ name = "Nitrous Oxide Supply Control";
+ output_tag = "n2o_out";
+ sensors = list("n2o_sensor" = "Tank")
+ },
+/turf/open/floor/plasteel/yellow/side{
+ dir = 4
+ },
+/area/engine/atmos)
+"bPY" = (
+/obj/structure/grille,
+/obj/machinery/atmospherics/pipe/simple/cyan/visible,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/engine/atmos)
+"bPZ" = (
+/obj/machinery/air_sensor{
+ frequency = 1441;
+ id_tag = "n2o_sensor"
+ },
+/turf/open/floor/engine/n2o,
+/area/engine/atmos)
+"bQa" = (
+/obj/machinery/portable_atmospherics/canister/nitrous_oxide,
+/turf/open/floor/engine/n2o,
+/area/engine/atmos)
+"bQb" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/engine/n2o,
+/area/engine/atmos)
+"bQc" = (
+/obj/machinery/camera{
+ c_tag = "Monastery Asteroid Dock Port";
+ dir = 4;
+ network = list("SS13","Monastery")
+ },
+/turf/open/floor/plating/asteroid,
+/area/chapel/asteroid{
+ name = "Monastery Asteroid"
+ })
+"bQd" = (
+/obj/structure/flora/ausbushes/leafybush,
+/obj/structure/flora/ausbushes/reedbush,
+/turf/open/floor/plating/asteroid,
+/area/chapel/asteroid{
+ name = "Monastery Asteroid"
+ })
+"bQe" = (
+/obj/item/device/flashlight/lantern{
+ on = 1
+ },
+/turf/open/floor/plating/asteroid,
+/area/chapel/asteroid{
+ name = "Monastery Asteroid"
+ })
+"bQf" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/asteroid{
+ icon_plating = "asteroid"
+ },
+/area/chapel/asteroid{
+ name = "Monastery Asteroid"
+ })
+"bQg" = (
+/turf/open/floor/plasteel/asteroid{
+ icon_plating = "asteroid"
+ },
+/area/chapel/asteroid{
+ name = "Monastery Asteroid"
+ })
+"bQh" = (
+/obj/machinery/camera{
+ c_tag = "Monastery Asteroid Dock Staboard";
+ dir = 8;
+ network = list("SS13","Monastery")
+ },
+/turf/open/floor/plating/asteroid,
+/area/chapel/asteroid{
+ name = "Monastery Asteroid"
+ })
+"bQi" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/lattice,
+/turf/open/space,
+/area/space)
+"bQj" = (
+/obj/structure/grille,
+/obj/structure/window/fulltile,
+/turf/open/floor/plating,
+/area/maintenance/department/engine)
+"bQk" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plating,
+/area/maintenance/department/engine)
+"bQl" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plating,
+/area/maintenance/department/engine)
+"bQm" = (
+/obj/effect/turf_decal/stripes/corner,
+/turf/open/floor/plasteel/black,
+/area/engine/gravity_generator)
+"bQn" = (
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel/black,
+/area/engine/gravity_generator)
+"bQo" = (
+/obj/machinery/camera{
+ c_tag = "Gravity Generator";
+ dir = 2;
+ network = list("SS13")
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel/black,
+/area/engine/gravity_generator)
+"bQp" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel/black,
+/area/engine/gravity_generator)
+"bQq" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 10
+ },
+/obj/effect/turf_decal/stripes/corner{
+ dir = 1
+ },
+/turf/open/floor/plasteel/black,
+/area/engine/gravity_generator)
+"bQr" = (
+/turf/closed/wall/r_wall,
+/area/storage/tech)
+"bQs" = (
+/obj/structure/table,
+/obj/item/device/flashlight{
+ pixel_x = 1;
+ pixel_y = 5
+ },
+/obj/item/device/flashlight{
+ pixel_x = 1;
+ pixel_y = 5
+ },
+/obj/item/device/assembly/flash/handheld,
+/obj/item/device/assembly/flash/handheld,
+/obj/effect/decal/cleanable/cobweb,
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -26
+ },
+/turf/open/floor/plasteel/darkgreen,
+/area/storage/tech)
+"bQt" = (
+/obj/structure/table,
+/obj/item/device/aicard,
+/obj/item/weapon/aiModule/reset,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/airalarm{
+ dir = 2;
+ pixel_y = 22
+ },
+/turf/open/floor/plasteel/darkgreen,
+/area/storage/tech)
+"bQu" = (
+/obj/structure/table,
+/obj/machinery/cell_charger{
+ pixel_y = 5
+ },
+/obj/item/weapon/stock_parts/cell/high/plus,
+/turf/open/floor/plasteel/darkgreen,
+/area/storage/tech)
+"bQv" = (
+/obj/structure/rack{
+ dir = 8;
+ layer = 2.9
+ },
+/obj/item/weapon/circuitboard/computer/pandemic{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/item/weapon/circuitboard/computer/rdconsole,
+/obj/item/weapon/circuitboard/machine/rdserver{
+ pixel_x = 3;
+ pixel_y = -3
+ },
+/obj/item/weapon/circuitboard/machine/destructive_analyzer,
+/obj/item/weapon/circuitboard/machine/protolathe,
+/obj/item/weapon/circuitboard/computer/aifixer,
+/obj/item/weapon/circuitboard/computer/teleporter,
+/obj/item/weapon/circuitboard/machine/circuit_imprinter,
+/obj/item/weapon/circuitboard/machine/mechfab,
+/obj/structure/sign/poster/official/random{
+ pixel_y = 32
+ },
+/turf/open/floor/plasteel/darkgreen,
+/area/storage/tech)
+"bQw" = (
+/obj/structure/rack{
+ dir = 8;
+ layer = 2.9
+ },
+/obj/item/weapon/circuitboard/computer/mining,
+/obj/item/weapon/circuitboard/machine/autolathe{
+ pixel_x = 3;
+ pixel_y = -3
+ },
+/obj/item/weapon/circuitboard/computer/arcade/battle,
+/obj/machinery/light{
+ dir = 1;
+ light_color = "#cee5d2"
+ },
+/obj/machinery/camera{
+ c_tag = "Tech Storage";
+ dir = 2;
+ network = list("SS13")
+ },
+/obj/item/weapon/circuitboard/computer/shuttle/monastery_shuttle,
+/turf/open/floor/plasteel/darkgreen,
+/area/storage/tech)
+"bQx" = (
+/obj/structure/rack,
+/obj/item/weapon/circuitboard/machine/telecomms/processor,
+/obj/item/weapon/circuitboard/machine/telecomms/receiver,
+/obj/item/weapon/circuitboard/machine/telecomms/server,
+/obj/item/weapon/circuitboard/machine/telecomms/bus,
+/obj/item/weapon/circuitboard/machine/telecomms/broadcaster,
+/obj/item/weapon/circuitboard/computer/message_monitor{
+ pixel_y = -5
+ },
+/turf/open/floor/plasteel/darkgreen,
+/area/storage/tech)
+"bQy" = (
+/obj/structure/rack,
+/obj/item/weapon/electronics/airalarm,
+/obj/item/weapon/electronics/airlock,
+/obj/item/weapon/electronics/apc,
+/obj/item/weapon/electronics/firealarm,
+/obj/item/weapon/electronics/firelock,
+/obj/item/weapon/electronics/tracker,
+/obj/structure/sign/poster/official/random{
+ pixel_y = 32
+ },
+/turf/open/floor/plasteel/darkgreen,
+/area/storage/tech)
+"bQz" = (
+/obj/machinery/computer/arcade,
+/turf/open/floor/plasteel/darkgreen,
+/area/storage/tech)
+"bQA" = (
+/obj/machinery/vending/assist,
+/turf/open/floor/plasteel/darkgreen,
+/area/storage/tech)
+"bQB" = (
+/obj/machinery/power/apc{
+ name = "Aft Hall APC";
+ dir = 8;
+ pixel_x = -25;
+ pixel_y = 1
+ },
+/obj/structure/cable{
+ icon_state = "0-4";
+ d2 = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/yellow/corner{
+ dir = 8
+ },
+/area/hallway/primary/aft)
+"bQC" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/navbeacon{
+ codes_txt = "patrol;next_patrol=Bar2";
+ location = "Eng"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"bQD" = (
+/turf/open/floor/plasteel/yellow/corner,
+/area/hallway/primary/aft)
+"bQE" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/firedoor/heavy,
+/obj/machinery/door/window/northleft{
+ dir = 4;
+ icon_state = "left";
+ name = "Atmospherics Desk";
+ req_access_txt = "24"
+ },
+/obj/machinery/door/poddoor/preopen{
+ id = "atmos";
+ layer = 2.9;
+ name = "atmos blast door"
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"bQF" = (
+/obj/structure/chair/office/dark{
+ dir = 8
+ },
+/obj/effect/landmark/start/atmospheric_technician,
+/turf/open/floor/plasteel/yellow/side{
+ dir = 8
+ },
+/area/engine/atmos)
+"bQG" = (
+/obj/machinery/computer/atmos_control,
+/turf/open/floor/plasteel/yellow/side{
+ dir = 4
+ },
+/area/engine/atmos)
+"bQH" = (
+/obj/machinery/pipedispenser,
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"bQI" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"bQJ" = (
+/obj/structure/closet/secure_closet/atmospherics,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"bQK" = (
+/obj/machinery/atmospherics/components/unary/portables_connector/visible{
+ dir = 4
+ },
+/obj/machinery/portable_atmospherics/canister,
+/obj/effect/turf_decal/bot{
+ dir = 2
+ },
+/turf/open/floor/plasteel{
+ dir = 2
+ },
+/area/engine/atmos)
+"bQL" = (
+/obj/machinery/atmospherics/pipe/manifold/general/visible{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"bQM" = (
+/obj/machinery/atmospherics/components/unary/portables_connector/visible{
+ dir = 8
+ },
+/obj/effect/turf_decal/bot{
+ dir = 2
+ },
+/turf/open/floor/plasteel{
+ dir = 2
+ },
+/area/engine/atmos)
+"bQN" = (
+/obj/machinery/atmospherics/components/trinary/filter{
+ dir = 1;
+ filter_type = "n2o";
+ on = 1
+ },
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"bQO" = (
+/obj/structure/grille,
+/obj/machinery/atmospherics/pipe/simple/cyan/visible,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/atmospherics/pipe/simple/green/visible{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/engine/atmos)
+"bQP" = (
+/obj/machinery/atmospherics/components/unary/outlet_injector/on{
+ dir = 8;
+ frequency = 1441;
+ id = "n2o_in";
+ pixel_y = 1
+ },
+/turf/open/floor/engine/n2o,
+/area/engine/atmos)
+"bQQ" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced,
+/turf/open/space,
+/area/space)
+"bQR" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced,
+/turf/open/space,
+/area/space)
+"bQS" = (
+/obj/structure/table,
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/plating{
+ icon_state = "platingdmg3"
+ },
+/area/maintenance/department/engine)
+"bQT" = (
+/obj/structure/rack,
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/plating,
+/area/maintenance/department/engine)
+"bQU" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/engine)
+"bQV" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/engine)
+"bQW" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/engine)
+"bQX" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/engine)
+"bQY" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/engine)
+"bQZ" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel/black,
+/area/engine/gravity_generator)
+"bRa" = (
+/turf/open/floor/plasteel/white,
+/area/engine/gravity_generator)
+"bRb" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 5
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel/black,
+/area/engine/gravity_generator)
+"bRc" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/closed/wall/r_wall,
+/area/engine/gravity_generator)
+"bRd" = (
+/obj/structure/closet/radiation,
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 1
+ },
+/obj/machinery/airalarm{
+ dir = 2;
+ pixel_y = 22
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/turf/open/floor/plasteel,
+/area/engine/gravity_generator)
+"bRe" = (
+/obj/structure/closet/radiation,
+/obj/machinery/camera{
+ c_tag = "Gravity Generator Foyer";
+ dir = 2;
+ network = list("SS13")
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/item/device/radio/intercom{
+ dir = 0;
+ name = "Station Intercom (General)";
+ pixel_y = 26
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/turf/open/floor/plasteel,
+/area/engine/gravity_generator)
+"bRf" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/closed/wall/r_wall,
+/area/storage/tech)
+"bRg" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'RADIOACTIVE AREA'";
+ icon_state = "radiation";
+ name = "RADIOACTIVE AREA";
+ pixel_x = -32
+ },
+/obj/effect/turf_decal/stripes/corner{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel/black,
+/area/storage/tech)
+"bRh" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/chair/office/dark{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel/black,
+/area/storage/tech)
+"bRi" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line{
+ tag = "icon-warninglinecorner";
+ icon_state = "warninglinecorner";
+ dir = 2
+ },
+/turf/open/floor/plasteel/black,
+/area/storage/tech)
+"bRj" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel/black,
+/area/storage/tech)
+"bRk" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line{
+ tag = "icon-warninglinecorner (NORTH)";
+ icon_state = "warninglinecorner";
+ dir = 1
+ },
+/turf/open/floor/plasteel/black,
+/area/storage/tech)
+"bRl" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel/black,
+/area/storage/tech)
+"bRm" = (
+/obj/machinery/light_switch{
+ pixel_x = 25
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel/black,
+/area/storage/tech)
+"bRn" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 5
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"bRo" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"bRp" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"bRq" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 1
+ },
+/turf/open/floor/plasteel/yellow/corner,
+/area/hallway/primary/aft)
+"bRr" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/firedoor/heavy,
+/obj/machinery/door/window/northleft{
+ dir = 4;
+ icon_state = "left";
+ name = "Atmospherics Desk";
+ req_access_txt = "24"
+ },
+/obj/machinery/door/poddoor/preopen{
+ id = "atmos";
+ layer = 2.9;
+ name = "atmos blast door"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"bRs" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/chair/office/dark{
+ dir = 8
+ },
+/obj/effect/landmark/start/atmospheric_technician,
+/turf/open/floor/plasteel/yellow/side{
+ dir = 8
+ },
+/area/engine/atmos)
+"bRt" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 10
+ },
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"bRu" = (
+/obj/machinery/requests_console{
+ department = "Atmospherics";
+ departmentType = 4;
+ name = "Atmos RC";
+ pixel_x = 30
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/machinery/computer/atmos_alert,
+/turf/open/floor/plasteel/yellow/side{
+ dir = 4
+ },
+/area/engine/atmos)
+"bRv" = (
+/obj/machinery/pipedispenser/disposal,
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/machinery/camera{
+ c_tag = "Atmospherics Central";
+ dir = 4;
+ network = list("SS13")
+ },
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"bRw" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"bRx" = (
+/obj/machinery/suit_storage_unit/atmos,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"bRy" = (
+/obj/machinery/atmospherics/pipe/manifold/general/visible{
+ dir = 4
+ },
+/obj/machinery/meter,
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"bRz" = (
+/obj/machinery/holopad,
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"bRA" = (
+/obj/machinery/atmospherics/pipe/manifold/general/visible{
+ dir = 8
+ },
+/obj/machinery/meter,
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"bRB" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/plasteel/yellow/side{
+ dir = 4
+ },
+/area/engine/atmos)
+"bRC" = (
+/obj/structure/lattice,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced,
+/obj/structure/lattice,
+/turf/open/space,
+/area/space)
+"bRD" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plating,
+/area/maintenance/department/engine)
+"bRE" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/closed/wall,
+/area/maintenance/department/engine)
+"bRF" = (
+/obj/structure/girder,
+/turf/closed/wall,
+/area/maintenance/department/engine)
+"bRG" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel/black,
+/area/engine/gravity_generator)
+"bRH" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/engineering{
+ name = "Gravity Generator";
+ req_access_txt = "11"
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/engine/gravity_generator)
+"bRI" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/engine/gravity_generator)
+"bRJ" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/engine/gravity_generator)
+"bRK" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/engineering{
+ name = "Gravity Generator";
+ req_access_txt = "11"
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/storage/tech)
+"bRL" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel/black,
+/area/storage/tech)
+"bRM" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel/black,
+/area/storage/tech)
+"bRN" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel/black,
+/area/storage/tech)
+"bRO" = (
+/obj/structure/rack{
+ dir = 8;
+ layer = 2.9
+ },
+/obj/item/weapon/circuitboard/computer/cloning,
+/obj/item/weapon/circuitboard/computer/med_data{
+ pixel_x = 3;
+ pixel_y = -3
+ },
+/obj/item/weapon/circuitboard/machine/clonescanner,
+/obj/item/weapon/circuitboard/machine/clonepod,
+/obj/item/weapon/circuitboard/computer/scan_consolenew,
+/turf/open/floor/plasteel/darkgreen,
+/area/storage/tech)
+"bRP" = (
+/obj/structure/rack{
+ dir = 8;
+ layer = 2.9
+ },
+/obj/item/weapon/circuitboard/computer/secure_data{
+ pixel_x = -2;
+ pixel_y = 2
+ },
+/obj/item/weapon/circuitboard/computer/security{
+ pixel_x = 1;
+ pixel_y = -1
+ },
+/turf/open/floor/plasteel/darkgreen,
+/area/storage/tech)
+"bRQ" = (
+/obj/structure/rack{
+ dir = 8;
+ layer = 2.9
+ },
+/obj/item/weapon/circuitboard/computer/powermonitor{
+ pixel_x = -2;
+ pixel_y = 2
+ },
+/obj/item/weapon/circuitboard/computer/stationalert{
+ pixel_x = 1;
+ pixel_y = -1
+ },
+/obj/item/weapon/circuitboard/computer/atmos_alert{
+ pixel_x = 3;
+ pixel_y = -3
+ },
+/turf/open/floor/plasteel/darkgreen,
+/area/storage/tech)
+"bRR" = (
+/obj/machinery/holopad,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel/black,
+/area/storage/tech)
+"bRS" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on,
+/turf/open/floor/plasteel/black,
+/area/storage/tech)
+"bRT" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 6
+ },
+/turf/open/floor/plasteel/black,
+/area/storage/tech)
+"bRU" = (
+/obj/machinery/door/airlock/engineering{
+ name = "Tech Storage";
+ req_access_txt = "23"
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/black,
+/area/storage/tech)
+"bRV" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/yellow/corner{
+ dir = 8
+ },
+/area/hallway/primary/aft)
+"bRW" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"bRX" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"bRY" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"bRZ" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"bSa" = (
+/obj/structure/plasticflaps{
+ opacity = 1
+ },
+/obj/effect/turf_decal/delivery,
+/obj/machinery/conveyor{
+ dir = 4;
+ id = "atmosdeliver"
+ },
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"bSb" = (
+/obj/machinery/navbeacon{
+ codes_txt = "delivery;dir=4";
+ freq = 1400;
+ location = "Atmospherics"
+ },
+/turf/open/floor/plasteel/yellow/side,
+/area/engine/atmos)
+"bSc" = (
+/obj/structure/disposalpipe/sortjunction{
+ dir = 2;
+ icon_state = "pipe-j2s";
+ sortType = 6
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/open/floor/plasteel/yellow/side,
+/area/engine/atmos)
+"bSd" = (
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/turf/open/floor/plasteel/yellow/side,
+/area/engine/atmos)
+"bSe" = (
+/obj/machinery/pipedispenser/disposal/transit_tube,
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"bSf" = (
+/obj/machinery/atmospherics/pipe/manifold/general/visible{
+ dir = 4
+ },
+/obj/item/weapon/wrench,
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"bSg" = (
+/obj/machinery/atmospherics/pipe/manifold/yellow/visible{
+ dir = 8
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"bSh" = (
+/obj/machinery/camera{
+ c_tag = "Atmospherics Starboard";
+ dir = 8;
+ network = list("SS13")
+ },
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 8;
+ name = "Plasma Outlet Pump";
+ on = 0
+ },
+/turf/open/floor/plasteel/yellow/side{
+ dir = 4
+ },
+/area/engine/atmos)
+"bSi" = (
+/obj/structure/grille,
+/obj/machinery/atmospherics/pipe/simple/cyan/visible,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/atmospherics/pipe/simple/yellow/visible{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/engine/atmos)
+"bSj" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{
+ dir = 8;
+ frequency = 1441;
+ id_tag = "tox_out";
+ name = "toxin out"
+ },
+/turf/open/floor/engine/plasma,
+/area/engine/atmos)
+"bSk" = (
+/turf/open/floor/engine/plasma,
+/area/engine/atmos)
+"bSl" = (
+/obj/effect/landmark/xeno_spawn,
+/turf/open/floor/engine/plasma,
+/area/engine/atmos)
+"bSm" = (
+/obj/structure/flora/ausbushes,
+/turf/open/floor/plating/asteroid,
+/area/chapel/asteroid{
+ name = "Monastery Asteroid"
+ })
+"bSn" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/open/space,
+/area/space)
+"bSo" = (
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/engine)
+"bSp" = (
+/obj/structure/disposalpipe/junction{
+ dir = 2;
+ icon_state = "pipe-y"
+ },
+/turf/open/floor/plating{
+ icon_state = "platingdmg3"
+ },
+/area/maintenance/department/engine)
+"bSq" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/engine)
+"bSr" = (
+/obj/structure/disposalpipe/junction{
+ tag = "icon-pipe-y (WEST)";
+ icon_state = "pipe-y";
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/engine)
+"bSs" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 6
+ },
+/obj/item/weapon/wrench,
+/turf/open/floor/plating,
+/area/maintenance/department/engine)
+"bSt" = (
+/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
+ dir = 4
+ },
+/obj/machinery/meter,
+/turf/open/floor/plating,
+/area/maintenance/department/engine)
+"bSu" = (
+/obj/item/weapon/broken_bottle,
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/plating,
+/area/maintenance/department/engine)
+"bSv" = (
+/obj/effect/decal/cleanable/ash,
+/turf/open/floor/plating,
+/area/maintenance/department/engine)
+"bSw" = (
+/turf/open/floor/plating{
+ icon_state = "platingdmg3"
+ },
+/area/maintenance/department/engine)
+"bSx" = (
+/obj/structure/closet,
+/obj/item/weapon/restraints/handcuffs/cable,
+/turf/open/floor/plating,
+/area/maintenance/department/engine)
+"bSy" = (
+/obj/machinery/gravity_generator/main/station,
+/turf/open/floor/plasteel/white,
+/area/engine/gravity_generator)
+"bSz" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 6
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel/black,
+/area/engine/gravity_generator)
+"bSA" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/closed/wall/r_wall,
+/area/engine/gravity_generator)
+"bSB" = (
+/obj/structure/chair/office/light,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/turf/open/floor/plasteel,
+/area/engine/gravity_generator)
+"bSC" = (
+/obj/machinery/power/terminal,
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/turf/open/floor/plasteel,
+/area/engine/gravity_generator)
+"bSD" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/closed/wall/r_wall,
+/area/storage/tech)
+"bSE" = (
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'RADIOACTIVE AREA'";
+ icon_state = "radiation";
+ name = "RADIOACTIVE AREA";
+ pixel_x = -32
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/corner{
+ dir = 4
+ },
+/turf/open/floor/plasteel/black,
+/area/storage/tech)
+"bSF" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/item/device/radio/beacon,
+/turf/open/floor/plasteel/black,
+/area/storage/tech)
+"bSG" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line{
+ tag = "icon-warninglinecorner (WEST)";
+ icon_state = "warninglinecorner";
+ dir = 8
+ },
+/turf/open/floor/plasteel/black,
+/area/storage/tech)
+"bSH" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel/black,
+/area/storage/tech)
+"bSI" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line,
+/obj/effect/turf_decal/stripes/line{
+ tag = "icon-warninglinecorner (EAST)";
+ icon_state = "warninglinecorner";
+ dir = 4
+ },
+/turf/open/floor/plasteel/black,
+/area/storage/tech)
+"bSJ" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel/black,
+/area/storage/tech)
+"bSK" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 9
+ },
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel/black,
+/area/storage/tech)
+"bSL" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 5
+ },
+/turf/open/floor/plasteel/yellow/corner,
+/area/hallway/primary/aft)
+"bSM" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/yellow/corner,
+/area/hallway/primary/aft)
+"bSN" = (
+/obj/machinery/camera{
+ c_tag = "Aft Primary Hallway Engineering";
+ dir = 1;
+ network = list("SS13");
+ start_active = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/sign/engineering{
+ pixel_y = -32
+ },
+/turf/open/floor/plasteel/yellow/corner,
+/area/hallway/primary/aft)
+"bSO" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 10
+ },
+/turf/open/floor/plasteel/yellow/corner,
+/area/hallway/primary/aft)
+"bSP" = (
+/obj/item/weapon/twohanded/required/kirbyplants{
+ icon_state = "plant-02"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/sign/engineering{
+ pixel_y = -32
+ },
+/turf/open/floor/plasteel/yellow/corner,
+/area/hallway/primary/aft)
+"bSQ" = (
+/obj/machinery/door/firedoor/heavy,
+/obj/machinery/door/airlock/glass_atmos{
+ cyclelinkeddir = 0;
+ name = "Atmospherics Monitoring";
+ req_access_txt = "24"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"bSR" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 0;
+ name = "Port to Filter";
+ on = 0
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -27
+ },
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"bSS" = (
+/obj/item/device/radio/beacon,
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"bST" = (
+/obj/machinery/atmospherics/pipe/manifold/general/visible{
+ dir = 8
+ },
+/obj/structure/chair/stool,
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"bSU" = (
+/obj/machinery/atmospherics/components/unary/thermomachine/heater{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"bSV" = (
+/obj/machinery/computer/atmos_control/tank{
+ frequency = 1441;
+ input_tag = "tox_in";
+ name = "Plasma Supply Control";
+ output_tag = "tox_out";
+ sensors = list("tox_sensor" = "Tank")
+ },
+/turf/open/floor/plasteel/yellow/side{
+ dir = 4
+ },
+/area/engine/atmos)
+"bSW" = (
+/obj/machinery/air_sensor{
+ frequency = 1441;
+ id_tag = "tox_sensor"
+ },
+/turf/open/floor/engine/plasma,
+/area/engine/atmos)
+"bSX" = (
+/obj/machinery/portable_atmospherics/canister/toxins,
+/turf/open/floor/engine/plasma,
+/area/engine/atmos)
+"bSY" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/engine/plasma,
+/area/engine/atmos)
+"bSZ" = (
+/obj/structure/lattice,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/open/space,
+/area/space)
+"bTa" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/structure/lattice,
+/turf/open/space,
+/area/space)
+"bTb" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating/airless,
+/area/space)
+"bTc" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating/airless,
+/area/maintenance/department/engine)
+"bTd" = (
+/obj/item/stack/sheet/cardboard{
+ amount = 14
+ },
+/obj/item/weapon/vending_refill/cola,
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/engine)
+"bTe" = (
+/obj/item/weapon/cigbutt/cigarbutt,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plating,
+/area/maintenance/department/engine)
+"bTf" = (
+/obj/machinery/door/airlock/atmos{
+ name = "Atmospherics Maintenance";
+ req_access_txt = "12;24"
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/engine)
+"bTg" = (
+/obj/machinery/atmospherics/components/binary/valve,
+/obj/effect/landmark/blobstart,
+/turf/open/floor/plating,
+/area/maintenance/department/engine)
+"bTh" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 1;
+ name = "Air Out";
+ on = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/engine)
+"bTi" = (
+/obj/item/weapon/picket_sign,
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/plating,
+/area/maintenance/department/engine)
+"bTj" = (
+/obj/structure/bonfire,
+/turf/open/floor/plating,
+/area/maintenance/department/engine)
+"bTk" = (
+/obj/structure/closet,
+/obj/item/weapon/cigbutt/cigarbutt,
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/plating,
+/area/maintenance/department/engine)
+"bTl" = (
+/obj/machinery/space_heater,
+/turf/open/floor/plating,
+/area/maintenance/department/engine)
+"bTm" = (
+/obj/effect/turf_decal/stripes/corner{
+ dir = 8
+ },
+/turf/open/floor/plasteel/black,
+/area/engine/gravity_generator)
+"bTn" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel/black,
+/area/engine/gravity_generator)
+"bTo" = (
+/obj/machinery/light,
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel/black,
+/area/engine/gravity_generator)
+"bTp" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel/black,
+/area/engine/gravity_generator)
+"bTq" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 9
+ },
+/obj/effect/turf_decal/stripes/corner{
+ dir = 4
+ },
+/turf/open/floor/plasteel/black,
+/area/engine/gravity_generator)
+"bTr" = (
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "Gravity Generator APC";
+ pixel_x = -25;
+ pixel_y = 1
+ },
+/obj/structure/table,
+/obj/item/weapon/paper/guides/jobs/engi/gravity_gen{
+ layer = 3
+ },
+/obj/item/weapon/pen/blue,
+/obj/machinery/power/terminal{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "0-4";
+ d2 = 4
+ },
+/obj/machinery/light,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/engine/gravity_generator)
+"bTs" = (
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/machinery/power/smes{
+ charge = 5e+006
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/engine/gravity_generator)
+"bTt" = (
+/obj/machinery/suit_storage_unit/standard_unit,
+/turf/open/floor/plasteel/black,
+/area/storage/tech)
+"bTu" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/black,
+/area/storage/tech)
+"bTv" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/closet/crate/engineering/electrical,
+/obj/item/stack/cable_coil,
+/obj/item/stack/cable_coil,
+/obj/item/weapon/electronics/apc,
+/obj/item/weapon/electronics/airalarm,
+/obj/item/weapon/electronics/airlock,
+/turf/open/floor/plasteel/black,
+/area/storage/tech)
+"bTw" = (
+/obj/structure/rack,
+/obj/item/weapon/stock_parts/subspace/filter,
+/obj/item/weapon/stock_parts/subspace/filter,
+/obj/item/weapon/stock_parts/subspace/treatment,
+/obj/item/weapon/stock_parts/subspace/treatment,
+/obj/item/weapon/stock_parts/subspace/transmitter,
+/obj/item/weapon/stock_parts/subspace/transmitter,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel/darkgreen,
+/area/storage/tech)
+"bTx" = (
+/obj/structure/rack,
+/obj/item/weapon/stock_parts/subspace/ansible,
+/obj/item/weapon/stock_parts/subspace/ansible,
+/obj/item/weapon/stock_parts/subspace/crystal,
+/obj/item/weapon/stock_parts/subspace/crystal,
+/obj/machinery/light{
+ light_color = "#cee5d2"
+ },
+/turf/open/floor/plasteel/darkgreen,
+/area/storage/tech)
+"bTy" = (
+/obj/structure/rack,
+/obj/item/weapon/stock_parts/subspace/amplifier,
+/obj/item/weapon/stock_parts/subspace/amplifier,
+/obj/item/weapon/stock_parts/subspace/analyzer,
+/obj/item/weapon/stock_parts/subspace/analyzer,
+/turf/open/floor/plasteel/darkgreen,
+/area/storage/tech)
+"bTz" = (
+/obj/structure/rack{
+ dir = 8;
+ layer = 2.9
+ },
+/obj/item/weapon/storage/toolbox/electrical{
+ pixel_x = 2;
+ pixel_y = 4
+ },
+/obj/item/clothing/gloves/color/yellow,
+/obj/item/device/t_scanner,
+/turf/open/floor/plasteel/darkgreen,
+/area/storage/tech)
+"bTA" = (
+/obj/structure/rack{
+ dir = 8;
+ layer = 2.9
+ },
+/obj/item/weapon/storage/toolbox/electrical{
+ pixel_x = 2;
+ pixel_y = 4
+ },
+/obj/item/device/multitool,
+/obj/item/clothing/glasses/meson,
+/obj/machinery/requests_console{
+ department = "Tech storage";
+ pixel_y = -32
+ },
+/turf/open/floor/plasteel/darkgreen,
+/area/storage/tech)
+"bTB" = (
+/obj/structure/closet/crate{
+ name = "solar pack crate"
+ },
+/obj/item/solar_assembly,
+/obj/item/solar_assembly,
+/obj/item/solar_assembly,
+/obj/item/solar_assembly,
+/obj/item/solar_assembly,
+/obj/item/solar_assembly,
+/obj/item/solar_assembly,
+/obj/item/solar_assembly,
+/obj/item/solar_assembly,
+/obj/item/solar_assembly,
+/obj/item/solar_assembly,
+/obj/item/solar_assembly,
+/obj/item/solar_assembly,
+/obj/item/weapon/circuitboard/computer/solar_control,
+/obj/item/weapon/electronics/tracker,
+/obj/item/weapon/paper/guides/jobs/engi/solars,
+/obj/machinery/power/apc{
+ dir = 2;
+ name = "Tech Storage APC";
+ pixel_y = -24
+ },
+/obj/structure/cable,
+/turf/open/floor/plasteel/darkgreen,
+/area/storage/tech)
+"bTC" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/security/checkpoint/engineering)
+"bTD" = (
+/turf/closed/wall,
+/area/security/checkpoint/engineering)
+"bTE" = (
+/turf/closed/wall,
+/area/engine/engineering)
+"bTF" = (
+/obj/machinery/door/airlock/engineering{
+ cyclelinkeddir = 2;
+ name = "Engineering";
+ req_one_access_txt = "10;24"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"bTG" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/closed/wall,
+/area/engine/engineering)
+"bTH" = (
+/turf/open/floor/plasteel/yellow/side{
+ dir = 1
+ },
+/area/engine/atmos)
+"bTI" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
+ dir = 6
+ },
+/turf/open/floor/plasteel/yellow/side{
+ dir = 1
+ },
+/area/engine/atmos)
+"bTJ" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
+ dir = 4
+ },
+/turf/open/floor/plasteel/yellow/side{
+ dir = 1
+ },
+/area/engine/atmos)
+"bTK" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
+ dir = 4
+ },
+/obj/structure/sign/atmosplaque{
+ pixel_y = 32
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/machinery/camera{
+ c_tag = "Atmospherics Entrance";
+ dir = 2;
+ network = list("SS13")
+ },
+/turf/open/floor/plasteel/yellow/side{
+ dir = 1
+ },
+/area/engine/atmos)
+"bTL" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
+ dir = 4
+ },
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = 29
+ },
+/turf/open/floor/plasteel/yellow/side{
+ dir = 1
+ },
+/area/engine/atmos)
+"bTM" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible,
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"bTN" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
+ dir = 4
+ },
+/obj/item/device/radio/intercom{
+ dir = 0;
+ name = "Station Intercom (General)";
+ pixel_x = 30;
+ pixel_y = 26
+ },
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"bTO" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
+ dir = 4
+ },
+/obj/structure/closet/wardrobe/atmospherics_yellow,
+/turf/open/floor/plasteel/yellow/side{
+ dir = 1
+ },
+/area/engine/atmos)
+"bTP" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
+ dir = 4
+ },
+/obj/structure/reagent_dispensers/watertank/high,
+/obj/structure/fireaxecabinet{
+ pixel_y = 32
+ },
+/turf/open/floor/plasteel/yellow/side{
+ dir = 1
+ },
+/area/engine/atmos)
+"bTQ" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
+ dir = 4
+ },
+/obj/structure/reagent_dispensers/fueltank,
+/obj/machinery/camera{
+ c_tag = "Atmospherics Mixing";
+ dir = 2;
+ network = list("SS13")
+ },
+/turf/open/floor/plasteel/yellow/side{
+ dir = 1
+ },
+/area/engine/atmos)
+"bTR" = (
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 8;
+ name = "Port to Filter";
+ on = 0
+ },
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"bTS" = (
+/obj/item/weapon/cigbutt,
+/obj/machinery/atmospherics/pipe/manifold4w/general/visible,
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"bTT" = (
+/obj/machinery/atmospherics/components/unary/thermomachine/freezer{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"bTU" = (
+/obj/machinery/atmospherics/components/trinary/filter{
+ dir = 1;
+ filter_type = "plasma";
+ on = 1
+ },
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"bTV" = (
+/obj/machinery/atmospherics/components/unary/outlet_injector/on{
+ dir = 8;
+ frequency = 1441;
+ id = "tox_in";
+ pixel_y = 1
+ },
+/turf/open/floor/engine/plasma,
+/area/engine/atmos)
+"bTW" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/lattice,
+/turf/open/space,
+/area/space)
+"bTX" = (
+/obj/structure/table,
+/obj/item/weapon/storage/box/mousetraps,
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/plating,
+/area/maintenance/department/engine)
+"bTY" = (
+/turf/open/floor/plating{
+ broken = 1;
+ icon_state = "platingdmg3"
+ },
+/area/maintenance/department/engine)
+"bTZ" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/spawner/lootdrop/grille_or_trash,
+/turf/open/floor/plating,
+/area/maintenance/department/engine)
+"bUa" = (
+/obj/machinery/atmospherics/components/unary/portables_connector/visible{
+ dir = 1;
+ name = "Connector Port (Air Supply)"
+ },
+/obj/machinery/portable_atmospherics/canister/nitrous_oxide,
+/turf/open/floor/plating,
+/area/maintenance/department/engine)
+"bUb" = (
+/obj/structure/grille/broken,
+/obj/structure/piano,
+/turf/open/floor/plating,
+/area/maintenance/department/engine)
+"bUc" = (
+/obj/item/weapon/reagent_containers/food/snacks/beans,
+/turf/open/floor/plating,
+/area/maintenance/department/engine)
+"bUd" = (
+/obj/structure/closet,
+/obj/item/weapon/shard,
+/obj/item/stack/spacecash/c10,
+/turf/open/floor/plating,
+/area/maintenance/department/engine)
+"bUe" = (
+/obj/item/weapon/cigbutt/cigarbutt,
+/turf/open/floor/plating,
+/area/maintenance/department/engine)
+"bUf" = (
+/obj/structure/sign/securearea,
+/turf/closed/wall/r_wall,
+/area/storage/tech)
+"bUg" = (
+/obj/machinery/door/airlock/highsecurity{
+ name = "Secure Tech Storage";
+ req_access_txt = "19;23"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/black,
+/area/storage/tech)
+"bUh" = (
+/obj/structure/sign/securearea,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/closed/wall/r_wall,
+/area/storage/tech)
+"bUi" = (
+/obj/structure/table,
+/obj/item/weapon/book/manual/wiki/security_space_law,
+/obj/machinery/camera{
+ c_tag = "Engineering Security Post";
+ dir = 4;
+ network = list("SS13")
+ },
+/obj/machinery/airalarm{
+ dir = 4;
+ pixel_x = -23
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 9
+ },
+/area/security/checkpoint/engineering)
+"bUj" = (
+/obj/machinery/computer/secure_data,
+/turf/open/floor/plasteel/red/side{
+ dir = 1
+ },
+/area/security/checkpoint/engineering)
+"bUk" = (
+/obj/machinery/computer/secure_data,
+/turf/open/floor/plasteel/red/side{
+ dir = 5
+ },
+/area/security/checkpoint/engineering)
+"bUl" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on,
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = 28
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"bUm" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"bUn" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/machinery/camera{
+ c_tag = "Engineering Access"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 6
+ },
+/obj/item/device/radio/intercom{
+ dir = 0;
+ name = "Station Intercom (General)";
+ pixel_y = 24
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"bUo" = (
+/obj/machinery/door/poddoor/preopen{
+ id = "atmos";
+ name = "atmos blast door"
+ },
+/obj/machinery/door/firedoor/heavy,
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 4
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"bUp" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
+ dir = 6
+ },
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"bUq" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"bUr" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 6
+ },
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"bUs" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"bUt" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"bUu" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 5
+ },
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"bUv" = (
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 4;
+ name = "incinerator mix pump"
+ },
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"bUw" = (
+/obj/machinery/atmospherics/pipe/simple/yellow/visible,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/purple/visible{
+ tag = "icon-intact (EAST)";
+ icon_state = "intact";
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"bUx" = (
+/obj/machinery/atmospherics/pipe/simple/green/visible,
+/obj/machinery/atmospherics/pipe/simple/purple/visible{
+ tag = "icon-intact (EAST)";
+ icon_state = "intact";
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"bUy" = (
+/obj/machinery/atmospherics/pipe/simple/purple/visible{
+ tag = "icon-intact (EAST)";
+ icon_state = "intact";
+ dir = 4
+ },
+/turf/open/floor/plasteel/yellow/side{
+ dir = 4
+ },
+/area/engine/atmos)
+"bUz" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/atmospherics/pipe/simple/cyan/visible,
+/obj/machinery/atmospherics/pipe/simple/purple/visible{
+ tag = "icon-intact (EAST)";
+ icon_state = "intact";
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/engine/atmos)
+"bUA" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/purple/visible{
+ tag = "icon-intact (SOUTHWEST)";
+ icon_state = "intact";
+ dir = 10
+ },
+/turf/open/space,
+/area/space)
+"bUB" = (
+/obj/docking_port/stationary{
+ dheight = 9;
+ dir = 2;
+ dwidth = 5;
+ height = 24;
+ id = "syndicate_se";
+ name = "southeast of station";
+ turf_type = /turf/open/space;
+ width = 18
+ },
+/turf/open/space,
+/area/space)
+"bUC" = (
+/obj/structure/flora/ausbushes/fernybush,
+/turf/open/floor/plating/asteroid,
+/area/chapel/asteroid{
+ name = "Monastery Asteroid"
+ })
+"bUD" = (
+/obj/structure/lattice,
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/turf/open/space,
+/area/space)
+"bUE" = (
+/obj/structure/lattice,
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/turf/open/space,
+/area/space)
+"bUF" = (
+/obj/structure/table,
+/obj/item/stack/cable_coil,
+/obj/item/weapon/extinguisher,
+/turf/open/floor/plating,
+/area/maintenance/department/engine)
+"bUG" = (
+/obj/item/weapon/circuitboard/computer/libraryconsole,
+/turf/open/floor/plating,
+/area/maintenance/department/engine)
+"bUH" = (
+/turf/closed/wall/r_wall,
+/area/crew_quarters/heads/chief)
+"bUI" = (
+/obj/item/weapon/cartridge/engineering{
+ pixel_x = 4;
+ pixel_y = 5
+ },
+/obj/item/weapon/cartridge/engineering{
+ pixel_x = -3;
+ pixel_y = 2
+ },
+/obj/item/weapon/cartridge/engineering{
+ pixel_x = 3
+ },
+/obj/structure/table/reinforced,
+/obj/item/weapon/cartridge/atmos,
+/obj/machinery/requests_console{
+ announcementConsole = 1;
+ department = "Chief Engineer's Desk";
+ departmentType = 3;
+ name = "Chief Engineer RC";
+ pixel_x = -32
+ },
+/turf/open/floor/plasteel/yellow/side{
+ dir = 9
+ },
+/area/crew_quarters/heads/chief)
+"bUJ" = (
+/obj/structure/filingcabinet/chestdrawer,
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/machinery/camera{
+ c_tag = "Chief Engineer's Office";
+ dir = 2;
+ network = list("SS13")
+ },
+/turf/open/floor/plasteel/yellow/side{
+ dir = 1
+ },
+/area/crew_quarters/heads/chief)
+"bUK" = (
+/obj/machinery/airalarm{
+ dir = 2;
+ pixel_y = 22
+ },
+/obj/machinery/computer/apc_control,
+/turf/open/floor/plasteel/yellow/side{
+ dir = 1
+ },
+/area/crew_quarters/heads/chief)
+"bUL" = (
+/obj/machinery/computer/station_alert,
+/obj/machinery/computer/security/telescreen/entertainment{
+ pixel_y = 32
+ },
+/turf/open/floor/plasteel/yellow/side{
+ dir = 1
+ },
+/area/crew_quarters/heads/chief)
+"bUM" = (
+/obj/machinery/computer/card/minor/ce,
+/turf/open/floor/plasteel/yellow/side{
+ dir = 5
+ },
+/area/crew_quarters/heads/chief)
+"bUN" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/stairs,
+/area/storage/tech)
+"bUO" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/closed/wall/r_wall,
+/area/storage/tech)
+"bUP" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/closed/wall,
+/area/engine/engine_smes)
+"bUQ" = (
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/structure/cable{
+ icon_state = "0-4";
+ d2 = 4
+ },
+/obj/machinery/power/smes/engineering,
+/turf/open/floor/plasteel/darkyellow/side{
+ dir = 1
+ },
+/area/engine/engine_smes)
+"bUR" = (
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/structure/cable{
+ icon_state = "0-4";
+ d2 = 4
+ },
+/obj/machinery/power/smes/engineering,
+/obj/machinery/camera{
+ c_tag = "Engineering Power Storage";
+ dir = 2;
+ network = list("SS13")
+ },
+/turf/open/floor/plasteel/darkyellow/side{
+ dir = 1
+ },
+/area/engine/engine_smes)
+"bUS" = (
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/machinery/power/smes/engineering,
+/turf/open/floor/plasteel/darkyellow/side{
+ dir = 1
+ },
+/area/engine/engine_smes)
+"bUT" = (
+/turf/closed/wall,
+/area/engine/engine_smes)
+"bUU" = (
+/turf/closed/wall/r_wall,
+/area/engine/engine_smes)
+"bUV" = (
+/obj/structure/table,
+/obj/item/weapon/pen,
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/machinery/requests_console{
+ department = "Security";
+ departmentType = 5;
+ pixel_x = -32
+ },
+/obj/item/weapon/paper_bin{
+ layer = 2.9
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 8
+ },
+/area/security/checkpoint/engineering)
+"bUW" = (
+/obj/structure/chair/office/dark{
+ dir = 1
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/effect/landmark/start/depsec/engineering,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/security/checkpoint/engineering)
+"bUX" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 4
+ },
+/area/security/checkpoint/engineering)
+"bUY" = (
+/obj/machinery/door/airlock/glass_security{
+ name = "Engineering Security Post";
+ req_access_txt = "63"
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/red,
+/area/security/checkpoint/engineering)
+"bUZ" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"bVa" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/goonplaque,
+/area/engine/engineering)
+"bVb" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 9
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"bVc" = (
+/obj/machinery/door/poddoor/preopen{
+ id = "atmos";
+ name = "atmos blast door"
+ },
+/obj/machinery/door/firedoor/heavy,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 8
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"bVd" = (
+/obj/machinery/door/firedoor/heavy,
+/obj/machinery/door/airlock/atmos{
+ name = "Atmospherics";
+ req_access_txt = "24"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"bVe" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"bVf" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"bVg" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"bVh" = (
+/obj/machinery/atmospherics/pipe/simple/yellow/visible{
+ dir = 6
+ },
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"bVi" = (
+/obj/machinery/atmospherics/pipe/manifold/yellow/visible{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"bVj" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/yellow/visible,
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"bVk" = (
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 8;
+ name = "CO2 Outlet Pump";
+ on = 0
+ },
+/turf/open/floor/plasteel/yellow/side{
+ dir = 4
+ },
+/area/engine/atmos)
+"bVl" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/atmospherics/pipe/simple/yellow/visible{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/visible,
+/turf/open/floor/plating,
+/area/engine/atmos)
+"bVm" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/yellow/visible{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/purple/visible,
+/turf/open/space,
+/area/space)
+"bVn" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{
+ dir = 8;
+ frequency = 1441;
+ id_tag = "co2_out";
+ name = "co2 out"
+ },
+/turf/open/floor/engine/co2,
+/area/engine/atmos)
+"bVo" = (
+/turf/open/floor/engine/co2,
+/area/engine/atmos)
+"bVp" = (
+/obj/structure/window/reinforced,
+/obj/structure/lattice,
+/turf/open/space,
+/area/space)
+"bVq" = (
+/turf/closed/wall,
+/area/space)
+"bVr" = (
+/obj/structure/disposaloutlet,
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/turf/open/floor/plating/airless,
+/area/space)
+"bVs" = (
+/obj/structure/mopbucket,
+/obj/item/weapon/mop,
+/turf/open/floor/plating,
+/area/maintenance/department/engine)
+"bVt" = (
+/obj/effect/spawner/lootdrop/maintenance,
+/obj/item/weapon/storage/toolbox/mechanical,
+/turf/open/floor/plating,
+/area/maintenance/department/engine)
+"bVu" = (
+/obj/structure/rack{
+ dir = 4
+ },
+/obj/item/weapon/wrench,
+/obj/item/clothing/head/welding,
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/plating,
+/area/maintenance/department/engine)
+"bVv" = (
+/obj/structure/rack{
+ dir = 4
+ },
+/obj/item/weapon/electronics/airlock,
+/obj/item/weapon/electronics/airlock,
+/obj/item/weapon/electronics/airlock,
+/obj/item/weapon/electronics/airlock,
+/obj/item/stack/cable_coil,
+/obj/item/stack/cable_coil,
+/obj/item/wallframe/camera,
+/obj/item/wallframe/camera,
+/obj/item/wallframe/camera,
+/obj/item/wallframe/camera,
+/obj/item/device/assault_pod/mining,
+/turf/open/floor/plating{
+ icon_state = "platingdmg3"
+ },
+/area/maintenance/department/engine)
+"bVw" = (
+/obj/structure/table,
+/obj/item/stack/sheet/metal{
+ amount = 50
+ },
+/obj/item/stack/rods{
+ amount = 50
+ },
+/turf/open/floor/plating{
+ icon_state = "panelscorched"
+ },
+/area/maintenance/department/engine)
+"bVx" = (
+/obj/structure/table,
+/obj/item/stack/sheet/metal{
+ amount = 50
+ },
+/obj/item/stack/sheet/metal{
+ amount = 50
+ },
+/obj/item/stack/sheet/glass{
+ amount = 50
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/engine)
+"bVy" = (
+/obj/structure/table,
+/obj/item/weapon/storage/box/lights/mixed,
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/engine)
+"bVz" = (
+/obj/structure/reagent_dispensers/watertank,
+/turf/open/floor/plating{
+ icon_state = "panelscorched"
+ },
+/area/maintenance/department/engine)
+"bVA" = (
+/obj/structure/chair{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/engine)
+"bVB" = (
+/obj/item/weapon/book/manual/barman_recipes,
+/obj/structure/closet/crate{
+ icon_state = "crateopen";
+ opened = 1
+ },
+/obj/item/weapon/cigbutt,
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/plating,
+/area/maintenance/department/engine)
+"bVC" = (
+/obj/structure/reagent_dispensers/watertank,
+/turf/open/floor/plating,
+/area/maintenance/department/engine)
+"bVD" = (
+/obj/machinery/button/door{
+ desc = "A remote control-switch for the engineering security doors.";
+ id = "Engineering";
+ name = "Engineering Lockdown";
+ pixel_x = -24;
+ pixel_y = -10;
+ req_access_txt = "10"
+ },
+/obj/machinery/button/door{
+ desc = "A remote control-switch for secure storage.";
+ id = "Secure Storage";
+ name = "Engineering Secure Storage";
+ pixel_x = -24;
+ req_access_txt = "11"
+ },
+/obj/machinery/button/door{
+ id = "atmos";
+ name = "Atmospherics Lockdown";
+ pixel_x = -24;
+ pixel_y = 10;
+ req_access_txt = "24"
+ },
+/obj/structure/table/reinforced,
+/obj/item/weapon/folder/yellow,
+/obj/item/weapon/paper/monitorkey,
+/obj/item/weapon/pen,
+/mob/living/simple_animal/parrot/Poly,
+/turf/open/floor/plasteel/yellow/side{
+ dir = 8
+ },
+/area/crew_quarters/heads/chief)
+"bVE" = (
+/turf/open/floor/plasteel,
+/area/crew_quarters/heads/chief)
+"bVF" = (
+/obj/effect/landmark/start/chief_engineer,
+/turf/open/floor/plasteel,
+/area/crew_quarters/heads/chief)
+"bVG" = (
+/obj/structure/chair/office/light{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/heads/chief)
+"bVH" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/clipboard,
+/obj/item/weapon/lighter,
+/obj/item/clothing/glasses/meson{
+ pixel_y = 4
+ },
+/obj/item/weapon/stamp/ce,
+/obj/item/weapon/stock_parts/cell/high/plus,
+/obj/machinery/keycard_auth{
+ pixel_x = 26;
+ pixel_y = 26
+ },
+/turf/open/floor/plasteel/yellow/side{
+ dir = 4
+ },
+/area/crew_quarters/heads/chief)
+"bVI" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 4
+ },
+/obj/machinery/light/small{
+ dir = 8;
+ light_color = "#d8b1b1"
+ },
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel/black,
+/area/storage/tech)
+"bVJ" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 9
+ },
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel/black,
+/area/storage/tech)
+"bVK" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/machinery/light/small{
+ dir = 4;
+ light_color = "#d8b1b1"
+ },
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel/black,
+/area/storage/tech)
+"bVL" = (
+/obj/structure/table,
+/obj/item/weapon/storage/box/metalfoam{
+ pixel_x = 4;
+ pixel_y = 7
+ },
+/obj/item/weapon/storage/box/lights/mixed,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/airalarm{
+ dir = 4;
+ pixel_x = -23
+ },
+/turf/open/floor/plasteel/darkyellow/side{
+ tag = "icon-darkyellow (WEST)";
+ icon_state = "darkyellow";
+ dir = 8
+ },
+/area/engine/engine_smes)
+"bVM" = (
+/obj/machinery/power/terminal{
+ dir = 1
+ },
+/obj/structure/cable/yellow{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel/black,
+/area/engine/engine_smes)
+"bVN" = (
+/obj/machinery/suit_storage_unit/engine,
+/turf/open/floor/plasteel/darkyellow/side{
+ dir = 4
+ },
+/area/engine/engine_smes)
+"bVO" = (
+/obj/structure/table,
+/obj/machinery/recharger{
+ pixel_y = 4
+ },
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "Engineering Security APC";
+ pixel_x = -24
+ },
+/obj/structure/cable{
+ icon_state = "0-4";
+ d2 = 4
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 8
+ },
+/area/security/checkpoint/engineering)
+"bVP" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 6
+ },
+/turf/open/floor/plasteel,
+/area/security/checkpoint/engineering)
+"bVQ" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 4
+ },
+/area/security/checkpoint/engineering)
+"bVR" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/security/checkpoint/engineering)
+"bVS" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"bVT" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"bVU" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"bVV" = (
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 0;
+ name = "Waste to Space";
+ on = 0
+ },
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"bVW" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"bVX" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/visible{
+ dir = 6
+ },
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"bVY" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/visible{
+ dir = 4
+ },
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 1;
+ name = "O2 to Pure";
+ on = 0
+ },
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"bVZ" = (
+/obj/machinery/atmospherics/pipe/manifold/cyan/visible{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"bWa" = (
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 4;
+ name = "N2 to Pure";
+ on = 0
+ },
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"bWb" = (
+/obj/machinery/computer/atmos_control/tank{
+ frequency = 1441;
+ input_tag = "co2_in";
+ name = "Carbon Dioxide Supply Control";
+ output_tag = "co2_out";
+ sensors = list("co2_sensor" = "Tank")
+ },
+/turf/open/floor/plasteel/yellow/side{
+ dir = 4
+ },
+/area/engine/atmos)
+"bWc" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/atmospherics/pipe/simple/cyan/visible,
+/turf/open/floor/plating,
+/area/engine/atmos)
+"bWd" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/purple/visible,
+/turf/open/space,
+/area/space)
+"bWe" = (
+/obj/machinery/air_sensor{
+ frequency = 1441;
+ id_tag = "co2_sensor"
+ },
+/turf/open/floor/engine/co2,
+/area/engine/atmos)
+"bWf" = (
+/obj/machinery/portable_atmospherics/canister/carbon_dioxide,
+/turf/open/floor/engine/co2,
+/area/engine/atmos)
+"bWg" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/engine/co2,
+/area/engine/atmos)
+"bWh" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/open/space,
+/area/space)
+"bWi" = (
+/obj/structure/flora/ausbushes/leafybush,
+/obj/structure/flora/ausbushes/reedbush,
+/obj/machinery/camera{
+ c_tag = "Monastery Asteroid Primary Entrance";
+ dir = 1;
+ network = list("SS13","Monastery")
+ },
+/turf/open/floor/plating/asteroid,
+/area/chapel/asteroid{
+ name = "Monastery Asteroid"
+ })
+"bWj" = (
+/obj/machinery/portable_atmospherics/canister/air,
+/turf/open/floor/plating{
+ icon_state = "platingdmg3"
+ },
+/area/maintenance/department/engine)
+"bWk" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/engine)
+"bWl" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/engine)
+"bWm" = (
+/obj/structure/reagent_dispensers/fueltank,
+/turf/open/floor/plating{
+ broken = 1;
+ icon_state = "platingdmg1"
+ },
+/area/maintenance/department/engine)
+"bWn" = (
+/obj/structure/closet/secure_closet/engineering_chief{
+ req_access_txt = "0"
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -27
+ },
+/obj/item/clothing/glasses/meson/gar,
+/turf/open/floor/plasteel/yellow/side{
+ dir = 8
+ },
+/area/crew_quarters/heads/chief)
+"bWo" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/heads/chief)
+"bWp" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 10
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/heads/chief)
+"bWq" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on,
+/turf/open/floor/plasteel,
+/area/crew_quarters/heads/chief)
+"bWr" = (
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "CE Office APC";
+ pixel_x = 28
+ },
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/machinery/modular_computer/console/preset/engineering,
+/turf/open/floor/plasteel/yellow/side{
+ dir = 4
+ },
+/area/crew_quarters/heads/chief)
+"bWs" = (
+/obj/structure/rack{
+ dir = 8;
+ layer = 2.9
+ },
+/obj/item/weapon/circuitboard/computer/robotics{
+ pixel_x = -2;
+ pixel_y = 2
+ },
+/obj/item/weapon/circuitboard/computer/mecha_control{
+ pixel_x = 1;
+ pixel_y = -1
+ },
+/turf/open/floor/plasteel/darkred,
+/area/storage/tech)
+"bWt" = (
+/obj/structure/rack{
+ dir = 8;
+ layer = 2.9
+ },
+/obj/item/weapon/circuitboard/computer/crew{
+ pixel_x = -1;
+ pixel_y = 1
+ },
+/obj/item/weapon/circuitboard/computer/card{
+ pixel_x = 2;
+ pixel_y = -2
+ },
+/obj/item/weapon/circuitboard/computer/communications{
+ pixel_x = 5;
+ pixel_y = -5
+ },
+/obj/machinery/camera{
+ c_tag = "Secure Tech Storage";
+ dir = 1
+ },
+/turf/open/floor/plasteel/darkred,
+/area/storage/tech)
+"bWu" = (
+/obj/structure/rack{
+ dir = 8;
+ layer = 2.9
+ },
+/obj/item/weapon/circuitboard/computer/borgupload{
+ pixel_x = -1;
+ pixel_y = 1
+ },
+/obj/item/weapon/circuitboard/computer/aiupload{
+ pixel_x = 2;
+ pixel_y = -2
+ },
+/turf/open/floor/plasteel/darkred,
+/area/storage/tech)
+"bWv" = (
+/obj/structure/table,
+/obj/item/stack/sheet/plasteel{
+ amount = 20;
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/item/stack/sheet/glass{
+ amount = 50;
+ layer = 4
+ },
+/obj/item/stack/sheet/glass{
+ amount = 50;
+ layer = 4
+ },
+/obj/item/stack/sheet/glass{
+ amount = 50;
+ layer = 4
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/machinery/computer/security/telescreen{
+ desc = "Used for watching the engine containment area.";
+ dir = 4;
+ name = "Engine Monitor";
+ network = list("Engine");
+ pixel_x = -32
+ },
+/turf/open/floor/plasteel/darkyellow/side{
+ tag = "icon-darkyellow (WEST)";
+ icon_state = "darkyellow";
+ dir = 8
+ },
+/area/engine/engine_smes)
+"bWw" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-4";
+ d1 = 1;
+ d2 = 4
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/open/floor/plasteel/black,
+/area/engine/engine_smes)
+"bWx" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/effect/landmark/start/station_engineer,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 10
+ },
+/turf/open/floor/plasteel/black,
+/area/engine/engine_smes)
+"bWy" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on,
+/turf/open/floor/plasteel/black,
+/area/engine/engine_smes)
+"bWz" = (
+/obj/structure/tank_dispenser,
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/plasteel/darkyellow/side{
+ dir = 4
+ },
+/area/engine/engine_smes)
+"bWA" = (
+/obj/structure/filingcabinet,
+/obj/machinery/computer/security/telescreen{
+ desc = "Used for watching the engine containment area.";
+ dir = 4;
+ name = "Engine Monitor";
+ network = list("Engine");
+ pixel_x = -32
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 10
+ },
+/area/security/checkpoint/engineering)
+"bWB" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/open/floor/plasteel/red/side,
+/area/security/checkpoint/engineering)
+"bWC" = (
+/obj/structure/reagent_dispensers/peppertank{
+ pixel_x = 32
+ },
+/obj/structure/closet/wardrobe/red,
+/turf/open/floor/plasteel/red/side{
+ dir = 6
+ },
+/area/security/checkpoint/engineering)
+"bWD" = (
+/turf/closed/wall/r_wall,
+/area/security/checkpoint/engineering)
+"bWE" = (
+/obj/machinery/door/poddoor/preopen{
+ id = "Engineering";
+ name = "engineering security door"
+ },
+/obj/machinery/door/firedoor,
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"bWF" = (
+/obj/machinery/door/poddoor/preopen{
+ id = "Engineering";
+ name = "engineering security door"
+ },
+/obj/machinery/door/firedoor,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"bWG" = (
+/obj/machinery/door/poddoor/preopen{
+ id = "Engineering";
+ name = "engineering security door"
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 6
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"bWH" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 9
+ },
+/turf/closed/wall,
+/area/engine/engineering)
+"bWI" = (
+/obj/machinery/portable_atmospherics/scrubber,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"bWJ" = (
+/obj/machinery/portable_atmospherics/pump,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
+ dir = 5
+ },
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"bWK" = (
+/obj/machinery/atmospherics/components/trinary/filter{
+ dir = 4;
+ filter_type = "o2";
+ on = 1
+ },
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"bWL" = (
+/obj/machinery/atmospherics/pipe/simple/green/visible{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"bWM" = (
+/obj/machinery/atmospherics/pipe/simple/green/visible{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/visible,
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"bWN" = (
+/obj/machinery/atmospherics/pipe/simple/green/visible{
+ dir = 10
+ },
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"bWO" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/visible,
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"bWP" = (
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 1;
+ name = "Air to Pure";
+ on = 0
+ },
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"bWQ" = (
+/obj/machinery/atmospherics/components/trinary/filter{
+ dir = 1;
+ filter_type = "co2";
+ on = 1
+ },
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"bWR" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/atmospherics/pipe/simple/green/visible{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/visible,
+/turf/open/floor/plating,
+/area/engine/atmos)
+"bWS" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/green/visible{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/purple/visible,
+/turf/open/space,
+/area/space)
+"bWT" = (
+/obj/machinery/atmospherics/components/unary/outlet_injector/on{
+ dir = 8;
+ frequency = 1441;
+ id = "co2_in";
+ pixel_y = 1
+ },
+/turf/open/floor/engine/co2,
+/area/engine/atmos)
+"bWU" = (
+/obj/structure/flora/ausbushes,
+/obj/machinery/camera{
+ c_tag = "Monastery Asteroid Port Fore";
+ dir = 1;
+ network = list("SS13","Monastery")
+ },
+/turf/open/floor/plating/asteroid,
+/area/chapel/asteroid{
+ name = "Monastery Asteroid"
+ })
+"bWV" = (
+/turf/closed/wall,
+/area/chapel/main/monastery)
+"bWW" = (
+/obj/machinery/door/airlock/centcom{
+ name = "Chapel";
+ opacity = 1
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/black,
+/area/chapel/main/monastery)
+"bWX" = (
+/obj/machinery/door/airlock/centcom{
+ name = "Chapel";
+ opacity = 1
+ },
+/turf/open/floor/plasteel/black,
+/area/chapel/main/monastery)
+"bWY" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
+ icon_state = "space";
+ layer = 4;
+ name = "EXTERNAL AIRLOCK"
+ },
+/turf/open/floor/plating,
+/area/chapel/asteroid{
+ name = "Monastery Asteroid"
+ })
+"bWZ" = (
+/turf/open/floor/plating{
+ icon_state = "panelscorched"
+ },
+/area/maintenance/department/engine)
+"bXa" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plating{
+ icon_state = "platingdmg3"
+ },
+/area/maintenance/department/engine)
+"bXb" = (
+/obj/item/weapon/storage/toolbox/electrical,
+/turf/open/floor/plating,
+/area/maintenance/department/engine)
+"bXc" = (
+/obj/item/device/flashlight,
+/turf/open/floor/plating,
+/area/maintenance/department/engine)
+"bXd" = (
+/obj/structure/rack,
+/obj/effect/spawner/lootdrop/maintenance{
+ lootcount = 2;
+ name = "2maintenance loot spawner"
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/engine)
+"bXe" = (
+/obj/structure/closet/firecloset,
+/turf/open/floor/plating,
+/area/maintenance/department/engine)
+"bXf" = (
+/obj/machinery/suit_storage_unit/ce,
+/turf/open/floor/plasteel/yellow/side{
+ dir = 10
+ },
+/area/crew_quarters/heads/chief)
+"bXg" = (
+/turf/open/floor/plasteel/yellow/side,
+/area/crew_quarters/heads/chief)
+"bXh" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/yellow/side,
+/area/crew_quarters/heads/chief)
+"bXi" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/yellow/side,
+/area/crew_quarters/heads/chief)
+"bXj" = (
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/obj/machinery/light_switch{
+ pixel_x = 25
+ },
+/turf/open/floor/plasteel/yellow/side{
+ dir = 6
+ },
+/area/crew_quarters/heads/chief)
+"bXk" = (
+/turf/closed/wall/r_wall,
+/area/engine/engineering)
+"bXl" = (
+/obj/structure/table,
+/obj/item/stack/sheet/metal{
+ amount = 50
+ },
+/obj/item/stack/sheet/metal{
+ amount = 50
+ },
+/obj/item/stack/rods{
+ amount = 50
+ },
+/obj/item/stack/cable_coil,
+/obj/machinery/power/apc{
+ cell_type = 10000;
+ dir = 8;
+ name = "Engine Room APC";
+ pixel_x = -26
+ },
+/obj/structure/cable,
+/obj/item/stack/sheet/metal{
+ amount = 50;
+ layer = 2.9
+ },
+/obj/item/stack/cable_coil,
+/turf/open/floor/plasteel/darkyellow/side{
+ tag = "icon-darkyellow (WEST)";
+ icon_state = "darkyellow";
+ dir = 8
+ },
+/area/engine/engine_smes)
+"bXm" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/black,
+/area/engine/engine_smes)
+"bXn" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/black,
+/area/engine/engine_smes)
+"bXo" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/black,
+/area/engine/engine_smes)
+"bXp" = (
+/obj/machinery/door/airlock/engineering{
+ cyclelinkeddir = 1;
+ name = "Engine Room";
+ req_access_txt = "10"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"bXq" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/closed/wall/r_wall,
+/area/engine/engineering)
+"bXr" = (
+/obj/machinery/portable_atmospherics/scrubber,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
+/turf/open/floor/plasteel/yellow/side,
+/area/engine/atmos)
+"bXs" = (
+/obj/machinery/portable_atmospherics/pump,
+/turf/open/floor/plasteel/yellow/side,
+/area/engine/atmos)
+"bXt" = (
+/obj/machinery/atmospherics/pipe/simple/green/visible,
+/turf/open/floor/plasteel/yellow/side,
+/area/engine/atmos)
+"bXu" = (
+/obj/machinery/computer/atmos_control/tank{
+ frequency = 1441;
+ input_tag = "n2_in";
+ name = "Nitrogen Supply Control";
+ output_tag = "n2_out";
+ sensors = list("n2_sensor" = "Tank")
+ },
+/turf/open/floor/plasteel/yellow/side,
+/area/engine/atmos)
+"bXv" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/visible,
+/turf/open/floor/plasteel/yellow/side,
+/area/engine/atmos)
+"bXw" = (
+/obj/machinery/light,
+/turf/open/floor/plasteel/yellow/side,
+/area/engine/atmos)
+"bXx" = (
+/obj/machinery/computer/atmos_control/tank{
+ frequency = 1441;
+ input_tag = "o2_in";
+ name = "Oxygen Supply Control";
+ output_tag = "o2_out";
+ sensors = list("o2_sensor" = "Tank")
+ },
+/turf/open/floor/plasteel/yellow/side,
+/area/engine/atmos)
+"bXy" = (
+/obj/machinery/atmospherics/pipe/manifold/cyan/visible{
+ dir = 8
+ },
+/turf/open/floor/plasteel/yellow/side,
+/area/engine/atmos)
+"bXz" = (
+/obj/machinery/atmospherics/pipe/simple/green/visible,
+/obj/machinery/atmospherics/pipe/simple/cyan/visible{
+ dir = 4
+ },
+/turf/open/floor/plasteel/yellow/side,
+/area/engine/atmos)
+"bXA" = (
+/obj/machinery/atmospherics/components/trinary/mixer{
+ node1_concentration = 0.8;
+ node2_concentration = 0.2;
+ on = 1
+ },
+/turf/open/floor/plasteel/yellow/side,
+/area/engine/atmos)
+"bXB" = (
+/obj/machinery/computer/atmos_control/tank{
+ frequency = 1441;
+ input_tag = "air_in";
+ name = "Mixed Air Supply Control";
+ output_tag = "air_out";
+ sensors = list("air_sensor" = "Tank")
+ },
+/turf/open/floor/plasteel/yellow/side,
+/area/engine/atmos)
+"bXC" = (
+/obj/machinery/light,
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 4;
+ name = "Air Outlet Pump";
+ on = 1
+ },
+/turf/open/floor/plasteel/yellow/side,
+/area/engine/atmos)
+"bXD" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/manifold/cyan/visible{
+ dir = 1
+ },
+/turf/open/floor/plasteel/yellow/side,
+/area/engine/atmos)
+"bXE" = (
+/obj/machinery/atmospherics/pipe/simple/green/visible,
+/obj/machinery/atmospherics/pipe/simple/cyan/visible{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/open/floor/plasteel/yellow/side,
+/area/engine/atmos)
+"bXF" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/visible{
+ dir = 4
+ },
+/turf/open/floor/plasteel/yellow/side{
+ dir = 6
+ },
+/area/engine/atmos)
+"bXG" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 9
+ },
+/turf/closed/wall/r_wall,
+/area/engine/atmos)
+"bXH" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/open/floor/plasteel/black,
+/area/chapel/main/monastery)
+"bXI" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/black,
+/area/chapel/main/monastery)
+"bXJ" = (
+/turf/open/floor/plasteel/black,
+/area/chapel/main/monastery)
+"bXK" = (
+/obj/item/device/radio/beacon,
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/open/floor/plasteel/black,
+/area/chapel/main/monastery)
+"bXL" = (
+/obj/machinery/door/airlock/external{
+ cyclelinkeddir = 4
+ },
+/turf/open/floor/plating,
+/area/chapel/asteroid{
+ name = "Monastery Asteroid"
+ })
+"bXM" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/chapel/asteroid{
+ name = "Monastery Asteroid"
+ })
+"bXN" = (
+/obj/machinery/door/airlock/external{
+ cyclelinkeddir = 8
+ },
+/turf/open/floor/plating,
+/area/chapel/asteroid{
+ name = "Monastery Asteroid"
+ })
+"bXO" = (
+/obj/machinery/door/airlock/external{
+ cyclelinkeddir = 4;
+ req_access_txt = "13"
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/engine)
+"bXP" = (
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
+ icon_state = "space";
+ layer = 4;
+ name = "EXTERNAL AIRLOCK";
+ pixel_y = 32
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/engine)
+"bXQ" = (
+/obj/machinery/door/airlock/external{
+ cyclelinkeddir = 8;
+ req_access_txt = "13"
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/engine)
+"bXR" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/engine)
+"bXS" = (
+/obj/structure/grille/broken,
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/obj/structure/sign/deathsposal{
+ pixel_x = -32
+ },
+/turf/open/floor/plating{
+ icon_state = "platingdmg1"
+ },
+/area/maintenance/department/engine)
+"bXT" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/plating{
+ icon_state = "platingdmg3"
+ },
+/area/maintenance/department/engine)
+"bXU" = (
+/obj/machinery/computer/security/telescreen{
+ desc = "Used for the Auxillary Mining Base.";
+ dir = 1;
+ name = "Auxillary Base Monitor";
+ network = list("AuxBase");
+ pixel_x = 0;
+ pixel_y = -28
+ },
+/obj/structure/chair/stool,
+/turf/open/floor/plating,
+/area/maintenance/department/engine)
+"bXV" = (
+/obj/machinery/computer/camera_advanced/base_construction,
+/turf/open/floor/plating,
+/area/maintenance/department/engine)
+"bXW" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/engine)
+"bXX" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/engine)
+"bXY" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/crew_quarters/heads/chief)
+"bXZ" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plating,
+/area/crew_quarters/heads/chief)
+"bYa" = (
+/obj/machinery/door/airlock/glass_command{
+ name = "Chief Engineer";
+ req_access_txt = "56"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel,
+/area/crew_quarters/heads/chief)
+"bYb" = (
+/turf/closed/wall,
+/area/crew_quarters/heads/chief)
+"bYc" = (
+/obj/machinery/computer/atmos_alert,
+/turf/open/floor/plasteel/black,
+/area/engine/engineering)
+"bYd" = (
+/obj/structure/cable{
+ icon_state = "0-2";
+ d2 = 2
+ },
+/obj/machinery/modular_computer/console/preset/engineering,
+/turf/open/floor/plasteel/black,
+/area/engine/engineering)
+"bYe" = (
+/obj/machinery/computer/station_alert,
+/turf/open/floor/plasteel/black,
+/area/engine/engineering)
+"bYf" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'HIGH VOLTAGE'";
+ icon_state = "shock";
+ name = "HIGH VOLTAGE"
+ },
+/turf/open/floor/plating,
+/area/engine/engine_smes)
+"bYg" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating,
+/area/engine/engine_smes)
+"bYh" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass_engineering{
+ name = "Power Storage";
+ req_access_txt = "11";
+ req_one_access_txt = "0"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/black,
+/area/engine/engine_smes)
+"bYi" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plating,
+/area/engine/engine_smes)
+"bYj" = (
+/obj/machinery/vending/engivend,
+/turf/open/floor/plasteel/black,
+/area/engine/engineering)
+"bYk" = (
+/obj/machinery/vending/tool,
+/turf/open/floor/plasteel/black,
+/area/engine/engineering)
+"bYl" = (
+/obj/structure/closet/firecloset,
+/turf/open/floor/plasteel/black,
+/area/engine/engineering)
+"bYm" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"bYn" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"bYo" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"bYp" = (
+/obj/structure/grille,
+/obj/machinery/atmospherics/pipe/simple/green/visible,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/engine/atmos)
+"bYq" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/atmospherics/pipe/simple/green/visible{
+ dir = 5
+ },
+/turf/open/floor/plating,
+/area/engine/atmos)
+"bYr" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/visible,
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/atmospherics/pipe/simple/green/visible{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/engine/atmos)
+"bYs" = (
+/obj/machinery/atmospherics/pipe/simple/green/hidden{
+ dir = 8
+ },
+/turf/closed/wall/r_wall,
+/area/maintenance/disposal/incinerator)
+"bYt" = (
+/obj/machinery/atmospherics/pipe/simple/green/hidden{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/closed/wall,
+/area/maintenance/disposal/incinerator)
+"bYu" = (
+/obj/machinery/atmospherics/pipe/simple/green/hidden{
+ dir = 9
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock/atmos{
+ name = "Incinerator";
+ req_access_txt = "24"
+ },
+/turf/open/floor/plasteel/black,
+/area/maintenance/disposal/incinerator)
+"bYv" = (
+/turf/closed/wall,
+/area/maintenance/disposal/incinerator)
+"bYw" = (
+/turf/closed/wall/r_wall,
+/area/maintenance/disposal/incinerator)
+"bYx" = (
+/obj/machinery/atmospherics/pipe/simple/purple/visible,
+/obj/structure/lattice,
+/turf/open/space/basic,
+/area/space)
+"bYy" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/cobweb,
+/turf/open/floor/plasteel/black,
+/area/chapel/main/monastery)
+"bYz" = (
+/obj/machinery/door/morgue{
+ name = "Confession Booth"
+ },
+/turf/open/floor/plasteel/black,
+/area/chapel/main/monastery)
+"bYA" = (
+/obj/structure/chair,
+/turf/open/floor/plasteel/chapel{
+ dir = 1
+ },
+/area/chapel/main/monastery)
+"bYB" = (
+/obj/structure/chair,
+/turf/open/floor/plasteel/chapel{
+ dir = 4
+ },
+/area/chapel/main/monastery)
+"bYC" = (
+/obj/structure/chair,
+/obj/item/device/radio/intercom{
+ dir = 0;
+ name = "Station Intercom (General)";
+ pixel_x = 30
+ },
+/turf/open/floor/plasteel/chapel{
+ dir = 4
+ },
+/area/chapel/main/monastery)
+"bYD" = (
+/obj/structure/lattice,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced,
+/turf/open/space,
+/area/space)
+"bYE" = (
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/closed/wall,
+/area/maintenance/department/engine)
+"bYF" = (
+/obj/machinery/door/airlock/external{
+ cyclelinkeddir = 1;
+ name = "Construction Zone";
+ req_access = null;
+ req_access_txt = "0";
+ req_one_access_txt = "0"
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/engine)
+"bYG" = (
+/obj/machinery/power/apc{
+ cell_type = 5000;
+ dir = 8;
+ name = "Engineering Maintenance APC";
+ pixel_x = -25;
+ pixel_y = 1
+ },
+/obj/structure/cable{
+ icon_state = "0-4";
+ d2 = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/engine)
+"bYH" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/engine)
+"bYI" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/airlock/maintenance{
+ name = "Engineering Maintenance";
+ req_access_txt = "10"
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/engine/engineering)
+"bYJ" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 6
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"bYK" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"bYL" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/disposalpipe/sortjunction{
+ dir = 8;
+ icon_state = "pipe-j1s";
+ sortType = 5
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"bYM" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"bYN" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/camera{
+ c_tag = "Engineering Port Fore";
+ dir = 2;
+ network = list("SS13")
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/sign/map{
+ icon_state = "map-pubby";
+ pixel_y = 32
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"bYO" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"bYP" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"bYQ" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"bYR" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/airalarm{
+ dir = 2;
+ pixel_y = 22
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ tag = "icon-warninglinecorner (WEST)";
+ icon_state = "warninglinecorner";
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"bYS" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"bYT" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"bYU" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"bYV" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"bYW" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"bYX" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = 29
+ },
+/obj/effect/turf_decal/stripes/line{
+ tag = "icon-warninglinecorner (EAST)";
+ icon_state = "warninglinecorner";
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"bYY" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/camera{
+ c_tag = "Engineering Starboard Fore";
+ dir = 2;
+ network = list("SS13")
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/item/device/radio/intercom{
+ dir = 0;
+ name = "Station Intercom (General)";
+ pixel_y = 26
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"bYZ" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/disposalpipe/sortjunction{
+ dir = 8;
+ icon_state = "pipe-j2s";
+ sortType = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"bZa" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 9
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"bZb" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"bZc" = (
+/obj/machinery/power/apc{
+ cell_type = 15000;
+ dir = 4;
+ name = "Engineering APC";
+ pixel_x = 28
+ },
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"bZd" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/green/visible,
+/turf/open/space,
+/area/space)
+"bZe" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/cyan/visible,
+/turf/open/space,
+/area/space)
+"bZf" = (
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "Incinerator APC";
+ pixel_x = -24
+ },
+/obj/structure/cable{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/machinery/airalarm{
+ dir = 2;
+ pixel_y = 22
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/darkyellow/side{
+ tag = "icon-darkyellow (WEST)";
+ icon_state = "darkyellow";
+ dir = 8
+ },
+/area/maintenance/disposal/incinerator)
+"bZg" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/power/terminal{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/turf/open/floor/plasteel/black,
+/area/maintenance/disposal/incinerator)
+"bZh" = (
+/obj/machinery/power/smes,
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/turf/open/floor/plasteel/darkyellow/side{
+ dir = 4
+ },
+/area/maintenance/disposal/incinerator)
+"bZi" = (
+/obj/machinery/atmospherics/pipe/simple/purple/visible{
+ tag = "icon-intact (SOUTHEAST)";
+ icon_state = "intact";
+ dir = 6
+ },
+/turf/closed/wall/r_wall,
+/area/maintenance/disposal/incinerator)
+"bZj" = (
+/obj/machinery/atmospherics/pipe/simple/purple/visible{
+ tag = "icon-intact (NORTHWEST)";
+ icon_state = "intact";
+ dir = 9
+ },
+/turf/closed/wall/r_wall,
+/area/maintenance/disposal/incinerator)
+"bZk" = (
+/obj/structure/chair,
+/turf/open/floor/plasteel/black,
+/area/chapel/main/monastery)
+"bZl" = (
+/obj/structure/chair,
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/open/floor/plasteel/chapel{
+ dir = 8
+ },
+/area/chapel/main/monastery)
+"bZm" = (
+/obj/structure/chair,
+/turf/open/floor/plasteel/chapel,
+/area/chapel/main/monastery)
+"bZn" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/carpet,
+/area/chapel/main/monastery)
+"bZo" = (
+/turf/open/floor/carpet,
+/area/chapel/main/monastery)
+"bZp" = (
+/obj/structure/chair,
+/turf/open/floor/plasteel/chapel{
+ dir = 8
+ },
+/area/chapel/main/monastery)
+"bZq" = (
+/obj/structure/chair,
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/plasteel/chapel,
+/area/chapel/main/monastery)
+"bZr" = (
+/obj/item/trash/tray,
+/turf/open/floor/plating{
+ icon_state = "platingdmg3"
+ },
+/area/maintenance/department/engine)
+"bZs" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/turf/open/floor/plating,
+/area/shuttle/auxillary_base)
+"bZt" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/shuttle/auxillary_base)
+"bZu" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/docking_port/stationary/public_mining_dock{
+ dir = 2
+ },
+/turf/open/floor/plating,
+/area/shuttle/auxillary_base)
+"bZv" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/turf/open/floor/plating,
+/area/shuttle/auxillary_base)
+"bZw" = (
+/obj/item/weapon/bikehorn/rubberducky,
+/turf/open/floor/plating,
+/area/maintenance/department/engine)
+"bZx" = (
+/obj/structure/sign/directions/engineering{
+ icon_state = "direction_eng";
+ dir = 4
+ },
+/turf/closed/wall,
+/area/maintenance/department/engine)
+"bZy" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/requests_console{
+ announcementConsole = 0;
+ department = "Engineering";
+ departmentType = 4;
+ name = "Engineering RC";
+ pixel_x = -32
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"bZz" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"bZA" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"bZB" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"bZC" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"bZD" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"bZE" = (
+/obj/machinery/holopad,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"bZF" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"bZG" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"bZH" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"bZI" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"bZJ" = (
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"bZK" = (
+/obj/machinery/atmospherics/components/unary/outlet_injector/on{
+ dir = 1
+ },
+/turf/open/floor/plating/airless,
+/area/space)
+"bZL" = (
+/obj/machinery/atmospherics/pipe/simple,
+/obj/structure/grille,
+/obj/machinery/meter,
+/turf/closed/wall/r_wall,
+/area/engine/atmos)
+"bZM" = (
+/obj/machinery/atmospherics/pipe/simple,
+/obj/structure/grille,
+/obj/machinery/meter{
+ name = "Mixed Air Tank In"
+ },
+/turf/closed/wall/r_wall,
+/area/engine/atmos)
+"bZN" = (
+/obj/machinery/atmospherics/pipe/simple,
+/obj/structure/grille,
+/obj/machinery/meter{
+ name = "Mixed Air Tank Out"
+ },
+/turf/closed/wall/r_wall,
+/area/engine/atmos)
+"bZO" = (
+/obj/machinery/meter,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -27
+ },
+/turf/open/floor/plasteel/darkyellow/side{
+ tag = "icon-darkyellow (WEST)";
+ icon_state = "darkyellow";
+ dir = 8
+ },
+/area/maintenance/disposal/incinerator)
+"bZP" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/black,
+/area/maintenance/disposal/incinerator)
+"bZQ" = (
+/obj/machinery/computer/turbine_computer{
+ id = "incineratorturbine"
+ },
+/obj/machinery/button/door{
+ id = "turbinevent";
+ name = "Outtake Vent Control";
+ pixel_x = 24;
+ pixel_y = 6;
+ req_access_txt = "0";
+ req_one_access_txt = "8;24"
+ },
+/obj/machinery/button/door{
+ id = "mixvent";
+ name = "Intake Vent Control";
+ pixel_x = 24;
+ pixel_y = -6;
+ req_access_txt = "0";
+ req_one_access_txt = "8;24"
+ },
+/turf/open/floor/plasteel/darkyellow/side{
+ dir = 4
+ },
+/area/maintenance/disposal/incinerator)
+"bZR" = (
+/obj/machinery/atmospherics/pipe/simple/purple/visible{
+ tag = "icon-intact (NORTHEAST)";
+ icon_state = "intact";
+ dir = 5
+ },
+/turf/closed/wall/r_wall,
+/area/maintenance/disposal/incinerator)
+"bZS" = (
+/obj/machinery/doorButtons/access_button{
+ idDoor = "incinerator_airlock_interior";
+ idSelf = "incinerator_access_control";
+ name = "Incinerator airlock control";
+ pixel_x = -24;
+ pixel_y = -8
+ },
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 4;
+ on = 0;
+ target_pressure = 101.325
+ },
+/obj/machinery/doorButtons/access_button{
+ idDoor = "incinerator_airlock_exterior";
+ idSelf = "incinerator_access_control";
+ layer = 3.1;
+ name = "Incinerator airlock control";
+ pixel_x = 24;
+ pixel_y = -8
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/open/floor/engine,
+/area/maintenance/disposal/incinerator)
+"bZT" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 4
+ },
+/turf/closed/wall/r_wall,
+/area/maintenance/disposal/incinerator)
+"bZU" = (
+/obj/machinery/atmospherics/components/unary/outlet_injector/on{
+ dir = 8;
+ frequency = 1441;
+ id = "inc_in"
+ },
+/turf/open/floor/engine,
+/area/maintenance/disposal/incinerator)
+"bZV" = (
+/obj/structure/sign/fire,
+/turf/closed/wall/r_wall,
+/area/maintenance/disposal/incinerator)
+"bZW" = (
+/obj/machinery/camera{
+ c_tag = "Monastery Asteroid Port";
+ dir = 1;
+ network = list("SS13","Monastery")
+ },
+/turf/open/floor/plating/asteroid,
+/area/chapel/asteroid{
+ name = "Monastery Asteroid"
+ })
+"bZX" = (
+/obj/structure/flora/ausbushes/palebush,
+/turf/open/floor/plating/asteroid,
+/area/chapel/asteroid{
+ name = "Monastery Asteroid"
+ })
+"bZY" = (
+/turf/closed/wall,
+/area/chapel/office)
+"bZZ" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/tinted/fulltile,
+/turf/open/floor/plasteel/black,
+/area/chapel/office)
+"caa" = (
+/turf/open/floor/plating{
+ broken = 1;
+ icon_state = "platingdmg1"
+ },
+/area/maintenance/department/engine)
+"cab" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/shuttle/auxillary_base)
+"cac" = (
+/turf/open/floor/plating,
+/area/shuttle/auxillary_base)
+"cad" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/shuttle/auxillary_base)
+"cae" = (
+/obj/structure/plasticflaps{
+ opacity = 1
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/engine/engineering)
+"caf" = (
+/obj/machinery/door/window/southleft{
+ base_state = "left";
+ dir = 4;
+ icon_state = "left";
+ name = "Engineering Delivery";
+ req_access_txt = "10"
+ },
+/obj/machinery/navbeacon{
+ codes_txt = "delivery;dir=4";
+ freq = 1400;
+ location = "Engineering"
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/engine/engineering)
+"cag" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/loadingarea{
+ dir = 4
+ },
+/area/engine/engineering)
+"cah" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"cai" = (
+/obj/structure/chair/office/dark,
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"caj" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/chair/office/dark,
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"cak" = (
+/obj/effect/landmark/start/station_engineer,
+/obj/structure/chair/office/dark{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"cal" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"cam" = (
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"can" = (
+/obj/effect/turf_decal/stripes/line{
+ tag = "icon-warninglinecorner";
+ icon_state = "warninglinecorner";
+ dir = 2
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"cao" = (
+/obj/structure/rack{
+ dir = 8;
+ layer = 2.9
+ },
+/obj/item/weapon/storage/belt/utility,
+/obj/item/clothing/head/welding{
+ pixel_x = -3;
+ pixel_y = 5
+ },
+/obj/item/clothing/glasses/meson{
+ pixel_x = 3;
+ pixel_y = -4
+ },
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"cap" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"caq" = (
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"car" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-4";
+ d1 = 1;
+ d2 = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/camera{
+ c_tag = "Engineering Central";
+ dir = 1;
+ network = list("SS13")
+ },
+/obj/machinery/light,
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"cas" = (
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"cat" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"cau" = (
+/obj/structure/rack{
+ dir = 8;
+ layer = 2.9
+ },
+/obj/item/clothing/mask/gas{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/clothing/mask/gas,
+/obj/item/clothing/mask/gas{
+ pixel_x = -3;
+ pixel_y = -3
+ },
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"cav" = (
+/obj/effect/turf_decal/stripes/line{
+ tag = "icon-warninglinecorner (NORTH)";
+ icon_state = "warninglinecorner";
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"caw" = (
+/obj/structure/table,
+/obj/item/weapon/airlock_painter{
+ pixel_y = 3
+ },
+/obj/item/device/flashlight,
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"cax" = (
+/obj/structure/table,
+/obj/item/weapon/electronics/airlock,
+/obj/item/weapon/electronics/airlock,
+/obj/item/weapon/electronics/apc,
+/obj/item/weapon/stock_parts/cell/high/plus,
+/obj/item/weapon/stock_parts/cell/high/plus,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/item/stack/cable_coil,
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"cay" = (
+/obj/structure/closet/wardrobe/engineering_yellow,
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"caz" = (
+/obj/machinery/atmospherics/components/unary/outlet_injector/on{
+ dir = 1;
+ frequency = 1441;
+ id = "n2_in"
+ },
+/turf/open/floor/engine/n2,
+/area/engine/atmos)
+"caA" = (
+/obj/machinery/air_sensor{
+ frequency = 1441;
+ id_tag = "n2_sensor"
+ },
+/turf/open/floor/engine/n2,
+/area/engine/atmos)
+"caB" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{
+ dir = 1;
+ frequency = 1441;
+ id_tag = "n2_out";
+ name = "n2 out"
+ },
+/turf/open/floor/engine/n2,
+/area/engine/atmos)
+"caC" = (
+/obj/machinery/atmospherics/components/unary/outlet_injector/on{
+ dir = 1;
+ frequency = 1441;
+ id = "o2_in"
+ },
+/turf/open/floor/engine/o2,
+/area/engine/atmos)
+"caD" = (
+/obj/machinery/air_sensor{
+ frequency = 1441;
+ id_tag = "o2_sensor"
+ },
+/turf/open/floor/engine/o2,
+/area/engine/atmos)
+"caE" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{
+ dir = 1;
+ frequency = 1441;
+ id_tag = "o2_out";
+ name = "oxygen out"
+ },
+/turf/open/floor/engine/o2,
+/area/engine/atmos)
+"caF" = (
+/obj/machinery/atmospherics/components/unary/outlet_injector/on{
+ dir = 1;
+ frequency = 1441;
+ id = "air_in"
+ },
+/turf/open/floor/engine/air,
+/area/engine/atmos)
+"caG" = (
+/obj/machinery/air_sensor{
+ frequency = 1441;
+ id_tag = "air_sensor"
+ },
+/turf/open/floor/engine/air,
+/area/engine/atmos)
+"caH" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/high_volume/siphon/on{
+ dir = 1;
+ frequency = 1441;
+ id_tag = "air_out";
+ name = "air out"
+ },
+/turf/open/floor/engine/air,
+/area/engine/atmos)
+"caI" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/machinery/camera{
+ c_tag = "Incinerator";
+ dir = 4;
+ network = list("SS13")
+ },
+/obj/machinery/computer/security/telescreen{
+ desc = "Used for watching the turbine vent.";
+ dir = 4;
+ name = "turbine vent monitor";
+ network = list("Turbine");
+ pixel_x = -29;
+ pixel_y = 0
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/open/floor/plasteel/darkyellow/side{
+ tag = "icon-darkyellow (WEST)";
+ icon_state = "darkyellow";
+ dir = 8
+ },
+/area/maintenance/disposal/incinerator)
+"caJ" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/open/floor/plasteel/black,
+/area/maintenance/disposal/incinerator)
+"caK" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
+/turf/open/floor/plasteel/darkyellow/side{
+ dir = 4
+ },
+/area/maintenance/disposal/incinerator)
+"caL" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/glass{
+ autoclose = 0;
+ frequency = 1449;
+ heat_proof = 1;
+ icon_state = "door_locked";
+ id_tag = "incinerator_airlock_interior";
+ locked = 1;
+ name = "Turbine Interior Airlock";
+ req_access_txt = "24";
+ req_one_access_txt = "0"
+ },
+/turf/open/floor/engine,
+/area/maintenance/disposal/incinerator)
+"caM" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/engine,
+/area/maintenance/disposal/incinerator)
+"caN" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/glass{
+ autoclose = 0;
+ frequency = 1449;
+ heat_proof = 1;
+ icon_state = "door_locked";
+ id_tag = "incinerator_airlock_exterior";
+ locked = 1;
+ name = "Turbine Exterior Airlock";
+ req_access_txt = "24";
+ req_one_access_txt = "0"
+ },
+/turf/open/floor/engine,
+/area/maintenance/disposal/incinerator)
+"caO" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/igniter{
+ icon_state = "igniter0";
+ id = "Incinerator";
+ luminosity = 2;
+ on = 0
+ },
+/turf/open/floor/engine,
+/area/maintenance/disposal/incinerator)
+"caP" = (
+/obj/structure/cable/yellow{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "0-4";
+ d2 = 4
+ },
+/obj/machinery/power/compressor{
+ comp_id = "incineratorturbine";
+ dir = 8;
+ luminosity = 2
+ },
+/obj/machinery/camera{
+ c_tag = "Turbine Chamber";
+ dir = 2;
+ network = list("Turbine")
+ },
+/turf/open/floor/engine,
+/area/maintenance/disposal/incinerator)
+"caQ" = (
+/obj/structure/cable/yellow{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/machinery/power/turbine{
+ dir = 4;
+ luminosity = 2
+ },
+/turf/open/floor/engine,
+/area/maintenance/disposal/incinerator)
+"caR" = (
+/obj/machinery/door/poddoor{
+ id = "turbinevent";
+ name = "Outtake Vent"
+ },
+/turf/open/floor/engine/vacuum,
+/area/maintenance/disposal/incinerator)
+"caS" = (
+/turf/closed/wall,
+/area/chapel/asteroid{
+ name = "Monastery Asteroid"
+ })
+"caT" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/open/floor/plasteel/black,
+/area/chapel/office)
+"caU" = (
+/obj/structure/chair{
+ dir = 1
+ },
+/turf/open/floor/plasteel/black,
+/area/chapel/office)
+"caV" = (
+/obj/machinery/holopad,
+/obj/item/device/flashlight/lantern,
+/turf/open/floor/plasteel/chapel,
+/area/chapel/main/monastery)
+"caW" = (
+/obj/item/device/flashlight/lantern,
+/turf/open/floor/plasteel/chapel{
+ dir = 8
+ },
+/area/chapel/main/monastery)
+"caX" = (
+/obj/structure/chair,
+/obj/machinery/camera{
+ c_tag = "Chapel";
+ dir = 8;
+ network = list("SS13","Monastery")
+ },
+/turf/open/floor/plasteel/chapel,
+/area/chapel/main/monastery)
+"caY" = (
+/obj/structure/flora/ausbushes/pointybush,
+/obj/machinery/camera{
+ c_tag = "Monastery Asteroid Starboard";
+ dir = 1;
+ network = list("SS13","Monastery")
+ },
+/turf/open/floor/plating/asteroid,
+/area/chapel/asteroid{
+ name = "Monastery Asteroid"
+ })
+"caZ" = (
+/obj/structure/table,
+/obj/item/weapon/wirecutters,
+/obj/effect/spawner/lootdrop/maintenance,
+/obj/machinery/light/small{
+ brightness = 3;
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/engine)
+"cba" = (
+/obj/structure/table,
+/obj/item/weapon/storage/fancy/cigarettes/cigpack_robustgold,
+/obj/effect/decal/cleanable/deadcockroach,
+/turf/open/floor/plating,
+/area/maintenance/department/engine)
+"cbb" = (
+/obj/structure/closet/emcloset,
+/turf/open/floor/plating{
+ icon_state = "platingdmg3"
+ },
+/area/maintenance/department/engine)
+"cbc" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/item/device/radio/intercom{
+ dir = 0;
+ name = "Station Intercom (General)";
+ pixel_x = -27
+ },
+/obj/effect/turf_decal/stripes/corner{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"cbd" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"cbe" = (
+/obj/item/weapon/pen,
+/obj/item/weapon/storage/belt/utility,
+/obj/item/clothing/glasses/meson,
+/obj/item/weapon/paper_bin{
+ layer = 2.9
+ },
+/obj/structure/table/glass,
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"cbf" = (
+/obj/item/weapon/book/manual/wiki/engineering_hacking{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/weapon/book/manual/wiki/engineering_construction,
+/obj/item/clothing/gloves/color/yellow,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/table/glass,
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"cbg" = (
+/obj/item/weapon/book/manual/engineering_singularity_safety{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/weapon/book/manual/wiki/engineering_guide,
+/obj/item/weapon/book/manual/engineering_particle_accelerator{
+ pixel_x = -3;
+ pixel_y = -3
+ },
+/obj/item/clothing/gloves/color/yellow,
+/obj/structure/table/glass,
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"cbh" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"cbi" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/structure/closet/radiation,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"cbj" = (
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'RADIOACTIVE AREA'";
+ icon_state = "radiation";
+ name = "RADIOACTIVE AREA"
+ },
+/turf/closed/wall/r_wall,
+/area/engine/engineering)
+"cbk" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "Singularity";
+ name = "radiation shutters"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/turf_decal/bot{
+ dir = 2
+ },
+/turf/open/floor/plasteel/black,
+/area/engine/engineering)
+"cbl" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/structure/closet/secure_closet/engineering_welding,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"cbm" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"cbn" = (
+/obj/structure/table,
+/obj/item/clothing/gloves/color/yellow,
+/obj/item/weapon/storage/belt/utility,
+/obj/item/clothing/glasses/meson,
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"cbo" = (
+/obj/structure/table,
+/obj/machinery/cell_charger,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"cbp" = (
+/obj/effect/landmark/start/station_engineer,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 4
+ },
+/obj/structure/chair/stool,
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"cbq" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 9
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"cbr" = (
+/obj/structure/closet/secure_closet/engineering_personal,
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"cbs" = (
+/turf/open/floor/engine/n2,
+/area/engine/atmos)
+"cbt" = (
+/obj/machinery/portable_atmospherics/canister/nitrogen,
+/turf/open/floor/engine/n2,
+/area/engine/atmos)
+"cbu" = (
+/turf/open/floor/engine/o2,
+/area/engine/atmos)
+"cbv" = (
+/obj/machinery/portable_atmospherics/canister/oxygen,
+/turf/open/floor/engine/o2,
+/area/engine/atmos)
+"cbw" = (
+/obj/effect/landmark/xeno_spawn,
+/turf/open/floor/engine/air,
+/area/engine/atmos)
+"cbx" = (
+/obj/machinery/portable_atmospherics/canister/air,
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/engine/air,
+/area/engine/atmos)
+"cby" = (
+/turf/open/floor/engine/air,
+/area/engine/atmos)
+"cbz" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating/airless,
+/area/maintenance/disposal/incinerator)
+"cbA" = (
+/obj/machinery/atmospherics/components/unary/portables_connector/visible{
+ dir = 4
+ },
+/turf/open/floor/plasteel/darkyellow/side{
+ tag = "icon-darkyellow (WEST)";
+ icon_state = "darkyellow";
+ dir = 8
+ },
+/area/maintenance/disposal/incinerator)
+"cbB" = (
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 8;
+ name = "Incinerator to Output";
+ on = 0
+ },
+/turf/open/floor/plasteel/black,
+/area/maintenance/disposal/incinerator)
+"cbC" = (
+/obj/machinery/doorButtons/airlock_controller{
+ idExterior = "incinerator_airlock_exterior";
+ idInterior = "incinerator_airlock_interior";
+ idSelf = "incinerator_access_control";
+ name = "Incinerator Access Console";
+ pixel_x = 26;
+ pixel_y = 6;
+ req_access_txt = "0"
+ },
+/obj/machinery/button/ignition{
+ id = "Incinerator";
+ pixel_x = 26;
+ pixel_y = -6
+ },
+/obj/machinery/meter,
+/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/visible,
+/turf/open/floor/plasteel/darkyellow/side{
+ dir = 4
+ },
+/area/maintenance/disposal/incinerator)
+"cbD" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
+ dir = 4
+ },
+/turf/closed/wall/r_wall,
+/area/maintenance/disposal/incinerator)
+"cbE" = (
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 8;
+ on = 0;
+ target_pressure = 101.325
+ },
+/obj/machinery/light/small,
+/turf/open/floor/engine,
+/area/maintenance/disposal/incinerator)
+"cbF" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{
+ dir = 8
+ },
+/turf/open/floor/engine,
+/area/maintenance/disposal/incinerator)
+"cbG" = (
+/obj/structure/flora/ausbushes/genericbush,
+/turf/open/floor/plating/asteroid,
+/area/chapel/asteroid{
+ name = "Monastery Asteroid"
+ })
+"cbH" = (
+/obj/structure/closet{
+ name = "chaplain closet"
+ },
+/obj/item/clothing/under/rank/chaplain,
+/obj/item/clothing/shoes/sneakers/black,
+/obj/item/weapon/storage/backpack/cultpack,
+/obj/item/weapon/storage/fancy/candle_box,
+/obj/item/weapon/storage/fancy/candle_box,
+/obj/item/clothing/suit/nun,
+/obj/item/clothing/head/nun_hood,
+/obj/item/clothing/suit/holidaypriest,
+/obj/item/device/radio/intercom{
+ dir = 0;
+ name = "Station Intercom (General)";
+ pixel_y = 26
+ },
+/obj/machinery/requests_console{
+ department = "Chapel";
+ departmentType = 2;
+ pixel_x = -32
+ },
+/turf/open/floor/carpet,
+/area/chapel/office)
+"cbI" = (
+/obj/machinery/airalarm{
+ frequency = 1439;
+ locked = 0;
+ pixel_y = 23
+ },
+/turf/open/floor/carpet,
+/area/chapel/office)
+"cbJ" = (
+/obj/structure/table/wood,
+/obj/item/weapon/twohanded/required/kirbyplants{
+ icon_state = "plant-18";
+ layer = 4.1;
+ pixel_y = 8
+ },
+/obj/machinery/camera{
+ c_tag = "Chapel Office";
+ dir = 2;
+ network = list("SS13","Monastery")
+ },
+/turf/open/floor/carpet,
+/area/chapel/office)
+"cbK" = (
+/obj/machinery/door/morgue{
+ name = "Confession Booth"
+ },
+/turf/open/floor/plasteel/black,
+/area/chapel/office)
+"cbL" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/open/floor/plasteel/chapel{
+ dir = 1
+ },
+/area/chapel/main/monastery)
+"cbM" = (
+/turf/open/floor/plasteel/chapel{
+ dir = 4
+ },
+/area/chapel/main/monastery)
+"cbN" = (
+/obj/structure/table/wood,
+/obj/item/weapon/storage/book/bible,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/carpet,
+/area/chapel/main/monastery)
+"cbO" = (
+/obj/structure/table/wood,
+/obj/item/weapon/reagent_containers/food/drinks/trophy{
+ pixel_y = 8
+ },
+/turf/open/floor/carpet,
+/area/chapel/main/monastery)
+"cbP" = (
+/turf/open/floor/plasteel/chapel{
+ dir = 1
+ },
+/area/chapel/main/monastery)
+"cbQ" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/plasteel/chapel{
+ dir = 4
+ },
+/area/chapel/main/monastery)
+"cbR" = (
+/obj/machinery/door/airlock/centcom{
+ name = "Chapel Access";
+ opacity = 1
+ },
+/turf/open/floor/plasteel/black,
+/area/chapel/main/monastery)
+"cbS" = (
+/obj/structure/chair/comfy/black{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/engine)
+"cbT" = (
+/obj/item/weapon/shovel,
+/obj/effect/landmark/xeno_spawn,
+/turf/open/floor/plating,
+/area/maintenance/department/engine)
+"cbU" = (
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/plating{
+ icon_state = "platingdmg3"
+ },
+/area/maintenance/department/engine)
+"cbV" = (
+/obj/machinery/shieldgen,
+/turf/open/floor/plating,
+/area/engine/engineering)
+"cbW" = (
+/obj/machinery/shieldgen,
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/engine/engineering)
+"cbX" = (
+/turf/open/floor/plating,
+/area/engine/engineering)
+"cbY" = (
+/obj/machinery/door/poddoor{
+ id = "Secure Storage";
+ name = "secure storage"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/engine/engineering)
+"cbZ" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"cca" = (
+/obj/effect/landmark/start/station_engineer,
+/obj/structure/chair/office/dark{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"ccb" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/chair/office/dark{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"ccc" = (
+/obj/structure/closet/radiation,
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 27
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"ccd" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/turf/open/floor/plating,
+/area/engine/engineering)
+"cce" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/engine/engineering)
+"ccf" = (
+/obj/machinery/camera{
+ c_tag = "Engineering Center";
+ dir = 2;
+ network = list("SS13","Engine");
+ pixel_x = 23
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/engine/engineering)
+"ccg" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/turf/open/floor/plating,
+/area/engine/engineering)
+"cch" = (
+/obj/structure/closet/secure_closet/engineering_electrical,
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -27
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"cci" = (
+/obj/structure/chair/stool,
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"ccj" = (
+/obj/structure/table,
+/obj/item/weapon/storage/toolbox/mechanical{
+ pixel_x = 2;
+ pixel_y = 4
+ },
+/obj/item/weapon/storage/toolbox/mechanical{
+ pixel_x = -2
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"cck" = (
+/obj/structure/table,
+/obj/item/weapon/storage/toolbox/electrical{
+ pixel_x = 2;
+ pixel_y = 4
+ },
+/obj/item/weapon/storage/toolbox/electrical{
+ pixel_x = -2
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"ccl" = (
+/obj/structure/closet/secure_closet/engineering_personal,
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"ccm" = (
+/obj/machinery/light/small,
+/turf/open/floor/engine/n2,
+/area/engine/atmos)
+"ccn" = (
+/obj/machinery/light/small,
+/turf/open/floor/engine/o2,
+/area/engine/atmos)
+"cco" = (
+/obj/machinery/light/small,
+/turf/open/floor/engine/air,
+/area/engine/atmos)
+"ccp" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -27
+ },
+/turf/open/floor/plasteel/darkyellow/side{
+ tag = "icon-darkyellow (WEST)";
+ icon_state = "darkyellow";
+ dir = 8
+ },
+/area/maintenance/disposal/incinerator)
+"ccq" = (
+/obj/structure/chair/office/dark,
+/turf/open/floor/plasteel/black,
+/area/maintenance/disposal/incinerator)
+"ccr" = (
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 2;
+ name = "Incinerator Output Pump";
+ on = 1
+ },
+/turf/open/floor/plasteel/darkyellow/side{
+ dir = 4
+ },
+/area/maintenance/disposal/incinerator)
+"ccs" = (
+/obj/machinery/door/poddoor{
+ id = "mixvent";
+ name = "Intake Vent"
+ },
+/turf/open/floor/engine/vacuum,
+/area/maintenance/disposal/incinerator)
+"cct" = (
+/obj/structure/flora/ausbushes/pointybush,
+/turf/open/floor/plating/asteroid,
+/area/chapel/asteroid{
+ name = "Monastery Asteroid"
+ })
+"ccu" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/chapel/office)
+"ccv" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/open/floor/carpet,
+/area/chapel/office)
+"ccw" = (
+/obj/structure/chair/comfy/black{
+ dir = 4
+ },
+/turf/open/floor/carpet,
+/area/chapel/office)
+"ccx" = (
+/obj/structure/table/wood,
+/obj/item/weapon/reagent_containers/food/drinks/bottle/holywater{
+ name = "flask of holy water";
+ pixel_x = -2;
+ pixel_y = 2
+ },
+/obj/item/weapon/nullrod,
+/turf/open/floor/carpet,
+/area/chapel/office)
+"ccy" = (
+/obj/structure/chair{
+ dir = 8
+ },
+/obj/machinery/light_switch{
+ pixel_x = 26;
+ pixel_y = -2
+ },
+/turf/open/floor/plasteel/black,
+/area/chapel/office)
+"ccz" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on,
+/turf/open/floor/plasteel/black,
+/area/chapel/office)
+"ccA" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/item/device/radio/intercom{
+ dir = 0;
+ name = "Station Intercom (General)";
+ pixel_y = 26
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/camera{
+ c_tag = "Chapel Port Access";
+ dir = 2;
+ network = list("SS13","Monastery")
+ },
+/turf/open/floor/plasteel/black,
+/area/chapel/office)
+"ccB" = (
+/obj/machinery/door/airlock/centcom{
+ name = "Chapel Access";
+ opacity = 1
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/black,
+/area/chapel/main/monastery)
+"ccC" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/chapel{
+ dir = 8
+ },
+/area/chapel/main/monastery)
+"ccD" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/chapel,
+/area/chapel/main/monastery)
+"ccE" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 10
+ },
+/turf/open/floor/carpet,
+/area/chapel/main/monastery)
+"ccF" = (
+/obj/effect/landmark/start/chaplain,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 6
+ },
+/turf/open/floor/carpet,
+/area/chapel/main/monastery)
+"ccG" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/open/floor/plasteel/chapel{
+ dir = 8
+ },
+/area/chapel/main/monastery)
+"ccH" = (
+/turf/open/floor/plasteel/chapel,
+/area/chapel/main/monastery)
+"ccI" = (
+/obj/machinery/door/airlock/centcom{
+ name = "Chapel Access";
+ opacity = 1
+ },
+/turf/open/floor/plasteel/black,
+/area/chapel/main/monastery)
+"ccJ" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
+/obj/machinery/airalarm{
+ pixel_y = 22
+ },
+/turf/open/floor/plasteel/black,
+/area/chapel/main/monastery)
+"ccK" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/machinery/camera{
+ c_tag = "Chapel Starboard Access";
+ dir = 2;
+ network = list("SS13","Monastery")
+ },
+/turf/open/floor/plasteel/black,
+/area/chapel/main/monastery)
+"ccL" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/chapel/main/monastery)
+"ccM" = (
+/obj/structure/chair,
+/turf/open/floor/plating/asteroid,
+/area/chapel/asteroid{
+ name = "Monastery Asteroid"
+ })
+"ccN" = (
+/obj/structure/closet/crate/medical,
+/obj/item/stack/medical/gauze,
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/plating,
+/area/maintenance/department/engine)
+"ccO" = (
+/obj/structure/bed,
+/obj/item/weapon/bedsheet/random,
+/obj/structure/table/optable,
+/turf/open/floor/plating,
+/area/maintenance/department/engine)
+"ccP" = (
+/obj/machinery/light,
+/obj/machinery/camera{
+ c_tag = "Auxillary Mining Base";
+ dir = 1;
+ network = list("SS13","AuxBase")
+ },
+/turf/open/floor/plating,
+/area/shuttle/auxillary_base)
+"ccQ" = (
+/obj/machinery/field/generator,
+/turf/open/floor/plating,
+/area/engine/engineering)
+"ccR" = (
+/obj/structure/closet/crate,
+/obj/item/stack/sheet/metal{
+ amount = 50
+ },
+/obj/item/stack/rods{
+ amount = 50
+ },
+/obj/item/stack/sheet/glass{
+ amount = 50
+ },
+/obj/item/weapon/electronics/airlock,
+/obj/item/weapon/electronics/airlock,
+/obj/item/weapon/stock_parts/cell/high/plus,
+/obj/item/stack/sheet/mineral/plasma{
+ amount = 30
+ },
+/turf/open/floor/plating,
+/area/engine/engineering)
+"ccS" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"ccT" = (
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"ccU" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"ccV" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"ccW" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "Singularity";
+ name = "radiation shutters"
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/bot{
+ dir = 2
+ },
+/turf/open/floor/plasteel/black,
+/area/engine/engineering)
+"ccX" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/engine/engineering)
+"ccY" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/open/floor/plating,
+/area/engine/engineering)
+"ccZ" = (
+/obj/structure/particle_accelerator/end_cap,
+/turf/open/floor/plating,
+/area/engine/engineering)
+"cda" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plating,
+/area/engine/engineering)
+"cdb" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/engine/engineering)
+"cdc" = (
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"cdd" = (
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"cde" = (
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"cdf" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"cdg" = (
+/obj/structure/table/glass,
+/obj/item/weapon/paper_bin,
+/obj/item/weapon/pen,
+/turf/open/floor/plasteel/darkyellow/side{
+ tag = "icon-darkyellow (SOUTHWEST)";
+ icon_state = "darkyellow";
+ dir = 10
+ },
+/area/maintenance/disposal/incinerator)
+"cdh" = (
+/obj/structure/table/glass,
+/obj/item/weapon/storage/toolbox/emergency,
+/turf/open/floor/plasteel/darkyellow/side,
+/area/maintenance/disposal/incinerator)
+"cdi" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible,
+/turf/open/floor/plasteel/darkyellow/side{
+ tag = "icon-darkyellow (SOUTHEAST)";
+ icon_state = "darkyellow";
+ dir = 6
+ },
+/area/maintenance/disposal/incinerator)
+"cdj" = (
+/obj/machinery/door/airlock/external{
+ cyclelinkeddir = 4;
+ name = "Atmospherics External Access";
+ req_access = null;
+ req_access_txt = "24"
+ },
+/turf/open/floor/plating,
+/area/maintenance/disposal/incinerator)
+"cdk" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
+ icon_state = "space";
+ layer = 4;
+ name = "EXTERNAL AIRLOCK";
+ pixel_x = 0;
+ pixel_y = 32
+ },
+/turf/open/floor/plating,
+/area/maintenance/disposal/incinerator)
+"cdl" = (
+/obj/machinery/door/airlock/external{
+ cyclelinkeddir = 8;
+ name = "Atmospherics External Access";
+ req_access = null;
+ req_access_txt = "24"
+ },
+/turf/open/floor/plating,
+/area/maintenance/disposal/incinerator)
+"cdm" = (
+/obj/structure/lattice/catwalk,
+/turf/open/space/basic,
+/area/space)
+"cdn" = (
+/obj/structure/closet/crate/bin,
+/obj/machinery/newscaster{
+ pixel_x = -32
+ },
+/turf/open/floor/carpet,
+/area/chapel/office)
+"cdo" = (
+/turf/open/floor/carpet,
+/area/chapel/office)
+"cdp" = (
+/obj/structure/table/wood,
+/obj/item/weapon/paper_bin{
+ layer = 2.9;
+ pixel_x = -2;
+ pixel_y = 4
+ },
+/obj/item/weapon/pen,
+/turf/open/floor/carpet,
+/area/chapel/office)
+"cdq" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 6
+ },
+/turf/open/floor/plasteel/black,
+/area/chapel/office)
+"cdr" = (
+/obj/machinery/door/airlock/centcom{
+ name = "Chapel Office";
+ opacity = 1;
+ req_access_txt = "22"
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/black,
+/area/chapel/office)
+"cds" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/black,
+/area/chapel/office)
+"cdt" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/black,
+/area/chapel/office)
+"cdu" = (
+/obj/item/weapon/twohanded/required/kirbyplants{
+ icon_state = "plant-08";
+ layer = 4.1
+ },
+/turf/open/floor/plasteel/chapel{
+ dir = 1
+ },
+/area/chapel/main/monastery)
+"cdv" = (
+/obj/structure/table/wood/fancy,
+/obj/item/weapon/storage/box/matches{
+ pixel_x = -3;
+ pixel_y = 8
+ },
+/obj/machinery/light/small,
+/turf/open/floor/plasteel/chapel{
+ dir = 4
+ },
+/area/chapel/main/monastery)
+"cdw" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/black,
+/area/chapel/main/monastery)
+"cdx" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/black,
+/area/chapel/main/monastery)
+"cdy" = (
+/obj/structure/table/wood/fancy,
+/obj/item/weapon/storage/fancy/candle_box,
+/obj/machinery/light/small,
+/turf/open/floor/plasteel/chapel{
+ dir = 1
+ },
+/area/chapel/main/monastery)
+"cdz" = (
+/obj/item/weapon/twohanded/required/kirbyplants{
+ icon_state = "plant-08";
+ layer = 4.1
+ },
+/turf/open/floor/plasteel/chapel{
+ dir = 4
+ },
+/area/chapel/main/monastery)
+"cdA" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 6
+ },
+/turf/open/floor/plasteel/black,
+/area/chapel/main/monastery)
+"cdB" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/open/floor/plasteel/black,
+/area/chapel/main/monastery)
+"cdC" = (
+/obj/structure/chair/wood/normal,
+/turf/open/floor/plasteel/black,
+/area/chapel/main/monastery)
+"cdD" = (
+/obj/structure/table,
+/obj/item/trash/plate,
+/obj/item/weapon/kitchen/fork,
+/turf/open/floor/plating/asteroid,
+/area/chapel/asteroid{
+ name = "Monastery Asteroid"
+ })
+"cdE" = (
+/obj/structure/chair,
+/obj/item/weapon/cigbutt,
+/turf/open/floor/plating,
+/area/maintenance/department/engine)
+"cdF" = (
+/obj/structure/closet/secure_closet/miner,
+/turf/open/floor/plating,
+/area/shuttle/auxillary_base)
+"cdG" = (
+/obj/docking_port/mobile/auxillary_base{
+ dheight = 5;
+ dir = 1;
+ dwidth = 5;
+ height = 11;
+ width = 11
+ },
+/obj/machinery/bluespace_beacon,
+/obj/machinery/computer/auxillary_base,
+/turf/closed/wall,
+/area/shuttle/auxillary_base)
+"cdH" = (
+/obj/structure/mining_shuttle_beacon{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/shuttle/auxillary_base)
+"cdI" = (
+/obj/machinery/field/generator,
+/obj/machinery/camera{
+ c_tag = "Engineering Secure Storage";
+ dir = 4;
+ network = list("SS13")
+ },
+/turf/open/floor/plating,
+/area/engine/engineering)
+"cdJ" = (
+/obj/machinery/portable_atmospherics/canister/toxins,
+/turf/open/floor/plating,
+/area/engine/engineering)
+"cdK" = (
+/obj/machinery/power/port_gen/pacman,
+/turf/open/floor/plating,
+/area/engine/engineering)
+"cdL" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/effect/turf_decal/stripes/corner{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"cdM" = (
+/obj/effect/turf_decal/stripes/corner,
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"cdN" = (
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"cdO" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"cdP" = (
+/obj/machinery/camera{
+ c_tag = "Engineering Port Aft";
+ dir = 1;
+ network = list("SS13")
+ },
+/obj/machinery/light,
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"cdQ" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/yellow/side,
+/area/engine/engineering)
+"cdR" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/button/door{
+ id = "Singularity";
+ name = "Shutters Control";
+ pixel_x = 25;
+ req_access_txt = "11"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel/yellow/side,
+/area/engine/engineering)
+"cdS" = (
+/obj/machinery/button/door{
+ id = "Singularity";
+ name = "Shutters Control";
+ pixel_x = -25;
+ req_access_txt = "11"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/engine/engineering)
+"cdT" = (
+/obj/machinery/particle_accelerator/control_box,
+/obj/structure/cable/yellow,
+/turf/open/floor/plating,
+/area/engine/engineering)
+"cdU" = (
+/obj/structure/particle_accelerator/fuel_chamber,
+/turf/open/floor/plating,
+/area/engine/engineering)
+"cdV" = (
+/obj/effect/landmark/start/station_engineer,
+/turf/open/floor/plating,
+/area/engine/engineering)
+"cdW" = (
+/obj/machinery/button/door{
+ id = "Singularity";
+ name = "Shutters Control";
+ pixel_x = 25;
+ req_access_txt = "11"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/engine/engineering)
+"cdX" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/button/door{
+ id = "Singularity";
+ name = "Shutters Control";
+ pixel_x = -25;
+ req_access_txt = "11"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel/yellow/side,
+/area/engine/engineering)
+"cdY" = (
+/obj/machinery/camera{
+ c_tag = "Engineering Starboard Aft";
+ dir = 1;
+ network = list("SS13")
+ },
+/obj/machinery/light,
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"cdZ" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"cea" = (
+/obj/structure/reagent_dispensers/fueltank,
+/obj/effect/turf_decal/stripes/corner{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"ceb" = (
+/obj/structure/reagent_dispensers/watertank,
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"cec" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/atmospherics/pipe/simple/general/visible,
+/turf/open/floor/plating/airless,
+/area/maintenance/disposal/incinerator)
+"ced" = (
+/obj/structure/closet/emcloset/anchored,
+/turf/open/floor/plating,
+/area/maintenance/disposal/incinerator)
+"cee" = (
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "Chapel Office APC";
+ pixel_x = -24
+ },
+/obj/structure/cable{
+ icon_state = "0-4";
+ d2 = 4
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
+/turf/open/floor/plasteel/black,
+/area/chapel/office)
+"cef" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/black,
+/area/chapel/office)
+"ceg" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/open/floor/plasteel/black,
+/area/chapel/office)
+"ceh" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/closed/wall,
+/area/chapel/office)
+"cei" = (
+/obj/machinery/door/airlock/centcom{
+ name = "Chapel Access";
+ opacity = 1
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/black,
+/area/chapel/office)
+"cej" = (
+/obj/machinery/door/airlock/centcom{
+ name = "Chapel";
+ opacity = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/black,
+/area/chapel/main/monastery)
+"cek" = (
+/obj/machinery/door/airlock/centcom{
+ name = "Chapel";
+ opacity = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/black,
+/area/chapel/main/monastery)
+"cel" = (
+/obj/machinery/door/airlock/centcom{
+ name = "Chapel Access";
+ opacity = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/black,
+/area/chapel/main/monastery)
+"cem" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/closed/wall,
+/area/chapel/main/monastery)
+"cen" = (
+/obj/structure/table/wood,
+/obj/item/weapon/storage/photo_album,
+/turf/open/floor/plasteel/black,
+/area/chapel/main/monastery)
+"ceo" = (
+/obj/structure/chair{
+ dir = 1
+ },
+/turf/open/floor/plating/asteroid,
+/area/chapel/asteroid{
+ name = "Monastery Asteroid"
+ })
+"cep" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/shuttle/auxillary_base)
+"ceq" = (
+/obj/machinery/power/emitter,
+/turf/open/floor/plating,
+/area/engine/engineering)
+"cer" = (
+/obj/machinery/door/airlock/engineering{
+ name = "Telecommunications Transit Tube";
+ req_access_txt = "10; 61"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"ces" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock/external{
+ cyclelinkeddir = 2;
+ name = "Engineering External Access";
+ req_access = null;
+ req_access_txt = "10;13"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plating,
+/area/engine/engineering)
+"cet" = (
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "Singularity";
+ name = "radiation shutters"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/engine/engineering)
+"ceu" = (
+/obj/item/stack/cable_coil{
+ pixel_x = 3;
+ pixel_y = -7
+ },
+/obj/item/stack/cable_coil{
+ pixel_x = 3;
+ pixel_y = -7
+ },
+/obj/item/weapon/crowbar,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/engine/engineering)
+"cev" = (
+/obj/structure/chair/stool,
+/turf/open/floor/plating,
+/area/engine/engineering)
+"cew" = (
+/obj/structure/particle_accelerator/power_box,
+/turf/open/floor/plating,
+/area/engine/engineering)
+"cex" = (
+/obj/item/weapon/screwdriver,
+/turf/open/floor/plating,
+/area/engine/engineering)
+"cey" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/engine/engineering)
+"cez" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock/external{
+ cyclelinkeddir = 2;
+ name = "Engineering External Access";
+ req_access = null;
+ req_access_txt = "10;13"
+ },
+/turf/open/floor/plating,
+/area/engine/engineering)
+"ceA" = (
+/obj/machinery/atmospherics/components/unary/outlet_injector/on{
+ dir = 1
+ },
+/turf/open/floor/plating/airless,
+/area/space/nearstation)
+"ceB" = (
+/obj/structure/bodycontainer/crematorium{
+ id = "foo"
+ },
+/obj/effect/decal/cleanable/cobweb,
+/turf/open/floor/plasteel/black,
+/area/chapel/office)
+"ceC" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/machinery/camera{
+ c_tag = "Chapel Crematorium";
+ dir = 2;
+ network = list("SS13","Monastery")
+ },
+/turf/open/floor/plasteel/black,
+/area/chapel/office)
+"ceD" = (
+/obj/machinery/door/airlock/centcom{
+ name = "Crematorium";
+ opacity = 1;
+ req_access = "27"
+ },
+/turf/open/floor/plasteel/black,
+/area/chapel/office)
+"ceE" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/black,
+/area/chapel/office)
+"ceF" = (
+/obj/structure/filingcabinet,
+/turf/open/floor/plasteel/black,
+/area/chapel/office)
+"ceG" = (
+/obj/machinery/suit_storage_unit/standard_unit,
+/turf/open/floor/plasteel/black,
+/area/chapel/office)
+"ceH" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel/black,
+/area/chapel/main/monastery)
+"ceI" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/black,
+/area/chapel/main/monastery)
+"ceJ" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/black,
+/area/chapel/main/monastery)
+"ceK" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "Monastery APC";
+ pixel_y = 24
+ },
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/turf/open/floor/plasteel/black,
+/area/chapel/main/monastery)
+"ceL" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/black,
+/area/chapel/main/monastery)
+"ceM" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/black,
+/area/chapel/main/monastery)
+"ceN" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
+/turf/open/floor/plasteel/black,
+/area/chapel/main/monastery)
+"ceO" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/airalarm{
+ pixel_y = 22
+ },
+/turf/open/floor/plasteel/black,
+/area/chapel/main/monastery)
+"ceP" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/black,
+/area/chapel/main/monastery)
+"ceQ" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/black,
+/area/chapel/main/monastery)
+"ceR" = (
+/obj/machinery/field/generator,
+/turf/open/floor/plating,
+/area/maintenance/department/engine)
+"ceS" = (
+/obj/machinery/power/emitter,
+/turf/open/floor/plating,
+/area/maintenance/department/engine)
+"ceT" = (
+/obj/effect/decal/cleanable/cobweb,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/engine/engineering)
+"ceU" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/structure/sign/poster/official/random{
+ pixel_y = 32
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"ceV" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 9
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"ceW" = (
+/obj/machinery/light/small{
+ dir = 8;
+ light_color = "#fff4bc"
+ },
+/obj/structure/closet/emcloset/anchored,
+/turf/open/floor/plating,
+/area/engine/engineering)
+"ceX" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
+ icon_state = "space";
+ layer = 4;
+ name = "EXTERNAL AIRLOCK";
+ pixel_x = 32
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plating,
+/area/engine/engineering)
+"ceY" = (
+/obj/machinery/power/rad_collector/anchored,
+/obj/item/weapon/tank/internals/plasma,
+/obj/structure/cable/yellow,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/engine/engineering)
+"ceZ" = (
+/obj/machinery/power/rad_collector/anchored,
+/obj/structure/cable/yellow,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/engine/engineering)
+"cfa" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/engine/engineering)
+"cfb" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/engine/engineering)
+"cfc" = (
+/obj/structure/particle_accelerator/particle_emitter/left,
+/turf/open/floor/plating,
+/area/engine/engineering)
+"cfd" = (
+/obj/structure/particle_accelerator/particle_emitter/center,
+/turf/open/floor/plating,
+/area/engine/engineering)
+"cfe" = (
+/obj/structure/particle_accelerator/particle_emitter/right,
+/turf/open/floor/plating,
+/area/engine/engineering)
+"cff" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
+ icon_state = "space";
+ layer = 4;
+ name = "EXTERNAL AIRLOCK";
+ pixel_x = -32
+ },
+/turf/open/floor/plating,
+/area/engine/engineering)
+"cfg" = (
+/obj/machinery/light/small{
+ dir = 4;
+ light_color = "#fff4bc"
+ },
+/obj/structure/closet/emcloset/anchored,
+/turf/open/floor/plating,
+/area/engine/engineering)
+"cfh" = (
+/obj/effect/decal/cleanable/blood/old,
+/turf/open/floor/plasteel/black,
+/area/chapel/office)
+"cfi" = (
+/obj/machinery/button/crematorium{
+ id = "foo";
+ pixel_x = 25
+ },
+/turf/open/floor/plasteel/black,
+/area/chapel/office)
+"cfj" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 5
+ },
+/turf/closed/wall,
+/area/chapel/office)
+"cfk" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/closed/wall,
+/area/chapel/office)
+"cfl" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/black,
+/area/chapel/main/monastery)
+"cfm" = (
+/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,
+/turf/open/floor/plasteel/vault{
+ dir = 5
+ },
+/area/chapel/main/monastery)
+"cfn" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 5
+ },
+/area/chapel/main/monastery)
+"cfo" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
+/turf/open/floor/plasteel/vault{
+ dir = 5
+ },
+/area/chapel/main/monastery)
+"cfp" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 5
+ },
+/area/chapel/main/monastery)
+"cfq" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/structure/closet/emcloset/anchored,
+/turf/open/floor/plating,
+/area/chapel/main/monastery)
+"cfr" = (
+/obj/structure/transit_tube_pod,
+/obj/structure/transit_tube/station/reverse{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/engine/engineering)
+"cfs" = (
+/obj/machinery/camera{
+ c_tag = "Engineering Telecomms Access";
+ dir = 8;
+ network = list("Labor")
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/machinery/computer/security/telescreen{
+ desc = "Used for watching telecomms.";
+ dir = 8;
+ layer = 4;
+ name = "Telecomms Telescreen";
+ network = list("Telecomms");
+ pixel_x = 30
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"cft" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock/external{
+ cyclelinkeddir = 1;
+ name = "Engineering External Access";
+ req_access = null;
+ req_access_txt = "10;13"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plating,
+/area/engine/engineering)
+"cfu" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-4";
+ d1 = 1;
+ d2 = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/turf/open/floor/plating,
+/area/engine/engineering)
+"cfv" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plating,
+/area/engine/engineering)
+"cfw" = (
+/obj/item/weapon/wirecutters,
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plating,
+/area/engine/engineering)
+"cfx" = (
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plating,
+/area/engine/engineering)
+"cfy" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/turf/open/floor/plating,
+/area/engine/engineering)
+"cfz" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock/external{
+ cyclelinkeddir = 1;
+ name = "Engineering External Access";
+ req_access = null;
+ req_access_txt = "10;13"
+ },
+/turf/open/floor/plating,
+/area/engine/engineering)
+"cfA" = (
+/obj/machinery/chem_master/condimaster,
+/turf/open/floor/plasteel/hydrofloor,
+/area/chapel/main/monastery)
+"cfB" = (
+/obj/machinery/seed_extractor,
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/open/floor/plasteel/hydrofloor,
+/area/chapel/main/monastery)
+"cfC" = (
+/obj/machinery/biogenerator,
+/turf/open/floor/plasteel/hydrofloor,
+/area/chapel/main/monastery)
+"cfD" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/black,
+/area/chapel/main/monastery)
+"cfE" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/vault{
+ dir = 5
+ },
+/area/chapel/main/monastery)
+"cfF" = (
+/turf/closed/wall,
+/area/hydroponics/garden/monastery)
+"cfG" = (
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/hydroponics/garden/monastery)
+"cfH" = (
+/obj/machinery/door/airlock/external{
+ cyclelinkeddir = 4
+ },
+/turf/open/floor/plating,
+/area/chapel/main/monastery)
+"cfI" = (
+/turf/open/floor/plating,
+/area/chapel/main/monastery)
+"cfJ" = (
+/obj/machinery/door/airlock/external{
+ cyclelinkeddir = 8
+ },
+/turf/open/floor/plating,
+/area/chapel/main/monastery)
+"cfK" = (
+/turf/open/floor/plasteel/asteroid,
+/area/chapel/asteroid{
+ name = "Monastery Asteroid"
+ })
+"cfL" = (
+/obj/structure/flora/ausbushes/fernybush,
+/obj/machinery/camera{
+ c_tag = "Monastery Asteroid Starboard Aft";
+ dir = 1;
+ network = list("SS13","Monastery")
+ },
+/turf/open/floor/plasteel/asteroid,
+/area/chapel/asteroid{
+ name = "Monastery Asteroid"
+ })
+"cfM" = (
+/obj/structure/flora/ausbushes,
+/turf/open/floor/plasteel/asteroid,
+/area/chapel/asteroid{
+ name = "Monastery Asteroid"
+ })
+"cfN" = (
+/turf/closed/mineral,
+/area/chapel/asteroid{
+ name = "Monastery Asteroid"
+ })
+"cfO" = (
+/obj/structure/transit_tube,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/engine/engineering)
+"cfP" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"cfQ" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/closed/wall/r_wall,
+/area/engine/engineering)
+"cfR" = (
+/obj/structure/grille,
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating/airless,
+/area/engine/engineering)
+"cfS" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 9
+ },
+/turf/open/floor/plating/airless,
+/area/engine/engineering)
+"cfT" = (
+/obj/machinery/camera/emp_proof{
+ c_tag = "Engine Containment Port Fore";
+ dir = 2;
+ network = list("Engine")
+ },
+/turf/open/floor/plating/airless,
+/area/engine/engineering)
+"cfU" = (
+/obj/machinery/power/grounding_rod,
+/turf/open/floor/plating/airless,
+/area/engine/engineering)
+"cfV" = (
+/turf/open/floor/plating/airless,
+/area/engine/engineering)
+"cfW" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating,
+/area/engine/engineering)
+"cfX" = (
+/obj/machinery/camera/emp_proof{
+ c_tag = "Engine Containment Starboard Fore";
+ dir = 2;
+ network = list("Engine")
+ },
+/turf/open/floor/plating/airless,
+/area/engine/engineering)
+"cfY" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/open/floor/plating/airless,
+/area/engine/engineering)
+"cfZ" = (
+/obj/structure/grille,
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/open/floor/plating/airless,
+/area/engine/engineering)
+"cga" = (
+/obj/structure/cable{
+ icon_state = "0-2";
+ d2 = 2
+ },
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "Monastery External APC";
+ pixel_x = 24
+ },
+/turf/open/floor/plasteel/asteroid{
+ icon_plating = "asteroid"
+ },
+/area/chapel/asteroid{
+ name = "Monastery Asteroid"
+ })
+"cgb" = (
+/obj/machinery/airalarm{
+ pixel_y = 22
+ },
+/obj/item/weapon/storage/firstaid/regular,
+/turf/open/floor/plasteel/hydrofloor,
+/area/chapel/main/monastery)
+"cgc" = (
+/obj/item/seeds/wheat,
+/turf/open/floor/plasteel/hydrofloor,
+/area/chapel/main/monastery)
+"cgd" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/open/floor/plasteel/hydrofloor,
+/area/chapel/main/monastery)
+"cge" = (
+/obj/item/weapon/storage/bag/plants,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 24
+ },
+/turf/open/floor/plasteel/hydrofloor,
+/area/chapel/main/monastery)
+"cgf" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/closed/wall,
+/area/chapel/main/monastery)
+"cgg" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/black,
+/area/chapel/main/monastery)
+"cgh" = (
+/obj/structure/flora/ausbushes/pointybush,
+/turf/open/floor/grass,
+/area/hydroponics/garden/monastery)
+"cgi" = (
+/obj/structure/flora/ausbushes/ywflowers,
+/obj/structure/flora/ausbushes/sparsegrass,
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/open/floor/grass,
+/area/hydroponics/garden/monastery)
+"cgj" = (
+/obj/structure/flora/ausbushes/ywflowers,
+/obj/structure/flora/ausbushes/ppflowers,
+/obj/structure/flora/ausbushes/sparsegrass,
+/turf/open/floor/grass,
+/area/hydroponics/garden/monastery)
+"cgk" = (
+/obj/structure/flora/ausbushes/ywflowers,
+/obj/structure/flora/ausbushes/sparsegrass,
+/obj/machinery/camera{
+ c_tag = "Monastery Garden";
+ dir = 2;
+ network = list("SS13","Monastery")
+ },
+/turf/open/floor/grass,
+/area/hydroponics/garden/monastery)
+"cgl" = (
+/obj/machinery/hydroponics/soil,
+/obj/item/seeds/carrot,
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/open/floor/grass,
+/area/hydroponics/garden/monastery)
+"cgm" = (
+/obj/machinery/hydroponics/soil,
+/obj/item/seeds/watermelon/holy,
+/turf/open/floor/grass,
+/area/hydroponics/garden/monastery)
+"cgn" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/plasteel/black,
+/area/chapel/main/monastery)
+"cgo" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/turf/open/floor/plating,
+/area/shuttle/auxillary_base)
+"cgp" = (
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plating,
+/area/shuttle/auxillary_base)
+"cgq" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/turf/open/floor/plating,
+/area/shuttle/auxillary_base)
+"cgr" = (
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/transit_tube,
+/turf/open/floor/plating,
+/area/engine/engineering)
+"cgs" = (
+/obj/machinery/door/airlock/external{
+ cyclelinkeddir = 2;
+ name = "Engineering External Access";
+ req_access = null;
+ req_access_txt = "61"
+ },
+/turf/open/floor/plating,
+/area/engine/engineering)
+"cgt" = (
+/obj/structure/grille,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating/airless,
+/area/engine/engineering)
+"cgu" = (
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/open/floor/plating/airless,
+/area/engine/engineering)
+"cgv" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating/airless,
+/area/engine/engineering)
+"cgw" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-4";
+ d1 = 1;
+ d2 = 4
+ },
+/turf/open/floor/plating/airless,
+/area/engine/engineering)
+"cgx" = (
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/open/floor/plating/airless,
+/area/engine/engineering)
+"cgy" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/open/floor/plasteel/asteroid{
+ icon_plating = "asteroid"
+ },
+/area/chapel/asteroid{
+ name = "Monastery Asteroid"
+ })
+"cgz" = (
+/obj/machinery/door/airlock/external{
+ cyclelinkeddir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating,
+/area/chapel/main/monastery)
+"cgA" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating,
+/area/chapel/main/monastery)
+"cgB" = (
+/obj/machinery/door/airlock/external{
+ cyclelinkeddir = 8
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating,
+/area/chapel/main/monastery)
+"cgC" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/hydrofloor,
+/area/chapel/main/monastery)
+"cgD" = (
+/obj/machinery/vending/hydronutrients,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/hydrofloor,
+/area/chapel/main/monastery)
+"cgE" = (
+/obj/item/weapon/shovel/spade,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/hydrofloor,
+/area/chapel/main/monastery)
+"cgF" = (
+/obj/structure/sink{
+ dir = 4;
+ pixel_x = 11
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/open/floor/plasteel/hydrofloor,
+/area/chapel/main/monastery)
+"cgG" = (
+/obj/structure/flora/ausbushes/genericbush,
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "Garden APC";
+ pixel_x = -24
+ },
+/obj/structure/cable{
+ icon_state = "0-2";
+ pixel_y = 1;
+ d2 = 2
+ },
+/turf/open/floor/grass,
+/area/hydroponics/garden/monastery)
+"cgH" = (
+/turf/open/floor/grass,
+/area/hydroponics/garden/monastery)
+"cgI" = (
+/mob/living/simple_animal/butterfly,
+/turf/open/floor/grass,
+/area/hydroponics/garden/monastery)
+"cgJ" = (
+/obj/item/weapon/cultivator,
+/turf/open/floor/grass,
+/area/hydroponics/garden/monastery)
+"cgK" = (
+/obj/machinery/hydroponics/soil,
+/obj/item/seeds/sugarcane,
+/turf/open/floor/grass,
+/area/hydroponics/garden/monastery)
+"cgL" = (
+/obj/structure/closet/cabinet,
+/obj/item/clothing/suit/holidaypriest,
+/obj/item/clothing/suit/nun,
+/obj/item/clothing/head/nun_hood,
+/obj/machinery/button/door{
+ id = "Cell1";
+ name = "Cell Bolt Control";
+ normaldoorcontrol = 1;
+ pixel_x = -25;
+ req_access_txt = "0";
+ specialfunctions = 4
+ },
+/turf/open/floor/plasteel/grimy,
+/area/chapel/main/monastery)
+"cgM" = (
+/obj/structure/dresser,
+/obj/structure/sign/securearea{
+ desc = "Under the painting a plaque reads: 'While the meat grinder may not have spared you, fear not. Not one part of you has gone to waste... You were delicious.'";
+ icon_state = "monkey_painting";
+ name = "Mr. Deempisi portrait";
+ pixel_y = 28
+ },
+/turf/open/floor/plasteel/grimy,
+/area/chapel/main/monastery)
+"cgN" = (
+/obj/structure/table/wood,
+/obj/effect/decal/cleanable/cobweb{
+ icon_state = "cobweb2"
+ },
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/item/device/flashlight/lantern,
+/turf/open/floor/plasteel/grimy,
+/area/chapel/main/monastery)
+"cgO" = (
+/obj/structure/toilet{
+ pixel_y = 8
+ },
+/obj/machinery/light/small{
+ brightness = 3;
+ dir = 8
+ },
+/turf/open/floor/plasteel/showroomfloor,
+/area/chapel/main/monastery)
+"cgP" = (
+/obj/structure/transit_tube,
+/turf/open/floor/plating/airless,
+/area/space)
+"cgQ" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
+ icon_state = "space";
+ layer = 4;
+ name = "EXTERNAL AIRLOCK";
+ pixel_x = -32
+ },
+/turf/open/floor/plating,
+/area/engine/engineering)
+"cgR" = (
+/obj/structure/grille,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/open/floor/plating/airless,
+/area/engine/engineering)
+"cgS" = (
+/obj/machinery/power/emitter/anchored{
+ dir = 4;
+ state = 2
+ },
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/turf/open/floor/plating/airless,
+/area/engine/engineering)
+"cgT" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plating/airless,
+/area/engine/engineering)
+"cgU" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating/airless,
+/area/engine/engineering)
+"cgV" = (
+/obj/machinery/field/generator{
+ anchored = 1;
+ state = 2
+ },
+/turf/open/floor/plating/airless,
+/area/space/nearstation)
+"cgW" = (
+/turf/open/space,
+/area/space/nearstation)
+"cgX" = (
+/turf/open/space/basic,
+/area/space/nearstation)
+"cgY" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plating/airless,
+/area/engine/engineering)
+"cgZ" = (
+/obj/machinery/power/emitter/anchored{
+ dir = 8;
+ state = 2
+ },
+/obj/structure/cable{
+ icon_state = "0-4";
+ d2 = 4
+ },
+/turf/open/floor/plating/airless,
+/area/engine/engineering)
+"cha" = (
+/obj/structure/grille,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/open/floor/plating/airless,
+/area/engine/engineering)
+"chb" = (
+/obj/machinery/camera{
+ c_tag = "Monastery Kitchen";
+ dir = 4;
+ network = list("SS13","Monastery")
+ },
+/turf/open/floor/plasteel/hydrofloor,
+/area/chapel/main/monastery)
+"chc" = (
+/obj/machinery/vending/dinnerware,
+/turf/open/floor/plasteel/hydrofloor,
+/area/chapel/main/monastery)
+"chd" = (
+/obj/item/clothing/suit/apron/chef,
+/turf/open/floor/plasteel/hydrofloor,
+/area/chapel/main/monastery)
+"che" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 6
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/open/floor/plasteel/hydrofloor,
+/area/chapel/main/monastery)
+"chf" = (
+/obj/machinery/door/airlock{
+ name = "Kitchen"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/black,
+/area/chapel/main/monastery)
+"chg" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/open/floor/plasteel/black,
+/area/chapel/main/monastery)
+"chh" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/vault{
+ dir = 5
+ },
+/area/chapel/main/monastery)
+"chi" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock{
+ name = "Garden"
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 5
+ },
+/area/hydroponics/garden/monastery)
+"chj" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/open/floor/grass,
+/area/hydroponics/garden/monastery)
+"chk" = (
+/obj/structure/sink/puddle,
+/obj/item/weapon/reagent_containers/glass/bucket,
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/grass,
+/area/hydroponics/garden/monastery)
+"chl" = (
+/obj/structure/flora/ausbushes/sunnybush,
+/turf/open/floor/grass,
+/area/hydroponics/garden/monastery)
+"chm" = (
+/obj/machinery/door/airlock{
+ name = "Garden"
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 5
+ },
+/area/hydroponics/garden/monastery)
+"chn" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 5
+ },
+/area/chapel/main/monastery)
+"cho" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/black,
+/area/chapel/main/monastery)
+"chp" = (
+/obj/machinery/door/airlock{
+ id_tag = "Cell1";
+ name = "Cell 1"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/grimy,
+/area/chapel/main/monastery)
+"chq" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/open/floor/plasteel/grimy,
+/area/chapel/main/monastery)
+"chr" = (
+/turf/open/floor/plasteel/grimy,
+/area/chapel/main/monastery)
+"chs" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on,
+/turf/open/floor/plasteel/grimy,
+/area/chapel/main/monastery)
+"cht" = (
+/obj/machinery/door/airlock{
+ name = "Bathroom"
+ },
+/turf/open/floor/plasteel/grimy,
+/area/chapel/main/monastery)
+"chu" = (
+/obj/structure/sink{
+ dir = 4;
+ pixel_x = 11
+ },
+/turf/open/floor/plasteel/showroomfloor,
+/area/chapel/main/monastery)
+"chv" = (
+/obj/machinery/door/airlock/external{
+ cyclelinkeddir = 1;
+ name = "Engineering External Access";
+ req_access = null;
+ req_access_txt = "61"
+ },
+/turf/open/floor/plating,
+/area/engine/engineering)
+"chw" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-4";
+ d1 = 1;
+ d2 = 4
+ },
+/turf/open/floor/plating/airless,
+/area/engine/engineering)
+"chx" = (
+/obj/structure/cable/yellow{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/machinery/power/tesla_coil,
+/turf/open/floor/plating/airless,
+/area/engine/engineering)
+"chy" = (
+/obj/structure/lattice,
+/turf/open/space,
+/area/space/nearstation)
+"chz" = (
+/obj/structure/cable/yellow{
+ icon_state = "0-4";
+ d2 = 4
+ },
+/obj/machinery/power/tesla_coil,
+/turf/open/floor/plating/airless,
+/area/engine/engineering)
+"chA" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/open/floor/plating/airless,
+/area/engine/engineering)
+"chB" = (
+/obj/structure/flora/ausbushes/leafybush,
+/obj/machinery/camera{
+ c_tag = "Monastery Asteroid Port Aft";
+ dir = 8;
+ network = list("SS13","Monastery")
+ },
+/turf/open/floor/plating/asteroid,
+/area/chapel/asteroid{
+ name = "Monastery Asteroid"
+ })
+"chC" = (
+/obj/structure/table,
+/obj/machinery/microwave,
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/cobweb,
+/obj/item/device/radio/intercom{
+ dir = 0;
+ name = "Station Intercom (General)";
+ pixel_y = 26
+ },
+/turf/open/floor/plasteel/hydrofloor,
+/area/chapel/main/monastery)
+"chD" = (
+/turf/open/floor/plasteel/hydrofloor,
+/area/chapel/main/monastery)
+"chE" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/open/floor/plasteel/hydrofloor,
+/area/chapel/main/monastery)
+"chF" = (
+/obj/item/weapon/reagent_containers/glass/bucket,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 9
+ },
+/turf/open/floor/plasteel/hydrofloor,
+/area/chapel/main/monastery)
+"chG" = (
+/obj/machinery/hydroponics/soil,
+/obj/item/seeds/wheat,
+/turf/open/floor/grass,
+/area/hydroponics/garden/monastery)
+"chH" = (
+/obj/structure/flora/ausbushes/genericbush,
+/turf/open/floor/grass,
+/area/hydroponics/garden/monastery)
+"chI" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel/black,
+/area/chapel/main/monastery)
+"chJ" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/closed/wall,
+/area/chapel/main/monastery)
+"chK" = (
+/obj/structure/table/wood,
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/item/device/instrument/violin,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/grimy,
+/area/chapel/main/monastery)
+"chL" = (
+/obj/structure/chair/wood/normal{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/grimy,
+/area/chapel/main/monastery)
+"chM" = (
+/obj/structure/bed,
+/obj/item/weapon/bedsheet/green,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 9
+ },
+/turf/open/floor/plasteel/grimy,
+/area/chapel/main/monastery)
+"chN" = (
+/obj/machinery/shower{
+ dir = 8;
+ pixel_y = -4
+ },
+/obj/item/weapon/soap/homemade,
+/turf/open/floor/plasteel/showroomfloor,
+/area/chapel/main/monastery)
+"chO" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/grille,
+/turf/open/floor/plating/airless,
+/area/engine/engineering)
+"chP" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/grille,
+/turf/open/floor/plating/airless,
+/area/engine/engineering)
+"chQ" = (
+/turf/open/space/basic,
+/area/engine/engineering)
+"chR" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/grille,
+/turf/open/floor/plating/airless,
+/area/engine/engineering)
+"chS" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/grille,
+/turf/open/floor/plating/airless,
+/area/engine/engineering)
+"chT" = (
+/obj/structure/flora/ausbushes/leafybush,
+/obj/structure/flora/ausbushes/fernybush,
+/turf/open/floor/plating/asteroid,
+/area/chapel/asteroid{
+ name = "Monastery Asteroid"
+ })
+"chU" = (
+/obj/item/weapon/phone,
+/turf/open/floor/plating,
+/area/chapel/main/monastery)
+"chV" = (
+/obj/structure/table,
+/obj/machinery/reagentgrinder,
+/turf/open/floor/plasteel/hydrofloor,
+/area/chapel/main/monastery)
+"chW" = (
+/obj/structure/table,
+/obj/item/weapon/reagent_containers/food/condiment/saltshaker{
+ pixel_x = 3;
+ pixel_y = 4
+ },
+/obj/item/weapon/reagent_containers/food/condiment/peppermill,
+/obj/item/weapon/storage/box/ingredients/wildcard{
+ layer = 3.1
+ },
+/turf/open/floor/plasteel/hydrofloor,
+/area/chapel/main/monastery)
+"chX" = (
+/obj/structure/table,
+/obj/item/weapon/reagent_containers/food/condiment/flour,
+/obj/item/weapon/kitchen/rollingpin,
+/obj/item/weapon/kitchen/knife,
+/obj/machinery/light/small,
+/turf/open/floor/plasteel/hydrofloor,
+/area/chapel/main/monastery)
+"chY" = (
+/obj/structure/closet/crate/bin,
+/turf/open/floor/plasteel/hydrofloor,
+/area/chapel/main/monastery)
+"chZ" = (
+/obj/structure/reagent_dispensers/watertank/high,
+/turf/open/floor/plasteel/hydrofloor,
+/area/chapel/main/monastery)
+"cia" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/camera{
+ c_tag = "Monastery Kitchen Entrance";
+ dir = 4;
+ network = list("SS13","Monastery")
+ },
+/turf/open/floor/plasteel/black,
+/area/chapel/main/monastery)
+"cib" = (
+/obj/machinery/hydroponics/soil,
+/obj/item/seeds/grass,
+/turf/open/floor/grass,
+/area/hydroponics/garden/monastery)
+"cic" = (
+/obj/machinery/hydroponics/soil,
+/obj/item/seeds/apple,
+/obj/machinery/light/small,
+/turf/open/floor/grass,
+/area/hydroponics/garden/monastery)
+"cid" = (
+/obj/structure/flora/ausbushes/ywflowers,
+/obj/structure/flora/ausbushes/sparsegrass,
+/turf/open/floor/grass,
+/area/hydroponics/garden/monastery)
+"cie" = (
+/obj/structure/flora/ausbushes/ywflowers,
+/obj/structure/flora/ausbushes/sparsegrass,
+/obj/machinery/light/small,
+/turf/open/floor/grass,
+/area/hydroponics/garden/monastery)
+"cif" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/camera{
+ c_tag = "Monastery Cells";
+ dir = 8;
+ network = list("SS13","Monastery")
+ },
+/turf/open/floor/plasteel/black,
+/area/chapel/main/monastery)
+"cig" = (
+/obj/structure/transit_tube/crossing,
+/turf/open/floor/plating/airless,
+/area/space)
+"cih" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/grille,
+/turf/open/floor/plating/airless,
+/area/engine/engineering)
+"cii" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/turf/open/floor/plating/airless,
+/area/space/nearstation)
+"cij" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plating/airless,
+/area/space/nearstation)
+"cik" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/turf/open/floor/plating/airless,
+/area/space/nearstation)
+"cil" = (
+/turf/closed/wall/mineral/titanium,
+/area/shuttle/abandoned)
+"cim" = (
+/obj/structure/shuttle/engine/propulsion/burst{
+ dir = 1
+ },
+/turf/closed/wall/mineral/titanium,
+/area/shuttle/abandoned)
+"cin" = (
+/obj/machinery/door/airlock/glass{
+ name = "Shuttle Airlock"
+ },
+/turf/open/floor/plasteel/black,
+/area/shuttle/abandoned)
+"cio" = (
+/obj/structure/closet/cabinet,
+/obj/item/clothing/suit/holidaypriest,
+/obj/item/clothing/suit/nun,
+/obj/item/clothing/head/nun_hood,
+/obj/machinery/button/door{
+ id = "Cell2";
+ name = "Cell Bolt Control";
+ normaldoorcontrol = 1;
+ pixel_x = -25;
+ req_access_txt = "0";
+ specialfunctions = 4
+ },
+/turf/open/floor/plasteel/grimy,
+/area/chapel/main/monastery)
+"cip" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/structure/easel,
+/obj/item/weapon/canvas/twentythreeXnineteen,
+/turf/open/floor/plasteel/grimy,
+/area/chapel/main/monastery)
+"ciq" = (
+/obj/structure/toilet{
+ pixel_y = 8
+ },
+/turf/open/floor/plasteel/showroomfloor,
+/area/chapel/main/monastery)
+"cir" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/grille,
+/turf/open/floor/plating/airless,
+/area/engine/engineering)
+"cis" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plating/airless,
+/area/space/nearstation)
+"cit" = (
+/obj/machinery/the_singularitygen,
+/turf/open/floor/plating/airless,
+/area/space/nearstation)
+"ciu" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/machinery/the_singularitygen/tesla,
+/turf/open/floor/plating/airless,
+/area/space/nearstation)
+"civ" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/grille,
+/turf/open/floor/plating/airless,
+/area/engine/engineering)
+"ciw" = (
+/turf/open/floor/plasteel/black,
+/area/shuttle/abandoned)
+"cix" = (
+/turf/open/floor/plasteel,
+/area/shuttle/abandoned)
+"ciy" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/machinery/airalarm{
+ pixel_y = 22
+ },
+/turf/open/floor/plasteel/black,
+/area/chapel/main/monastery)
+"ciz" = (
+/obj/structure/closet/coffin,
+/turf/open/floor/plasteel/black,
+/area/chapel/main/monastery)
+"ciA" = (
+/obj/structure/closet/coffin,
+/obj/machinery/camera{
+ c_tag = "Monastery Funeral Parlor";
+ dir = 2;
+ network = list("SS13","Monastery")
+ },
+/turf/open/floor/plasteel/black,
+/area/chapel/main/monastery)
+"ciB" = (
+/obj/structure/closet/coffin,
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/cobweb{
+ icon_state = "cobweb2"
+ },
+/turf/open/floor/plasteel/black,
+/area/chapel/main/monastery)
+"ciC" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 6
+ },
+/turf/open/floor/plasteel/black,
+/area/chapel/main/monastery)
+"ciD" = (
+/obj/machinery/door/airlock/centcom{
+ name = "Chapel Garden";
+ opacity = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/black,
+/area/chapel/main/monastery)
+"ciE" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 1
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 5
+ },
+/area/chapel/main/monastery)
+"ciF" = (
+/obj/machinery/door/airlock{
+ id_tag = "Cell2";
+ name = "Cell 2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/grimy,
+/area/chapel/main/monastery)
+"ciG" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/turf/open/floor/plating/airless,
+/area/space/nearstation)
+"ciH" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 2
+ },
+/turf/open/floor/plating/airless,
+/area/space/nearstation)
+"ciI" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/turf/open/floor/plating/airless,
+/area/space/nearstation)
+"ciJ" = (
+/obj/structure/closet/emcloset,
+/obj/effect/decal/cleanable/cobweb,
+/obj/effect/decal/cleanable/blood/old,
+/turf/open/floor/plasteel/black,
+/area/chapel/main/monastery)
+"ciK" = (
+/obj/structure/table,
+/obj/item/weapon/crowbar,
+/obj/item/clothing/mask/gas,
+/turf/open/floor/plasteel/black,
+/area/chapel/main/monastery)
+"ciL" = (
+/obj/machinery/door/window/eastleft{
+ dir = 1;
+ name = "Coffin Storage";
+ req_one_access_txt = "22"
+ },
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
+ icon_state = "space";
+ layer = 4;
+ name = "EXTERNAL AIRLOCK";
+ pixel_x = -32
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 6
+ },
+/turf/open/floor/plasteel/black,
+/area/chapel/main/monastery)
+"ciM" = (
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 2.9
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 1
+ },
+/turf/open/floor/plasteel/black,
+/area/chapel/main/monastery)
+"ciN" = (
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 2.9
+ },
+/obj/structure/chair,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/carpet,
+/area/chapel/main/monastery)
+"ciO" = (
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 2.9
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/black,
+/area/chapel/main/monastery)
+"ciP" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 9
+ },
+/turf/open/floor/plasteel/black,
+/area/chapel/main/monastery)
+"ciQ" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
+/turf/open/floor/plasteel/black,
+/area/chapel/main/monastery)
+"ciR" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/black,
+/area/chapel/main/monastery)
+"ciS" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
+ },
+/turf/open/floor/plasteel/black,
+/area/chapel/main/monastery)
+"ciT" = (
+/obj/machinery/light/small,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/black,
+/area/chapel/main/monastery)
+"ciU" = (
+/obj/machinery/light/small,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/black,
+/area/chapel/main/monastery)
+"ciV" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
+ },
+/turf/open/floor/plasteel/black,
+/area/chapel/main/monastery)
+"ciW" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/black,
+/area/chapel/main/monastery)
+"ciX" = (
+/obj/structure/table/wood,
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/item/weapon/storage/crayons,
+/turf/open/floor/plasteel/grimy,
+/area/chapel/main/monastery)
+"ciY" = (
+/obj/structure/bed,
+/obj/item/weapon/bedsheet/yellow,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 9
+ },
+/turf/open/floor/plasteel/grimy,
+/area/chapel/main/monastery)
+"ciZ" = (
+/obj/machinery/shower{
+ dir = 8;
+ pixel_y = -4
+ },
+/obj/machinery/light/small{
+ brightness = 3;
+ dir = 8
+ },
+/obj/item/weapon/bikehorn/rubberducky,
+/turf/open/floor/plasteel/showroomfloor,
+/area/chapel/main/monastery)
+"cja" = (
+/obj/structure/shuttle/engine/propulsion/burst{
+ dir = 8
+ },
+/turf/closed/wall/mineral/titanium,
+/area/shuttle/abandoned)
+"cjb" = (
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 2.9
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/table/glass,
+/obj/item/weapon/gun/medbeam,
+/turf/open/floor/plating/abductor,
+/area/shuttle/abandoned)
+"cjc" = (
+/obj/structure/chair,
+/turf/open/floor/plating/abductor,
+/area/shuttle/abandoned)
+"cjd" = (
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 2.9
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/table/glass,
+/obj/machinery/recharger,
+/obj/item/weapon/gun/energy/laser/retro,
+/turf/open/floor/plating/abductor,
+/area/shuttle/abandoned)
+"cje" = (
+/obj/structure/shuttle/engine/propulsion/burst{
+ dir = 4
+ },
+/turf/closed/wall/mineral/titanium,
+/area/shuttle/abandoned)
+"cjf" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/open/floor/plasteel/black,
+/area/chapel/main/monastery)
+"cjg" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/black,
+/area/chapel/main/monastery)
+"cjh" = (
+/obj/machinery/door/airlock/external{
+ name = "Dock Access"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/black,
+/area/chapel/main/monastery)
+"cji" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 9
+ },
+/turf/open/floor/plasteel/black,
+/area/chapel/main/monastery)
+"cjj" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/open/floor/plasteel/black,
+/area/chapel/main/monastery)
+"cjk" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/open/floor/plasteel/black,
+/area/chapel/main/monastery)
+"cjl" = (
+/obj/machinery/door/airlock/centcom{
+ name = "Monastery Cemetary";
+ opacity = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/black,
+/area/chapel/main/monastery)
+"cjm" = (
+/turf/closed/wall,
+/area/maintenance/department/chapel/monastery)
+"cjn" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock/maintenance{
+ name = "Monastery Maintenance";
+ req_access_txt = "0";
+ req_one_access_txt = "22;24;10;11"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plating,
+/area/maintenance/department/chapel/monastery)
+"cjo" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/closed/wall,
+/area/maintenance/department/chapel/monastery)
+"cjp" = (
+/turf/closed/wall,
+/area/library)
+"cjq" = (
+/obj/machinery/door/airlock/centcom{
+ name = "Library"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/carpet,
+/area/library)
+"cjr" = (
+/obj/machinery/door/airlock/centcom{
+ name = "Library"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/carpet,
+/area/library)
+"cjs" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-4";
+ d1 = 1;
+ d2 = 4
+ },
+/turf/open/floor/plating/airless,
+/area/engine/engineering)
+"cjt" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/open/floor/plating/airless,
+/area/engine/engineering)
+"cju" = (
+/turf/closed/mineral,
+/area/mine/explored{
+ name = "Bomb Testing Asteroid"
+ })
+"cjv" = (
+/turf/closed/wall,
+/area/mine/explored{
+ name = "Bomb Testing Asteroid"
+ })
+"cjw" = (
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'BOMB RANGE";
+ name = "BOMB RANGE"
+ },
+/turf/closed/indestructible{
+ desc = "A wall impregnated with Fixium, able to withstand massive explosions with ease";
+ icon_state = "riveted";
+ name = "hyper-reinforced wall"
+ },
+/area/mine/explored{
+ name = "Bomb Testing Asteroid"
+ })
+"cjx" = (
+/turf/open/floor/plating/asteroid/airless,
+/area/mine/explored{
+ name = "Bomb Testing Asteroid"
+ })
+"cjy" = (
+/obj/structure/chair{
+ dir = 4
+ },
+/turf/open/floor/plating/abductor,
+/area/shuttle/abandoned)
+"cjz" = (
+/obj/machinery/computer/shuttle/white_ship,
+/turf/open/floor/plating/abductor,
+/area/shuttle/abandoned)
+"cjA" = (
/obj/structure/chair{
dir = 8
},
/turf/open/floor/plating/abductor,
/area/shuttle/abandoned)
-"aGf" = (
+"cjB" = (
/obj/machinery/door/airlock/glass{
name = "Shuttle Airlock"
},
@@ -14800,79 +52173,7 @@
},
/turf/open/floor/plasteel/black,
/area/shuttle/abandoned)
-"aGg" = (
-/obj/structure/reagent_dispensers/fueltank,
-/turf/open/floor/mineral/titanium/yellow,
-/area/shuttle/escape)
-"aGh" = (
-/obj/structure/sign/nanotrasen,
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/escape)
-"aGi" = (
-/obj/machinery/door/airlock/glass{
- name = "Emergency Shuttle Cockpit";
- req_access_txt = "19"
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/escape)
-"aGj" = (
-/obj/structure/chair{
- dir = 1
- },
-/turf/open/floor/mineral/plastitanium/brig,
-/area/shuttle/escape)
-"aGk" = (
-/obj/machinery/door/airlock/titanium{
- name = "Emergency Shuttle Airlock";
- req_access_txt = "2"
- },
-/turf/open/floor/mineral/plastitanium/brig,
-/area/shuttle/escape)
-"aGl" = (
-/obj/machinery/door/airlock/external{
- cyclelinkeddir = 4;
- name = "Escape Airlock"
- },
-/turf/open/floor/plating,
-/area/hallway/secondary/exit/departure_lounge)
-"aGm" = (
-/turf/open/floor/plating,
-/area/hallway/secondary/exit/departure_lounge)
-"aGn" = (
-/obj/machinery/door/airlock/external{
- cyclelinkeddir = 8;
- name = "Escape Airlock"
- },
-/turf/open/floor/plating,
-/area/hallway/secondary/exit/departure_lounge)
-"aGo" = (
-/turf/open/floor/plasteel/red/side{
- dir = 8
- },
-/area/hallway/secondary/exit/departure_lounge)
-"aGp" = (
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit/departure_lounge)
-"aGq" = (
-/obj/machinery/light{
- dir = 4
- },
-/obj/machinery/camera{
- c_tag = "Departure Lounge Holding Area";
- dir = 8
- },
-/obj/structure/extinguisher_cabinet{
- pixel_x = 27
- },
-/turf/open/floor/plasteel/red/side{
- dir = 4
- },
-/area/hallway/secondary/exit/departure_lounge)
-"aGr" = (
-/obj/structure/closet/emcloset,
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"aGs" = (
+"cjC" = (
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
icon_state = "space";
@@ -14885,150 +52186,7 @@
},
/turf/open/floor/plating,
/area/chapel/main/monastery)
-"aGt" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/neutral/corner,
-/area/hallway/primary/central)
-"aGu" = (
-/turf/closed/wall,
-/area/storage/art)
-"aGv" = (
-/obj/structure/grille,
-/obj/structure/window/fulltile,
-/turf/open/floor/plating,
-/area/storage/art)
-"aGw" = (
-/obj/machinery/door/airlock/glass{
- name = "Art Storage"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel,
-/area/storage/art)
-"aGx" = (
-/obj/structure/grille,
-/obj/structure/window/fulltile,
-/turf/open/floor/plating,
-/area/crew_quarters/cafeteria/lunchroom)
-"aGy" = (
-/obj/structure/grille,
-/obj/structure/window/fulltile,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plating,
-/area/crew_quarters/cafeteria/lunchroom)
-"aGz" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass{
- name = "Lunchroom"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
-/area/crew_quarters/cafeteria/lunchroom)
-"aGA" = (
-/turf/closed/wall,
-/area/crew_quarters/cafeteria/lunchroom)
-"aGB" = (
-/turf/closed/wall,
-/area/crew_quarters/toilet/auxiliary)
-"aGC" = (
-/obj/machinery/door/airlock{
- id_tag = "Potty1";
- name = "Unisex Restrooms";
- req_access_txt = "0"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/toilet/auxiliary)
-"aGD" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/closed/wall,
-/area/crew_quarters/toilet/auxiliary)
-"aGE" = (
-/turf/closed/wall,
-/area/maintenance/department/crew_quarters/bar)
-"aGF" = (
-/obj/machinery/door/airlock/maintenance{
- req_access_txt = "12"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating,
-/area/maintenance/department/crew_quarters/bar)
-"aGG" = (
-/obj/structure/closet/emcloset,
-/turf/open/floor/plasteel,
-/area/maintenance/department/crew_quarters/bar)
-"aGH" = (
-/obj/machinery/camera{
- c_tag = "Central Primary Hallway Bridge";
- dir = 1
- },
-/obj/structure/closet/emcloset,
-/turf/open/floor/plasteel,
-/area/maintenance/department/crew_quarters/bar)
-"aGI" = (
-/obj/structure/closet/firecloset,
-/turf/open/floor/plasteel,
-/area/maintenance/department/crew_quarters/bar)
-"aGJ" = (
-/turf/closed/wall/r_wall,
-/area/storage/eva)
-"aGK" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/storage/eva)
-"aGL" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/poddoor/shutters{
- id = "evashutter";
- name = "EVA Storage Shutters"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plasteel,
-/area/storage/eva)
-"aGM" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass_command{
- name = "EVA Storage";
- req_access_txt = "18"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
-/area/storage/eva)
-"aGN" = (
-/turf/closed/wall/r_wall,
-/area/teleporter)
-"aGO" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/door/airlock/glass_command{
- name = "Teleporter";
- req_access_txt = "17"
- },
-/turf/open/floor/plasteel,
-/area/teleporter)
-"aGP" = (
+"cjD" = (
/obj/machinery/atmospherics/components/unary/vent_pump/on{
dir = 4
},
@@ -15039,7 +52197,7 @@
},
/turf/open/floor/plasteel/black,
/area/chapel/main/monastery)
-"aGQ" = (
+"cjE" = (
/obj/structure/chair{
dir = 4
},
@@ -15048,4584 +52206,13 @@
},
/turf/open/floor/plasteel/black,
/area/chapel/main/monastery)
-"aGR" = (
-/turf/closed/wall,
-/area/security/checkpoint/supply)
-"aGS" = (
-/turf/closed/wall,
-/area/quartermaster/office)
-"aGT" = (
-/turf/closed/wall,
-/area/quartermaster/storage)
-"aGU" = (
-/obj/machinery/door/airlock/maintenance{
- name = "Cargo Bay Warehouse Maintenance";
- req_access_txt = "31"
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plating,
-/area/quartermaster/storage)
-"aGV" = (
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plating,
-/area/maintenance/department/cargo)
-"aGW" = (
-/obj/effect/spawner/lootdrop/grille_or_trash,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plating,
-/area/maintenance/department/cargo)
-"aGX" = (
-/obj/structure/girder,
-/turf/open/floor/plating,
-/area/maintenance/department/cargo)
-"aGY" = (
-/obj/structure/grille,
-/obj/structure/window/fulltile,
-/turf/open/floor/plating,
-/area/maintenance/department/cargo)
-"aGZ" = (
-/obj/item/weapon/storage/box/mousetraps,
-/turf/open/floor/plating,
-/area/maintenance/department/cargo)
-"aHa" = (
-/turf/closed/wall,
-/area/maintenance/disposal)
-"aHb" = (
-/obj/machinery/door/poddoor{
- id = "trash";
- name = "disposal bay door"
- },
-/turf/open/floor/plating,
-/area/maintenance/disposal)
-"aHc" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/maintenance/disposal)
-"aHd" = (
-/obj/machinery/door/airlock/glass{
- name = "Emergency Shuttle Brig";
- req_access_txt = "2"
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/escape)
-"aHe" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-22"
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/escape)
-"aHf" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/hallway/secondary/exit/departure_lounge)
-"aHg" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 4
- },
-/turf/open/floor/plasteel/red/side{
- dir = 10
- },
-/area/hallway/secondary/exit/departure_lounge)
-"aHh" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/red/side,
-/area/hallway/secondary/exit/departure_lounge)
-"aHi" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 10
- },
-/turf/open/floor/plasteel/red/side,
-/area/hallway/secondary/exit/departure_lounge)
-"aHj" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on,
-/turf/open/floor/plasteel/red/side{
- dir = 6
- },
-/area/hallway/secondary/exit/departure_lounge)
-"aHk" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel/neutral/corner,
-/area/hallway/primary/central)
-"aHl" = (
-/obj/structure/grille,
-/obj/structure/window/fulltile,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/storage/art)
-"aHm" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/easel,
-/obj/item/weapon/canvas/twentythreeXnineteen,
-/turf/open/floor/plasteel/neutral/side{
- dir = 9
- },
-/area/storage/art)
-"aHn" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/storage/art)
-"aHo" = (
-/obj/machinery/photocopier,
-/obj/machinery/airalarm{
- dir = 8;
- pixel_x = 23
- },
-/turf/open/floor/plasteel/neutral/side{
- dir = 5
- },
-/area/storage/art)
-"aHp" = (
-/obj/structure/table,
-/obj/item/weapon/reagent_containers/food/snacks/friedegg,
-/obj/item/weapon/kitchen/fork,
-/turf/open/floor/plasteel/neutral/side{
- dir = 9
- },
-/area/crew_quarters/cafeteria/lunchroom)
-"aHq" = (
-/obj/structure/chair{
- dir = 8;
- name = "Defense"
- },
-/obj/effect/landmark/start/assistant,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/neutral/side{
- dir = 1
- },
-/area/crew_quarters/cafeteria/lunchroom)
-"aHr" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/cafeteria/lunchroom)
-"aHs" = (
-/obj/machinery/airalarm{
- pixel_y = 22
- },
-/obj/machinery/vending/cola,
-/turf/open/floor/plasteel/neutral/side{
- dir = 5
- },
-/area/crew_quarters/cafeteria/lunchroom)
-"aHt" = (
-/obj/structure/sink{
- dir = 8;
- pixel_x = -12;
- pixel_y = 2
- },
-/obj/machinery/airalarm{
- pixel_y = 22
- },
-/obj/effect/landmark/xeno_spawn,
-/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/toilet/auxiliary)
-"aHu" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/toilet/auxiliary)
-"aHv" = (
-/obj/structure/urinal{
- pixel_y = 32
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/machinery/button/door{
- id = "Potty1";
- name = "Bathroom Bolt Control";
- normaldoorcontrol = 1;
- pixel_x = 25;
- pixel_y = 4;
- req_access_txt = "0";
- specialfunctions = 4
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 1
- },
-/obj/machinery/light_switch{
- pixel_x = 36;
- pixel_y = 6
- },
-/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/toilet/auxiliary)
-"aHw" = (
-/obj/machinery/portable_atmospherics/canister/air,
-/turf/open/floor/plating,
-/area/maintenance/department/crew_quarters/bar)
-"aHx" = (
-/obj/structure/closet/coffin,
-/turf/open/floor/plating,
-/area/maintenance/department/crew_quarters/bar)
-"aHy" = (
-/obj/machinery/light/small{
- dir = 1
- },
-/turf/open/floor/plating{
- broken = 1;
- icon_state = "platingdmg3"
- },
-/area/maintenance/department/crew_quarters/bar)
-"aHz" = (
-/obj/structure/reagent_dispensers/fueltank,
-/turf/open/floor/plating{
- icon_state = "panelscorched"
- },
-/area/maintenance/department/crew_quarters/bar)
-"aHA" = (
-/turf/open/floor/plating,
-/area/maintenance/department/crew_quarters/bar)
-"aHB" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating{
- broken = 1;
- icon_state = "platingdmg3"
- },
-/area/maintenance/department/crew_quarters/bar)
-"aHC" = (
-/obj/structure/closet/crate,
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/open/floor/plating,
-/area/maintenance/department/crew_quarters/bar)
-"aHD" = (
-/obj/machinery/space_heater,
-/turf/open/floor/plating{
- burnt = 1;
- icon_state = "panelscorched"
- },
-/area/maintenance/department/crew_quarters/bar)
-"aHE" = (
-/obj/structure/girder,
-/turf/open/floor/plating{
- broken = 1;
- icon_state = "platingdmg3"
- },
-/area/maintenance/department/crew_quarters/bar)
-"aHF" = (
-/obj/structure/reagent_dispensers/fueltank,
-/obj/machinery/button/door{
- id = "evashutter";
- name = "EVA Shutters Control";
- pixel_x = -24;
- req_access_txt = "18"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/turf/open/floor/plasteel/black,
-/area/storage/eva)
-"aHG" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/storage/eva)
-"aHH" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/storage/eva)
-"aHI" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/storage/eva)
-"aHJ" = (
-/obj/structure/closet/crate/rcd,
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/floor/plasteel/black,
-/area/storage/eva)
-"aHK" = (
-/turf/closed/wall,
-/area/storage/eva)
-"aHL" = (
-/obj/machinery/power/apc{
- dir = 8;
- name = "Teleporter APC";
- pixel_x = -24
- },
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/obj/machinery/airalarm{
- pixel_y = 22
- },
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-14";
- layer = 4.1
- },
-/turf/open/floor/plasteel/blue/corner{
- dir = 1
- },
-/area/teleporter)
-"aHM" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/turf/open/floor/plasteel/blue/corner{
- dir = 1
- },
-/area/teleporter)
-"aHN" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel,
-/area/teleporter)
-"aHO" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/turf/open/floor/plasteel/blue/corner{
- dir = 4
- },
-/area/teleporter)
-"aHP" = (
-/obj/structure/closet/crate,
-/obj/machinery/button/door{
- id = "teleshutter";
- name = "Teleporter Shutters Control";
- pixel_x = 25;
- pixel_y = -5;
- req_access_txt = "17"
- },
-/turf/open/floor/plasteel/blue/corner{
- dir = 4
- },
-/area/teleporter)
-"aHQ" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/brown/corner{
- dir = 1
- },
-/area/hallway/primary/central)
-"aHR" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/brown/corner{
- dir = 4
- },
-/area/hallway/primary/central)
-"aHS" = (
-/obj/item/weapon/pen,
-/obj/structure/table,
-/obj/machinery/requests_console{
- department = "Security";
- departmentType = 5;
- pixel_x = -32
- },
-/obj/structure/reagent_dispensers/peppertank{
- pixel_y = 30
- },
-/obj/item/weapon/paper_bin{
- layer = 2.9
- },
-/turf/open/floor/plasteel/red/side{
- dir = 9
- },
-/area/security/checkpoint/supply)
-"aHT" = (
-/obj/machinery/computer/security/mining,
-/obj/machinery/light{
- dir = 1
- },
-/obj/machinery/camera{
- c_tag = "Cargo Security Post";
- dir = 2;
- network = list("SS13")
- },
-/obj/machinery/airalarm{
- pixel_y = 22
- },
-/turf/open/floor/plasteel/red/side{
- dir = 1
- },
-/area/security/checkpoint/supply)
-"aHU" = (
-/obj/machinery/computer/secure_data,
-/obj/item/device/radio/intercom{
- dir = 0;
- name = "Station Intercom (General)";
- pixel_y = 26
- },
-/turf/open/floor/plasteel/red/side{
- dir = 5
- },
-/area/security/checkpoint/supply)
-"aHV" = (
-/obj/machinery/conveyor{
- dir = 4;
- id = "packageSort2"
- },
-/obj/structure/disposaloutlet{
- dir = 4
- },
-/obj/structure/disposalpipe/trunk,
-/turf/open/floor/plating,
-/area/quartermaster/office)
-"aHW" = (
-/obj/machinery/conveyor{
- dir = 4;
- id = "packageSort2"
- },
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/open/floor/plating,
-/area/quartermaster/office)
-"aHX" = (
-/obj/machinery/conveyor{
- dir = 4;
- id = "packageSort2"
- },
-/obj/effect/spawner/lootdrop/maintenance,
-/obj/machinery/status_display{
- density = 0;
- layer = 4;
- pixel_y = 30;
- supply_display = 1
- },
-/turf/open/floor/plating,
-/area/quartermaster/office)
-"aHY" = (
-/obj/machinery/conveyor{
- dir = 4;
- id = "packageSort2"
- },
-/obj/effect/spawner/lootdrop/maintenance,
-/obj/machinery/light{
- dir = 1
- },
-/obj/structure/sign/poster/official/random{
- pixel_y = 32
- },
-/turf/open/floor/plating,
-/area/quartermaster/office)
-"aHZ" = (
-/obj/machinery/conveyor{
- dir = 4;
- id = "packageSort2"
- },
-/obj/effect/spawner/lootdrop/maintenance,
-/obj/machinery/computer/security/telescreen/entertainment{
- pixel_y = 32
- },
-/turf/open/floor/plating,
-/area/quartermaster/office)
-"aIa" = (
-/obj/machinery/conveyor{
- dir = 4;
- id = "packageSort2"
- },
-/turf/open/floor/plating,
-/area/quartermaster/office)
-"aIb" = (
-/obj/machinery/conveyor{
- dir = 4;
- id = "packageSort2"
- },
-/obj/structure/plasticflaps{
- opacity = 0
- },
-/obj/machinery/light/small{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/quartermaster/office)
-"aIc" = (
-/obj/machinery/disposal/deliveryChute{
- dir = 8
- },
-/obj/structure/disposalpipe/trunk{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/quartermaster/office)
-"aId" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/closed/wall,
-/area/quartermaster/storage)
-"aIe" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel/floorgrime,
-/area/quartermaster/storage)
-"aIf" = (
-/obj/effect/spawner/lootdrop/maintenance,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel/floorgrime,
-/area/quartermaster/storage)
-"aIg" = (
-/obj/structure/closet/crate,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel/floorgrime,
-/area/quartermaster/storage)
-"aIh" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/sign/poster/official/random{
- pixel_y = 32
- },
-/turf/open/floor/plasteel/floorgrime,
-/area/quartermaster/storage)
-"aIi" = (
-/obj/structure/closet/cardboard,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/light/small{
- dir = 1
- },
-/obj/machinery/camera{
- c_tag = "Cargo Warehouse";
- dir = 2
- },
-/turf/open/floor/plasteel/floorgrime,
-/area/quartermaster/storage)
-"aIj" = (
-/obj/item/weapon/cigbutt/cigarbutt,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel/floorgrime,
-/area/quartermaster/storage)
-"aIk" = (
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/turf/open/floor/plasteel/floorgrime,
-/area/quartermaster/storage)
-"aIl" = (
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/turf/open/floor/plating,
-/area/maintenance/department/cargo)
-"aIm" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 5
- },
-/turf/open/floor/plating,
-/area/maintenance/department/cargo)
-"aIn" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 9
- },
-/obj/effect/decal/cleanable/ash,
-/turf/open/floor/plating,
-/area/maintenance/department/cargo)
-"aIo" = (
-/obj/structure/grille/broken,
-/obj/structure/rack,
-/obj/effect/spawner/lootdrop/maintenance{
- lootcount = 2;
- name = "2maintenance loot spawner"
- },
-/obj/item/weapon/crowbar,
-/obj/machinery/light/small,
-/turf/open/floor/plating,
-/area/maintenance/department/cargo)
-"aIp" = (
+"cjF" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 1
},
/turf/open/floor/carpet,
/area/chapel/main/monastery)
-"aIq" = (
-/obj/machinery/space_heater,
-/turf/open/floor/plating,
-/area/maintenance/department/cargo)
-"aIr" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 5
- },
-/turf/open/floor/plating,
-/area/maintenance/department/cargo)
-"aIs" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/department/cargo)
-"aIt" = (
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 10
- },
-/obj/effect/decal/cleanable/cobweb{
- icon_state = "cobweb2"
- },
-/turf/open/floor/plating,
-/area/maintenance/department/cargo)
-"aIu" = (
-/obj/machinery/button/massdriver{
- id = "trash";
- pixel_y = 32
- },
-/obj/effect/turf_decal/stripes/line,
-/turf/open/floor/plating{
- icon_plating = "warnplate"
- },
-/area/maintenance/disposal)
-"aIv" = (
-/obj/machinery/conveyor_switch/oneway{
- convdir = 1;
- id = "garbagestacked";
- name = "disposal conveyor"
- },
-/obj/effect/turf_decal/stripes/line,
-/turf/open/floor/plating{
- icon_plating = "warnplate"
- },
-/area/maintenance/disposal)
-"aIw" = (
-/obj/effect/turf_decal/stripes/line,
-/turf/open/floor/plating{
- icon_plating = "warnplate"
- },
-/area/maintenance/disposal)
-"aIx" = (
-/obj/effect/turf_decal/stripes/corner{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/maintenance/disposal)
-"aIy" = (
-/turf/open/floor/mineral/titanium,
-/area/shuttle/escape)
-"aIz" = (
-/obj/machinery/door/airlock/glass_security{
- name = "Holding Area";
- req_access_txt = "2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/red,
-/area/hallway/secondary/exit/departure_lounge)
-"aIA" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/door/airlock/maintenance{
- req_access_txt = "12"
- },
-/turf/open/floor/plating,
-/area/hallway/secondary/exit/departure_lounge)
-"aIB" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"aIC" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"aID" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/neutral/corner,
-/area/hallway/primary/central)
-"aIE" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/closed/wall,
-/area/storage/art)
-"aIF" = (
-/obj/structure/table,
-/obj/item/stack/cable_coil/random{
- layer = 3.4
- },
-/obj/item/stack/cable_coil/random{
- layer = 3.3
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/item/stack/cable_coil/random{
- layer = 3.2
- },
-/obj/item/stack/cable_coil/random{
- layer = 3.1
- },
-/turf/open/floor/plasteel/neutral/side{
- dir = 8
- },
-/area/storage/art)
-"aIG" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/storage/art)
-"aIH" = (
-/obj/structure/table,
-/obj/item/weapon/airlock_painter,
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/machinery/power/apc{
- dir = 4;
- name = "Art Storage APC";
- pixel_x = 24
- },
-/turf/open/floor/plasteel/neutral/side{
- dir = 4
- },
-/area/storage/art)
-"aII" = (
-/obj/structure/chair{
- dir = 1
- },
-/turf/open/floor/plasteel/neutral/side{
- dir = 10
- },
-/area/crew_quarters/cafeteria/lunchroom)
-"aIJ" = (
-/obj/machinery/light,
-/obj/machinery/camera{
- c_tag = "Lunchroom";
- dir = 1
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 1
- },
-/obj/item/device/radio/intercom{
- name = "Station Intercom (General)";
- pixel_y = -28
- },
-/turf/open/floor/plasteel/neutral/side,
-/area/crew_quarters/cafeteria/lunchroom)
-"aIK" = (
-/obj/structure/cable,
-/obj/machinery/power/apc{
- dir = 2;
- name = "Cafeteria APC";
- pixel_y = -24
- },
-/turf/open/floor/plasteel/neutral/side,
-/area/crew_quarters/cafeteria/lunchroom)
-"aIL" = (
-/obj/machinery/vending/sustenance{
- contraband = list(/obj/item/weapon/kitchen/knife = 6, /obj/item/weapon/reagent_containers/food/drinks/coffee = 12);
- desc = "A vending machine which vends food.";
- product_ads = "Sufficiently healthy."
- },
-/turf/open/floor/plasteel/neutral/side{
- dir = 6
- },
-/area/crew_quarters/cafeteria/lunchroom)
-"aIM" = (
-/obj/structure/toilet{
- dir = 4
- },
-/obj/effect/landmark/start/assistant,
-/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/toilet/auxiliary)
-"aIN" = (
-/obj/machinery/light/small,
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 1
- },
-/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/toilet/auxiliary)
-"aIO" = (
-/obj/structure/cable,
-/obj/machinery/power/apc{
- cell_type = 5000;
- dir = 2;
- name = "Auxiliary Restrooms APC";
- pixel_y = -24
- },
-/obj/item/weapon/soap/nanotrasen,
-/obj/machinery/shower{
- dir = 8
- },
-/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/toilet/auxiliary)
-"aIP" = (
-/obj/structure/reagent_dispensers/watertank,
-/turf/open/floor/plating{
- burnt = 1;
- icon_state = "panelscorched"
- },
-/area/maintenance/department/crew_quarters/bar)
-"aIQ" = (
-/obj/item/weapon/storage/box/lights/mixed,
-/turf/open/floor/plating,
-/area/maintenance/department/crew_quarters/bar)
-"aIR" = (
-/obj/item/weapon/extinguisher,
-/turf/open/floor/plating{
- icon_state = "panelscorched"
- },
-/area/maintenance/department/crew_quarters/bar)
-"aIS" = (
-/obj/structure/grille/broken,
-/obj/item/weapon/crowbar,
-/turf/open/floor/plating{
- broken = 1;
- icon_state = "platingdmg3"
- },
-/area/maintenance/department/crew_quarters/bar)
-"aIT" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating,
-/area/maintenance/department/crew_quarters/bar)
-"aIU" = (
-/obj/machinery/light/small{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/maintenance/department/crew_quarters/bar)
-"aIV" = (
-/obj/item/trash/pistachios,
-/turf/open/floor/plating,
-/area/maintenance/department/crew_quarters/bar)
-"aIW" = (
-/obj/structure/grille,
-/turf/open/floor/plating,
-/area/maintenance/department/crew_quarters/bar)
-"aIX" = (
-/obj/item/weapon/shard{
- icon_state = "small"
- },
-/turf/open/floor/plating,
-/area/maintenance/department/crew_quarters/bar)
-"aIY" = (
-/obj/structure/rack,
-/obj/effect/spawner/lootdrop/maintenance{
- lootcount = 2;
- name = "2maintenance loot spawner"
- },
-/turf/open/floor/plating{
- broken = 1;
- icon_state = "platingdmg3"
- },
-/area/maintenance/department/crew_quarters/bar)
-"aIZ" = (
-/obj/structure/rack{
- dir = 8;
- layer = 2.9
- },
-/obj/item/clothing/shoes/magboots{
- pixel_x = -4;
- pixel_y = 3
- },
-/obj/item/clothing/shoes/magboots,
-/obj/item/device/radio/intercom{
- dir = 0;
- name = "Station Intercom (General)";
- pixel_x = -27
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/turf/open/floor/plasteel/black,
-/area/storage/eva)
-"aJa" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/storage/eva)
-"aJb" = (
-/obj/structure/table,
-/obj/machinery/cell_charger,
-/obj/item/weapon/stock_parts/cell/high{
- charge = 100;
- maxcharge = 15000
- },
-/obj/item/weapon/stock_parts/cell/high{
- charge = 100;
- maxcharge = 15000
- },
-/obj/effect/turf_decal/stripes/end{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/storage/eva)
-"aJc" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
-/area/storage/eva)
-"aJd" = (
-/obj/structure/rack{
- dir = 8;
- layer = 2.9
- },
-/obj/item/weapon/tank/jetpack/carbondioxide,
-/obj/item/weapon/tank/jetpack/carbondioxide{
- pixel_x = -4;
- pixel_y = 1
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/floor/plasteel/black,
-/area/storage/eva)
-"aJe" = (
-/obj/structure/closet/crate,
-/obj/item/weapon/melee/flyswatter,
-/obj/item/device/radio/intercom{
- dir = 0;
- name = "Station Intercom (General)";
- pixel_x = -27
- },
-/turf/open/floor/plasteel/blue/corner{
- dir = 1
- },
-/area/teleporter)
-"aJf" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel,
-/area/teleporter)
-"aJg" = (
-/obj/machinery/holopad,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plasteel,
-/area/teleporter)
-"aJh" = (
-/turf/open/floor/plasteel,
-/area/teleporter)
-"aJi" = (
-/turf/open/floor/plasteel/blue/corner{
- dir = 4
- },
-/area/teleporter)
-"aJj" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/poddoor/shutters{
- id = "teleshutter";
- name = "Teleporter Shutters"
- },
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plasteel,
-/area/teleporter)
-"aJk" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel/brown/corner{
- dir = 1
- },
-/area/hallway/primary/central)
-"aJl" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"aJm" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/brown/corner{
- dir = 4
- },
-/area/hallway/primary/central)
-"aJn" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/security/checkpoint/supply)
-"aJo" = (
-/obj/machinery/recharger{
- pixel_y = 4
- },
-/obj/structure/table,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/red/side{
- dir = 8
- },
-/area/security/checkpoint/supply)
-"aJp" = (
-/obj/structure/chair/office/dark{
- dir = 1
- },
-/obj/effect/landmark/start/depsec/supply,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/security/checkpoint/supply)
-"aJq" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 8
- },
-/turf/open/floor/plasteel/red/side{
- dir = 4
- },
-/area/security/checkpoint/supply)
-"aJr" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/structure/disposalpipe/wrapsortjunction{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/quartermaster/office)
-"aJs" = (
-/obj/structure/disposalpipe/segment,
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"aJt" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"aJu" = (
-/obj/machinery/conveyor_switch/oneway{
- id = "packageSort2"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"aJv" = (
-/obj/structure/table,
-/obj/item/device/destTagger,
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"aJw" = (
-/obj/item/stack/wrapping_paper{
- pixel_x = 3;
- pixel_y = 4
- },
-/obj/item/stack/packageWrap{
- pixel_x = -1;
- pixel_y = -1
- },
-/obj/structure/table,
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"aJx" = (
-/obj/item/weapon/storage/box,
-/obj/item/weapon/storage/box,
-/obj/item/weapon/storage/box,
-/obj/item/weapon/hand_labeler,
-/obj/item/weapon/hand_labeler,
-/obj/structure/table,
-/obj/machinery/requests_console{
- department = "Cargo Bay";
- departmentType = 2;
- pixel_x = 32
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"aJy" = (
-/obj/structure/closet/crate/freezer,
-/obj/structure/sign/poster/official/random{
- pixel_x = -32
- },
-/turf/open/floor/plasteel/floorgrime,
-/area/quartermaster/storage)
-"aJz" = (
-/turf/open/floor/plasteel/floorgrime,
-/area/quartermaster/storage)
-"aJA" = (
-/obj/structure/closet/crate,
-/turf/open/floor/plasteel/floorgrime,
-/area/quartermaster/storage)
-"aJB" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/maintenance/department/cargo)
-"aJC" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plating,
-/area/maintenance/department/cargo)
-"aJD" = (
-/obj/machinery/mass_driver{
- dir = 1;
- id = "trash"
- },
-/obj/machinery/button/massdriver{
- id = "trash";
- pixel_x = -28
- },
-/turf/open/floor/plating,
-/area/maintenance/disposal)
-"aJE" = (
-/obj/machinery/mineral/stacking_machine{
- input_dir = 8;
- output_dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/disposal)
-"aJF" = (
-/obj/machinery/conveyor{
- dir = 4;
- id = "garbagestacked"
- },
-/obj/machinery/mineral/stacking_unit_console{
- dir = 2;
- machinedir = 8;
- pixel_x = -32;
- pixel_y = 32
- },
-/turf/open/floor/plating,
-/area/maintenance/disposal)
-"aJG" = (
-/obj/machinery/conveyor{
- dir = 4;
- id = "garbagestacked"
- },
-/turf/open/floor/plating,
-/area/maintenance/disposal)
-"aJH" = (
-/obj/machinery/disposal/deliveryChute{
- dir = 8
- },
-/obj/structure/disposalpipe/trunk{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/disposal)
-"aJI" = (
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/maintenance/disposal)
-"aJJ" = (
-/obj/structure/chair{
- dir = 4
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/escape)
-"aJK" = (
-/obj/structure/chair{
- dir = 8
- },
-/obj/structure/window/reinforced{
- dir = 4
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/escape)
-"aJL" = (
-/obj/structure/chair{
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/escape)
-"aJM" = (
-/turf/open/floor/carpet,
-/area/shuttle/escape)
-"aJN" = (
-/obj/structure/chair/comfy/beige,
-/turf/open/floor/carpet,
-/area/shuttle/escape)
-"aJO" = (
-/obj/structure/chair{
- dir = 8
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/escape)
-"aJP" = (
-/obj/structure/chair,
-/turf/open/floor/plasteel/escape{
- dir = 1
- },
-/area/hallway/secondary/exit/departure_lounge)
-"aJQ" = (
-/obj/structure/chair,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 6
- },
-/turf/open/floor/plasteel/escape{
- dir = 1
- },
-/area/hallway/secondary/exit/departure_lounge)
-"aJR" = (
-/obj/machinery/light{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/escape{
- dir = 1
- },
-/area/hallway/secondary/exit/departure_lounge)
-"aJS" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 9
- },
-/turf/open/floor/plasteel/escape{
- dir = 1
- },
-/area/hallway/secondary/exit/departure_lounge)
-"aJT" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-16";
- layer = 4.1
- },
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/machinery/power/apc{
- cell_type = 5000;
- dir = 4;
- name = "Departure Lounge APC";
- pixel_x = 24
- },
-/obj/machinery/firealarm{
- dir = 1;
- pixel_y = 29
- },
-/turf/open/floor/plasteel/escape{
- dir = 5
- },
-/area/hallway/secondary/exit/departure_lounge)
-"aJU" = (
-/obj/structure/table,
-/obj/item/weapon/hand_labeler,
-/turf/open/floor/plasteel/neutral/side{
- dir = 10
- },
-/area/storage/art)
-"aJV" = (
-/obj/structure/table,
-/obj/item/weapon/storage/crayons,
-/obj/item/weapon/storage/crayons,
-/obj/machinery/light,
-/obj/machinery/camera{
- c_tag = "Art Storage";
- dir = 1
- },
-/turf/open/floor/plasteel/neutral/side,
-/area/storage/art)
-"aJW" = (
-/obj/structure/table,
-/obj/item/stack/sheet/metal{
- amount = 20;
- layer = 3.1
- },
-/obj/item/stack/sheet/glass{
- amount = 20;
- layer = 3.2
- },
-/obj/item/stack/rods{
- amount = 20;
- layer = 3.3
- },
-/obj/item/weapon/canvas/twentythreeXtwentythree,
-/obj/item/weapon/canvas/nineteenXnineteen,
-/turf/open/floor/plasteel/neutral/side{
- dir = 6
- },
-/area/storage/art)
-"aJX" = (
-/obj/structure/grille/broken,
-/turf/open/floor/plating{
- burnt = 1;
- icon_state = "panelscorched"
- },
-/area/maintenance/department/crew_quarters/bar)
-"aJY" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/maintenance/department/crew_quarters/bar)
-"aJZ" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/department/crew_quarters/bar)
-"aKa" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 10
- },
-/turf/open/floor/plating,
-/area/maintenance/department/crew_quarters/bar)
-"aKb" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/turf/open/floor/plating,
-/area/maintenance/department/crew_quarters/bar)
-"aKc" = (
-/obj/machinery/suit_storage_unit/standard_unit,
-/obj/machinery/light{
- dir = 8
- },
-/obj/machinery/requests_console{
- department = "EVA";
- pixel_x = -32
- },
-/obj/machinery/camera{
- c_tag = "EVA Storage";
- dir = 4;
- network = list("SS13")
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/turf/open/floor/plasteel/black,
-/area/storage/eva)
-"aKd" = (
-/obj/structure/tank_dispenser/oxygen,
-/obj/effect/turf_decal/stripes/end,
-/turf/open/floor/plasteel,
-/area/storage/eva)
-"aKe" = (
-/obj/machinery/suit_storage_unit/standard_unit,
-/obj/machinery/light{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/floor/plasteel/black,
-/area/storage/eva)
-"aKf" = (
-/obj/structure/table,
-/obj/item/weapon/hand_tele,
-/obj/machinery/light{
- dir = 8
- },
-/obj/machinery/camera{
- c_tag = "Teleporter";
- dir = 4;
- network = list("SS13")
- },
-/obj/structure/extinguisher_cabinet{
- pixel_x = -26
- },
-/turf/open/floor/plasteel/blue/corner{
- dir = 1
- },
-/area/teleporter)
-"aKg" = (
-/obj/structure/chair/stool,
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/teleporter)
-"aKh" = (
-/obj/structure/chair/stool,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 9
- },
-/turf/open/floor/plasteel,
-/area/teleporter)
-"aKi" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/teleporter)
-"aKj" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/blue/corner{
- dir = 4
- },
-/area/teleporter)
-"aKk" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/poddoor/shutters{
- id = "teleshutter";
- name = "Teleporter Shutters"
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plasteel,
-/area/teleporter)
-"aKl" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/brown/corner{
- dir = 1
- },
-/area/hallway/primary/central)
-"aKm" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"aKn" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/brown/corner{
- dir = 4
- },
-/area/hallway/primary/central)
-"aKo" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plating,
-/area/security/checkpoint/supply)
-"aKp" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/turf/open/floor/plasteel/red/side{
- dir = 8
- },
-/area/security/checkpoint/supply)
-"aKq" = (
-/turf/open/floor/plasteel,
-/area/security/checkpoint/supply)
-"aKr" = (
-/turf/open/floor/plasteel/red/side{
- dir = 4
- },
-/area/security/checkpoint/supply)
-"aKs" = (
-/obj/machinery/door/airlock/glass_security{
- name = "Cargo Security Post";
- req_access_txt = "63"
- },
-/turf/open/floor/plasteel/red/side{
- dir = 8
- },
-/area/quartermaster/office)
-"aKt" = (
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"aKu" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"aKv" = (
-/obj/structure/chair/stool,
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/obj/effect/landmark/start/cargo_technician,
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"aKw" = (
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"aKx" = (
-/obj/machinery/door/window/eastleft{
- dir = 8;
- icon_state = "right";
- name = "Mail";
- req_access_txt = "50"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/light/small,
-/turf/open/floor/plating,
-/area/quartermaster/office)
-"aKy" = (
-/obj/structure/disposalpipe/trunk{
- dir = 8
- },
-/obj/structure/disposaloutlet{
- dir = 8
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/quartermaster/office)
-"aKz" = (
-/obj/effect/spawner/lootdrop/maintenance,
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
-/turf/open/floor/plasteel/floorgrime,
-/area/quartermaster/storage)
-"aKA" = (
-/obj/item/stack/sheet/cardboard,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 6
- },
-/turf/open/floor/plasteel/floorgrime,
-/area/quartermaster/storage)
-"aKB" = (
-/obj/structure/closet/crate,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/floorgrime,
-/area/quartermaster/storage)
-"aKC" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/floorgrime,
-/area/quartermaster/storage)
-"aKD" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 8
- },
-/turf/open/floor/plasteel/floorgrime,
-/area/quartermaster/storage)
-"aKE" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/quartermaster/storage)
-"aKF" = (
-/obj/structure/shuttle/engine/propulsion/right,
-/turf/open/floor/plating/airless,
-/area/shuttle/supply)
-"aKG" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/item/weapon/shard,
-/turf/open/floor/plating,
-/area/maintenance/department/cargo)
-"aKH" = (
-/obj/machinery/light/small{
- dir = 8
- },
-/obj/machinery/conveyor{
- dir = 2;
- id = "garbage"
- },
-/turf/open/floor/plating,
-/area/maintenance/disposal)
-"aKI" = (
-/obj/machinery/conveyor{
- dir = 4;
- id = "garbage"
- },
-/turf/open/floor/plating,
-/area/maintenance/disposal)
-"aKJ" = (
-/obj/machinery/light/small{
- dir = 4
- },
-/obj/structure/disposalpipe/segment,
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/maintenance/disposal)
-"aKK" = (
-/obj/structure/chair/comfy/beige{
- dir = 4
- },
-/turf/open/floor/carpet,
-/area/shuttle/escape)
-"aKL" = (
-/obj/structure/table/wood/poker,
-/obj/item/toy/cards/deck,
-/turf/open/floor/carpet,
-/area/shuttle/escape)
-"aKM" = (
-/obj/structure/chair/comfy/beige{
- dir = 8
- },
-/turf/open/floor/carpet,
-/area/shuttle/escape)
-"aKN" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit/departure_lounge)
-"aKO" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit/departure_lounge)
-"aKP" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit/departure_lounge)
-"aKQ" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass{
- name = "Departure Lounge"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit/departure_lounge)
-"aKR" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 1
- },
-/turf/open/floor/carpet,
-/area/chapel/main/monastery)
-"aKS" = (
-/obj/machinery/light/small{
- dir = 1
- },
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-22"
- },
-/turf/open/floor/plating,
-/area/maintenance/department/crew_quarters/bar)
-"aKT" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-22"
- },
-/turf/open/floor/plating{
- broken = 1;
- icon_state = "platingdmg3"
- },
-/area/maintenance/department/crew_quarters/bar)
-"aKU" = (
-/turf/open/floor/plating{
- broken = 1;
- icon_state = "platingdmg3"
- },
-/area/maintenance/department/crew_quarters/bar)
-"aKV" = (
-/obj/item/trash/cheesie,
-/turf/open/floor/plating,
-/area/maintenance/department/crew_quarters/bar)
-"aKW" = (
-/obj/structure/girder,
-/turf/open/floor/plating,
-/area/maintenance/department/crew_quarters/bar)
-"aKX" = (
-/obj/structure/rack,
-/obj/effect/spawner/lootdrop/maintenance{
- lootcount = 2;
- name = "2maintenance loot spawner"
- },
-/obj/item/clothing/gloves/color/random,
-/turf/open/floor/plating,
-/area/maintenance/department/crew_quarters/bar)
-"aKY" = (
-/obj/machinery/power/apc{
- dir = 1;
- name = "Bar Maintenance APC";
- pixel_y = 24
- },
-/obj/structure/cable{
- icon_state = "0-2";
- pixel_y = 1;
- d2 = 2
- },
-/turf/open/floor/plating,
-/area/maintenance/department/crew_quarters/bar)
-"aKZ" = (
-/turf/closed/wall,
-/area/crew_quarters/bar)
-"aLa" = (
-/obj/structure/grille/broken,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating,
-/area/maintenance/department/crew_quarters/bar)
-"aLb" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/maintenance/department/crew_quarters/bar)
-"aLc" = (
-/obj/machinery/suit_storage_unit/standard_unit,
-/obj/structure/extinguisher_cabinet{
- pixel_x = -26
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/turf/open/floor/plasteel/black,
-/area/storage/eva)
-"aLd" = (
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/storage/eva)
-"aLe" = (
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/turf/open/floor/plasteel,
-/area/storage/eva)
-"aLf" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/storage/eva)
-"aLg" = (
-/obj/machinery/suit_storage_unit/standard_unit,
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/floor/plasteel/black,
-/area/storage/eva)
-"aLh" = (
-/obj/structure/table,
-/obj/item/device/radio/beacon,
-/turf/open/floor/plasteel/blue/side{
- dir = 10
- },
-/area/teleporter)
-"aLi" = (
-/obj/machinery/computer/teleporter,
-/turf/open/floor/plasteel/blue/side,
-/area/teleporter)
-"aLj" = (
-/obj/machinery/teleport/station,
-/turf/open/floor/plasteel/blue/side,
-/area/teleporter)
-"aLk" = (
-/obj/machinery/teleport/hub,
-/turf/open/floor/plating,
-/area/teleporter)
-"aLl" = (
-/obj/structure/closet/crate,
-/obj/item/weapon/crowbar,
-/turf/open/floor/plasteel/blue/side{
- dir = 6
- },
-/area/teleporter)
-"aLm" = (
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"aLn" = (
-/obj/machinery/light{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/brown/corner{
- dir = 4
- },
-/area/hallway/primary/central)
-"aLo" = (
-/obj/structure/cable,
-/obj/machinery/power/apc{
- dir = 8;
- name = "Security Post - Cargo APC";
- pixel_x = -24
- },
-/obj/structure/closet/wardrobe/red,
-/turf/open/floor/plasteel/red/side{
- dir = 10
- },
-/area/security/checkpoint/supply)
-"aLp" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
-/turf/open/floor/plasteel/red/side,
-/area/security/checkpoint/supply)
-"aLq" = (
-/obj/structure/filingcabinet,
-/turf/open/floor/plasteel/red/side{
- dir = 6
- },
-/area/security/checkpoint/supply)
-"aLr" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/quartermaster/office)
-"aLs" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"aLt" = (
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"aLu" = (
-/obj/machinery/holopad,
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"aLv" = (
-/obj/structure/disposalpipe/wrapsortjunction{
- dir = 1
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"aLw" = (
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/obj/machinery/camera{
- c_tag = "Cargo Mailroom";
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 10
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"aLx" = (
-/obj/machinery/button/door{
- id = "qm_warehouse";
- name = "Warehouse Door Control";
- pixel_x = -24;
- req_access_txt = "31"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/floorgrime,
-/area/quartermaster/storage)
-"aLy" = (
-/obj/item/device/flashlight,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/floorgrime,
-/area/quartermaster/storage)
-"aLz" = (
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/open/floor/plasteel/floorgrime,
-/area/quartermaster/storage)
-"aLA" = (
-/obj/structure/closet/crate{
- icon_state = "crateopen";
- opened = 1
- },
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/open/floor/plasteel/floorgrime,
-/area/quartermaster/storage)
-"aLB" = (
-/obj/structure/closet/crate/medical,
-/turf/open/floor/plasteel/floorgrime,
-/area/quartermaster/storage)
-"aLC" = (
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/supply)
-"aLD" = (
-/obj/structure/shuttle/engine/heater{
- dir = 1
- },
-/obj/structure/window/reinforced,
-/turf/open/floor/plating/airless,
-/area/shuttle/supply)
-"aLE" = (
-/obj/structure/disposalpipe/sortjunction{
- dir = 2;
- icon_state = "pipe-j2s";
- sortType = 1
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plating,
-/area/maintenance/department/cargo)
-"aLF" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/closed/wall,
-/area/maintenance/disposal)
-"aLG" = (
-/obj/machinery/conveyor{
- dir = 8;
- id = "garbage"
- },
-/obj/structure/disposaloutlet{
- dir = 4
- },
-/obj/structure/disposalpipe/trunk{
- dir = 8
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/disposal)
-"aLH" = (
-/obj/machinery/conveyor{
- dir = 8;
- id = "garbage"
- },
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/turf/open/floor/plating,
-/area/maintenance/disposal)
-"aLI" = (
-/obj/machinery/conveyor{
- dir = 8;
- id = "garbage"
- },
-/obj/machinery/recycler,
-/turf/open/floor/plating,
-/area/maintenance/disposal)
-"aLJ" = (
-/obj/machinery/conveyor{
- dir = 2;
- id = "garbage"
- },
-/turf/open/floor/plating,
-/area/maintenance/disposal)
-"aLK" = (
-/obj/structure/disposalpipe/segment,
-/obj/effect/landmark/revenantspawn,
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/maintenance/disposal)
-"aLL" = (
-/obj/structure/chair/comfy/beige{
- dir = 1
- },
-/turf/open/floor/carpet,
-/area/shuttle/escape)
-"aLM" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit/departure_lounge)
-"aLN" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit/departure_lounge)
-"aLO" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit/departure_lounge)
-"aLP" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit/departure_lounge)
-"aLQ" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass{
- name = "Departure Lounge"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit/departure_lounge)
-"aLR" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"aLS" = (
-/obj/structure/disposalpipe/junction{
- dir = 8;
- icon_state = "pipe-j2"
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"aLT" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/neutral/corner,
-/area/hallway/primary/central)
-"aLU" = (
-/obj/machinery/disposal/bin,
-/obj/structure/disposalpipe/trunk{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"aLV" = (
-/obj/structure/grille/broken,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 6
- },
-/turf/open/floor/plating,
-/area/maintenance/department/crew_quarters/bar)
-"aLW" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/department/crew_quarters/bar)
-"aLX" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/department/crew_quarters/bar)
-"aLY" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 10
- },
-/turf/open/floor/plating{
- broken = 1;
- icon_state = "platingdmg3"
- },
-/area/maintenance/department/crew_quarters/bar)
-"aLZ" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/landmark/blobstart,
-/turf/open/floor/plating{
- burnt = 1;
- icon_state = "panelscorched"
- },
-/area/maintenance/department/crew_quarters/bar)
-"aMa" = (
-/obj/structure/closet,
-/obj/effect/spawner/lootdrop/maintenance,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plating{
- burnt = 1;
- icon_state = "panelscorched"
- },
-/area/maintenance/department/crew_quarters/bar)
-"aMb" = (
-/obj/structure/grille,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/department/crew_quarters/bar)
-"aMc" = (
-/obj/structure/grille/broken,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/department/crew_quarters/bar)
-"aMd" = (
-/obj/item/weapon/reagent_containers/glass/bucket,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/department/crew_quarters/bar)
-"aMe" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/department/crew_quarters/bar)
-"aMf" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 6
- },
-/turf/open/floor/plating,
-/area/maintenance/department/crew_quarters/bar)
-"aMg" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/department/crew_quarters/bar)
-"aMh" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating{
- broken = 1;
- icon_state = "platingdmg3"
- },
-/area/maintenance/department/crew_quarters/bar)
-"aMi" = (
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 9
- },
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/open/floor/plating,
-/area/maintenance/department/crew_quarters/bar)
-"aMj" = (
-/obj/machinery/reagentgrinder,
-/obj/structure/table/wood,
-/turf/open/floor/wood,
-/area/crew_quarters/bar)
-"aMk" = (
-/obj/machinery/vending/cigarette,
-/obj/machinery/light{
- dir = 1
- },
-/turf/open/floor/wood{
- icon_state = "wood-broken6"
- },
-/area/crew_quarters/bar)
-"aMl" = (
-/obj/machinery/vending/coffee,
-/obj/machinery/camera{
- c_tag = "Bar Backroom";
- dir = 2;
- network = list("SS13")
- },
-/turf/open/floor/wood,
-/area/crew_quarters/bar)
-"aMm" = (
-/obj/structure/closet/secure_closet/bar{
- req_access_txt = "25"
- },
-/turf/open/floor/wood,
-/area/crew_quarters/bar)
-"aMn" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating,
-/area/maintenance/department/crew_quarters/bar)
-"aMo" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/item/weapon/broken_bottle,
-/turf/open/floor/plating,
-/area/maintenance/department/crew_quarters/bar)
-"aMp" = (
-/obj/structure/table,
-/obj/item/stack/sheet/plasteel{
- amount = 10
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/turf/open/floor/plasteel/black,
-/area/storage/eva)
-"aMq" = (
-/obj/structure/table,
-/obj/item/stack/sheet/metal{
- amount = 50
- },
-/obj/item/stack/sheet/metal{
- amount = 50
- },
-/obj/item/weapon/crowbar,
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/obj/machinery/power/apc{
- dir = 2;
- name = "EVA Storage APC";
- pixel_y = -24
- },
-/turf/open/floor/plasteel,
-/area/storage/eva)
-"aMr" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel,
-/area/storage/eva)
-"aMs" = (
-/obj/structure/table,
-/obj/item/stack/sheet/rglass{
- amount = 50
- },
-/obj/item/stack/sheet/rglass{
- amount = 50
- },
-/obj/item/stack/rods{
- amount = 50
- },
-/obj/item/stack/rods{
- amount = 50
- },
-/obj/machinery/airalarm{
- dir = 1;
- pixel_y = -22
- },
-/turf/open/floor/plasteel,
-/area/storage/eva)
-"aMt" = (
-/obj/structure/table,
-/obj/item/stack/sheet/metal{
- amount = 50
- },
-/obj/item/stack/sheet/rglass{
- amount = 50
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/floor/plasteel/black,
-/area/storage/eva)
-"aMu" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/airalarm{
- dir = 4;
- pixel_x = -23
- },
-/turf/open/floor/plasteel/brown/corner{
- dir = 1
- },
-/area/hallway/primary/central)
-"aMv" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/security/checkpoint/supply)
-"aMw" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass_security{
- name = "Cargo Security Post";
- req_access_txt = "63"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/red/side{
- dir = 1
- },
-/area/security/checkpoint/supply)
-"aMx" = (
-/obj/structure/chair/stool,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"aMy" = (
-/obj/structure/chair/stool,
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"aMz" = (
-/obj/structure/table/reinforced,
-/obj/item/weapon/folder/yellow,
-/obj/item/weapon/pen,
-/obj/item/weapon/paper_bin{
- layer = 2.9
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"aMA" = (
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"aMB" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"aMC" = (
-/obj/structure/closet/crate,
-/obj/item/weapon/reagent_containers/food/snacks/donut,
-/obj/item/weapon/reagent_containers/food/snacks/donut,
-/obj/item/weapon/reagent_containers/food/snacks/donut,
-/obj/item/weapon/reagent_containers/food/snacks/donut,
-/turf/open/floor/plating,
-/area/quartermaster/office)
-"aMD" = (
-/obj/machinery/door/poddoor/shutters{
- id = "qm_warehouse";
- name = "warehouse shutters"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plasteel,
-/area/quartermaster/storage)
-"aME" = (
-/obj/machinery/door/poddoor/shutters{
- id = "qm_warehouse";
- name = "warehouse shutters"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plasteel,
-/area/quartermaster/storage)
-"aMF" = (
-/obj/machinery/door/poddoor/shutters{
- id = "qm_warehouse";
- name = "warehouse shutters"
- },
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plasteel,
-/area/quartermaster/storage)
-"aMG" = (
-/obj/structure/closet/crate/internals,
-/turf/open/floor/plasteel/floorgrime,
-/area/quartermaster/storage)
-"aMH" = (
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/supply)
-"aMI" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 5
- },
-/turf/open/floor/plating,
-/area/maintenance/department/cargo)
-"aMJ" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/closed/wall,
-/area/maintenance/disposal)
-"aMK" = (
-/obj/structure/chair{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/maintenance/disposal)
-"aML" = (
-/obj/item/trash/can,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/maintenance/disposal)
-"aMM" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 8
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/maintenance/disposal)
-"aMN" = (
-/obj/machinery/conveyor_switch/oneway{
- convdir = -1;
- id = "garbage";
- name = "disposal conveyor"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/maintenance/disposal)
-"aMO" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on,
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/maintenance/disposal)
-"aMP" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/airalarm{
- dir = 8;
- pixel_x = 24
- },
-/obj/effect/turf_decal/stripes/corner{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/disposal)
-"aMQ" = (
-/obj/machinery/door/airlock/titanium{
- name = "Emergency Shuttle Airlock"
- },
-/turf/open/floor/plating,
-/area/shuttle/escape)
-"aMR" = (
-/obj/machinery/light{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/hallway/secondary/exit/departure_lounge)
-"aMS" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit/departure_lounge)
-"aMT" = (
-/obj/structure/chair,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit/departure_lounge)
-"aMU" = (
-/obj/structure/grille,
-/obj/structure/window/fulltile,
-/turf/open/floor/plating,
-/area/hallway/secondary/exit/departure_lounge)
-"aMV" = (
-/obj/machinery/light{
- dir = 4
- },
-/obj/machinery/vending/coffee,
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"aMW" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plating,
-/area/maintenance/department/crew_quarters/bar)
-"aMX" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/turf/open/floor/plating,
-/area/maintenance/department/crew_quarters/bar)
-"aMY" = (
-/turf/closed/wall,
-/area/hydroponics)
-"aMZ" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/door/airlock/maintenance{
- name = "Hydroponics Maintenance";
- req_access_txt = "35"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plating,
-/area/hydroponics)
-"aNa" = (
-/turf/closed/wall,
-/area/crew_quarters/kitchen)
-"aNb" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/light/small{
- brightness = 3;
- dir = 8
- },
-/turf/open/floor/plating,
-/area/crew_quarters/kitchen)
-"aNc" = (
-/obj/structure/plasticflaps{
- opacity = 1
- },
-/turf/open/floor/plating{
- broken = 1;
- icon_state = "platingdmg3"
- },
-/area/maintenance/department/crew_quarters/bar)
-"aNd" = (
-/obj/item/weapon/reagent_containers/food/drinks/shaker,
-/obj/item/weapon/gun/ballistic/revolver/doublebarrel,
-/obj/structure/table/wood,
-/obj/item/weapon/coin/silver,
-/obj/item/stack/spacecash/c10,
-/obj/item/stack/spacecash/c100,
-/turf/open/floor/wood,
-/area/crew_quarters/bar)
-"aNe" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/structure/chair/wood/normal{
- dir = 8
- },
-/turf/open/floor/wood{
- icon_state = "wood-broken"
- },
-/area/crew_quarters/bar)
-"aNf" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 4
- },
-/turf/open/floor/wood,
-/area/crew_quarters/bar)
-"aNg" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/wood,
-/area/crew_quarters/bar)
-"aNh" = (
-/obj/machinery/door/airlock/maintenance{
- name = "Bar Storage Maintenance";
- req_access_txt = "25"
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/crew_quarters/bar)
-"aNi" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/department/crew_quarters/bar)
-"aNj" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/item/chair,
-/turf/open/floor/plating,
-/area/maintenance/department/crew_quarters/bar)
-"aNk" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/maintenance{
- name = "EVA Maintenance";
- req_access_txt = "18"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plating,
-/area/storage/eva)
-"aNl" = (
-/obj/structure/closet/crate{
- icon_state = "crateopen";
- opened = 1
- },
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/open/floor/plating,
-/area/maintenance/department/crew_quarters/bar)
-"aNm" = (
-/obj/item/trash/tray,
-/obj/machinery/light/small{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/maintenance/department/crew_quarters/bar)
-"aNn" = (
-/obj/structure/closet/secure_closet/freezer/cream_pie,
-/obj/item/weapon/grown/bananapeel,
-/turf/open/floor/plating,
-/area/maintenance/department/crew_quarters/bar)
-"aNo" = (
-/obj/structure/closet/secure_closet/freezer/cream_pie,
-/obj/item/seeds/banana,
-/turf/open/floor/plating,
-/area/maintenance/department/crew_quarters/bar)
-"aNp" = (
-/turf/open/floor/plasteel/brown/corner{
- dir = 4
- },
-/area/quartermaster/office)
-"aNq" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/brown/corner{
- dir = 4
- },
-/area/quartermaster/office)
-"aNr" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/door/firedoor,
-/obj/structure/table/reinforced,
-/obj/machinery/door/window/westleft{
- dir = 1;
- name = "Delivery Desk";
- req_access_txt = "50"
- },
-/obj/effect/turf_decal/bot,
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"aNs" = (
-/obj/machinery/door/firedoor,
-/obj/structure/table/reinforced,
-/obj/machinery/door/window/westleft{
- dir = 1;
- name = "Delivery Desk";
- req_access_txt = "50"
- },
-/obj/effect/turf_decal/bot,
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"aNt" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/door/airlock/glass_mining{
- name = "Mailroom";
- req_access_txt = "0";
- req_one_access_txt = "48;50"
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"aNu" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating,
-/area/quartermaster/office)
-"aNv" = (
-/obj/machinery/button/door{
- id = "qm_warehouse";
- name = "Warehouse Door Control";
- pixel_x = -24;
- req_access_txt = "31"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/storage)
-"aNw" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/storage)
-"aNx" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/storage)
-"aNy" = (
-/obj/machinery/power/apc{
- cell_type = 2500;
- dir = 4;
- name = "Cargo Maintenance APC";
- pixel_x = 24
- },
-/obj/structure/cable{
- icon_state = "0-2";
- pixel_y = 1;
- d2 = 2
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plating,
-/area/maintenance/department/cargo)
-"aNz" = (
-/obj/effect/landmark/xeno_spawn,
-/turf/open/floor/plating,
-/area/maintenance/disposal)
-"aNA" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating,
-/area/maintenance/disposal)
-"aNB" = (
-/obj/machinery/power/apc{
- dir = 4;
- name = "Disposal APC";
- pixel_x = 24
- },
-/obj/structure/cable{
- icon_state = "0-2";
- pixel_y = 1;
- d2 = 2
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plating,
-/area/maintenance/disposal)
-"aNC" = (
-/obj/machinery/door/airlock/glass{
- name = "Emergency Shuttle Infirmary"
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/escape)
-"aND" = (
-/obj/structure/flora/ausbushes/ywflowers,
-/obj/structure/flora/ausbushes/lavendergrass,
-/obj/structure/flora/ausbushes/ppflowers,
-/obj/structure/flora/ausbushes/brflowers,
-/obj/structure/flora/ausbushes/sunnybush,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/camera{
- c_tag = "Departures - Center";
- dir = 4;
- name = "security camera";
- pixel_x = 6;
- pixel_y = -7
- },
-/turf/open/floor/grass,
-/area/hallway/secondary/exit/departure_lounge)
-"aNE" = (
-/obj/structure/flora/ausbushes/ywflowers,
-/obj/structure/flora/ausbushes/lavendergrass,
-/obj/structure/flora/ausbushes/ppflowers,
-/obj/structure/flora/ausbushes/brflowers,
-/obj/structure/flora/ausbushes/sunnybush,
-/obj/structure/window/reinforced{
- dir = 4;
- layer = 2.9
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/grass,
-/area/hallway/secondary/exit/departure_lounge)
-"aNF" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit/departure_lounge)
-"aNG" = (
-/obj/structure/table,
-/obj/item/weapon/storage/box/matches{
- pixel_x = -3;
- pixel_y = 8
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit/departure_lounge)
-"aNH" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plating,
-/area/maintenance/department/crew_quarters/bar)
-"aNI" = (
-/obj/structure/sink{
- pixel_y = 28
- },
-/obj/machinery/firealarm{
- dir = 8;
- pixel_x = -28
- },
-/turf/open/floor/plasteel/hydrofloor,
-/area/hydroponics)
-"aNJ" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/hydrofloor,
-/area/hydroponics)
-"aNK" = (
-/obj/structure/closet/secure_closet/hydroponics,
-/obj/machinery/light/small{
- dir = 1
- },
-/turf/open/floor/plasteel/hydrofloor,
-/area/hydroponics)
-"aNL" = (
-/obj/structure/closet/secure_closet/hydroponics,
-/turf/open/floor/plasteel/hydrofloor,
-/area/hydroponics)
-"aNM" = (
-/obj/machinery/airalarm{
- pixel_y = 24
- },
-/obj/machinery/camera{
- c_tag = "Hydroponics Storage"
- },
-/obj/machinery/plantgenes,
-/turf/open/floor/plasteel/hydrofloor,
-/area/hydroponics)
-"aNN" = (
-/obj/machinery/chem_master/condimaster,
-/turf/open/floor/plasteel/hydrofloor,
-/area/hydroponics)
-"aNO" = (
-/obj/structure/table,
-/obj/item/weapon/book/manual/hydroponics_pod_people,
-/obj/item/weapon/paper/guides/jobs/hydroponics,
-/obj/item/weapon/reagent_containers/dropper,
-/obj/item/weapon/reagent_containers/glass/bottle/mutagen,
-/obj/item/weapon/reagent_containers/dropper,
-/turf/open/floor/plasteel/hydrofloor,
-/area/hydroponics)
-"aNP" = (
-/obj/machinery/door/airlock/maintenance{
- name = "Kitchen Maintenance";
- req_access_txt = "28"
- },
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating,
-/area/crew_quarters/kitchen)
-"aNQ" = (
-/obj/machinery/chem_master/condimaster{
- name = "CondiMaster Neo";
- pixel_x = -4
- },
-/turf/open/floor/plasteel/showroomfloor,
-/area/crew_quarters/kitchen)
-"aNR" = (
-/obj/machinery/gibber,
-/turf/open/floor/plasteel/showroomfloor,
-/area/crew_quarters/kitchen)
-"aNS" = (
-/turf/open/floor/plasteel/showroomfloor,
-/area/crew_quarters/kitchen)
-"aNT" = (
-/obj/machinery/navbeacon{
- codes_txt = "delivery;dir=8";
- freq = 1400;
- location = "Kitchen"
- },
-/obj/machinery/door/window/southleft{
- base_state = "left";
- dir = 8;
- icon_state = "left";
- name = "Kitchen Delivery";
- req_access_txt = "28"
- },
-/turf/open/floor/plasteel/vault{
- dir = 8
- },
-/area/crew_quarters/kitchen)
-"aNU" = (
-/turf/open/floor/plasteel/vault{
- dir = 8
- },
-/area/maintenance/department/crew_quarters/bar)
-"aNV" = (
-/obj/item/device/assembly/mousetrap,
-/turf/open/floor/wood{
- icon_state = "wood-broken6"
- },
-/area/crew_quarters/bar)
-"aNW" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
-/turf/open/floor/wood,
-/area/crew_quarters/bar)
-"aNX" = (
-/turf/open/floor/wood,
-/area/crew_quarters/bar)
-"aNY" = (
-/obj/effect/landmark/xeno_spawn,
-/obj/item/weapon/storage/box/beanbag,
-/turf/open/floor/wood,
-/area/crew_quarters/bar)
-"aNZ" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 5
- },
-/turf/open/floor/plating,
-/area/maintenance/department/crew_quarters/bar)
-"aOa" = (
-/obj/item/weapon/weldingtool,
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/department/crew_quarters/bar)
-"aOb" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/department/crew_quarters/bar)
-"aOc" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 10
- },
-/turf/open/floor/plating,
-/area/maintenance/department/crew_quarters/bar)
-"aOd" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 6
- },
-/turf/open/floor/plating,
-/area/maintenance/department/crew_quarters/bar)
-"aOe" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"aOf" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"aOg" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"aOh" = (
-/obj/machinery/light{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/machinery/firealarm{
- dir = 1;
- pixel_y = 29
- },
-/turf/open/floor/plasteel/brown/corner{
- dir = 4
- },
-/area/quartermaster/office)
-"aOi" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
-/turf/open/floor/plasteel/brown/corner{
- dir = 4
- },
-/area/quartermaster/office)
-"aOj" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/brown/corner{
- dir = 4
- },
-/area/quartermaster/office)
-"aOk" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/quartermaster/office)
-"aOl" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"aOm" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"aOn" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"aOo" = (
-/obj/machinery/light{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/machinery/requests_console{
- department = "Cargo Bay";
- departmentType = 2;
- pixel_y = 32
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/storage)
-"aOp" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/storage)
-"aOq" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 9
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/storage)
-"aOr" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
-/area/quartermaster/storage)
-"aOs" = (
-/turf/open/floor/plasteel,
-/area/quartermaster/storage)
-"aOt" = (
-/obj/machinery/light{
- dir = 1
- },
-/obj/machinery/conveyor{
- dir = 8;
- id = "QMLoad"
- },
-/obj/machinery/airalarm{
- pixel_y = 22
- },
-/turf/open/floor/plating,
-/area/quartermaster/storage)
-"aOu" = (
-/obj/machinery/conveyor{
- dir = 8;
- id = "QMLoad"
- },
-/obj/machinery/status_display{
- density = 0;
- layer = 4;
- pixel_y = 30;
- supply_display = 1
- },
-/turf/open/floor/plating,
-/area/quartermaster/storage)
-"aOv" = (
-/obj/machinery/conveyor{
- dir = 8;
- id = "QMLoad"
- },
-/obj/structure/sign/poster/official/random{
- pixel_y = 32
- },
-/turf/open/floor/plating,
-/area/quartermaster/storage)
-"aOw" = (
-/obj/machinery/conveyor{
- dir = 8;
- id = "QMLoad"
- },
-/turf/open/floor/plating,
-/area/quartermaster/storage)
-"aOx" = (
-/obj/machinery/door/poddoor{
- id = "QMLoaddoor";
- name = "supply dock loading door"
- },
-/obj/machinery/conveyor{
- dir = 8;
- id = "QMLoad"
- },
-/turf/open/floor/plating,
-/area/quartermaster/storage)
-"aOy" = (
-/obj/structure/plasticflaps,
-/obj/machinery/conveyor{
- dir = 8;
- id = "QMLoad"
- },
-/turf/open/floor/plating,
-/area/quartermaster/storage)
-"aOz" = (
-/obj/machinery/door/poddoor{
- id = "QMLoaddoor";
- name = "supply dock loading door"
- },
-/obj/machinery/conveyor{
- dir = 8;
- id = "QMLoad"
- },
-/turf/open/floor/plating,
-/area/shuttle/supply)
-"aOA" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/turf/open/floor/plating,
-/area/maintenance/department/cargo)
-"aOB" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/turf/open/floor/plating,
-/area/maintenance/department/cargo)
-"aOC" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/department/cargo)
-"aOD" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/junction{
- dir = 2;
- icon_state = "pipe-y"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 6
- },
-/turf/open/floor/plating,
-/area/maintenance/department/cargo)
-"aOE" = (
-/obj/machinery/door/airlock/maintenance{
- name = "Disposal Access";
- req_access_txt = "12"
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/disposal)
-"aOF" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/disposal)
-"aOG" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 9
- },
-/turf/open/floor/plating,
-/area/maintenance/disposal)
-"aOH" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/turf/open/floor/plating,
-/area/maintenance/disposal)
-"aOI" = (
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/obj/machinery/power/solar{
- id = "portsolar";
- name = "Port Solar Array"
- },
-/turf/open/floor/plasteel/airless/solarpanel,
-/area/solar/starboard)
-"aOJ" = (
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/machinery/power/solar{
- id = "starboardsolar";
- name = "Starboard Solar Array"
- },
-/turf/open/floor/plasteel/airless/solarpanel,
-/area/solar/starboard)
-"aOK" = (
-/obj/machinery/sleeper{
- dir = 4
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/escape)
-"aOL" = (
-/obj/machinery/vending/medical,
-/turf/open/floor/mineral/titanium,
-/area/shuttle/escape)
-"aOM" = (
-/obj/machinery/door/airlock/titanium{
- name = "Emergency Shuttle Airlock"
- },
-/obj/docking_port/stationary{
- dheight = 0;
- dir = 8;
- dwidth = 4;
- height = 15;
- id = "emergency_home";
- name = "PubbyStation emergency evac bay";
- width = 20
- },
-/obj/docking_port/mobile/emergency{
- dheight = 0;
- dir = 8;
- dwidth = 4;
- height = 15;
- name = "Pubby emergency shuttle";
- port_angle = 90;
- width = 18
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/escape)
-"aON" = (
-/obj/machinery/light,
-/turf/open/floor/plating,
-/area/hallway/secondary/exit/departure_lounge)
-"aOO" = (
-/obj/structure/chair{
- dir = 1;
- name = "Command Station"
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit/departure_lounge)
-"aOP" = (
-/obj/machinery/camera{
- c_tag = "Central Primary Hallway Escape";
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/firealarm{
- dir = 4;
- pixel_x = 28
- },
-/turf/open/floor/plasteel/neutral/corner,
-/area/hallway/primary/central)
-"aOQ" = (
-/turf/open/floor/plasteel/hydrofloor,
-/area/hydroponics)
-"aOR" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 1
- },
-/turf/open/floor/plasteel/hydrofloor,
-/area/hydroponics)
-"aOS" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel/hydrofloor,
-/area/hydroponics)
-"aOT" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 4
- },
-/turf/open/floor/plasteel/hydrofloor,
-/area/hydroponics)
-"aOU" = (
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 10
- },
-/turf/open/floor/plasteel/hydrofloor,
-/area/hydroponics)
-"aOV" = (
-/obj/structure/table,
-/obj/item/weapon/reagent_containers/spray/plantbgone{
- pixel_y = 3
- },
-/obj/item/weapon/reagent_containers/spray/plantbgone{
- pixel_x = 8;
- pixel_y = 8
- },
-/obj/item/weapon/reagent_containers/spray/plantbgone{
- pixel_x = 13;
- pixel_y = 5
- },
-/obj/item/weapon/watertank,
-/turf/open/floor/plasteel/hydrofloor,
-/area/hydroponics)
-"aOW" = (
-/obj/structure/kitchenspike,
-/obj/item/device/assembly/mousetrap,
-/obj/item/trash/deadmouse,
-/turf/open/floor/plasteel/showroomfloor,
-/area/crew_quarters/kitchen)
-"aOX" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 5
- },
-/turf/open/floor/plasteel/showroomfloor,
-/area/crew_quarters/kitchen)
-"aOY" = (
-/obj/machinery/camera{
- c_tag = "Kitchen Cold Room";
- dir = 2;
- network = list("SS13")
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 8
- },
-/obj/machinery/requests_console{
- department = "Kitchen";
- departmentType = 2;
- pixel_y = 30
- },
-/turf/open/floor/plasteel/showroomfloor,
-/area/crew_quarters/kitchen)
-"aOZ" = (
-/obj/structure/plasticflaps{
- opacity = 1
- },
-/turf/open/floor/plasteel/vault{
- dir = 8
- },
-/area/maintenance/department/crew_quarters/bar)
-"aPa" = (
-/obj/structure/reagent_dispensers/beerkeg,
-/turf/open/floor/wood,
-/area/crew_quarters/bar)
-"aPb" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/wood,
-/area/crew_quarters/bar)
-"aPc" = (
-/obj/structure/closet/gmcloset,
-/obj/item/stack/sheet/metal{
- amount = 50
- },
-/obj/item/stack/sheet/glass{
- amount = 50
- },
-/obj/item/stack/cable_coil,
-/obj/item/weapon/storage/box/mousetraps,
-/turf/open/floor/wood{
- icon_state = "wood-broken5"
- },
-/area/crew_quarters/bar)
-"aPd" = (
-/turf/closed/wall,
-/area/crew_quarters/theatre)
-"aPe" = (
-/obj/machinery/door/airlock/maintenance{
- name = "Theatre Maintenance";
- req_access_txt = "0";
- req_one_access_txt = "12;46"
- },
-/turf/open/floor/plating,
-/area/crew_quarters/theatre)
-"aPf" = (
-/obj/machinery/door/airlock/maintenance{
- name = "Theatre Maintenance";
- req_access_txt = "0";
- req_one_access_txt = "12;46"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating,
-/area/crew_quarters/theatre)
-"aPg" = (
-/obj/machinery/camera{
- c_tag = "Central Primary Hallway Cargo";
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel/brown/corner{
- dir = 1
- },
-/area/hallway/primary/central)
-"aPh" = (
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"aPi" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"aPj" = (
-/obj/machinery/door/firedoor,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"aPk" = (
-/obj/machinery/holopad,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"aPl" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 6
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"aPm" = (
-/obj/machinery/door/airlock/glass_mining{
- name = "Cargo Bay";
- req_access_txt = "0";
- req_one_access_txt = "31;48"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"aPn" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"aPo" = (
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"aPp" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"aPq" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"aPr" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/storage)
-"aPs" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/quartermaster/storage)
-"aPt" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/storage)
-"aPu" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
-/turf/open/floor/plasteel,
-/area/quartermaster/storage)
-"aPv" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 10
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/storage)
-"aPw" = (
-/obj/machinery/door/airlock/external{
- name = "Supply Dock Airlock";
- req_access_txt = "31"
- },
-/turf/open/floor/plating,
-/area/quartermaster/storage)
-"aPx" = (
-/obj/machinery/light/small,
-/turf/open/floor/plating,
-/area/quartermaster/storage)
-"aPy" = (
-/obj/machinery/door/airlock/titanium{
- name = "Supply Shuttle Airlock";
- req_access_txt = "31"
- },
-/obj/docking_port/mobile/supply{
- dir = 4
- },
-/obj/docking_port/stationary{
- dir = 4;
- dwidth = 5;
- height = 7;
- id = "supply_home";
- name = "Cargo Bay";
- width = 12
- },
-/turf/open/floor/plating,
-/area/shuttle/supply)
-"aPz" = (
-/obj/structure/rack,
-/obj/effect/spawner/lootdrop/maintenance,
-/obj/item/weapon/storage/toolbox/mechanical,
-/turf/open/floor/plating,
-/area/maintenance/department/cargo)
-"aPA" = (
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/open/floor/plating,
-/area/maintenance/department/cargo)
-"aPB" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating,
-/area/maintenance/department/cargo)
-"aPC" = (
-/obj/structure/table,
-/obj/item/weapon/storage/firstaid/fire,
-/obj/item/weapon/storage/firstaid/regular{
- pixel_x = 2;
- pixel_y = 3
- },
-/obj/item/weapon/crowbar,
-/obj/structure/sign/nosmoking_2{
- pixel_x = 32
- },
-/obj/machinery/light{
- dir = 4
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/escape)
-"aPD" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit/departure_lounge)
-"aPE" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit/departure_lounge)
-"aPF" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit/departure_lounge)
-"aPG" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass{
- name = "Departure Lounge"
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit/departure_lounge)
-"aPH" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"aPI" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"aPJ" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/neutral/corner,
-/area/hallway/primary/central)
-"aPK" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/machinery/door/airlock/maintenance{
- req_access_txt = "12"
- },
-/turf/open/floor/plating,
-/area/maintenance/department/crew_quarters/bar)
-"aPL" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/machinery/light/small,
-/turf/open/floor/plating,
-/area/maintenance/department/crew_quarters/bar)
-"aPM" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/department/crew_quarters/bar)
-"aPN" = (
-/obj/structure/plasticflaps{
- opacity = 1
- },
-/turf/open/floor/plasteel/vault{
- dir = 8
- },
-/area/hydroponics)
-"aPO" = (
-/obj/machinery/door/window/eastright{
- name = "Hydroponics Delivery";
- req_access_txt = "35"
- },
-/obj/machinery/navbeacon{
- codes_txt = "delivery;dir=4";
- dir = 1;
- freq = 1400;
- location = "Hydroponics"
- },
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plasteel,
-/area/hydroponics)
-"aPP" = (
-/obj/structure/closet/crate/hydroponics,
-/obj/item/weapon/shovel/spade,
-/obj/item/weapon/wrench,
-/obj/item/weapon/reagent_containers/glass/bucket,
-/obj/item/weapon/reagent_containers/glass/bucket,
-/obj/item/weapon/wirecutters,
-/turf/open/floor/plasteel/hydrofloor,
-/area/hydroponics)
-"aPQ" = (
-/obj/structure/closet/wardrobe/botanist,
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/turf/open/floor/plasteel/hydrofloor,
-/area/hydroponics)
-"aPR" = (
-/obj/machinery/power/apc{
- name = "Hydroponics APC";
- pixel_y = -24
- },
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/turf/open/floor/plasteel/hydrofloor,
-/area/hydroponics)
-"aPS" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/hydrofloor,
-/area/hydroponics)
-"aPT" = (
-/obj/machinery/light/small,
-/turf/open/floor/plasteel/hydrofloor,
-/area/hydroponics)
-"aPU" = (
-/obj/structure/table,
-/obj/machinery/reagentgrinder,
-/turf/open/floor/plasteel/hydrofloor,
-/area/hydroponics)
-"aPV" = (
-/obj/machinery/icecream_vat,
-/turf/open/floor/plasteel/showroomfloor,
-/area/crew_quarters/kitchen)
-"aPW" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/showroomfloor,
-/area/crew_quarters/kitchen)
-"aPX" = (
-/mob/living/simple_animal/hostile/retaliate/goat{
- name = "Pete"
- },
-/turf/open/floor/plasteel/showroomfloor,
-/area/crew_quarters/kitchen)
-"aPY" = (
-/obj/machinery/holopad,
-/turf/open/floor/plasteel/showroomfloor,
-/area/crew_quarters/kitchen)
-"aPZ" = (
-/obj/machinery/light{
- dir = 4
- },
-/obj/machinery/airalarm{
- dir = 8;
- pixel_x = 23
- },
-/turf/open/floor/plasteel/showroomfloor,
-/area/crew_quarters/kitchen)
-"aQa" = (
-/obj/machinery/door/window/southleft{
- base_state = "left";
- dir = 2;
- icon_state = "left";
- name = "Bar Delivery";
- req_access_txt = "25"
- },
-/obj/machinery/navbeacon{
- codes_txt = "delivery;dir=2";
- freq = 1400;
- location = "Bar"
- },
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plasteel,
-/area/crew_quarters/bar)
-"aQb" = (
-/obj/machinery/door/airlock{
- name = "Bar Storage";
- req_access_txt = "25"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/black,
-/area/crew_quarters/bar)
-"aQc" = (
-/obj/machinery/disposal/bin,
-/obj/structure/disposalpipe/trunk,
-/turf/open/floor/plasteel/black,
-/area/crew_quarters/bar)
-"aQd" = (
-/obj/structure/sign/poster/random{
- pixel_x = -32
- },
-/turf/open/floor/wood,
-/area/crew_quarters/theatre)
-"aQe" = (
-/turf/open/floor/carpet{
- icon_state = "carpetsymbol"
- },
-/area/crew_quarters/theatre)
-"aQf" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-04";
- layer = 4.1
- },
-/obj/structure/sign/poster/random{
- pixel_y = 32
- },
-/turf/open/floor/carpet{
- icon_state = "carpetsymbol"
- },
-/area/crew_quarters/theatre)
-"aQg" = (
-/obj/machinery/camera{
- c_tag = "Theatre Stage";
- dir = 2
- },
-/obj/machinery/light/small{
- dir = 1
- },
-/turf/open/floor/carpet{
- icon_state = "carpetsymbol"
- },
-/area/crew_quarters/theatre)
-"aQh" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/sign/poster/random{
- pixel_x = 32
- },
-/turf/open/floor/wood,
-/area/crew_quarters/theatre)
-"aQi" = (
-/obj/structure/table/wood,
-/obj/item/weapon/lipstick/random{
- pixel_x = 2;
- pixel_y = 2
- },
-/obj/item/clothing/gloves/color/rainbow/clown,
-/obj/machinery/airalarm{
- pixel_y = 22
- },
-/obj/item/weapon/book/random,
-/obj/item/weapon/lipstick/random,
-/turf/open/floor/plasteel/black,
-/area/crew_quarters/theatre)
-"aQj" = (
-/obj/structure/dresser,
-/obj/machinery/light{
- dir = 1
- },
-/obj/structure/sign/poster/contraband/clown{
- pixel_y = 32
- },
-/turf/open/floor/plasteel/black,
-/area/crew_quarters/theatre)
-"aQk" = (
-/obj/machinery/vending/autodrobe,
-/obj/machinery/computer/security/telescreen/entertainment{
- pixel_y = 32
- },
-/turf/open/floor/plasteel/black,
-/area/crew_quarters/theatre)
-"aQl" = (
-/obj/machinery/door/airlock/maintenance{
- name = "Theatre Maintenance";
- req_access_txt = "46"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating,
-/area/crew_quarters/theatre)
-"aQm" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 8
- },
-/obj/machinery/light{
- dir = 8
- },
-/turf/open/floor/plasteel/brown/corner{
- dir = 1
- },
-/area/hallway/primary/central)
-"aQn" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"aQo" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"aQp" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 9
- },
-/turf/open/floor/plasteel/loadingarea{
- dir = 8
- },
-/area/quartermaster/office)
-"aQq" = (
-/obj/structure/plasticflaps{
- opacity = 1
- },
-/obj/machinery/conveyor{
- dir = 4;
- id = "cargodeliver"
- },
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"aQr" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/brown{
- dir = 8
- },
-/area/quartermaster/office)
-"aQs" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"aQt" = (
-/obj/machinery/light{
- dir = 4
- },
-/obj/structure/extinguisher_cabinet{
- pixel_x = 27
- },
-/obj/machinery/conveyor_switch{
- id = "cargodeliver"
- },
-/turf/open/floor/plasteel/brown{
- dir = 4
- },
-/area/quartermaster/office)
-"aQu" = (
-/obj/machinery/navbeacon{
- codes_txt = "delivery;dir=4";
- freq = 1400;
- location = "QM #1"
- },
-/obj/effect/turf_decal/bot,
-/mob/living/simple_animal/bot/mulebot{
- beacon_freq = 1400;
- home_destination = "QM #1";
- suffix = "#1"
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/storage)
-"aQv" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/storage)
-"aQw" = (
-/obj/effect/landmark/start/cargo_technician,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/effect/turf_decal/bot,
-/turf/open/floor/plasteel,
-/area/quartermaster/storage)
-"aQx" = (
-/obj/effect/turf_decal/bot,
-/turf/open/floor/plasteel,
-/area/quartermaster/storage)
-"aQy" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/storage)
-"aQz" = (
-/obj/machinery/conveyor_switch/oneway{
- convdir = -1;
- id = "QMLoad"
- },
-/obj/machinery/button/door{
- id = "QMLoaddoor2";
- layer = 4;
- name = "Loading Doors";
- pixel_x = 24;
- pixel_y = -8
- },
-/obj/machinery/button/door{
- dir = 2;
- id = "QMLoaddoor";
- layer = 4;
- name = "Loading Doors";
- pixel_x = 24;
- pixel_y = 8
- },
-/obj/machinery/camera{
- c_tag = "Cargo Supply Dock";
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/storage)
-"aQA" = (
-/obj/machinery/button/door{
- id = "QMLoaddoor2";
- layer = 4;
- name = "Loading Doors";
- pixel_x = -24;
- pixel_y = -8
- },
-/obj/machinery/button/door{
- dir = 2;
- id = "QMLoaddoor";
- layer = 4;
- name = "Loading Doors";
- pixel_x = -24;
- pixel_y = 8
- },
-/obj/machinery/light{
- dir = 8
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/supply)
-"aQB" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/light/small{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating,
-/area/maintenance/department/cargo)
-"aQC" = (
-/obj/structure/easel,
-/turf/open/floor/plating,
-/area/maintenance/department/cargo)
-"aQD" = (
-/obj/structure/closet/l3closet/scientist,
-/obj/item/weapon/book/manual/wiki/chemistry,
-/obj/machinery/light/small{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/maintenance/department/cargo)
-"aQE" = (
+"cjG" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -19635,420 +52222,13 @@
},
/turf/open/floor/plasteel/black,
/area/chapel/main/monastery)
-"aQF" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/shuttle/engine/heater,
-/turf/open/floor/plating/airless,
-/area/shuttle/escape)
-"aQG" = (
-/obj/structure/table,
-/obj/item/weapon/defibrillator/loaded,
-/turf/open/floor/mineral/titanium,
-/area/shuttle/escape)
-"aQH" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit/departure_lounge)
-"aQI" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass{
- name = "Departure Lounge"
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit/departure_lounge)
-"aQJ" = (
+"cjH" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 9
},
/turf/closed/wall,
/area/chapel/main/monastery)
-"aQK" = (
-/obj/structure/sign/directions/evac{
- dir = 1;
- icon_state = "direction_evac";
- pixel_x = 32
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/neutral/corner,
-/area/hallway/primary/central)
-"aQL" = (
-/turf/closed/wall,
-/area/janitor)
-"aQM" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/closed/wall,
-/area/janitor)
-"aQN" = (
-/obj/machinery/door/window/eastright{
- dir = 2;
- name = "Janitor Delivery";
- req_access_txt = "26"
- },
-/obj/machinery/navbeacon{
- codes_txt = "delivery;dir=1";
- dir = 1;
- freq = 1400;
- location = "Janitor"
- },
-/turf/open/floor/plasteel/vault{
- dir = 8
- },
-/area/janitor)
-"aQO" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass{
- name = "Hydroponics";
- req_access_txt = "35"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
-/area/hydroponics)
-"aQP" = (
-/obj/structure/closet/chefcloset,
-/obj/item/weapon/wrench,
-/obj/item/weapon/crowbar,
-/obj/item/stack/packageWrap,
-/obj/item/weapon/hand_labeler,
-/turf/open/floor/plasteel/showroomfloor,
-/area/crew_quarters/kitchen)
-"aQQ" = (
-/obj/machinery/power/apc{
- dir = 2;
- name = "Kitchen APC";
- pixel_y = -24
- },
-/obj/structure/cable,
-/turf/open/floor/plasteel/showroomfloor,
-/area/crew_quarters/kitchen)
-"aQR" = (
-/turf/open/floor/plasteel/showroomfloor,
-/area/crew_quarters/kitchen{
- name = "Kitchen Coldroom"
- })
-"aQS" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 6
- },
-/turf/open/floor/plasteel/showroomfloor,
-/area/crew_quarters/kitchen)
-"aQT" = (
-/obj/structure/closet/secure_closet/freezer/kitchen,
-/obj/item/weapon/reagent_containers/food/snacks/grown/potato,
-/obj/item/weapon/reagent_containers/food/snacks/grown/potato,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/showroomfloor,
-/area/crew_quarters/kitchen)
-"aQU" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/closed/wall,
-/area/crew_quarters/kitchen)
-"aQV" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/black,
-/area/crew_quarters/bar)
-"aQW" = (
-/obj/machinery/light/small{
- dir = 1
- },
-/obj/structure/sign/securearea{
- desc = "Under the painting a plaque reads: 'While the meat grinder may not have spared you, fear not. Not one part of you has gone to waste... You were delicious.'";
- icon_state = "monkey_painting";
- name = "Mr. Deempisi portrait";
- pixel_y = 28
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/black,
-/area/crew_quarters/bar)
-"aQX" = (
-/obj/structure/sink/kitchen{
- pixel_y = 28
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/black,
-/area/crew_quarters/bar)
-"aQY" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
-/turf/open/floor/plasteel/black,
-/area/crew_quarters/bar)
-"aQZ" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/requests_console{
- department = "Bar";
- departmentType = 2;
- pixel_y = 30;
- receive_ore_updates = 1
- },
-/obj/machinery/camera{
- c_tag = "Bar Access";
- dir = 2;
- network = list("SS13")
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/black,
-/area/crew_quarters/bar)
-"aRa" = (
-/obj/machinery/light/small{
- dir = 1
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/item/device/radio/intercom{
- dir = 0;
- name = "Station Intercom (General)";
- pixel_y = 26
- },
-/turf/open/floor/plasteel/black,
-/area/crew_quarters/bar)
-"aRb" = (
-/obj/machinery/power/apc{
- dir = 4;
- name = "Bar APC";
- pixel_x = 27
- },
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 10
- },
-/turf/open/floor/plasteel/black,
-/area/crew_quarters/bar)
-"aRc" = (
-/obj/structure/piano{
- icon_state = "piano"
- },
-/turf/open/floor/wood,
-/area/crew_quarters/theatre)
-"aRd" = (
-/obj/structure/chair/wood/normal{
- dir = 8
- },
-/turf/open/floor/carpet{
- icon_state = "carpetsymbol"
- },
-/area/crew_quarters/theatre)
-"aRe" = (
-/obj/structure/chair/wood/normal,
-/mob/living/carbon/monkey/punpun,
-/turf/open/floor/carpet{
- icon_state = "carpetsymbol"
- },
-/area/crew_quarters/theatre)
-"aRf" = (
-/obj/structure/table/wood,
-/obj/item/device/instrument/violin,
-/turf/open/floor/carpet{
- icon_state = "carpetsymbol"
- },
-/area/crew_quarters/theatre)
-"aRg" = (
-/obj/structure/table/wood,
-/obj/item/device/instrument/guitar,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/wood,
-/area/crew_quarters/theatre)
-"aRh" = (
-/obj/machinery/power/apc{
- dir = 8;
- name = "Theatre APC";
- pixel_x = -25
- },
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/turf/open/floor/plasteel/redblue,
-/area/crew_quarters/theatre)
-"aRi" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/effect/landmark/start/mime,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 6
- },
-/turf/open/floor/plasteel/redblue,
-/area/crew_quarters/theatre)
-"aRj" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/redblue,
-/area/crew_quarters/theatre)
-"aRk" = (
-/obj/machinery/light/small{
- dir = 1
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/item/device/radio/intercom{
- dir = 0;
- name = "Station Intercom (General)";
- pixel_y = 26
- },
-/turf/open/floor/plasteel/redblue,
-/area/crew_quarters/theatre)
-"aRl" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 9
- },
-/obj/machinery/light_switch{
- pixel_x = 24;
- pixel_y = 24
- },
-/obj/structure/mirror{
- pixel_x = 28;
- pixel_y = -2
- },
-/turf/open/floor/plasteel/redblue,
-/area/crew_quarters/theatre)
-"aRm" = (
-/obj/machinery/computer/cargo/request,
-/turf/open/floor/plasteel/brown/corner,
-/area/quartermaster/office)
-"aRn" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/brown/corner,
-/area/quartermaster/office)
-"aRo" = (
-/turf/open/floor/plasteel/brown/corner,
-/area/quartermaster/office)
-"aRp" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/mineral/ore_redemption{
- input_dir = 4;
- output_dir = 8
- },
-/turf/open/floor/plasteel/black,
-/area/quartermaster/office)
-"aRq" = (
-/obj/machinery/status_display{
- dir = 8;
- layer = 4;
- pixel_x = 32;
- supply_display = 1
- },
-/turf/open/floor/plasteel/brown{
- dir = 4
- },
-/area/quartermaster/office)
-"aRr" = (
-/obj/machinery/navbeacon{
- codes_txt = "delivery;dir=4";
- freq = 1400;
- location = "QM #2"
- },
-/obj/machinery/camera{
- c_tag = "Cargo Bay";
- dir = 4
- },
-/obj/effect/turf_decal/bot,
-/turf/open/floor/plasteel,
-/area/quartermaster/storage)
-"aRs" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/effect/turf_decal/bot,
-/turf/open/floor/plasteel,
-/area/quartermaster/storage)
-"aRt" = (
-/obj/structure/closet/crate{
- icon_state = "crateopen";
- opened = 1
- },
-/obj/effect/spawner/lootdrop/maintenance{
- lootcount = 2;
- name = "2maintenance loot spawner"
- },
-/obj/effect/turf_decal/bot,
-/turf/open/floor/plasteel,
-/area/quartermaster/storage)
-"aRu" = (
-/obj/effect/turf_decal/stripes/line,
-/turf/open/floor/plasteel,
-/area/quartermaster/storage)
-"aRv" = (
-/obj/machinery/light/small{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/quartermaster/storage)
-"aRw" = (
-/obj/machinery/door/airlock/titanium{
- name = "Supply Shuttle Airlock";
- req_access_txt = "31"
- },
-/turf/open/floor/plating,
-/area/shuttle/supply)
-"aRx" = (
-/obj/machinery/atmospherics/components/unary/portables_connector/visible,
-/obj/machinery/portable_atmospherics/canister/oxygen,
-/turf/open/floor/plating,
-/area/maintenance/department/cargo)
-"aRy" = (
-/obj/machinery/portable_atmospherics/canister/air,
-/turf/open/floor/plating,
-/area/maintenance/department/cargo)
-"aRz" = (
+"cjI" = (
/obj/structure/cable{
d1 = 2;
d2 = 4;
@@ -20056,430 +52236,7 @@
},
/turf/closed/wall,
/area/maintenance/department/chapel/monastery)
-"aRA" = (
-/obj/structure/shuttle/engine/propulsion,
-/turf/open/floor/plating/airless,
-/area/shuttle/escape)
-"aRB" = (
-/obj/structure/chair{
- dir = 1
- },
-/obj/machinery/airalarm{
- dir = 1;
- pixel_y = -22
- },
-/turf/open/floor/plasteel/escape,
-/area/hallway/secondary/exit/departure_lounge)
-"aRC" = (
-/obj/structure/chair{
- dir = 1
- },
-/turf/open/floor/plasteel/escape,
-/area/hallway/secondary/exit/departure_lounge)
-"aRD" = (
-/obj/machinery/light,
-/obj/structure/chair{
- dir = 1
- },
-/turf/open/floor/plasteel/escape,
-/area/hallway/secondary/exit/departure_lounge)
-"aRE" = (
-/turf/open/floor/plasteel/escape,
-/area/hallway/secondary/exit/departure_lounge)
-"aRF" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-14";
- layer = 4.1
- },
-/obj/structure/extinguisher_cabinet{
- pixel_x = 27
- },
-/turf/open/floor/plasteel/escape{
- dir = 6
- },
-/area/hallway/secondary/exit/departure_lounge)
-"aRG" = (
-/obj/machinery/washing_machine,
-/obj/structure/sign/securearea{
- desc = "Under the painting a plaque reads: 'While the meat grinder may not have spared you, fear not. Not one part of you has gone to waste... You were delicious.'";
- icon_state = "monkey_painting";
- name = "Mr. Deempisi portrait";
- pixel_y = 28
- },
-/turf/open/floor/plasteel/black,
-/area/janitor)
-"aRH" = (
-/obj/machinery/camera{
- c_tag = "Custodial Quarters"
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 1
- },
-/obj/machinery/light/small{
- dir = 1
- },
-/obj/item/device/radio/intercom{
- dir = 0;
- name = "Station Intercom (General)";
- pixel_y = 26
- },
-/obj/machinery/light/small{
- dir = 1
- },
-/turf/open/floor/plasteel/black,
-/area/janitor)
-"aRI" = (
-/obj/structure/bed,
-/obj/item/weapon/bedsheet,
-/obj/effect/landmark/start/janitor,
-/turf/open/floor/plasteel/black,
-/area/janitor)
-"aRJ" = (
-/obj/machinery/hydroponics/constructable,
-/turf/open/floor/plasteel/green/side{
- dir = 9
- },
-/area/hydroponics)
-"aRK" = (
-/obj/machinery/hydroponics/constructable,
-/turf/open/floor/plasteel/green/corner{
- dir = 4
- },
-/area/hydroponics)
-"aRL" = (
-/obj/machinery/hydroponics/constructable,
-/turf/open/floor/plasteel/green/side{
- dir = 1
- },
-/area/hydroponics)
-"aRM" = (
-/obj/structure/sink{
- pixel_y = 28
- },
-/turf/open/floor/plasteel,
-/area/hydroponics)
-"aRN" = (
-/obj/structure/disposalpipe/sortjunction{
- dir = 2;
- icon_state = "pipe-j2s";
- sortType = 21
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
-/area/hydroponics)
-"aRO" = (
-/obj/machinery/disposal/bin,
-/obj/structure/disposalpipe/trunk{
- dir = 8
- },
-/obj/machinery/light_switch{
- pixel_x = -4;
- pixel_y = 30
- },
-/turf/open/floor/plasteel/green/corner{
- dir = 4
- },
-/area/hydroponics)
-"aRP" = (
-/obj/structure/closet/secure_closet/freezer/meat,
-/turf/open/floor/plasteel/showroomfloor,
-/area/crew_quarters/kitchen)
-"aRQ" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 1
- },
-/turf/open/floor/plasteel/showroomfloor,
-/area/crew_quarters/kitchen)
-"aRR" = (
-/obj/structure/closet/secure_closet/freezer/fridge,
-/turf/open/floor/plasteel/showroomfloor,
-/area/crew_quarters/kitchen)
-"aRS" = (
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/turf/open/floor/plasteel/black,
-/area/crew_quarters/bar)
-"aRT" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 4
- },
-/turf/open/floor/plasteel/black,
-/area/crew_quarters/bar)
-"aRU" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/black,
-/area/crew_quarters/bar)
-"aRV" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 10
- },
-/obj/structure/disposalpipe/sortjunction{
- dir = 4;
- icon_state = "pipe-j1s";
- sortType = 19
- },
-/turf/open/floor/plasteel/black,
-/area/crew_quarters/bar)
-"aRW" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel/black,
-/area/crew_quarters/bar)
-"aRX" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 4
- },
-/obj/structure/disposalpipe/junction{
- icon_state = "pipe-j2";
- dir = 4
- },
-/turf/open/floor/plasteel/black,
-/area/crew_quarters/bar)
-"aRY" = (
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/black,
-/area/crew_quarters/bar)
-"aRZ" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 4
- },
-/obj/machinery/light/small{
- brightness = 3;
- dir = 8
- },
-/obj/structure/sign/poster/random{
- pixel_x = -32
- },
-/turf/open/floor/wood,
-/area/crew_quarters/theatre)
-"aSa" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/carpet{
- icon_state = "carpetsymbol"
- },
-/area/crew_quarters/theatre)
-"aSb" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 10
- },
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/carpet{
- icon_state = "carpetsymbol"
- },
-/area/crew_quarters/theatre)
-"aSc" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 1
- },
-/obj/machinery/light/small{
- dir = 4
- },
-/obj/structure/sign/poster/random{
- pixel_x = 32
- },
-/turf/open/floor/wood,
-/area/crew_quarters/theatre)
-"aSd" = (
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/turf/open/floor/plasteel/redblue,
-/area/crew_quarters/theatre)
-"aSe" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/camera{
- c_tag = "Theatre Storage";
- dir = 1
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 1
- },
-/turf/open/floor/plasteel/redblue,
-/area/crew_quarters/theatre)
-"aSf" = (
-/obj/structure/disposalpipe/sortjunction{
- dir = 4;
- icon_state = "pipe-j1s";
- sortType = 18
- },
-/obj/machinery/requests_console{
- department = "Theatre";
- departmentType = 0;
- name = "theatre RC";
- pixel_x = -32;
- pixel_y = -32
- },
-/turf/open/floor/plasteel/redblue,
-/area/crew_quarters/theatre)
-"aSg" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/landmark/start/clown,
-/turf/open/floor/plasteel/redblue,
-/area/crew_quarters/theatre)
-"aSh" = (
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 4
- },
-/obj/item/cardboard_cutout,
-/obj/structure/mirror{
- pixel_x = 28;
- pixel_y = -2
- },
-/turf/open/floor/plasteel/redblue,
-/area/crew_quarters/theatre)
-"aSi" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/closed/wall,
-/area/crew_quarters/theatre)
-"aSj" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/brown/corner{
- dir = 1
- },
-/area/hallway/primary/central)
-"aSk" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/brown/corner{
- dir = 4
- },
-/area/hallway/primary/central)
-"aSl" = (
-/obj/structure/table/reinforced,
-/obj/machinery/door/firedoor,
-/obj/machinery/door/window/westleft{
- dir = 2;
- name = "Cargo Desk";
- req_access_txt = "50"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"aSm" = (
-/obj/structure/table/reinforced,
-/obj/machinery/door/firedoor,
-/obj/machinery/door/window/westleft{
- dir = 2;
- name = "Cargo Desk";
- req_access_txt = "50"
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"aSn" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/autolathe,
-/turf/open/floor/plasteel/black,
-/area/quartermaster/office)
-"aSo" = (
-/obj/machinery/newscaster{
- pixel_x = 32
- },
-/obj/machinery/camera{
- c_tag = "Cargo Foyer";
- dir = 8
- },
-/turf/open/floor/plasteel/brown{
- dir = 4
- },
-/area/quartermaster/office)
-"aSp" = (
-/obj/machinery/navbeacon{
- codes_txt = "delivery;dir=4";
- freq = 1400;
- location = "QM #3"
- },
-/obj/effect/turf_decal/bot,
-/mob/living/simple_animal/bot/mulebot{
- home_destination = "QM #2";
- suffix = "#2"
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/storage)
-"aSq" = (
-/obj/effect/spawner/lootdrop/maintenance,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/effect/turf_decal/bot,
-/turf/open/floor/plasteel,
-/area/quartermaster/storage)
-"aSr" = (
-/obj/machinery/conveyor{
- dir = 8;
- id = "QMLoad2"
- },
-/turf/open/floor/plating,
-/area/quartermaster/storage)
-"aSs" = (
-/obj/machinery/door/poddoor{
- id = "QMLoaddoor2";
- name = "supply dock loading door"
- },
-/obj/machinery/conveyor{
- dir = 8;
- id = "QMLoad2"
- },
-/turf/open/floor/plating,
-/area/quartermaster/storage)
-"aSt" = (
-/obj/structure/plasticflaps,
-/obj/machinery/conveyor{
- dir = 8;
- id = "QMLoad2"
- },
-/turf/open/floor/plating,
-/area/quartermaster/storage)
-"aSu" = (
-/obj/machinery/door/poddoor{
- id = "QMLoaddoor2";
- name = "supply dock loading door"
- },
-/obj/machinery/conveyor{
- dir = 8;
- id = "QMLoad2"
- },
-/turf/open/floor/plating,
-/area/shuttle/supply)
-"aSv" = (
-/obj/machinery/atmospherics/components/unary/portables_connector/visible{
- dir = 1
- },
-/obj/item/device/assembly/timer,
-/turf/open/floor/plating,
-/area/maintenance/department/cargo)
-"aSw" = (
+"cjJ" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -20488,54 +52245,7 @@
/obj/machinery/portable_atmospherics/canister/oxygen,
/turf/open/floor/plating,
/area/maintenance/department/chapel/monastery)
-"aSx" = (
-/obj/structure/grille/broken,
-/turf/open/floor/plating,
-/area/maintenance/department/cargo)
-"aSy" = (
-/obj/structure/chair/stool,
-/turf/open/floor/plating,
-/area/maintenance/department/cargo)
-"aSz" = (
-/turf/closed/wall,
-/area/security/checkpoint/customs)
-"aSA" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "papersplease";
- name = "security shutters"
- },
-/turf/open/floor/plating,
-/area/security/checkpoint/customs)
-"aSB" = (
-/obj/machinery/door/firedoor,
-/obj/structure/table/reinforced,
-/obj/machinery/door/window/westright{
- dir = 2;
- name = "Security Checkpoint";
- req_access_txt = "1"
- },
-/obj/machinery/door/window/northleft{
- dir = 1;
- icon_state = "left";
- name = "Reception Window";
- req_access_txt = "0"
- },
-/obj/machinery/door/poddoor{
- density = 0;
- icon_state = "open";
- id = "papersplease";
- layer = 3.1;
- name = "privacy shutters";
- opacity = 0
- },
-/obj/item/weapon/folder/red,
-/obj/item/weapon/pen,
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plasteel,
-/area/security/checkpoint/customs)
-"aSC" = (
+"cjK" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -20547,342 +52257,7 @@
},
/turf/open/floor/plating,
/area/maintenance/department/chapel/monastery)
-"aSD" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 8
- },
-/obj/structure/sign/poster/official/random{
- pixel_x = 32
- },
-/turf/open/floor/plasteel/neutral/corner,
-/area/hallway/primary/central)
-"aSE" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/closed/wall,
-/area/janitor)
-"aSF" = (
-/obj/structure/bedsheetbin,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/vault,
-/area/janitor)
-"aSG" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 8
- },
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plasteel/vault,
-/area/janitor)
-"aSH" = (
-/obj/structure/table,
-/obj/item/clothing/under/maid,
-/obj/item/key/janitor,
-/obj/item/weapon/grenade/clusterbuster/cleaner,
-/obj/item/weapon/grenade/chem_grenade/cleaner,
-/obj/item/weapon/grenade/chem_grenade/cleaner,
-/turf/open/floor/plasteel/vault,
-/area/janitor)
-"aSI" = (
-/obj/machinery/hydroponics/constructable,
-/turf/open/floor/plasteel/green/side{
- dir = 8
- },
-/area/hydroponics)
-"aSJ" = (
-/turf/open/floor/plasteel,
-/area/hydroponics)
-"aSK" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
-/area/hydroponics)
-"aSL" = (
-/obj/machinery/biogenerator,
-/obj/machinery/requests_console{
- department = "Hydroponics";
- departmentType = 2;
- pixel_y = 30
- },
-/turf/open/floor/plasteel/green/corner{
- dir = 4
- },
-/area/hydroponics)
-"aSM" = (
-/obj/machinery/hydroponics/constructable,
-/obj/item/device/radio/intercom{
- dir = 0;
- name = "Station Intercom (General)";
- pixel_y = 26
- },
-/turf/open/floor/plasteel/green/side{
- dir = 1
- },
-/area/hydroponics)
-"aSN" = (
-/obj/machinery/hydroponics/constructable,
-/obj/structure/sign/botany{
- pixel_y = 32
- },
-/turf/open/floor/plasteel/green/side{
- dir = 1
- },
-/area/hydroponics)
-"aSO" = (
-/obj/machinery/door/airlock{
- name = "Kitchen Cold Room";
- req_access_txt = "28"
- },
-/turf/open/floor/plasteel/showroomfloor,
-/area/crew_quarters/kitchen)
-"aSP" = (
-/obj/machinery/door/airlock{
- name = "Bar Access";
- req_access_txt = "28"
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel/black,
-/area/crew_quarters/kitchen)
-"aSQ" = (
-/obj/machinery/door/airlock{
- cyclelinkeddir = 4;
- name = "Bar Access";
- req_access_txt = "25"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel/black,
-/area/crew_quarters/bar)
-"aSR" = (
-/obj/machinery/door/airlock{
- cyclelinkeddir = 8;
- name = "Bar Access";
- req_access_txt = "0";
- req_one_access_txt = "25; 28"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/black,
-/area/crew_quarters/bar)
-"aSS" = (
-/obj/structure/window/reinforced,
-/turf/open/floor/wood,
-/area/crew_quarters/theatre)
-"aST" = (
-/obj/structure/window/reinforced,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/wood,
-/area/crew_quarters/theatre)
-"aSU" = (
-/obj/machinery/door/window{
- base_state = "right";
- icon_state = "right"
- },
-/turf/open/floor/wood,
-/area/crew_quarters/theatre)
-"aSV" = (
-/obj/machinery/door/airlock{
- name = "Theatre Storage";
- req_access_txt = "46"
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel/vault{
- dir = 5
- },
-/area/crew_quarters/theatre)
-"aSW" = (
-/obj/structure/disposalpipe/trunk{
- dir = 1
- },
-/obj/machinery/disposal/bin,
-/turf/open/floor/plasteel/vault{
- dir = 8
- },
-/area/crew_quarters/theatre)
-"aSX" = (
-/obj/structure/table/wood,
-/obj/item/weapon/soap,
-/obj/structure/table/wood,
-/obj/item/weapon/bikehorn,
-/obj/item/toy/cattoy,
-/turf/open/floor/plasteel/black,
-/area/crew_quarters/theatre)
-"aSY" = (
-/obj/structure/closet/crate/wooden/toy,
-/turf/open/floor/plasteel/black,
-/area/crew_quarters/theatre)
-"aSZ" = (
-/obj/machinery/computer/cargo,
-/obj/machinery/requests_console{
- department = "Cargo Bay";
- departmentType = 2;
- pixel_x = -32
- },
-/turf/open/floor/plasteel/brown{
- dir = 1
- },
-/area/quartermaster/office)
-"aTa" = (
-/obj/structure/chair/office/dark{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/brown{
- dir = 1
- },
-/area/quartermaster/office)
-"aTb" = (
-/obj/structure/chair/office/dark{
- dir = 1
- },
-/obj/effect/landmark/start/cargo_technician,
-/turf/open/floor/plasteel/brown{
- dir = 1
- },
-/area/quartermaster/office)
-"aTc" = (
-/obj/item/weapon/stamp{
- pixel_x = -3;
- pixel_y = 3
- },
-/obj/item/weapon/stamp/denied{
- pixel_x = 4;
- pixel_y = -2
- },
-/obj/structure/table,
-/turf/open/floor/plasteel/brown{
- dir = 1
- },
-/area/quartermaster/office)
-"aTd" = (
-/turf/open/floor/plasteel/brown{
- dir = 1
- },
-/area/quartermaster/office)
-"aTe" = (
-/obj/machinery/disposal/bin,
-/obj/structure/disposalpipe/trunk,
-/turf/open/floor/plasteel/brown{
- dir = 1
- },
-/area/quartermaster/office)
-"aTf" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/closed/wall,
-/area/quartermaster/office)
-"aTg" = (
-/obj/machinery/light{
- dir = 4
- },
-/obj/machinery/firealarm{
- dir = 4;
- pixel_x = 28
- },
-/turf/open/floor/plasteel/brown{
- dir = 4
- },
-/area/quartermaster/office)
-"aTh" = (
-/obj/machinery/navbeacon{
- codes_txt = "delivery;dir=4";
- freq = 1400;
- location = "QM #4"
- },
-/obj/effect/turf_decal/bot,
-/turf/open/floor/plasteel,
-/area/quartermaster/storage)
-"aTi" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 8
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/storage)
-"aTj" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/effect/turf_decal/bot,
-/turf/open/floor/plasteel,
-/area/quartermaster/storage)
-"aTk" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/storage)
-"aTl" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/effect/turf_decal/bot,
-/turf/open/floor/plasteel,
-/area/quartermaster/storage)
-"aTm" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 10
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/storage)
-"aTn" = (
-/obj/machinery/conveyor_switch/oneway{
- convdir = 1;
- id = "QMLoad2"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/storage)
-"aTo" = (
-/obj/structure/table,
-/obj/item/stack/cable_coil,
-/obj/item/stack/cable_coil,
-/obj/effect/spawner/lootdrop/maintenance,
-/obj/item/weapon/storage/box/matches,
-/turf/open/floor/plating,
-/area/maintenance/department/cargo)
-"aTp" = (
-/obj/structure/table,
-/obj/item/device/assembly/igniter,
-/obj/item/device/assembly/igniter,
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/open/floor/plating,
-/area/maintenance/department/cargo)
-"aTq" = (
-/obj/structure/table,
-/obj/item/stack/sheet/metal{
- amount = 10
- },
-/obj/item/stack/rods{
- amount = 25
- },
-/obj/item/weapon/shard{
- icon_state = "small"
- },
-/obj/effect/decal/cleanable/deadcockroach,
-/obj/item/weapon/light/bulb,
-/turf/open/floor/plating,
-/area/maintenance/department/cargo)
-"aTr" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/hallway/secondary/entry)
-"aTs" = (
-/turf/closed/wall/r_wall,
-/area/hallway/secondary/entry)
-"aTt" = (
+"cjL" = (
/obj/machinery/power/apc{
dir = 1;
name = "Monastery Maintenance APC";
@@ -20898,7 +52273,7 @@
},
/turf/open/floor/plating,
/area/maintenance/department/chapel/monastery)
-"aTu" = (
+"cjM" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/cable{
d1 = 1;
@@ -20907,170 +52282,7 @@
},
/turf/open/floor/plating,
/area/maintenance/department/chapel/monastery)
-"aTv" = (
-/obj/machinery/computer/security,
-/obj/machinery/requests_console{
- department = "Security";
- departmentType = 5;
- pixel_y = 30
- },
-/obj/structure/reagent_dispensers/peppertank{
- pixel_x = -32
- },
-/turf/open/floor/plasteel/red/side{
- dir = 9
- },
-/area/security/checkpoint/customs)
-"aTw" = (
-/turf/open/floor/plasteel/red/side{
- dir = 1
- },
-/area/security/checkpoint/customs)
-"aTx" = (
-/obj/structure/closet/wardrobe/red,
-/turf/open/floor/plasteel/red/side{
- dir = 1
- },
-/area/security/checkpoint/customs)
-"aTy" = (
-/obj/structure/closet/secure_closet/security,
-/obj/item/device/radio/intercom{
- dir = 0;
- name = "Station Intercom (General)";
- pixel_y = 26
- },
-/turf/open/floor/plasteel/red/side{
- dir = 5
- },
-/area/security/checkpoint/customs)
-"aTz" = (
-/obj/machinery/light{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/neutral/corner,
-/area/hallway/primary/central)
-"aTA" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock{
- name = "Custodial Quarters";
- req_access_txt = "26"
- },
-/turf/open/floor/plasteel/vault{
- dir = 5
- },
-/area/janitor)
-"aTB" = (
-/obj/machinery/light{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hydroponics)
-"aTC" = (
-/obj/machinery/vending/dinnerware,
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/kitchen)
-"aTD" = (
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/kitchen)
-"aTE" = (
-/obj/structure/sink/kitchen{
- pixel_y = 28
- },
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/kitchen)
-"aTF" = (
-/obj/machinery/processor,
-/obj/item/device/radio/intercom{
- dir = 0;
- name = "Station Intercom (General)";
- pixel_y = 26
- },
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/kitchen)
-"aTG" = (
-/obj/machinery/light{
- dir = 4
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/firealarm{
- dir = 4;
- pixel_x = 28
- },
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/kitchen)
-"aTH" = (
-/obj/structure/table,
-/obj/machinery/chem_dispenser/drinks/beer,
-/turf/open/floor/plasteel/black,
-/area/crew_quarters/bar)
-"aTI" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel/black,
-/area/crew_quarters/bar)
-"aTJ" = (
-/obj/structure/table/reinforced,
-/obj/machinery/chem_dispenser/drinks,
-/turf/open/floor/plasteel/darkred/side{
- dir = 8
- },
-/area/crew_quarters/bar)
-"aTK" = (
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 5
- },
-/turf/open/floor/plasteel/black,
-/area/crew_quarters/bar)
-"aTL" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/structure/extinguisher_cabinet{
- pixel_y = 30
- },
-/turf/open/floor/plasteel/vault{
- dir = 5
- },
-/area/crew_quarters/bar)
-"aTM" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/vault{
- dir = 5
- },
-/area/crew_quarters/bar)
-"aTN" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel/vault{
- dir = 5
- },
-/area/crew_quarters/bar)
-"aTO" = (
-/obj/structure/disposalpipe/junction{
- icon_state = "pipe-j2";
- dir = 1
- },
-/obj/machinery/firealarm{
- dir = 4;
- pixel_x = 28
- },
-/turf/open/floor/plasteel/black,
-/area/crew_quarters/bar)
-"aTP" = (
+"cjN" = (
/obj/machinery/light/small{
dir = 1
},
@@ -21078,7 +52290,7 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating,
/area/maintenance/department/chapel/monastery)
-"aTQ" = (
+"cjO" = (
/obj/effect/decal/cleanable/cobweb{
icon_state = "cobweb2"
},
@@ -21092,7 +52304,7 @@
},
/turf/open/floor/plating,
/area/maintenance/department/chapel/monastery)
-"aTR" = (
+"cjP" = (
/obj/item/weapon/twohanded/required/kirbyplants{
icon_state = "plant-22"
},
@@ -21103,883 +52315,11 @@
},
/turf/open/floor/plasteel/black,
/area/library)
-"aTS" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/firealarm{
- dir = 4;
- pixel_x = -28
- },
-/turf/open/floor/plasteel/brown/corner{
- dir = 1
- },
-/area/hallway/primary/central)
-"aTT" = (
-/obj/structure/table,
-/obj/machinery/computer/stockexchange,
-/obj/machinery/status_display{
- dir = 4;
- layer = 4;
- pixel_x = -32;
- supply_display = 1
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"aTU" = (
-/obj/structure/disposalpipe/junction{
- dir = 8;
- icon_state = "pipe-j1"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 6
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"aTV" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass_mining{
- name = "Cargo Office";
- req_access_txt = "50"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"aTW" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"aTX" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"aTY" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/storage)
-"aTZ" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/quartermaster/storage)
-"aUa" = (
-/obj/structure/disposalpipe/sortjunction{
- dir = 8;
- icon_state = "pipe-j2s";
- sortType = 3
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
-/area/quartermaster/storage)
-"aUb" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/storage)
-"aUc" = (
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/storage)
-"aUd" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/quartermaster/storage)
-"aUe" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 6
- },
-/turf/open/floor/plating,
-/area/maintenance/department/cargo)
-"aUf" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/department/cargo)
-"aUg" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 9
- },
-/turf/open/floor/plating,
-/area/maintenance/department/cargo)
-"aUh" = (
-/turf/open/floor/plasteel/arrival{
- dir = 1
- },
-/area/hallway/secondary/entry)
-"aUi" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 4
- },
-/turf/open/floor/plasteel/arrival{
- dir = 1
- },
-/area/hallway/secondary/entry)
-"aUj" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/arrival{
- dir = 1
- },
-/area/hallway/secondary/entry)
-"aUk" = (
-/obj/machinery/camera{
- c_tag = "Arrivals Fore";
- dir = 2
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/arrival{
- dir = 1
- },
-/area/hallway/secondary/entry)
-"aUl" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/obj/item/device/radio/intercom{
- dir = 0;
- name = "Station Intercom (General)";
- pixel_y = 26
- },
-/turf/open/floor/plasteel/arrival{
- dir = 1
- },
-/area/hallway/secondary/entry)
-"aUm" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 10
- },
-/turf/open/floor/plasteel/arrival{
- dir = 1
- },
-/area/hallway/secondary/entry)
-"aUn" = (
-/obj/machinery/computer/card,
-/obj/machinery/light{
- dir = 8
- },
-/obj/machinery/camera{
- c_tag = "Security Checkpoint";
- dir = 4;
- network = list("SS13")
- },
-/obj/machinery/airalarm{
- dir = 4;
- pixel_x = -23
- },
-/turf/open/floor/plasteel/red/side{
- dir = 8
- },
-/area/security/checkpoint/customs)
-"aUo" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/security/checkpoint/customs)
-"aUp" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 10
- },
-/turf/open/floor/plasteel,
-/area/security/checkpoint/customs)
-"aUq" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/security/checkpoint/customs)
-"aUr" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/red/side{
- dir = 4
- },
-/area/security/checkpoint/customs)
-"aUs" = (
-/obj/machinery/door/airlock/security{
- name = "Security Checkpoint";
- req_access = null;
- req_access_txt = "1"
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/red,
-/area/security/checkpoint/customs)
-"aUt" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"aUu" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"aUv" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 4
- },
-/obj/machinery/airalarm{
- dir = 8;
- pixel_x = 23
- },
-/turf/open/floor/plasteel/neutral/corner,
-/area/hallway/primary/central)
-"aUw" = (
-/obj/machinery/disposal/bin,
-/obj/structure/disposalpipe/trunk,
-/obj/machinery/airalarm{
- pixel_y = 24
- },
-/turf/open/floor/plasteel/floorgrime,
-/area/janitor)
-"aUx" = (
-/turf/open/floor/plasteel/floorgrime,
-/area/janitor)
-"aUy" = (
-/obj/structure/reagent_dispensers/watertank,
-/obj/machinery/power/apc{
- dir = 1;
- name = "Custodial Closet APC";
- pixel_y = 24
- },
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
- },
-/turf/open/floor/plasteel/floorgrime,
-/area/janitor)
-"aUz" = (
-/obj/machinery/hydroponics/constructable,
-/obj/machinery/light{
- dir = 8
- },
-/turf/open/floor/plasteel/green/side{
- dir = 8
- },
-/area/hydroponics)
-"aUA" = (
-/obj/machinery/vending/hydronutrients,
-/turf/open/floor/plasteel/vault{
- dir = 5
- },
-/area/hydroponics)
-"aUB" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel/green/side{
- dir = 8
- },
-/area/hydroponics)
-"aUC" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hydroponics)
-"aUD" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/hydroponics)
-"aUE" = (
-/obj/effect/landmark/start/botanist,
-/turf/open/floor/plasteel,
-/area/hydroponics)
-"aUF" = (
-/obj/machinery/smartfridge,
-/turf/open/floor/plasteel/vault{
- dir = 8
- },
-/area/crew_quarters/kitchen)
-"aUG" = (
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/kitchen)
-"aUH" = (
-/obj/machinery/vending/boozeomat,
-/turf/open/floor/plasteel/vault{
- dir = 8
- },
-/area/crew_quarters/kitchen)
-"aUI" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 6
- },
-/turf/open/floor/plasteel/black,
-/area/crew_quarters/bar)
-"aUJ" = (
-/obj/structure/chair/stool/bar,
-/obj/machinery/computer/security/telescreen/entertainment{
- pixel_y = 32
- },
-/turf/open/floor/plasteel/black,
-/area/crew_quarters/bar)
-"aUK" = (
-/turf/open/floor/plasteel/vault{
- dir = 5
- },
-/area/crew_quarters/bar)
-"aUL" = (
-/turf/open/floor/plasteel/black,
-/area/crew_quarters/bar)
-"aUM" = (
-/obj/structure/chair/wood/normal,
-/turf/open/floor/carpet{
- icon_state = "carpetsymbol"
- },
-/area/crew_quarters/bar)
-"aUN" = (
-/obj/effect/landmark/start/assistant,
-/obj/structure/chair/wood/normal,
-/turf/open/floor/carpet{
- icon_state = "carpetsymbol"
- },
-/area/crew_quarters/bar)
-"aUO" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 8
- },
-/obj/effect/landmark/xmastree,
-/turf/open/floor/carpet{
- icon_state = "carpetsymbol"
- },
-/area/crew_quarters/bar)
-"aUP" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/structure/chair/wood/normal,
-/turf/open/floor/carpet{
- icon_state = "carpetsymbol"
- },
-/area/crew_quarters/bar)
-"aUQ" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 8
- },
-/turf/open/floor/plasteel/vault{
- dir = 5
- },
-/area/crew_quarters/bar)
-"aUR" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/newscaster{
- pixel_x = 32;
- pixel_y = 1
- },
-/obj/structure/chair/wood/normal,
-/turf/open/floor/plasteel/vault{
- dir = 5
- },
-/area/crew_quarters/bar)
-"aUS" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/extinguisher_cabinet{
- pixel_x = -24
- },
-/turf/open/floor/plasteel/brown/corner{
- dir = 1
- },
-/area/hallway/primary/central)
-"aUT" = (
+"cjQ" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/carpet,
/area/library)
-"aUU" = (
-/obj/structure/table,
-/obj/item/weapon/pen,
-/obj/item/device/radio/intercom{
- dir = 0;
- name = "Station Intercom (General)";
- pixel_y = -26
- },
-/obj/item/weapon/paper_bin{
- layer = 2.9
- },
-/obj/structure/extinguisher_cabinet{
- pixel_x = -26
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"aUV" = (
-/obj/structure/table,
-/obj/item/weapon/clipboard,
-/obj/item/weapon/folder/yellow,
-/obj/machinery/airalarm{
- dir = 1;
- pixel_y = -22
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"aUW" = (
-/obj/machinery/photocopier,
-/obj/machinery/light,
-/obj/machinery/camera{
- c_tag = "Cargo Office";
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"aUX" = (
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/obj/machinery/power/apc{
- dir = 2;
- name = "Cargo Office APC";
- pixel_x = 1;
- pixel_y = -24
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"aUY" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"aUZ" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"aVa" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/closed/wall,
-/area/quartermaster/office)
-"aVb" = (
-/obj/machinery/door/firedoor,
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"aVc" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/storage)
-"aVd" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/storage)
-"aVe" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/power/apc{
- dir = 2;
- name = "Cargo Bay APC";
- pixel_y = -24
- },
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/storage)
-"aVf" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/light,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/item/device/radio/intercom{
- dir = 0;
- name = "Station Intercom (General)";
- pixel_y = -26
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/storage)
-"aVg" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/structure/disposalpipe/sortjunction{
- dir = 1;
- icon_state = "pipe-j1s";
- sortType = 2
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 10
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/storage)
-"aVh" = (
-/obj/structure/disposalpipe/trunk{
- dir = 8
- },
-/obj/machinery/disposal/bin,
-/turf/open/floor/plasteel,
-/area/quartermaster/storage)
-"aVi" = (
-/turf/closed/wall,
-/area/maintenance/solars/starboard)
-"aVj" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/maintenance/solars/starboard)
-"aVk" = (
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/machinery/power/solar{
- id = "portsolar";
- name = "Port Solar Array"
- },
-/turf/open/floor/plasteel/airless/solarpanel,
-/area/solar/starboard)
-"aVl" = (
-/obj/machinery/light{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"aVm" = (
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"aVn" = (
-/obj/machinery/holopad,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"aVo" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"aVp" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"aVq" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 10
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"aVr" = (
-/obj/machinery/light{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plasteel/neutral/corner{
- dir = 4
- },
-/area/hallway/secondary/entry)
-"aVs" = (
-/obj/machinery/computer/secure_data,
-/obj/machinery/button/door{
- dir = 2;
- id = "papersplease";
- name = "Shutters Control Button";
- pixel_x = -26;
- pixel_y = 6;
- req_access_txt = "1"
- },
-/obj/machinery/button/flasher{
- id = "brigentry";
- pixel_x = -26;
- pixel_y = -4
- },
-/turf/open/floor/plasteel/red/side{
- dir = 10
- },
-/area/security/checkpoint/customs)
-"aVt" = (
-/obj/item/weapon/pen,
-/obj/structure/table,
-/obj/item/weapon/paper_bin{
- layer = 2.9
- },
-/turf/open/floor/plasteel/red/side,
-/area/security/checkpoint/customs)
-"aVu" = (
-/obj/structure/chair/office/dark,
-/obj/effect/landmark/event_spawn,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/red/side,
-/area/security/checkpoint/customs)
-"aVv" = (
-/obj/machinery/recharger{
- pixel_y = 4
- },
-/obj/structure/table,
-/turf/open/floor/plasteel/red/side,
-/area/security/checkpoint/customs)
-"aVw" = (
-/obj/machinery/power/apc{
- dir = 2;
- name = "Security Checkpoint APC";
- pixel_x = 1;
- pixel_y = -24
- },
-/obj/structure/cable,
-/turf/open/floor/plasteel/red/side{
- dir = 6
- },
-/area/security/checkpoint/customs)
-"aVx" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"aVy" = (
-/obj/vehicle/janicart,
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/light{
- dir = 8
- },
-/obj/machinery/button/door{
- dir = 2;
- id = "jangarage";
- name = "Custodial Closet Shutters Control";
- pixel_x = -25;
- req_access_txt = "26"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/turf/open/floor/plasteel/floorgrime,
-/area/janitor)
-"aVz" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 8
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/floorgrime,
-/area/janitor)
-"aVA" = (
-/obj/structure/closet/l3closet/janitor,
-/obj/machinery/requests_console{
- department = "Janitorial";
- departmentType = 1;
- pixel_x = 32
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/turf/open/floor/plasteel/floorgrime,
-/area/janitor)
-"aVB" = (
-/obj/machinery/vending/hydroseeds{
- slogan_delay = 700
- },
-/turf/open/floor/plasteel/vault{
- dir = 5
- },
-/area/hydroponics)
-"aVC" = (
-/turf/open/floor/plasteel/green/corner,
-/area/hydroponics)
-"aVD" = (
-/obj/structure/chair/stool,
-/turf/open/floor/plasteel/green/side,
-/area/hydroponics)
-"aVE" = (
-/obj/structure/table/reinforced,
-/obj/machinery/door/window/eastleft{
- dir = 8;
- name = "Hydroponics Desk";
- req_access_txt = "35"
- },
-/obj/machinery/door/firedoor,
-/obj/machinery/door/window/eastleft{
- dir = 4;
- name = "Kitchen Desk";
- req_access_txt = "28"
- },
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/kitchen)
-"aVF" = (
-/obj/effect/landmark/start/cook,
-/obj/machinery/atmospherics/components/unary/vent_pump/on,
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/kitchen)
-"aVG" = (
-/obj/structure/table,
-/obj/item/weapon/reagent_containers/food/condiment/saltshaker{
- pixel_x = 4;
- pixel_y = 4
- },
-/obj/item/weapon/reagent_containers/food/condiment/peppermill,
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/kitchen)
-"aVH" = (
-/obj/structure/table,
-/obj/machinery/reagentgrinder,
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/kitchen)
-"aVI" = (
-/obj/structure/table/reinforced,
-/obj/machinery/door/firedoor,
-/obj/item/weapon/reagent_containers/food/snacks/pie/cream,
-/obj/machinery/camera{
- c_tag = "Kitchen";
- dir = 1;
- network = list("SS13")
- },
-/turf/open/floor/plasteel/hydrofloor,
-/area/crew_quarters/kitchen)
-"aVJ" = (
-/obj/effect/landmark/start/bartender,
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 8
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel/black,
-/area/crew_quarters/bar)
-"aVK" = (
-/obj/structure/table/reinforced,
-/obj/item/weapon/gun/ballistic/revolver/russian,
-/turf/open/floor/plasteel/darkred/side{
- dir = 8
- },
-/area/crew_quarters/bar)
-"aVL" = (
-/obj/structure/chair/stool/bar,
-/obj/effect/landmark/start/assistant,
-/turf/open/floor/plasteel/vault{
- dir = 5
- },
-/area/crew_quarters/bar)
-"aVM" = (
+"cjR" = (
/obj/structure/cable{
d1 = 1;
d2 = 4;
@@ -21988,331 +52328,7 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/carpet,
/area/library)
-"aVN" = (
-/obj/structure/table/wood/fancy,
-/obj/item/weapon/reagent_containers/food/drinks/soda_cans/cola,
-/turf/open/floor/carpet{
- icon_state = "carpetsymbol"
- },
-/area/crew_quarters/bar)
-"aVO" = (
-/obj/item/weapon/coin/silver,
-/obj/structure/table/wood/fancy,
-/obj/item/weapon/cane,
-/turf/open/floor/carpet{
- icon_state = "carpetsymbol"
- },
-/area/crew_quarters/bar)
-"aVP" = (
-/obj/machinery/holopad,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/carpet{
- icon_state = "carpetsymbol"
- },
-/area/crew_quarters/bar)
-"aVQ" = (
-/obj/structure/table/wood/fancy,
-/obj/item/weapon/storage/fancy/candle_box,
-/turf/open/floor/carpet{
- icon_state = "carpetsymbol"
- },
-/area/crew_quarters/bar)
-"aVR" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/table/wood,
-/obj/item/clothing/under/sundress,
-/obj/item/clothing/under/waiter,
-/obj/item/clothing/under/blacktango,
-/turf/open/floor/plasteel/black,
-/area/crew_quarters/bar)
-"aVS" = (
-/obj/structure/chair/stool,
-/obj/item/trash/can,
-/turf/open/floor/carpet{
- icon_state = "carpetsymbol"
- },
-/area/crew_quarters/bar)
-"aVT" = (
-/obj/effect/landmark/start/assistant,
-/obj/structure/chair/stool,
-/turf/open/floor/carpet{
- icon_state = "carpetsymbol"
- },
-/area/crew_quarters/bar)
-"aVU" = (
-/obj/structure/chair/stool,
-/turf/open/floor/carpet{
- icon_state = "carpetsymbol"
- },
-/area/crew_quarters/bar)
-"aVV" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"aVW" = (
-/obj/machinery/door/airlock/maintenance{
- name = "Cargo Office Maintenance";
- req_access_txt = "50"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plating,
-/area/quartermaster/office)
-"aVX" = (
-/obj/structure/table,
-/obj/item/weapon/storage/firstaid/regular{
- pixel_x = 6;
- pixel_y = -5
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"aVY" = (
-/obj/structure/table,
-/obj/machinery/cell_charger,
-/obj/item/weapon/hand_labeler,
-/obj/machinery/light/small,
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"aVZ" = (
-/obj/structure/closet/wardrobe/cargotech,
-/obj/item/clothing/head/mailman,
-/obj/item/clothing/under/rank/mailman,
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"aWa" = (
-/turf/closed/wall,
-/area/quartermaster/qm)
-"aWb" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plating,
-/area/quartermaster/qm)
-"aWc" = (
-/obj/machinery/door/airlock/glass_mining{
- name = "Quartermaster";
- req_access_txt = "41"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/brown,
-/area/quartermaster/qm)
-"aWd" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/quartermaster/qm)
-"aWe" = (
-/turf/closed/wall,
-/area/quartermaster/miningdock)
-"aWf" = (
-/obj/machinery/door/firedoor,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/brown,
-/area/quartermaster/miningdock)
-"aWg" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/brown,
-/area/quartermaster/miningdock)
-"aWh" = (
-/obj/machinery/power/smes,
-/obj/structure/cable{
- icon_state = "0-2";
- pixel_y = 1;
- d2 = 2
- },
-/turf/open/floor/plating,
-/area/maintenance/solars/starboard)
-"aWi" = (
-/obj/machinery/power/terminal{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "0-2";
- pixel_y = 1;
- d2 = 2
- },
-/obj/machinery/light/small{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/maintenance/solars/starboard)
-"aWj" = (
-/obj/structure/rack,
-/obj/item/clothing/mask/gas,
-/obj/item/device/multitool,
-/turf/open/floor/plating,
-/area/maintenance/solars/starboard)
-"aWk" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
- icon_state = "space";
- layer = 4;
- name = "EXTERNAL AIRLOCK";
- pixel_x = 32
- },
-/turf/open/floor/plating,
-/area/maintenance/solars/starboard)
-"aWl" = (
-/obj/machinery/door/airlock/external{
- cyclelinkeddir = 2;
- name = "Port Docking Bay 1"
- },
-/turf/open/floor/plating,
-/area/hallway/secondary/entry)
-"aWm" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"aWn" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"aWo" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"aWp" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plasteel/neutral/corner{
- dir = 4
- },
-/area/hallway/secondary/entry)
-"aWq" = (
-/obj/machinery/door/firedoor,
-/obj/structure/table/reinforced,
-/obj/machinery/door/window/westright{
- dir = 1;
- name = "Security Checkpoint";
- req_access_txt = "1"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/door/window/northleft{
- dir = 2;
- icon_state = "left";
- name = "Reception Window";
- req_access_txt = "0"
- },
-/obj/machinery/door/poddoor{
- density = 0;
- icon_state = "open";
- id = "papersplease";
- layer = 3.1;
- name = "privacy shutters";
- opacity = 0
- },
-/obj/item/weapon/crowbar,
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plasteel,
-/area/security/checkpoint/customs)
-"aWr" = (
-/obj/structure/janitorialcart,
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/floorgrime,
-/area/janitor)
-"aWs" = (
-/obj/structure/closet/jcloset,
-/obj/item/clothing/head/crown,
-/obj/machinery/camera{
- c_tag = "Custodial Closet";
- dir = 8
- },
-/obj/structure/extinguisher_cabinet{
- pixel_x = 24
- },
-/turf/open/floor/plasteel/floorgrime,
-/area/janitor)
-"aWt" = (
-/obj/machinery/seed_extractor,
-/turf/open/floor/plasteel/vault{
- dir = 5
- },
-/area/hydroponics)
-"aWu" = (
-/obj/machinery/light{
- dir = 4
- },
-/obj/machinery/camera{
- c_tag = "Hydroponics South";
- dir = 8;
- network = list("SS13")
- },
-/turf/open/floor/plasteel,
-/area/hydroponics)
-"aWv" = (
-/obj/structure/table/reinforced,
-/obj/machinery/door/firedoor,
-/obj/machinery/door/window/westright{
- dir = 1;
- name = "Hydroponics Desk";
- req_access_txt = "35"
- },
-/obj/item/weapon/reagent_containers/glass/bucket,
-/turf/open/floor/plasteel,
-/area/hydroponics)
-"aWw" = (
-/obj/structure/table/reinforced,
-/obj/machinery/door/firedoor,
-/obj/machinery/door/window/westright{
- dir = 1;
- name = "Hydroponics Desk";
- req_access_txt = "35"
- },
-/turf/open/floor/plasteel,
-/area/hydroponics)
-"aWx" = (
-/obj/structure/table,
-/obj/machinery/microwave{
- pixel_x = -3;
- pixel_y = 6
- },
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/kitchen)
-"aWy" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/kitchen)
-"aWz" = (
-/obj/structure/table,
-/obj/item/weapon/kitchen/rollingpin,
-/obj/item/weapon/reagent_containers/food/condiment/enzyme,
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/kitchen)
-"aWA" = (
-/obj/structure/table,
-/obj/item/weapon/storage/box/ingredients/wildcard,
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/kitchen)
-"aWB" = (
+"cjS" = (
/obj/item/weapon/twohanded/required/kirbyplants{
icon_state = "plant-22"
},
@@ -22330,21832 +52346,8 @@
},
/turf/open/floor/plasteel/black,
/area/library)
-"aWC" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/black,
-/area/crew_quarters/bar)
-"aWD" = (
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel/black,
-/area/crew_quarters/bar)
-"aWE" = (
-/obj/structure/table/reinforced,
-/obj/item/clothing/head/that{
- throwforce = 1
- },
-/turf/open/floor/plasteel/darkred/side{
- dir = 8
- },
-/area/crew_quarters/bar)
-"aWF" = (
-/obj/structure/chair/stool/bar,
-/turf/open/floor/plasteel/black,
-/area/crew_quarters/bar)
-"aWG" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/carpet{
- icon_state = "carpetsymbol"
- },
-/area/crew_quarters/bar)
-"aWH" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/chair/wood/normal{
- dir = 1
- },
-/turf/open/floor/plasteel/vault{
- dir = 5
- },
-/area/crew_quarters/bar)
-"aWI" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 4
- },
-/obj/item/clothing/shoes/sandal,
-/turf/open/floor/plasteel/black,
-/area/crew_quarters/bar)
-"aWJ" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/vault{
- dir = 5
- },
-/area/crew_quarters/bar)
-"aWK" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/black,
-/area/crew_quarters/bar)
-"aWL" = (
+"cjT" = (
/obj/structure/grille,
-/obj/structure/window/fulltile,
-/turf/open/floor/plating,
-/area/crew_quarters/bar)
-"aWM" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plating,
-/area/maintenance/department/cargo)
-"aWN" = (
-/obj/structure/closet/secure_closet/quartermaster,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/airalarm{
- dir = 4;
- pixel_x = -23
- },
-/obj/item/weapon/storage/belt/fannypack/yellow,
-/turf/open/floor/plasteel/brown{
- dir = 9
- },
-/area/quartermaster/qm)
-"aWO" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 1
- },
-/turf/open/floor/plasteel/brown{
- dir = 1
- },
-/area/quartermaster/qm)
-"aWP" = (
-/obj/machinery/disposal/bin,
-/obj/structure/disposalpipe/trunk{
- dir = 8
- },
-/turf/open/floor/plasteel/brown{
- dir = 5
- },
-/area/quartermaster/qm)
-"aWQ" = (
-/obj/structure/closet/wardrobe/miner,
-/obj/machinery/firealarm{
- dir = 4;
- pixel_x = -28
- },
-/turf/open/floor/plasteel/brown{
- dir = 9
- },
-/area/quartermaster/miningdock)
-"aWR" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/brown{
- dir = 1
- },
-/area/quartermaster/miningdock)
-"aWS" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/brown{
- dir = 1
- },
-/area/quartermaster/miningdock)
-"aWT" = (
-/obj/structure/closet/emcloset,
-/obj/machinery/airalarm{
- dir = 8;
- pixel_x = 23
- },
-/turf/open/floor/plasteel/brown{
- dir = 5
- },
-/area/quartermaster/miningdock)
-"aWU" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating,
-/area/maintenance/department/cargo)
-"aWV" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plating,
-/area/maintenance/department/cargo)
-"aWW" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/door/airlock/engineering{
- name = "Starboard Solar Access";
- req_access_txt = "10"
- },
-/turf/open/floor/plating,
-/area/maintenance/solars/starboard)
-"aWX" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/turf/open/floor/plating,
-/area/maintenance/solars/starboard)
-"aWY" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/turf/open/floor/plating,
-/area/maintenance/solars/starboard)
-"aWZ" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plating,
-/area/maintenance/solars/starboard)
-"aXa" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/door/airlock/external{
- cyclelinkeddir = 4;
- name = "Solar Maintenance";
- req_access = null;
- req_access_txt = "10; 13"
- },
-/turf/open/floor/plating,
-/area/maintenance/solars/starboard)
-"aXb" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plating,
-/area/maintenance/solars/starboard)
-"aXc" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/door/airlock/external{
- cyclelinkeddir = 8;
- name = "Solar Maintenance";
- req_access = null;
- req_access_txt = "10; 13"
- },
-/turf/open/floor/plating,
-/area/maintenance/solars/starboard)
-"aXd" = (
-/obj/structure/lattice/catwalk,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/space,
-/area/solar/starboard)
-"aXe" = (
-/obj/structure/lattice/catwalk,
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/turf/open/space,
-/area/solar/starboard)
-"aXf" = (
-/obj/structure/lattice/catwalk,
-/turf/open/space,
-/area/solar/starboard)
-"aXg" = (
-/obj/structure/lattice/catwalk,
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/turf/open/space,
-/area/solar/starboard)
-"aXh" = (
-/obj/machinery/power/tracker,
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/turf/open/floor/plasteel/airless/solarpanel,
-/area/solar/starboard)
-"aXi" = (
-/obj/structure/grille,
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
- icon_state = "space";
- layer = 4;
- name = "EXTERNAL AIRLOCK";
- pixel_y = 32
- },
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/hallway/secondary/entry)
-"aXj" = (
-/turf/open/floor/plating,
-/area/hallway/secondary/entry)
-"aXk" = (
-/obj/structure/closet/emcloset,
-/obj/effect/turf_decal/stripes/line{
- dir = 10
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"aXl" = (
-/obj/machinery/light,
-/obj/effect/turf_decal/stripes/line,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"aXm" = (
-/obj/structure/closet/emcloset,
-/obj/effect/turf_decal/stripes/line{
- dir = 6
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"aXn" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"aXo" = (
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/window/reinforced,
-/obj/structure/table/glass,
-/obj/item/weapon/tank/internals/oxygen,
-/obj/item/clothing/mask/breath,
-/obj/item/clothing/suit/space/hardsuit/engine/elite,
-/turf/open/floor/plating/abductor,
-/area/shuttle/abandoned)
-"aXp" = (
-/obj/machinery/light{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"aXq" = (
-/obj/machinery/flasher{
- id = "brigentry";
- pixel_x = -28;
- pixel_y = 24
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"aXr" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"aXs" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"aXt" = (
-/obj/structure/chair{
- dir = 1
- },
-/turf/open/floor/plating/abductor,
-/area/shuttle/abandoned)
-"aXu" = (
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/window/reinforced,
-/obj/structure/table/glass,
-/obj/item/clothing/shoes/magboots,
-/turf/open/floor/plating/abductor,
-/area/shuttle/abandoned)
-"aXv" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 6
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/floorgrime,
-/area/janitor)
-"aXw" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 8
- },
-/turf/open/floor/plasteel/floorgrime,
-/area/janitor)
-"aXx" = (
-/obj/item/weapon/reagent_containers/glass/bucket,
-/obj/item/weapon/mop,
-/obj/structure/sink{
- dir = 4;
- pixel_x = 11
- },
-/turf/open/floor/plasteel/floorgrime,
-/area/janitor)
-"aXy" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/hydroponics)
-"aXz" = (
-/turf/open/floor/plasteel/green/corner{
- dir = 1
- },
-/area/hallway/primary/central)
-"aXA" = (
-/obj/structure/table,
-/obj/item/weapon/storage/crayons,
-/obj/item/weapon/wrench,
-/turf/open/floor/plasteel/black,
-/area/chapel/main/monastery)
-"aXB" = (
-/obj/structure/table,
-/obj/item/weapon/reagent_containers/glass/beaker/large,
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/kitchen)
-"aXC" = (
-/obj/structure/table,
-/obj/item/weapon/reagent_containers/food/snacks/grown/tomato,
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/kitchen)
-"aXD" = (
-/obj/structure/chair{
- dir = 8
- },
-/turf/open/floor/plasteel/black,
-/area/chapel/main/monastery)
-"aXE" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 4
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel/black,
-/area/crew_quarters/bar)
-"aXF" = (
-/obj/structure/table/reinforced,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/item/clothing/head/hardhat/cakehat,
-/turf/open/floor/plasteel/darkred/side{
- dir = 8
- },
-/area/crew_quarters/bar)
-"aXG" = (
-/obj/machinery/light/small{
- dir = 8
- },
-/obj/structure/chair{
- dir = 4
- },
-/turf/open/floor/plasteel/black,
-/area/chapel/main/monastery)
-"aXH" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/vault{
- dir = 5
- },
-/area/crew_quarters/bar)
-"aXI" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 4
- },
-/obj/item/device/radio/beacon,
-/turf/open/floor/plasteel/vault{
- dir = 5
- },
-/area/crew_quarters/bar)
-"aXJ" = (
-/obj/structure/window/reinforced,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/carpet,
-/area/chapel/main/monastery)
-"aXK" = (
-/obj/structure/table/reinforced,
-/obj/item/weapon/lighter,
-/turf/open/floor/plasteel/darkred/side{
- dir = 8
- },
-/area/crew_quarters/bar)
-"aXL" = (
-/obj/item/weapon/cigbutt,
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/open/floor/plating,
-/area/maintenance/department/cargo)
-"aXM" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/turf/open/floor/plating,
-/area/maintenance/department/cargo)
-"aXN" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/turf/open/floor/plating,
-/area/maintenance/department/cargo)
-"aXO" = (
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/obj/machinery/power/apc{
- dir = 8;
- name = "Quartermaster APC";
- pixel_x = -24
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 1
- },
-/turf/open/floor/plasteel/brown{
- dir = 8
- },
-/area/quartermaster/qm)
-"aXP" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/qm)
-"aXQ" = (
-/obj/structure/filingcabinet,
-/turf/open/floor/plasteel/brown{
- dir = 4
- },
-/area/quartermaster/qm)
-"aXR" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/quartermaster/miningdock)
-"aXS" = (
-/obj/structure/table,
-/obj/item/weapon/folder/yellow,
-/obj/item/weapon/pen,
-/turf/open/floor/plasteel/brown/corner{
- dir = 1
- },
-/area/quartermaster/miningdock)
-"aXT" = (
-/obj/structure/chair/office/dark{
- dir = 8
- },
-/obj/effect/landmark/start/shaft_miner,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
-/area/quartermaster/miningdock)
-"aXU" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/miningdock)
-"aXV" = (
-/obj/machinery/computer/security/mining,
-/obj/machinery/requests_console{
- department = "Mining";
- departmentType = 0;
- pixel_x = 32
- },
-/turf/open/floor/plasteel/brown/corner,
-/area/quartermaster/miningdock)
-"aXW" = (
-/obj/structure/table,
-/obj/machinery/light/small{
- dir = 8
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/labor)
-"aXX" = (
-/obj/machinery/computer/shuttle/mining,
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/labor)
-"aXY" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 6
- },
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
- },
-/area/maintenance/department/cargo)
-"aXZ" = (
-/obj/structure/cable,
-/obj/machinery/power/apc{
- dir = 8;
- name = "Starboard Solar APC";
- pixel_x = -24
- },
-/turf/open/floor/plating,
-/area/maintenance/solars/starboard)
-"aYa" = (
-/obj/structure/chair/stool,
-/obj/item/weapon/cigbutt/cigarbutt,
-/turf/open/floor/plating,
-/area/maintenance/solars/starboard)
-"aYb" = (
-/obj/machinery/power/solar_control{
- id = "starboardsolar";
- name = "Starboard Solar Control";
- track = 0
- },
-/obj/structure/cable,
-/turf/open/floor/plating,
-/area/maintenance/solars/starboard)
-"aYc" = (
-/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"aYd" = (
-/obj/machinery/door/firedoor,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"aYe" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"aYf" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"aYg" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"aYh" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass{
- name = "Central Access"
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"aYi" = (
-/obj/machinery/light/small{
- dir = 4
- },
-/obj/effect/decal/cleanable/cobweb{
- icon_state = "cobweb2"
- },
-/obj/item/weapon/storage/box/matches{
- pixel_x = -3;
- pixel_y = 8
- },
-/obj/item/weapon/storage/fancy/candle_box,
-/obj/structure/table/wood/fancy,
-/turf/open/floor/plasteel/black,
-/area/chapel/main/monastery)
-"aYj" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/floorgrime,
-/area/janitor)
-"aYk" = (
-/obj/structure/table,
-/obj/item/weapon/restraints/legcuffs/beartrap,
-/obj/item/weapon/restraints/legcuffs/beartrap,
-/obj/item/weapon/reagent_containers/spray/cleaner,
-/turf/open/floor/plasteel/floorgrime,
-/area/janitor)
-"aYl" = (
-/obj/structure/table,
-/obj/item/weapon/storage/box/lights/mixed{
- pixel_x = 3;
- pixel_y = 3
- },
-/obj/item/weapon/storage/box/mousetraps,
-/turf/open/floor/plasteel/floorgrime,
-/area/janitor)
-"aYm" = (
-/obj/structure/sink{
- dir = 8;
- pixel_x = -12;
- pixel_y = 2
- },
-/turf/open/floor/plasteel/green/side{
- dir = 8
- },
-/area/hydroponics)
-"aYn" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hydroponics)
-"aYo" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hydroponics)
-"aYp" = (
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
-/area/hydroponics)
-"aYq" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hydroponics)
-"aYr" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass{
- cyclelinkeddir = 4;
- name = "Hydroponics";
- req_access_txt = "35"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hydroponics)
-"aYs" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/green/corner{
- dir = 1
- },
-/area/hallway/primary/central)
-"aYt" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 1
- },
-/turf/open/floor/plasteel/neutral/corner{
- dir = 4
- },
-/area/hallway/primary/central)
-"aYu" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass{
- cyclelinkeddir = 8;
- name = "Kitchen";
- req_access_txt = "28"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/kitchen)
-"aYv" = (
-/obj/structure/disposalpipe/sortjunction{
- dir = 4;
- icon_state = "pipe-j1s";
- sortType = 20
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/kitchen)
-"aYw" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/kitchen)
-"aYx" = (
-/obj/effect/landmark/start/cook,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/kitchen)
-"aYy" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 8
- },
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/kitchen)
-"aYz" = (
-/obj/machinery/light{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/kitchen)
-"aYA" = (
-/obj/structure/chair/stool/bar,
-/obj/machinery/camera{
- c_tag = "Bar Port";
- dir = 1
- },
-/obj/machinery/light,
-/turf/open/floor/plasteel/black,
-/area/crew_quarters/bar)
-"aYB" = (
-/obj/item/weapon/reagent_containers/food/condiment/peppermill{
- pixel_x = 5;
- pixel_y = -2
- },
-/obj/item/weapon/reagent_containers/food/condiment/saltshaker{
- layer = 3.1;
- pixel_x = -2;
- pixel_y = 2
- },
-/obj/structure/table/wood,
-/turf/open/floor/plasteel/vault{
- dir = 5
- },
-/area/crew_quarters/bar)
-"aYC" = (
-/obj/structure/chair/wood/normal{
- dir = 8
- },
-/obj/machinery/light,
-/turf/open/floor/plasteel/black,
-/area/crew_quarters/bar)
-"aYD" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/black,
-/area/crew_quarters/bar)
-"aYE" = (
-/obj/structure/chair/wood/normal{
- dir = 4
- },
-/obj/machinery/light,
-/turf/open/floor/plasteel/black,
-/area/crew_quarters/bar)
-"aYF" = (
-/obj/structure/table/wood,
-/obj/item/weapon/kitchen/fork,
-/obj/item/clothing/glasses/regular/hipster,
-/turf/open/floor/plasteel/vault{
- dir = 5
- },
-/area/crew_quarters/bar)
-"aYG" = (
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/turf/open/floor/plasteel/vault{
- dir = 5
- },
-/area/crew_quarters/bar)
-"aYH" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/camera{
- c_tag = "Bar Starboard";
- dir = 1
- },
-/obj/machinery/light,
-/turf/open/floor/plasteel/black,
-/area/crew_quarters/bar)
-"aYI" = (
-/obj/machinery/power/smes{
- charge = 5e+006
- },
-/obj/structure/cable,
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
- },
-/turf/open/floor/plating,
-/area/maintenance/department/chapel/monastery)
-"aYJ" = (
-/obj/machinery/disposal/bin,
-/obj/structure/disposalpipe/trunk{
- dir = 8
- },
-/turf/open/floor/plasteel/vault{
- dir = 5
- },
-/area/crew_quarters/bar)
-"aYK" = (
-/turf/closed/wall,
-/area/science/robotics/mechbay)
-"aYL" = (
-/obj/structure/table,
-/obj/item/weapon/cartridge/quartermaster{
- pixel_x = 6;
- pixel_y = 5
- },
-/obj/item/weapon/cartridge/quartermaster,
-/obj/item/weapon/cartridge/quartermaster{
- pixel_x = -4;
- pixel_y = 7
- },
-/obj/item/weapon/coin/silver,
-/obj/machinery/status_display{
- dir = 4;
- layer = 4;
- pixel_x = -32;
- supply_display = 1
- },
-/turf/open/floor/plasteel/brown{
- dir = 8
- },
-/area/quartermaster/qm)
-"aYM" = (
-/obj/structure/chair/office/dark{
- dir = 4
- },
-/obj/effect/landmark/start/quartermaster,
-/turf/open/floor/plasteel,
-/area/quartermaster/qm)
-"aYN" = (
-/obj/machinery/computer/cargo,
-/turf/open/floor/plasteel/brown{
- dir = 4
- },
-/area/quartermaster/qm)
-"aYO" = (
-/obj/machinery/mineral/equipment_vendor,
-/turf/open/floor/plasteel/brown/corner{
- dir = 1
- },
-/area/quartermaster/miningdock)
-"aYP" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/effect/landmark/start/shaft_miner,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
-/area/quartermaster/miningdock)
-"aYQ" = (
-/turf/open/floor/plasteel,
-/area/quartermaster/miningdock)
-"aYR" = (
-/obj/machinery/computer/shuttle/mining,
-/turf/open/floor/plasteel/brown/corner,
-/area/quartermaster/miningdock)
-"aYS" = (
-/obj/structure/chair{
- dir = 1
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/labor)
-"aYT" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/effect/spawner/lootdrop/maintenance,
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating,
-/area/maintenance/department/cargo)
-"aYU" = (
-/obj/item/weapon/caution,
-/turf/open/floor/plating,
-/area/maintenance/department/cargo)
-"aYV" = (
-/obj/structure/table,
-/obj/item/weapon/paper_bin{
- layer = 2.9
- },
-/turf/open/floor/plating,
-/area/maintenance/department/cargo)
-"aYW" = (
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/arrival)
-"aYX" = (
-/obj/machinery/door/airlock/titanium{
- name = "Arrivals Shuttle Airlock"
- },
-/turf/open/floor/plating,
-/area/shuttle/arrival)
-"aYY" = (
-/obj/structure/grille,
-/obj/structure/window/shuttle,
-/turf/open/floor/plating,
-/area/shuttle/arrival)
-"aYZ" = (
-/obj/structure/shuttle/engine/propulsion/burst/right{
- dir = 4
- },
-/turf/open/floor/plating/airless,
-/area/shuttle/arrival)
-"aZa" = (
-/obj/machinery/camera{
- c_tag = "Arrivals Central";
- dir = 4;
- network = list("SS13")
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"aZb" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"aZc" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"aZd" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/machinery/firealarm{
- dir = 1;
- pixel_y = -29
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"aZe" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"aZf" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"aZg" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass{
- name = "Central Access"
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"aZh" = (
-/obj/machinery/door/firedoor,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/structure/sign/directions/evac{
- dir = 8;
- icon_state = "direction_evac";
- pixel_y = -32
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"aZi" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"aZj" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"aZk" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock{
- name = "Custodial Closet";
- req_access_txt = "26"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/floorgrime,
-/area/janitor)
-"aZl" = (
-/obj/machinery/hydroponics/constructable,
-/turf/open/floor/plasteel/green/side{
- dir = 10
- },
-/area/hydroponics)
-"aZm" = (
-/obj/machinery/hydroponics/constructable,
-/turf/open/floor/plasteel/green/corner,
-/area/hydroponics)
-"aZn" = (
-/obj/item/weapon/reagent_containers/glass/bucket,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
-/area/hydroponics)
-"aZo" = (
-/obj/structure/reagent_dispensers/watertank/high,
-/turf/open/floor/plasteel/green/corner,
-/area/hydroponics)
-"aZp" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/neutral/corner{
- dir = 4
- },
-/area/hallway/primary/central)
-"aZq" = (
-/obj/machinery/disposal/bin,
-/obj/structure/disposalpipe/trunk{
- dir = 1
- },
-/obj/machinery/button/door{
- id = "kitchen";
- name = "Kitchen Shutters Control";
- pixel_x = -24;
- req_access_txt = "28"
- },
-/obj/machinery/light_switch{
- pixel_x = -34;
- pixel_y = 1
- },
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/kitchen)
-"aZr" = (
-/obj/machinery/power/terminal{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/maintenance/department/chapel/monastery)
-"aZs" = (
-/obj/structure/sign/barsign,
-/turf/closed/wall,
-/area/crew_quarters/bar)
-"aZt" = (
-/obj/item/weapon/wrench,
-/turf/open/floor/plating,
-/area/maintenance/department/chapel/monastery)
-"aZu" = (
-/obj/item/stack/cable_coil,
-/obj/item/stack/cable_coil,
-/turf/open/floor/plating,
-/area/maintenance/department/chapel/monastery)
-"aZv" = (
-/obj/machinery/door/airlock/maintenance{
- req_access_txt = "12"
- },
-/turf/open/floor/plating,
-/area/maintenance/department/cargo)
-"aZw" = (
-/obj/structure/table,
-/obj/item/weapon/crowbar/large,
-/obj/machinery/airalarm{
- pixel_y = 22
- },
-/obj/item/clothing/head/welding,
-/turf/open/floor/plasteel,
-/area/science/robotics/mechbay)
-"aZx" = (
-/obj/structure/table,
-/obj/item/weapon/storage/toolbox/mechanical,
-/obj/machinery/power/apc{
- dir = 1;
- name = "Mech Bay APC";
- pixel_y = 24
- },
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
- },
-/turf/open/floor/plasteel,
-/area/science/robotics/mechbay)
-"aZy" = (
-/obj/structure/reagent_dispensers/fueltank,
-/obj/machinery/firealarm{
- dir = 1;
- pixel_y = 24
- },
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plasteel,
-/area/science/robotics/mechbay)
-"aZz" = (
-/obj/machinery/mech_bay_recharge_port,
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
- },
-/obj/machinery/status_display{
- density = 0;
- layer = 4;
- pixel_y = 30
- },
-/turf/open/floor/plating,
-/area/science/robotics/mechbay)
-"aZA" = (
-/turf/open/floor/mech_bay_recharge_floor,
-/area/science/robotics/mechbay)
-"aZB" = (
-/obj/machinery/computer/mech_bay_power_console,
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
- },
-/turf/open/floor/plasteel,
-/area/science/robotics/mechbay)
-"aZC" = (
-/obj/structure/table,
-/obj/machinery/computer/stockexchange,
-/obj/machinery/requests_console{
- department = "Cargo Bay";
- departmentType = 2;
- pixel_x = -30
- },
-/turf/open/floor/plasteel/brown{
- dir = 10
- },
-/area/quartermaster/qm)
-"aZD" = (
-/obj/structure/table,
-/obj/item/weapon/clipboard,
-/obj/item/weapon/stamp/qm,
-/obj/machinery/light,
-/obj/machinery/camera{
- c_tag = "Cargo Quartermaster's Office";
- dir = 1;
- network = list("SS13")
- },
-/turf/open/floor/plasteel/brown{
- dir = 2
- },
-/area/quartermaster/qm)
-"aZE" = (
-/obj/machinery/computer/security/mining,
-/obj/item/device/radio/intercom{
- name = "Station Intercom (General)";
- pixel_y = -35
- },
-/turf/open/floor/plasteel/brown{
- dir = 6
- },
-/area/quartermaster/qm)
-"aZF" = (
-/obj/structure/rack{
- dir = 1
- },
-/obj/item/weapon/storage/toolbox/mechanical{
- pixel_x = -2;
- pixel_y = -1
- },
-/obj/item/weapon/pickaxe{
- pixel_x = 5
- },
-/obj/item/weapon/shovel{
- pixel_x = -5
- },
-/obj/machinery/camera{
- c_tag = "Cargo Mining Dock";
- dir = 4
- },
-/turf/open/floor/plasteel/brown/corner{
- dir = 1
- },
-/area/quartermaster/miningdock)
-"aZG" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/effect/landmark/start/shaft_miner,
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/miningdock)
-"aZH" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/miningdock)
-"aZI" = (
-/turf/open/floor/plasteel/brown/corner,
-/area/quartermaster/miningdock)
-"aZJ" = (
-/obj/machinery/door/airlock/external{
- name = "Mining Dock Airlock";
- req_access = null;
- req_access_txt = "48"
- },
-/turf/open/floor/plating,
-/area/quartermaster/miningdock)
-"aZK" = (
-/turf/open/floor/plating,
-/area/quartermaster/miningdock)
-"aZL" = (
-/obj/machinery/door/airlock/titanium{
- name = "Mining Shuttle Airlock";
- req_access_txt = "48"
- },
-/turf/open/floor/plating,
-/area/shuttle/labor)
-"aZM" = (
-/obj/machinery/door/airlock/titanium{
- name = "Mining Shuttle Airlock";
- req_access_txt = "48"
- },
-/obj/docking_port/mobile{
- dir = 8;
- dwidth = 3;
- height = 5;
- id = "mining";
- name = "mining shuttle";
- port_angle = 90;
- width = 7
- },
-/obj/docking_port/stationary{
- dir = 8;
- dwidth = 3;
- height = 5;
- id = "mining_home";
- name = "mining shuttle bay";
- width = 7
- },
-/turf/open/floor/plating,
-/area/shuttle/labor)
-"aZN" = (
-/obj/structure/chair{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/department/cargo)
-"aZO" = (
-/obj/machinery/light/small{
- dir = 4
- },
-/obj/structure/table,
-/obj/item/weapon/paperplane,
-/obj/item/trash/chips,
-/turf/open/floor/plating,
-/area/maintenance/department/cargo)
-"aZP" = (
-/obj/structure/closet/emcloset,
-/turf/open/floor/plating,
-/area/maintenance/department/cargo)
-"aZQ" = (
-/obj/structure/closet/cabinet,
-/obj/effect/spawner/lootdrop/maintenance,
-/obj/item/weapon/circuitboard/machine/hydroponics,
-/obj/item/weapon/electronics/apc,
-/turf/open/floor/plating,
-/area/maintenance/department/cargo)
-"aZR" = (
-/obj/structure/table,
-/obj/item/weapon/storage/firstaid/regular{
- pixel_y = 4
- },
-/obj/item/weapon/storage/toolbox/emergency,
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/arrival)
-"aZS" = (
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/arrival)
-"aZT" = (
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 1;
- name = "Air Out";
- on = 1
- },
-/turf/open/floor/plating,
-/area/maintenance/department/chapel/monastery)
-"aZU" = (
-/obj/structure/closet/wardrobe/black,
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/arrival)
-"aZV" = (
-/obj/structure/closet/wardrobe/mixed,
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/arrival)
-"aZW" = (
-/obj/machinery/requests_console{
- department = "Arrival shuttle";
- name = "Arrivals Shuttle console";
- pixel_y = 30
- },
-/obj/machinery/light{
- dir = 1
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/arrival)
-"aZX" = (
-/obj/structure/shuttle/engine/heater{
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/turf/open/floor/plating/airless,
-/area/shuttle/arrival)
-"aZY" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plasteel/neutral/corner,
-/area/hallway/secondary/entry)
-"aZZ" = (
-/turf/closed/wall/r_wall,
-/area/crew_quarters/lounge)
-"baa" = (
-/obj/structure/grille,
-/obj/structure/window/fulltile,
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "loungeshutters";
- name = "privacy shutters"
- },
-/turf/open/floor/plating,
-/area/crew_quarters/lounge)
-"bab" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass{
- name = "Lounge"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/lounge)
-"bac" = (
-/obj/structure/grille,
-/obj/structure/window/fulltile,
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "loungeshutters";
- name = "privacy shutters"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plating,
-/area/crew_quarters/lounge)
-"bad" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/sign/directions/security{
- dir = 1;
- icon_state = "direction_sec";
- pixel_x = 32;
- pixel_y = 40
- },
-/obj/structure/sign/directions/medical{
- dir = 4;
- icon_state = "direction_med";
- pixel_x = 32;
- pixel_y = 32
- },
-/obj/structure/sign/directions/science{
- dir = 4;
- icon_state = "direction_sci";
- pixel_x = 32;
- pixel_y = 24
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bae" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/purple/corner{
- dir = 4
- },
-/area/hallway/primary/central)
-"baf" = (
-/obj/structure/chair{
- name = "Throne of Custodia"
- },
-/obj/item/device/radio/intercom{
- dir = 0;
- name = "Station Intercom (General)";
- pixel_y = 26
- },
-/turf/open/floor/plasteel/purple/corner{
- dir = 4
- },
-/area/hallway/primary/central)
-"bag" = (
-/obj/machinery/vending/cola,
-/obj/structure/sign/map{
- icon_state = "map-pubby";
- pixel_y = 32
- },
-/turf/open/floor/plasteel/purple/corner{
- dir = 4
- },
-/area/hallway/primary/central)
-"bah" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating,
-/area/hydroponics)
-"bai" = (
-/obj/structure/table/reinforced,
-/obj/machinery/door/firedoor,
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "kitchen";
- name = "kitchen shutters"
- },
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/kitchen)
-"baj" = (
-/obj/structure/table/reinforced,
-/obj/machinery/door/firedoor,
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "kitchen";
- name = "kitchen shutters"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/kitchen)
-"bak" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/chair{
- dir = 4
- },
-/obj/structure/extinguisher_cabinet{
- pixel_x = -27
- },
-/obj/structure/sign/poster/official/random{
- pixel_y = 32
- },
-/turf/open/floor/plasteel/neutral/corner{
- dir = 1
- },
-/area/hallway/primary/central)
-"bal" = (
-/obj/structure/chair{
- dir = 8
- },
-/turf/open/floor/plasteel/neutral/corner{
- dir = 1
- },
-/area/hallway/primary/central)
-"bam" = (
-/obj/machinery/light{
- dir = 1
- },
-/turf/open/floor/plasteel/neutral/corner{
- dir = 1
- },
-/area/hallway/primary/central)
-"ban" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/door/airlock/glass{
- name = "Bar"
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/bar)
-"bao" = (
-/turf/open/floor/plasteel/neutral/corner{
- dir = 4
- },
-/area/hallway/primary/central)
-"bap" = (
-/obj/machinery/light{
- dir = 1
- },
-/obj/machinery/airalarm{
- pixel_y = 24
- },
-/turf/open/floor/plasteel/neutral/corner{
- dir = 4
- },
-/area/hallway/primary/central)
-"baq" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plating,
-/area/maintenance/department/chapel/monastery)
-"bar" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/sign/directions/evac{
- dir = 1;
- icon_state = "direction_evac";
- pixel_x = -32;
- pixel_y = 38
- },
-/obj/structure/sign/directions/medical{
- dir = 8;
- icon_state = "direction_med";
- pixel_x = -32;
- pixel_y = 28
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bas" = (
-/turf/open/floor/plasteel/purple/corner,
-/area/hallway/primary/central)
-"bat" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/poddoor/shutters{
- id = "Skynet_launch";
- name = "mech bay"
- },
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plasteel,
-/area/science/robotics/mechbay)
-"bau" = (
-/obj/effect/decal/cleanable/oil,
-/obj/effect/decal/cleanable/robot_debris{
- icon_state = "gib3"
- },
-/turf/open/floor/plasteel/floorgrime,
-/area/science/robotics/mechbay)
-"bav" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/effect/turf_decal/stripes/corner{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/science/robotics/mechbay)
-"baw" = (
-/turf/open/floor/plasteel,
-/area/science/robotics/mechbay)
-"bax" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/circuit/green,
-/area/science/robotics/mechbay)
-"bay" = (
-/turf/open/floor/circuit/green,
-/area/science/robotics/mechbay)
-"baz" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/light{
- dir = 4
- },
-/obj/structure/extinguisher_cabinet{
- pixel_x = 27
- },
-/turf/open/floor/circuit/green,
-/area/science/robotics/mechbay)
-"baA" = (
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
- },
-/obj/machinery/power/apc{
- dir = 8;
- name = "Mining Dock APC";
- pixel_x = -24
- },
-/turf/open/floor/plasteel/brown/corner{
- dir = 1
- },
-/area/quartermaster/miningdock)
-"baB" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
-/area/quartermaster/miningdock)
-"baC" = (
-/obj/structure/table,
-/obj/item/weapon/paperplane,
-/turf/open/floor/plating,
-/area/maintenance/department/cargo)
-"baD" = (
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
- },
-/area/maintenance/department/cargo)
-"baE" = (
-/obj/structure/chair{
- dir = 8
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/arrival)
-"baF" = (
-/obj/effect/landmark/start{
- name = "Assistant"
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 4
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/arrival)
-"baG" = (
-/obj/structure/shuttle/engine/propulsion{
- dir = 4
- },
-/turf/open/floor/plating/airless,
-/area/shuttle/arrival)
-"baH" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"baI" = (
-/obj/structure/table/wood,
-/obj/item/device/flashlight/lamp/green{
- pixel_x = 1;
- pixel_y = 5
- },
-/turf/open/floor/plasteel/grimy,
-/area/crew_quarters/lounge)
-"baJ" = (
-/turf/open/floor/plasteel/grimy,
-/area/crew_quarters/lounge)
-"baK" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 4
- },
-/turf/open/floor/plasteel/grimy,
-/area/crew_quarters/lounge)
-"baL" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 9
- },
-/turf/open/floor/plasteel/grimy,
-/area/crew_quarters/lounge)
-"baM" = (
-/obj/structure/table/wood,
-/obj/item/device/flashlight/lamp/green{
- pixel_x = 1;
- pixel_y = 5
- },
-/obj/machinery/button/door{
- id = "loungeshutters";
- name = "Privacy Shutters";
- pixel_y = 25
- },
-/turf/open/floor/plasteel/grimy,
-/area/crew_quarters/lounge)
-"baN" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/structure/disposalpipe/sortjunction{
- dir = 1;
- icon_state = "pipe-j1s";
- sortType = 22
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"baO" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 5
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"baP" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/disposalpipe/junction{
- dir = 8;
- icon_state = "pipe-j1"
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"baQ" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"baR" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"baS" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"baT" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"baU" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"baV" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/sign/directions/engineering{
- pixel_x = 32;
- pixel_y = 28
- },
-/obj/structure/sign/directions/evac{
- dir = 1;
- icon_state = "direction_evac";
- pixel_x = 32;
- pixel_y = 38
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"baW" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
- dir = 6
- },
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"baX" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"baY" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 1
- },
-/obj/machinery/navbeacon{
- codes_txt = "patrol;next_patrol=Bar1";
- location = "Robo"
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"baZ" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/purple/corner,
-/area/hallway/primary/central)
-"bba" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/poddoor/shutters{
- id = "Skynet_launch";
- name = "mech bay"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plasteel,
-/area/science/robotics/mechbay)
-"bbb" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/science/robotics/mechbay)
-"bbc" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/science/robotics/mechbay)
-"bbd" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 10
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/science/robotics/mechbay)
-"bbe" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/circuit,
-/area/science/robotics/mechbay)
-"bbf" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/circuit,
-/area/science/robotics/mechbay)
-"bbg" = (
-/obj/machinery/door/airlock/maintenance{
- name = "Mech Bay Maintenance";
- req_access_txt = "29"
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/science/robotics/mechbay)
-"bbh" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/turf/open/floor/plating,
-/area/maintenance/department/cargo)
-"bbi" = (
-/obj/machinery/door/airlock/maintenance{
- name = "Mining Maintenance";
- req_access_txt = "48"
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/quartermaster/miningdock)
-"bbj" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/brown{
- dir = 10
- },
-/area/quartermaster/miningdock)
-"bbk" = (
-/obj/structure/closet/secure_closet/miner,
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 9
- },
-/turf/open/floor/plasteel/brown,
-/area/quartermaster/miningdock)
-"bbl" = (
-/obj/structure/closet/secure_closet/miner,
-/obj/machinery/light,
-/turf/open/floor/plasteel/brown,
-/area/quartermaster/miningdock)
-"bbm" = (
-/obj/structure/closet/secure_closet/miner,
-/obj/structure/extinguisher_cabinet{
- pixel_x = 27
- },
-/turf/open/floor/plasteel/brown{
- dir = 6
- },
-/area/quartermaster/miningdock)
-"bbn" = (
-/obj/structure/shuttle/engine/heater,
-/turf/open/floor/plating,
-/area/shuttle/labor)
-"bbo" = (
-/obj/structure/ore_box,
-/obj/machinery/light/small{
- dir = 4
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/labor)
-"bbp" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating,
-/area/maintenance/department/cargo)
-"bbq" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plating,
-/area/maintenance/department/cargo)
-"bbr" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/grille/broken,
-/turf/open/floor/plating,
-/area/maintenance/department/cargo)
-"bbs" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/turf/open/floor/plating,
-/area/maintenance/department/cargo)
-"bbt" = (
-/obj/effect/landmark{
- name = "Observer-Start"
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/arrival)
-"bbu" = (
-/obj/machinery/light{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plasteel/neutral/corner,
-/area/hallway/secondary/entry)
-"bbv" = (
-/obj/structure/chair/comfy/beige{
- dir = 4
- },
-/obj/machinery/newscaster{
- pixel_x = -32
- },
-/turf/open/floor/plasteel/grimy,
-/area/crew_quarters/lounge)
-"bbw" = (
-/turf/open/floor/carpet,
-/area/crew_quarters/lounge)
-"bbx" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/carpet,
-/area/crew_quarters/lounge)
-"bby" = (
-/obj/structure/extinguisher_cabinet{
- pixel_x = 24
- },
-/obj/item/stack/rods{
- amount = 50
- },
-/turf/open/floor/plating,
-/area/maintenance/department/chapel/monastery)
-"bbz" = (
-/obj/structure/chair/comfy/beige{
- dir = 8
- },
-/obj/machinery/camera{
- c_tag = "Lounge";
- dir = 8
- },
-/turf/open/floor/plasteel/grimy,
-/area/crew_quarters/lounge)
-"bbA" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 8
- },
-/obj/structure/extinguisher_cabinet{
- pixel_x = -27;
- pixel_y = -1
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bbB" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bbC" = (
-/obj/machinery/navbeacon{
- codes_txt = "patrol;next_patrol=BrigS1";
- location = "Lounge"
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bbD" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bbE" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bbF" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/navbeacon{
- codes_txt = "patrol;next_patrol=Eng";
- location = "Bar1"
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bbG" = (
-/obj/machinery/light{
- dir = 4
- },
-/obj/machinery/button/door{
- dir = 2;
- id = "Skynet_launch";
- name = "Mech Bay Door Control";
- pixel_x = 25
- },
-/turf/open/floor/plasteel/purple/corner,
-/area/hallway/primary/central)
-"bbH" = (
-/obj/machinery/light{
- dir = 8
- },
-/obj/machinery/button/door{
- dir = 2;
- id = "Skynet_launch";
- name = "Mech Bay Door Control";
- pixel_x = -25
- },
-/obj/machinery/camera{
- c_tag = "Mech Bay";
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/science/robotics/mechbay)
-"bbI" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
-/area/science/robotics/mechbay)
-"bbJ" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 1
- },
-/obj/effect/landmark/event_spawn,
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/science/robotics/mechbay)
-"bbK" = (
-/obj/machinery/mech_bay_recharge_port,
-/obj/structure/cable,
-/turf/open/floor/plating,
-/area/science/robotics/mechbay)
-"bbL" = (
-/obj/machinery/computer/mech_bay_power_console,
-/obj/structure/cable,
-/turf/open/floor/plasteel,
-/area/science/robotics/mechbay)
-"bbM" = (
-/obj/machinery/light/small{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/maintenance/department/cargo)
-"bbN" = (
-/turf/closed/wall,
-/area/space)
-"bbO" = (
-/obj/structure/shuttle/engine/propulsion/burst,
-/obj/structure/window/reinforced{
- dir = 1;
- layer = 2.9
- },
-/turf/open/floor/plating/airless,
-/area/shuttle/labor)
-"bbP" = (
-/obj/structure/closet/emcloset,
-/obj/item/weapon/storage/firstaid/o2,
-/obj/item/weapon/tank/internals/emergency_oxygen,
-/obj/item/clothing/mask/breath,
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/arrival)
-"bbQ" = (
-/obj/item/device/radio/intercom{
- name = "Station Intercom (General)";
- pixel_y = -29
- },
-/obj/machinery/light,
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/arrival)
-"bbR" = (
-/obj/structure/shuttle/engine/propulsion/burst/left{
- dir = 4
- },
-/turf/open/floor/plating/airless,
-/area/shuttle/arrival)
-"bbS" = (
-/obj/structure/chair/comfy/beige{
- dir = 4
- },
-/turf/open/floor/plasteel/grimy,
-/area/crew_quarters/lounge)
-"bbT" = (
-/obj/effect/landmark/start/assistant,
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/turf/open/floor/carpet,
-/area/crew_quarters/lounge)
-"bbU" = (
-/obj/structure/chair/comfy/beige{
- dir = 8
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/turf/open/floor/plasteel/grimy,
-/area/crew_quarters/lounge)
-"bbV" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 5
- },
-/obj/structure/chair{
- dir = 4
- },
-/obj/structure/sign/poster/official/random{
- pixel_x = -32
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bbW" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 1;
-
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bbX" = (
-/obj/machinery/light,
-/obj/machinery/camera{
- c_tag = "Central Primary Hallway Genetics";
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bbY" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/blue/corner,
-/area/hallway/primary/central)
-"bbZ" = (
-/obj/machinery/light,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/machinery/firealarm{
- dir = 1;
- pixel_y = -26
- },
-/turf/open/floor/plasteel/blue/corner,
-/area/hallway/primary/central)
-"bca" = (
-/obj/machinery/light,
-/obj/machinery/camera{
- c_tag = "Central Primary Hallway Hydroponics";
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
-/turf/open/floor/plasteel/blue/corner,
-/area/hallway/primary/central)
-"bcb" = (
-/obj/machinery/light,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/blue/corner,
-/area/hallway/primary/central)
-"bcc" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bcd" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
-/obj/machinery/navbeacon{
- codes_txt = "patrol;next_patrol=Lounge";
- location = "Bar2"
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bce" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bcf" = (
-/obj/machinery/camera{
- c_tag = "Central Primary Hallway Robotics";
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/purple/corner,
-/area/hallway/primary/central)
-"bcg" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/purple/corner,
-/area/hallway/primary/central)
-"bch" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/research{
- name = "Mech Bay";
- req_access_txt = "29";
- req_one_access_txt = "0"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/science/robotics/mechbay)
-"bci" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/science/robotics/mechbay)
-"bcj" = (
-/obj/machinery/recharge_station,
-/obj/effect/turf_decal/bot,
-/turf/open/floor/plasteel,
-/area/science/robotics/mechbay)
-"bck" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/effect/decal/cleanable/robot_debris{
- icon_state = "gib3"
- },
-/turf/open/floor/plating,
-/area/maintenance/department/cargo)
-"bcl" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/open/floor/plating,
-/area/maintenance/department/cargo)
-"bcm" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 5
- },
-/turf/open/floor/plating,
-/area/maintenance/department/cargo)
-"bcn" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/mob/living/simple_animal/mouse/gray,
-/turf/open/floor/plating,
-/area/maintenance/department/cargo)
-"bco" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/structure/disposalpipe/junction{
- dir = 8;
- icon_state = "pipe-j2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/light/small{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/maintenance/department/cargo)
-"bcp" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 10
- },
-/obj/item/weapon/shard{
- icon_state = "small"
- },
-/turf/open/floor/plating,
-/area/maintenance/department/cargo)
-"bcq" = (
-/obj/structure/reagent_dispensers/watertank,
-/turf/open/floor/plating,
-/area/maintenance/department/cargo)
-"bcr" = (
-/obj/structure/rack,
-/obj/effect/spawner/lootdrop/maintenance{
- lootcount = 2;
- name = "2maintenance loot spawner"
- },
-/turf/open/floor/plating,
-/area/maintenance/department/cargo)
-"bcs" = (
-/obj/item/weapon/cigbutt/cigarbutt,
-/obj/effect/decal/cleanable/cobweb{
- icon_state = "cobweb2"
- },
-/turf/open/floor/plating,
-/area/maintenance/department/cargo)
-"bct" = (
-/obj/machinery/door/airlock/titanium{
- name = "Arrivals Shuttle Airlock"
- },
-/obj/docking_port/mobile{
- dwidth = 4;
- height = 6;
- id = "arrival";
- name = "arrival shuttle";
- port_angle = -90;
- preferred_direction = 8;
- width = 13
- },
-/obj/docking_port/stationary{
- dwidth = 4;
- height = 6;
- id = "arrival_home";
- name = "port bay 1";
- width = 13
- },
-/turf/open/floor/plating,
-/area/shuttle/arrival)
-"bcu" = (
-/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel/neutral/corner,
-/area/hallway/secondary/entry)
-"bcv" = (
-/obj/structure/grille,
-/obj/structure/window/fulltile,
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "loungeshutters";
- name = "privacy shutters"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/crew_quarters/lounge)
-"bcw" = (
-/obj/structure/table/wood,
-/obj/item/device/flashlight/lamp/green{
- pixel_x = 1;
- pixel_y = 5
- },
-/obj/machinery/airalarm{
- dir = 1;
- pixel_y = -22
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/grimy,
-/area/crew_quarters/lounge)
-"bcx" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/grimy,
-/area/crew_quarters/lounge)
-"bcy" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 8
- },
-/turf/open/floor/plasteel/grimy,
-/area/crew_quarters/lounge)
-"bcz" = (
-/obj/structure/table/glass,
-/obj/item/device/healthanalyzer{
- layer = 3.1
- },
-/obj/item/weapon/pen{
- layer = 3.2
- },
-/turf/open/floor/plasteel/blue/side,
-/area/hallway/primary/central)
-"bcA" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/purple/side,
-/area/hallway/primary/central)
-"bcB" = (
-/obj/structure/closet/firecloset,
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bcC" = (
-/turf/closed/wall,
-/area/storage/emergency/port)
-"bcD" = (
-/obj/machinery/door/airlock{
- name = "Port Emergency Storage";
- req_access_txt = "0"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/storage/emergency/port)
-"bcE" = (
-/turf/closed/wall,
-/area/medical/morgue)
-"bcF" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/centcom{
- name = "Morgue";
- opacity = 1;
- req_access_txt = "6"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/black,
-/area/medical/morgue)
-"bcG" = (
-/turf/closed/wall,
-/area/security/checkpoint/medical)
-"bcH" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/closed/wall,
-/area/security/checkpoint/medical)
-"bcI" = (
-/turf/closed/wall,
-/area/medical/medbay/central)
-"bcJ" = (
-/obj/structure/grille,
-/obj/structure/window/fulltile,
-/turf/open/floor/plating,
-/area/medical/medbay/central)
-"bcK" = (
-/obj/structure/sign/bluecross_2,
-/turf/closed/wall,
-/area/medical/medbay/central)
-"bcL" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/white/side,
-/area/medical/medbay/central)
-"bcM" = (
-/obj/machinery/door/firedoor,
-/turf/open/floor/plasteel/white/side,
-/area/medical/medbay/central)
-"bcN" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/white/side,
-/area/medical/medbay/central)
-"bcO" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-10";
- layer = 4.1
- },
-/turf/open/floor/plasteel/blue/side,
-/area/hallway/primary/central)
-"bcP" = (
-/obj/machinery/camera{
- c_tag = "Central Primary Hallway Bar";
- dir = 1
- },
-/obj/machinery/light,
-/turf/open/floor/plasteel/blue/side,
-/area/hallway/primary/central)
-"bcQ" = (
-/obj/machinery/light,
-/turf/open/floor/plasteel/purple/side,
-/area/hallway/primary/central)
-"bcR" = (
-/obj/structure/grille,
-/obj/structure/window/fulltile,
-/turf/open/floor/plating,
-/area/science/research)
-"bcS" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/white/side,
-/area/science/research)
-"bcT" = (
-/obj/machinery/door/firedoor,
-/turf/open/floor/plasteel/white/side,
-/area/science/research)
-"bcU" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/white/side,
-/area/science/research)
-"bcV" = (
-/obj/structure/sign/science,
-/turf/closed/wall,
-/area/science/research)
-"bcW" = (
-/turf/closed/wall,
-/area/science/research)
-"bcX" = (
-/turf/open/floor/plasteel/purple/side,
-/area/hallway/primary/central)
-"bcY" = (
-/turf/closed/wall/r_wall,
-/area/science/robotics/mechbay)
-"bcZ" = (
-/turf/closed/wall/r_wall,
-/area/science/explab)
-"bda" = (
-/turf/closed/wall/r_wall,
-/area/maintenance/department/cargo)
-"bdb" = (
-/obj/structure/plasticflaps{
- opacity = 1
- },
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plasteel,
-/area/science/explab)
-"bdc" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
- },
-/area/maintenance/department/cargo)
-"bdd" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/spawner/lootdrop/maintenance,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/department/cargo)
-"bde" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
-/turf/open/floor/plating,
-/area/maintenance/department/cargo)
-"bdf" = (
-/obj/structure/grille,
-/obj/structure/window/fulltile,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/department/cargo)
-"bdg" = (
-/obj/effect/spawner/lootdrop/maintenance,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/department/cargo)
-"bdh" = (
-/obj/item/trash/sosjerky,
-/obj/effect/decal/cleanable/vomit/old,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/department/cargo)
-"bdi" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/department/cargo)
-"bdj" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 10
- },
-/turf/open/floor/plating,
-/area/maintenance/department/cargo)
-"bdk" = (
-/obj/structure/bookcase/random/nonfiction,
-/turf/open/floor/wood,
-/area/crew_quarters/lounge)
-"bdl" = (
-/obj/structure/bookcase/random/fiction,
-/turf/open/floor/wood,
-/area/crew_quarters/lounge)
-"bdm" = (
-/obj/structure/bookcase/random/religion,
-/turf/open/floor/wood,
-/area/crew_quarters/lounge)
-"bdn" = (
-/turf/closed/wall,
-/area/medical/genetics)
-"bdo" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/research{
- name = "Genetics Access";
- req_access_txt = "0";
- req_one_access_txt = "5;9"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/freezer,
-/area/medical/genetics)
-"bdp" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
- },
-/area/storage/emergency/port)
-"bdq" = (
-/obj/structure/plasticflaps{
- opacity = 1
- },
-/turf/open/floor/plasteel/vault{
- dir = 8
- },
-/area/storage/emergency/port)
-"bdr" = (
-/obj/machinery/door/window/eastleft{
- dir = 4;
- name = "Medical Delivery";
- req_access_txt = "5"
- },
-/obj/machinery/navbeacon{
- codes_txt = "delivery;dir=2";
- dir = 4;
- freq = 1400;
- location = "Medbay"
- },
-/turf/open/floor/plasteel/vault{
- dir = 8
- },
-/area/medical/morgue)
-"bds" = (
-/turf/open/floor/plasteel/black,
-/area/medical/morgue)
-"bdt" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 6
- },
-/obj/machinery/airalarm{
- frequency = 1439;
- locked = 0;
- pixel_y = 23
- },
-/turf/open/floor/plasteel/black,
-/area/medical/morgue)
-"bdu" = (
-/obj/machinery/power/apc{
- dir = 1;
- name = "Morgue APC";
- pixel_y = 24
- },
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/black,
-/area/medical/morgue)
-"bdv" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 9
- },
-/turf/open/floor/plasteel/black,
-/area/medical/morgue)
-"bdw" = (
-/obj/structure/filingcabinet,
-/obj/machinery/requests_console{
- department = "Security";
- departmentType = 5;
- pixel_y = 30
- },
-/obj/machinery/airalarm{
- dir = 4;
- pixel_x = -23
- },
-/turf/open/floor/plasteel/red/side{
- dir = 9
- },
-/area/security/checkpoint/medical)
-"bdx" = (
-/obj/structure/table,
-/obj/machinery/recharger{
- pixel_y = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/item/device/radio/intercom{
- dir = 0;
- name = "Station Intercom (General)";
- pixel_y = 26
- },
-/turf/open/floor/plasteel/red/side{
- dir = 1
- },
-/area/security/checkpoint/medical)
-"bdy" = (
-/obj/machinery/computer/secure_data,
-/obj/structure/reagent_dispensers/peppertank{
- pixel_y = 30
- },
-/turf/open/floor/plasteel/red/side{
- dir = 1
- },
-/area/security/checkpoint/medical)
-"bdz" = (
-/obj/machinery/computer/security,
-/turf/open/floor/plasteel/red/side{
- dir = 5
- },
-/area/security/checkpoint/medical)
-"bdA" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/medical/medbay/central)
-"bdB" = (
-/obj/structure/table,
-/obj/item/weapon/storage/firstaid/regular,
-/obj/machinery/airalarm{
- pixel_y = 22
- },
-/turf/open/floor/plasteel/whiteblue/side{
- dir = 1
- },
-/area/medical/medbay/central)
-"bdC" = (
-/obj/structure/chair,
-/turf/open/floor/plasteel/whiteblue/side{
- dir = 1
- },
-/area/medical/medbay/central)
-"bdD" = (
-/obj/structure/chair,
-/obj/machinery/light{
- dir = 1
- },
-/turf/open/floor/plasteel/whiteblue/side{
- dir = 1
- },
-/area/medical/medbay/central)
-"bdE" = (
-/obj/machinery/disposal/bin,
-/obj/structure/disposalpipe/trunk,
-/turf/open/floor/plasteel/whiteblue/side{
- dir = 1
- },
-/area/medical/medbay/central)
-"bdF" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/central)
-"bdG" = (
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/central)
-"bdH" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/central)
-"bdI" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass{
- name = "Diner"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bdJ" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass{
- name = "Diner"
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bdK" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass{
- name = "Diner"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bdL" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/white,
-/area/science/research)
-"bdM" = (
-/turf/open/floor/plasteel/white,
-/area/science/research)
-"bdN" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/white,
-/area/science/research)
-"bdO" = (
-/obj/machinery/disposal/bin,
-/obj/structure/disposalpipe/trunk,
-/turf/open/floor/plasteel/whitepurple/side{
- dir = 1
- },
-/area/science/research)
-"bdP" = (
-/obj/structure/table,
-/obj/item/device/assembly/igniter{
- pixel_x = -4;
- pixel_y = -4
- },
-/obj/item/weapon/screwdriver{
- pixel_y = 16
- },
-/obj/item/device/gps{
- gpstag = "RD0"
- },
-/obj/item/clothing/head/welding,
-/turf/open/floor/plasteel/whitepurple/side{
- dir = 1
- },
-/area/science/research)
-"bdQ" = (
-/obj/machinery/modular_computer/console/preset/civilian,
-/turf/open/floor/plasteel/whitepurple/side{
- dir = 1
- },
-/area/science/research)
-"bdR" = (
-/obj/structure/table,
-/obj/item/weapon/electronics/apc,
-/obj/item/weapon/wrench,
-/obj/item/stack/cable_coil,
-/obj/item/weapon/electronics/airlock,
-/turf/open/floor/plasteel/whitepurple/side{
- dir = 1
- },
-/area/science/research)
-"bdS" = (
-/turf/closed/wall/r_wall,
-/area/science/robotics/lab)
-"bdT" = (
-/obj/structure/grille,
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "robotics";
- name = "robotics lab shutters"
- },
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/science/robotics/lab)
-"bdU" = (
-/obj/structure/table/reinforced,
-/obj/machinery/door/window/eastright{
- base_state = "left";
- dir = 2;
- icon_state = "left";
- name = "Robotics Desk";
- req_access_txt = "29"
- },
-/obj/item/weapon/paper_bin,
-/obj/item/weapon/pen,
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "robotics";
- name = "robotics lab shutters"
- },
-/turf/open/floor/plating,
-/area/science/robotics/lab)
-"bdV" = (
-/obj/machinery/door/firedoor,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/research{
- name = "Mech Bay";
- req_access_txt = "29";
- req_one_access_txt = "0"
- },
-/turf/open/floor/plasteel,
-/area/science/robotics/lab)
-"bdW" = (
-/turf/open/floor/engine,
-/area/science/explab)
-"bdX" = (
-/obj/machinery/camera{
- c_tag = "Experimentor Lab Chamber";
- dir = 2;
- network = list("SS13","RD")
- },
-/turf/open/floor/engine,
-/area/science/explab)
-"bdY" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 4
- },
-/turf/open/floor/engine,
-/area/science/explab)
-"bdZ" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 10
- },
-/turf/open/floor/engine,
-/area/science/explab)
-"bea" = (
-/obj/machinery/door/airlock/maintenance{
- name = "Testing Lab Maintenance";
- req_access_txt = "47"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plating,
-/area/science/explab)
-"beb" = (
-/obj/machinery/door/window/eastright{
- base_state = "left";
- dir = 2;
- icon_state = "left";
- name = "Research Division Delivery";
- req_access_txt = "47"
- },
-/obj/machinery/navbeacon{
- codes_txt = "delivery;dir=2";
- dir = 8;
- freq = 1400;
- location = "Research Division"
- },
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plasteel,
-/area/science/explab)
-"bec" = (
-/obj/item/weapon/shard,
-/turf/open/floor/plating,
-/area/maintenance/department/cargo)
-"bed" = (
-/turf/closed/wall/r_wall,
-/area/science/xenobiology)
-"bee" = (
-/obj/machinery/atmospherics/pipe/simple/general/hidden{
- dir = 6
- },
-/turf/closed/wall/r_wall,
-/area/science/xenobiology)
-"bef" = (
-/obj/machinery/atmospherics/pipe/simple/general/hidden{
- dir = 4
- },
-/turf/closed/wall/r_wall,
-/area/science/xenobiology)
-"beg" = (
-/obj/machinery/atmospherics/pipe/simple/general/hidden{
- dir = 10
- },
-/turf/closed/wall/r_wall,
-/area/science/xenobiology)
-"beh" = (
-/obj/item/weapon/extinguisher,
-/turf/open/floor/plating,
-/area/maintenance/department/cargo)
-"bei" = (
-/obj/structure/reagent_dispensers/fueltank,
-/turf/open/floor/plating,
-/area/maintenance/department/cargo)
-"bej" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 5
- },
-/turf/open/floor/plating,
-/area/maintenance/department/cargo)
-"bek" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/light/small{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/department/cargo)
-"bel" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/department/cargo)
-"bem" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/item/trash/deadmouse,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 10
- },
-/obj/effect/landmark/revenantspawn,
-/turf/open/floor/plating{
- broken = 1;
- icon_state = "platingdmg1"
- },
-/area/maintenance/department/cargo)
-"ben" = (
-/obj/machinery/portable_atmospherics/canister,
-/turf/open/floor/plating,
-/area/maintenance/department/cargo)
-"beo" = (
-/obj/machinery/portable_atmospherics/canister/oxygen,
-/turf/open/floor/plating,
-/area/maintenance/department/cargo)
-"bep" = (
-/obj/item/weapon/tank/internals/air,
-/turf/open/floor/plating,
-/area/maintenance/department/cargo)
-"beq" = (
-/obj/machinery/vending/snack,
-/obj/effect/turf_decal/stripes/line{
- dir = 9
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"ber" = (
-/obj/machinery/light{
- dir = 1
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"bes" = (
-/obj/structure/closet/emcloset,
-/obj/effect/turf_decal/stripes/line{
- dir = 5
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"bet" = (
-/obj/machinery/light/small{
- dir = 8
- },
-/obj/machinery/photocopier,
-/turf/open/floor/plasteel/black,
-/area/library)
-"beu" = (
-/turf/closed/wall,
-/area/construction/mining/aux_base/closet)
-"bev" = (
-/obj/item/weapon/hemostat,
-/obj/item/weapon/retractor,
-/obj/item/weapon/cautery,
-/obj/effect/spawner/lootdrop/maintenance,
-/obj/effect/decal/cleanable/cobweb{
- icon_state = "cobweb2"
- },
-/turf/open/floor/plating,
-/area/maintenance/department/engine)
-"bew" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/extinguisher_cabinet{
- pixel_x = -26
- },
-/turf/open/floor/plasteel/freezer,
-/area/medical/genetics)
-"bex" = (
-/turf/open/floor/plasteel/freezer,
-/area/medical/genetics)
-"bey" = (
-/obj/machinery/light{
- dir = 1
- },
-/obj/machinery/camera{
- c_tag = "Genetics Cloning Foyer";
- dir = 2;
- network = list("SS13")
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/on,
-/obj/machinery/airalarm{
- pixel_y = 22
- },
-/turf/open/floor/plasteel/freezer,
-/area/medical/genetics)
-"bez" = (
-/obj/structure/table,
-/obj/item/weapon/paper_bin{
- layer = 2.9
- },
-/obj/item/weapon/pen,
-/obj/structure/sign/poster/official/random{
- pixel_x = 32
- },
-/turf/open/floor/plasteel/freezer,
-/area/medical/genetics)
-"beA" = (
-/obj/machinery/portable_atmospherics/canister/oxygen,
-/turf/open/floor/plating{
- icon_state = "panelscorched"
- },
-/area/storage/emergency/port)
-"beB" = (
-/obj/item/weapon/storage/box/lights/mixed,
-/obj/machinery/light/small{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/storage/emergency/port)
-"beC" = (
-/obj/item/weapon/extinguisher,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/storage/emergency/port)
-"beD" = (
-/obj/structure/bodycontainer/morgue,
-/obj/effect/landmark/revenantspawn,
-/turf/open/floor/plasteel/black,
-/area/medical/morgue)
-"beE" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 1
- },
-/turf/open/floor/plasteel/black,
-/area/medical/morgue)
-"beF" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/black,
-/area/medical/morgue)
-"beG" = (
-/obj/structure/chair{
- dir = 8
- },
-/turf/open/floor/plasteel/black,
-/area/medical/morgue)
-"beH" = (
-/obj/machinery/light{
- dir = 8
- },
-/obj/machinery/newscaster{
- pixel_x = -32
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 4
- },
-/turf/open/floor/plasteel/red/side{
- dir = 8
- },
-/area/security/checkpoint/medical)
-"beI" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 9
- },
-/turf/open/floor/plasteel,
-/area/security/checkpoint/medical)
-"beJ" = (
-/obj/structure/chair/office/light{
- dir = 4
- },
-/obj/effect/landmark/start/depsec/medical,
-/turf/open/floor/plasteel,
-/area/security/checkpoint/medical)
-"beK" = (
-/obj/structure/table,
-/obj/item/weapon/pen,
-/obj/item/weapon/paper_bin{
- layer = 2.9
- },
-/turf/open/floor/plasteel/red/side{
- dir = 4
- },
-/area/security/checkpoint/medical)
-"beL" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 6
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/central)
-"beM" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 1
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/central)
-"beN" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 9
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/central)
-"beO" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/firealarm{
- dir = 8;
- pixel_x = 26;
- pixel_y = 28
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/central)
-"beP" = (
-/obj/structure/chair,
-/obj/machinery/light{
- dir = 1
- },
-/turf/open/floor/plasteel/whiteblue/side{
- dir = 1
- },
-/area/medical/medbay/central)
-"beQ" = (
-/obj/structure/table,
-/obj/item/weapon/storage/box/bodybags{
- pixel_x = 3;
- pixel_y = 2
- },
-/turf/open/floor/plasteel/whiteblue/side{
- dir = 1
- },
-/area/medical/medbay/central)
-"beR" = (
-/obj/structure/table,
-/obj/item/weapon/folder/white,
-/obj/item/device/healthanalyzer,
-/turf/open/floor/plasteel/whiteblue/side{
- dir = 1
- },
-/area/medical/medbay/central)
-"beS" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"beT" = (
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"beU" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"beV" = (
-/obj/structure/table,
-/obj/item/device/paicard,
-/obj/item/clothing/glasses/science,
-/turf/open/floor/plasteel/whitepurple/side{
- dir = 1
- },
-/area/science/research)
-"beW" = (
-/obj/structure/table,
-/obj/machinery/cell_charger,
-/obj/item/weapon/stock_parts/cell/high/plus,
-/turf/open/floor/plasteel/whitepurple/side{
- dir = 1
- },
-/area/science/research)
-"beX" = (
-/obj/machinery/light{
- dir = 1
- },
-/obj/machinery/portable_atmospherics/scrubber,
-/turf/open/floor/plasteel/whitepurple/side{
- dir = 1
- },
-/area/science/research)
-"beY" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/firealarm{
- dir = 8;
- pixel_x = -26;
- pixel_y = 28
- },
-/turf/open/floor/plasteel/white,
-/area/science/research)
-"beZ" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/science/research)
-"bfa" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/science/research)
-"bfb" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/science/research)
-"bfc" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 10
- },
-/turf/open/floor/plasteel/white,
-/area/science/research)
-"bfd" = (
-/obj/structure/filingcabinet/chestdrawer,
-/turf/open/floor/plasteel/purple/side{
- dir = 8
- },
-/area/science/robotics/lab)
-"bfe" = (
-/obj/structure/chair/office/light{
- dir = 1
- },
-/obj/effect/landmark/start/roboticist,
-/turf/open/floor/plasteel,
-/area/science/robotics/lab)
-"bff" = (
-/turf/open/floor/plasteel,
-/area/science/robotics/lab)
-"bfg" = (
-/obj/machinery/camera{
- c_tag = "Robotics Lab";
- dir = 2;
- network = list("SS13","RD")
- },
-/obj/machinery/button/door{
- dir = 2;
- id = "robotics";
- name = "Shutters Control Button";
- pixel_x = -6;
- pixel_y = 24;
- req_access_txt = "29"
- },
-/turf/open/floor/plasteel,
-/area/science/robotics/lab)
-"bfh" = (
-/obj/machinery/requests_console{
- department = "Robotics";
- departmentType = 2;
- name = "Robotics RC";
- pixel_y = 30;
- receive_ore_updates = 1
- },
-/turf/open/floor/plasteel,
-/area/science/robotics/lab)
-"bfi" = (
-/obj/structure/disposalpipe/sortjunction{
- dir = 2;
- icon_state = "pipe-j2s";
- sortType = 14
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
-/area/science/robotics/lab)
-"bfj" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/power/apc{
- dir = 1;
- name = "Robotics Lab APC";
- pixel_y = 25
- },
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/turf/open/floor/plasteel,
-/area/science/robotics/lab)
-"bfk" = (
-/obj/machinery/disposal/bin,
-/obj/structure/disposalpipe/trunk{
- dir = 8
- },
-/turf/open/floor/plasteel/purple/side{
- dir = 4
- },
-/area/science/robotics/lab)
-"bfl" = (
-/obj/machinery/light{
- dir = 8
- },
-/turf/open/floor/engine,
-/area/science/explab)
-"bfm" = (
-/obj/effect/landmark/event_spawn,
-/obj/item/device/radio/beacon,
-/turf/open/floor/engine,
-/area/science/explab)
-"bfn" = (
-/obj/machinery/r_n_d/experimentor,
-/turf/open/floor/engine,
-/area/science/explab)
-"bfo" = (
-/obj/effect/landmark/blobstart,
-/obj/effect/landmark/xeno_spawn,
-/turf/open/floor/engine,
-/area/science/explab)
-"bfp" = (
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/engine,
-/area/science/explab)
-"bfq" = (
-/obj/machinery/light{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/engine,
-/area/science/explab)
-"bfr" = (
-/obj/machinery/atmospherics/components/unary/portables_connector/visible{
- dir = 4
- },
-/obj/machinery/power/apc{
- dir = 1;
- name = "Testing Lab APC";
- pixel_y = 25
- },
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/turf/open/floor/engine,
-/area/science/explab)
-"bfs" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 10
- },
-/turf/open/floor/engine,
-/area/science/explab)
-"bft" = (
-/obj/structure/sign/atmosplaque{
- desc = "A guide to the drone shell dispenser, detailing the constructive and destructive applications of modern repair drones, as well as the development of the incorruptible cyborg servants of tomorrow, available today.";
- icon_state = "kiddieplaque";
- name = "\improper 'Perfect Drone' sign";
- pixel_y = 32
- },
-/turf/open/floor/engine,
-/area/science/explab)
-"bfu" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 5
- },
-/turf/open/floor/plating,
-/area/maintenance/department/cargo)
-"bfv" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/grille/broken,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/open/floor/plating,
-/area/maintenance/department/cargo)
-"bfw" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/grille/broken,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/light/small{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/department/cargo)
-"bfx" = (
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 9
- },
-/turf/open/floor/plating,
-/area/maintenance/department/cargo)
-"bfy" = (
-/turf/open/floor/engine,
-/area/science/xenobiology)
-"bfz" = (
-/obj/machinery/camera{
- c_tag = "Xenobiology Test Chamber";
- dir = 2;
- network = list("Xeno","RD")
- },
-/obj/machinery/light{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/general/hidden,
-/turf/open/floor/engine,
-/area/science/xenobiology)
-"bfA" = (
-/obj/machinery/atmospherics/pipe/simple/general/hidden,
-/turf/closed/wall/r_wall,
-/area/science/xenobiology)
-"bfB" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating,
-/area/maintenance/department/cargo)
-"bfC" = (
-/obj/item/trash/candle,
-/obj/item/weapon/cautery,
-/turf/open/floor/plating,
-/area/maintenance/department/cargo)
-"bfD" = (
-/turf/open/floor/plating,
-/area/shuttle/auxillary_base)
-"bfE" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/carpet,
-/area/library)
-"bfF" = (
-/obj/item/weapon/storage/bag/books,
-/turf/open/floor/plasteel/black,
-/area/library)
-"bfG" = (
-/obj/structure/bookcase/random/religion,
-/turf/open/floor/plasteel/black,
-/area/library)
-"bfH" = (
-/obj/structure/bookcase/random/religion,
-/obj/effect/decal/cleanable/cobweb{
- icon_state = "cobweb2"
- },
-/turf/open/floor/plasteel/black,
-/area/library)
-"bfI" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/turf/open/floor/plating,
-/area/maintenance/department/engine)
-"bfJ" = (
-/obj/machinery/door/airlock/maintenance{
- name = "Genetics Maintenance";
- req_access_txt = "9";
- req_one_access_txt = "0"
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plating,
-/area/medical/genetics)
-"bfK" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/turf/open/floor/plasteel/freezer,
-/area/medical/genetics)
-"bfL" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel/freezer,
-/area/medical/genetics)
-"bfM" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/freezer,
-/area/medical/genetics)
-"bfN" = (
-/obj/structure/table,
-/obj/machinery/newscaster{
- pixel_x = 32
- },
-/obj/item/weapon/crowbar,
-/obj/item/weapon/folder/white,
-/turf/open/floor/plasteel/freezer,
-/area/medical/genetics)
-"bfO" = (
-/obj/structure/reagent_dispensers/watertank,
-/turf/open/floor/plating,
-/area/storage/emergency/port)
-"bfP" = (
-/obj/machinery/power/apc{
- dir = 2;
- name = "Port Emergency Storage APC";
- pixel_y = -24
- },
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/turf/open/floor/plating{
- icon_state = "panelscorched"
- },
-/area/storage/emergency/port)
-"bfQ" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/item/weapon/storage/toolbox/emergency,
-/turf/open/floor/plating,
-/area/storage/emergency/port)
-"bfR" = (
-/obj/machinery/space_heater,
-/turf/open/floor/plating,
-/area/storage/emergency/port)
-"bfS" = (
-/obj/structure/bodycontainer/morgue,
-/obj/effect/landmark/revenantspawn,
-/obj/machinery/light/small{
- brightness = 3;
- dir = 8
- },
-/turf/open/floor/plasteel/black,
-/area/medical/morgue)
-"bfT" = (
-/obj/item/weapon/ectoplasm,
-/turf/open/floor/plasteel/black,
-/area/medical/morgue)
-"bfU" = (
-/obj/structure/table,
-/obj/item/weapon/storage/box/bodybags,
-/obj/item/weapon/pen,
-/obj/machinery/light/small{
- dir = 4
- },
-/obj/machinery/camera{
- c_tag = "Morgue";
- dir = 8
- },
-/turf/open/floor/plasteel/black,
-/area/medical/morgue)
-"bfV" = (
-/obj/machinery/power/apc{
- dir = 8;
- name = "Medbay Security APC";
- pixel_x = -25
- },
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/obj/machinery/camera{
- c_tag = "Medbay Security Post";
- dir = 4;
- network = list("SS13")
- },
-/obj/structure/closet/wardrobe/red,
-/turf/open/floor/plasteel/red/side{
- dir = 10
- },
-/area/security/checkpoint/medical)
-"bfW" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 6
- },
-/turf/open/floor/plasteel/red/side,
-/area/security/checkpoint/medical)
-"bfX" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 8
- },
-/turf/open/floor/plasteel/red/side,
-/area/security/checkpoint/medical)
-"bfY" = (
-/obj/structure/table,
-/obj/item/weapon/book/manual/wiki/security_space_law,
-/turf/open/floor/plasteel/red/side{
- dir = 6
- },
-/area/security/checkpoint/medical)
-"bfZ" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 1
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/central)
-"bga" = (
-/obj/machinery/holopad,
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/central)
-"bgb" = (
-/obj/machinery/door/firedoor,
-/turf/open/floor/plasteel/white/side{
- dir = 8
- },
-/area/medical/medbay/central)
-"bgc" = (
-/obj/machinery/door/firedoor,
-/turf/open/floor/plasteel/white/side{
- dir = 4
- },
-/area/science/research)
-"bgd" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/science/research)
-"bge" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/science/research)
-"bgf" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 5
- },
-/turf/open/floor/plasteel/white,
-/area/science/research)
-"bgg" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/science/research)
-"bgh" = (
-/obj/item/weapon/reagent_containers/food/snacks/grown/poppy,
-/obj/item/weapon/reagent_containers/food/snacks/grown/poppy,
-/obj/item/weapon/reagent_containers/food/snacks/grown/poppy,
-/obj/structure/table/wood/fancy,
-/turf/open/floor/plasteel/black,
-/area/chapel/main/monastery)
-"bgi" = (
-/obj/structure/rack{
- dir = 8;
- layer = 2.9
- },
-/obj/item/weapon/storage/toolbox/electrical{
- pixel_x = 1;
- pixel_y = 6
- },
-/obj/item/weapon/storage/toolbox/mechanical{
- pixel_x = -2;
- pixel_y = -1
- },
-/obj/item/clothing/head/welding{
- pixel_x = -3;
- pixel_y = 5
- },
-/obj/item/clothing/glasses/welding,
-/turf/open/floor/plasteel/purple/side{
- dir = 8
- },
-/area/science/robotics/lab)
-"bgj" = (
-/obj/machinery/mecha_part_fabricator,
-/turf/open/floor/plasteel,
-/area/science/robotics/lab)
-"bgk" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 5
- },
-/obj/effect/turf_decal/stripes/corner{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/science/robotics/lab)
-"bgl" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/science/robotics/lab)
-"bgm" = (
-/obj/structure/table,
-/obj/item/stack/sheet/glass{
- amount = 20;
- pixel_x = 3;
- pixel_y = -4
- },
-/obj/item/stack/sheet/metal{
- amount = 50
- },
-/obj/item/stack/sheet/metal{
- amount = 50
- },
-/obj/item/stack/sheet/metal{
- amount = 50
- },
-/obj/item/stack/sheet/metal{
- amount = 50
- },
-/obj/item/stack/sheet/metal{
- amount = 50
- },
-/obj/item/stack/sheet/metal{
- amount = 50
- },
-/obj/structure/extinguisher_cabinet{
- pixel_x = 27
- },
-/turf/open/floor/plasteel/purple/side{
- dir = 4
- },
-/area/science/robotics/lab)
-"bgn" = (
-/obj/machinery/atmospherics/components/unary/outlet_injector{
- on = 1
- },
-/turf/open/floor/engine,
-/area/science/explab)
-"bgo" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on,
-/turf/open/floor/engine,
-/area/science/explab)
-"bgp" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/engine,
-/area/science/explab)
-"bgq" = (
-/obj/machinery/atmospherics/components/unary/portables_connector/visible{
- dir = 4
- },
-/obj/machinery/light{
- dir = 8
- },
-/turf/open/floor/engine,
-/area/science/explab)
-"bgr" = (
-/obj/structure/disposalpipe/segment,
-/obj/effect/landmark/start/scientist,
-/obj/machinery/atmospherics/components/trinary/filter,
-/turf/open/floor/engine{
- name = "Holodeck Projector Floor"
- },
-/area/science/explab)
-"bgs" = (
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 6
- },
-/turf/open/floor/engine,
-/area/science/explab)
-"bgt" = (
-/obj/machinery/atmospherics/components/unary/thermomachine/heater{
- dir = 8
- },
-/turf/open/floor/engine,
-/area/science/explab)
-"bgu" = (
-/obj/machinery/light/small{
- brightness = 3;
- dir = 8
- },
-/turf/open/floor/engine,
-/area/science/xenobiology)
-"bgv" = (
-/obj/machinery/atmospherics/components/unary/outlet_injector/on{
- dir = 1;
- frequency = 1441;
- id = "air_in"
- },
-/turf/open/floor/engine,
-/area/science/xenobiology)
-"bgw" = (
-/obj/machinery/light/small{
- dir = 4
- },
-/turf/open/floor/engine,
-/area/science/xenobiology)
-"bgx" = (
-/obj/machinery/light{
- dir = 1
- },
-/turf/open/floor/engine,
-/area/science/xenobiology)
-"bgy" = (
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/engine,
-/area/science/xenobiology)
-"bgz" = (
-/turf/closed/wall,
-/area/science/xenobiology)
-"bgA" = (
-/obj/effect/decal/cleanable/ash,
-/obj/effect/landmark/revenantspawn,
-/turf/open/floor/plating,
-/area/maintenance/department/cargo)
-"bgB" = (
-/obj/machinery/atmospherics/components/unary/portables_connector/visible{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/department/cargo)
-"bgC" = (
-/obj/effect/spawner/lootdrop/maintenance,
-/obj/machinery/atmospherics/pipe/manifold/general/hidden{
- dir = 1
- },
-/turf/open/floor/plating{
- broken = 1;
- icon_state = "platingdmg1"
- },
-/area/maintenance/department/cargo)
-"bgD" = (
-/obj/machinery/atmospherics/components/unary/thermomachine/freezer{
- dir = 8
- },
-/turf/open/floor/plating{
- broken = 1;
- icon_state = "platingdmg1"
- },
-/area/maintenance/department/cargo)
-"bgE" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"bgF" = (
-/obj/item/device/radio/beacon,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"bgG" = (
-/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/neutral/corner,
-/area/hallway/secondary/entry)
-"bgH" = (
-/obj/machinery/mass_driver{
- id = "chapelgun"
- },
-/obj/machinery/door/window/eastleft{
- dir = 8;
- name = "Mass Driver";
- req_one_access_txt = "0"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/black,
-/area/chapel/main/monastery)
-"bgI" = (
-/obj/structure/rack,
-/obj/item/stack/cable_coil,
-/obj/item/weapon/electronics/airlock,
-/obj/item/wallframe/camera,
-/obj/item/device/assault_pod/mining,
-/turf/open/floor/plating,
-/area/shuttle/auxillary_base)
-"bgJ" = (
-/obj/structure/rack,
-/obj/item/stack/sheet/metal{
- amount = 50;
- pixel_x = 2;
- pixel_y = 2
- },
-/obj/item/stack/sheet/metal{
- amount = 50;
- pixel_x = 2;
- pixel_y = 2
- },
-/obj/item/stack/sheet/glass{
- amount = 50
- },
-/obj/item/weapon/storage/box/lights/mixed,
-/turf/open/floor/plating,
-/area/shuttle/auxillary_base)
-"bgK" = (
-/obj/machinery/mass_driver{
- id = "chapelgun"
- },
-/obj/structure/window/reinforced{
- dir = 4;
- layer = 2.9
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/black,
-/area/chapel/main/monastery)
-"bgL" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/maintenance/department/engine)
-"bgM" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/medical/genetics)
-"bgN" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass_medical{
- id_tag = null;
- name = "Cloning";
- req_access_txt = "0";
- req_one_access_txt = "5;9"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/freezer,
-/area/medical/genetics)
-"bgO" = (
-/turf/closed/wall,
-/area/medical/medbay/zone3)
-"bgP" = (
-/obj/structure/table,
-/obj/item/weapon/folder/white,
-/obj/item/clothing/gloves/color/latex,
-/obj/item/weapon/storage/fancy/candle_box,
-/turf/open/floor/plasteel/black,
-/area/medical/morgue)
-"bgQ" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/security/checkpoint/medical)
-"bgR" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass_security{
- name = "Medbay Security Post";
- req_access_txt = "63"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/red,
-/area/security/checkpoint/medical)
-"bgS" = (
-/obj/structure/table/reinforced,
-/obj/item/weapon/reagent_containers/food/drinks/britcup{
- desc = "Kingston's personal cup."
- },
-/turf/open/floor/plasteel/whiteblue/side,
-/area/medical/medbay/central)
-"bgT" = (
-/obj/structure/table/reinforced,
-/obj/item/weapon/paper_bin{
- pixel_x = 1
- },
-/turf/open/floor/plasteel/whiteblue/corner{
- dir = 8
- },
-/area/medical/medbay/central)
-"bgU" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 6
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/central)
-"bgV" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/central)
-"bgW" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/central)
-"bgX" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/central)
-"bgY" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
-/turf/open/floor/plasteel/white,
-/area/science/research)
-"bgZ" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/science/research)
-"bha" = (
-/obj/machinery/light,
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/obj/machinery/camera{
- c_tag = "Research Division Entrance";
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/machinery/firealarm{
- dir = 1;
- pixel_x = -2;
- pixel_y = -27
- },
-/turf/open/floor/plasteel/whitepurple/side,
-/area/science/research)
-"bhb" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 10
- },
-/turf/open/floor/plasteel/whitepurple/side,
-/area/science/research)
-"bhc" = (
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/whitepurple/side,
-/area/science/research)
-"bhd" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-18";
- layer = 3
- },
-/turf/open/floor/plasteel/whitepurple/side,
-/area/science/research)
-"bhe" = (
-/obj/machinery/r_n_d/circuit_imprinter,
-/obj/machinery/light{
- dir = 8
- },
-/turf/open/floor/plasteel/purple/side{
- dir = 8
- },
-/area/science/robotics/lab)
-"bhf" = (
-/obj/effect/turf_decal/bot,
-/turf/open/floor/plasteel,
-/area/science/robotics/lab)
-"bhg" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/science/robotics/lab)
-"bhh" = (
-/obj/structure/table,
-/obj/item/stack/sheet/plasteel{
- amount = 10
- },
-/obj/item/device/assembly/flash/handheld,
-/obj/item/device/assembly/flash/handheld,
-/obj/item/device/assembly/flash/handheld,
-/obj/item/device/assembly/flash/handheld,
-/obj/item/device/assembly/flash/handheld,
-/obj/item/device/assembly/flash/handheld,
-/obj/item/device/assembly/flash/handheld,
-/obj/machinery/airalarm{
- dir = 8;
- pixel_x = 23
- },
-/turf/open/floor/plasteel/purple/side{
- dir = 4
- },
-/area/science/robotics/lab)
-"bhi" = (
-/obj/machinery/atmospherics/pipe/simple/general/hidden,
-/turf/closed/wall/r_wall,
-/area/science/explab)
-"bhj" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/door/poddoor/preopen{
- id = "testlab";
- name = "test chamber blast door"
- },
-/turf/open/floor/engine,
-/area/science/explab)
-"bhk" = (
-/obj/structure/grille,
-/obj/machinery/door/poddoor/preopen{
- id = "testlab";
- name = "test chamber blast door"
- },
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/engine,
-/area/science/explab)
-"bhl" = (
-/obj/machinery/door/poddoor/preopen{
- id = "telelab";
- name = "test chamber blast door"
- },
-/obj/machinery/door/firedoor/heavy,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/engine,
-/area/science/explab)
-"bhm" = (
-/obj/machinery/atmospherics/components/unary/portables_connector/visible{
- dir = 4
- },
-/turf/open/floor/engine,
-/area/science/explab)
-"bhn" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold/general/visible,
-/turf/open/floor/engine,
-/area/science/explab)
-"bho" = (
-/obj/machinery/atmospherics/pipe/manifold/general/visible,
-/obj/item/weapon/wrench,
-/turf/open/floor/engine,
-/area/science/explab)
-"bhp" = (
-/obj/machinery/atmospherics/components/unary/thermomachine/freezer{
- dir = 8
- },
-/turf/open/floor/engine,
-/area/science/explab)
-"bhq" = (
-/obj/structure/table,
-/obj/machinery/reagentgrinder,
-/turf/open/floor/plasteel/whitepurple/side{
- dir = 9
- },
-/area/science/xenobiology)
-"bhr" = (
-/obj/structure/table,
-/obj/item/weapon/storage/box/beakers{
- pixel_x = 2;
- pixel_y = 2
- },
-/obj/item/weapon/storage/box/syringes,
-/obj/item/device/radio/intercom{
- dir = 0;
- name = "Station Intercom (General)";
- pixel_y = 26
- },
-/turf/open/floor/plasteel/whitepurple/side{
- dir = 1
- },
-/area/science/xenobiology)
-"bhs" = (
-/obj/structure/table,
-/obj/item/stack/sheet/mineral/plasma{
- layer = 2.9
- },
-/obj/item/stack/sheet/mineral/plasma{
- layer = 2.9
- },
-/obj/item/stack/sheet/mineral/plasma{
- layer = 2.9
- },
-/obj/machinery/airalarm{
- pixel_y = 22
- },
-/turf/open/floor/plasteel/whitepurple/side{
- dir = 1
- },
-/area/science/xenobiology)
-"bht" = (
-/obj/structure/table,
-/obj/item/weapon/pen,
-/obj/item/clothing/glasses/science,
-/obj/item/clothing/glasses/science,
-/obj/item/weapon/paper_bin{
- layer = 2.9
- },
-/turf/open/floor/plasteel/whitepurple/side{
- dir = 5
- },
-/area/science/xenobiology)
-"bhu" = (
-/obj/effect/landmark/revenantspawn,
-/turf/open/floor/engine,
-/area/science/xenobiology)
-"bhv" = (
-/obj/item/weapon/weldingtool,
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/open/floor/plating,
-/area/maintenance/department/cargo)
-"bhw" = (
-/obj/machinery/atmospherics/components/unary/portables_connector/visible{
- dir = 4
- },
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
- },
-/area/maintenance/department/cargo)
-"bhx" = (
-/obj/machinery/atmospherics/pipe/manifold/general/hidden,
-/turf/open/floor/plating{
- icon_state = "panelscorched"
- },
-/area/maintenance/department/cargo)
-"bhy" = (
-/obj/machinery/atmospherics/components/unary/thermomachine/heater{
- dir = 8
- },
-/turf/open/floor/plating{
- icon_state = "panelscorched"
- },
-/area/maintenance/department/cargo)
-"bhz" = (
-/turf/open/floor/plasteel/arrival,
-/area/hallway/secondary/entry)
-"bhA" = (
-/obj/machinery/camera{
- c_tag = "Arrivals Port Aft";
- dir = 1
- },
-/turf/open/floor/plasteel/arrival,
-/area/hallway/secondary/entry)
-"bhB" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 9
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"bhC" = (
-/obj/structure/table/wood/fancy,
-/obj/item/clothing/under/burial,
-/obj/item/clothing/under/burial,
-/obj/item/clothing/under/burial,
-/obj/item/clothing/under/burial,
-/turf/open/floor/plasteel/black,
-/area/chapel/main/monastery)
-"bhD" = (
-/obj/machinery/door/airlock/engineering{
- cyclelinkeddir = 1;
- name = "Auxillary Mining Closet Construction";
- req_access_txt = "0";
- req_one_access_txt = "31;32;47;48"
- },
-/turf/open/floor/plating,
-/area/construction/mining/aux_base/closet)
-"bhE" = (
-/obj/machinery/power/smes{
- charge = 5e+006
- },
-/obj/structure/cable,
-/turf/open/floor/plating,
-/area/maintenance/department/chapel/monastery)
-"bhF" = (
-/obj/item/weapon/pickaxe/mini,
-/turf/open/floor/plating,
-/area/shuttle/auxillary_base)
-"bhG" = (
-/obj/machinery/camera{
- c_tag = "Auxillary Mining Base";
- dir = 8
- },
-/obj/machinery/light{
- dir = 4
- },
-/obj/machinery/computer/auxillary_base{
- density = 0;
- pixel_x = 32
- },
-/turf/open/floor/plating,
-/area/shuttle/auxillary_base)
-"bhH" = (
-/obj/docking_port/mobile/auxillary_base{
- dheight = 0;
- dir = 8;
- dwidth = 2;
- height = 4;
- width = 5
- },
-/obj/machinery/bluespace_beacon,
-/turf/closed/wall,
-/area/shuttle/auxillary_base)
-"bhI" = (
-/obj/item/device/radio/intercom{
- broadcasting = 0;
- freerange = 0;
- frequency = 1485;
- listening = 1;
- name = "Station Intercom (Medbay)";
- pixel_y = 26
- },
-/obj/structure/closet/secure_closet/personal/patient,
-/turf/open/floor/plasteel/whiteblue/side{
- dir = 1
- },
-/area/medical/genetics)
-"bhJ" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 4
- },
-/turf/open/floor/plasteel/whiteblue/side{
- dir = 1
- },
-/area/medical/genetics)
-"bhK" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/whiteblue/side{
- dir = 1
- },
-/area/medical/genetics)
-"bhL" = (
-/obj/structure/closet/wardrobe/mixed,
-/turf/open/floor/plasteel/whiteblue/side{
- dir = 1
- },
-/area/medical/genetics)
-"bhM" = (
-/obj/machinery/vending/clothing,
-/obj/machinery/firealarm{
- dir = 1;
- pixel_y = 27
- },
-/turf/open/floor/plasteel/whiteblue/side{
- dir = 1
- },
-/area/medical/genetics)
-"bhN" = (
-/obj/machinery/disposal/bin,
-/obj/structure/disposalpipe/trunk,
-/obj/structure/sign/poster/official/random{
- pixel_x = -32
- },
-/turf/open/floor/plasteel/whiteblue/side{
- dir = 9
- },
-/area/medical/medbay/zone3)
-"bhO" = (
-/obj/machinery/light{
- dir = 1
- },
-/obj/structure/table,
-/obj/machinery/airalarm{
- pixel_y = 22
- },
-/obj/item/weapon/storage/box/gloves{
- pixel_x = 3;
- pixel_y = 3
- },
-/obj/item/weapon/storage/box/masks,
-/turf/open/floor/plasteel/whiteblue/side{
- dir = 1
- },
-/area/medical/medbay/zone3)
-"bhP" = (
-/obj/machinery/vending/medical,
-/turf/open/floor/plasteel/whiteblue/side{
- dir = 5
- },
-/area/medical/medbay/zone3)
-"bhQ" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on,
-/turf/open/floor/plasteel/black,
-/area/medical/morgue)
-"bhR" = (
-/obj/structure/sign/poster/official/random{
- pixel_x = -32
- },
-/turf/open/floor/plasteel/whiteblue/side{
- dir = 9
- },
-/area/medical/medbay/central)
-"bhS" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 5
- },
-/turf/open/floor/plasteel/whiteblue/side{
- dir = 1
- },
-/area/medical/medbay/central)
-"bhT" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 10
- },
-/turf/open/floor/plasteel/whiteblue/side{
- dir = 5
- },
-/area/medical/medbay/central)
-"bhU" = (
-/obj/machinery/requests_console{
- announcementConsole = 0;
- department = "Medbay";
- departmentType = 1;
- name = "Medbay RC";
- pixel_x = -32
- },
-/obj/item/device/radio/intercom{
- broadcasting = 0;
- freerange = 0;
- frequency = 1485;
- listening = 1;
- name = "Station Intercom (Medbay)";
- pixel_y = 26
- },
-/turf/open/floor/plasteel/whiteblue/side{
- dir = 1
- },
-/area/medical/medbay/central)
-"bhV" = (
-/obj/structure/chair/office/light{
- dir = 4
- },
-/obj/effect/landmark/start/medical_doctor,
-/turf/open/floor/plasteel/whiteblue/side{
- dir = 5
- },
-/area/medical/medbay/central)
-"bhW" = (
-/obj/structure/table/reinforced,
-/obj/item/weapon/folder/white,
-/obj/item/weapon/pen,
-/turf/open/floor/plasteel/whiteblue/side{
- dir = 8
- },
-/area/medical/medbay/central)
-"bhX" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/central)
-"bhY" = (
-/obj/structure/bed/roller,
-/turf/open/floor/plasteel/whiteblue/side,
-/area/medical/medbay/central)
-"bhZ" = (
-/obj/structure/bed/roller,
-/obj/machinery/camera{
- c_tag = "Medbay Entrance";
- dir = 1
- },
-/turf/open/floor/plasteel/whiteblue/side,
-/area/medical/medbay/central)
-"bia" = (
-/turf/open/floor/plasteel/whiteblue/side,
-/area/medical/medbay/central)
-"bib" = (
-/obj/structure/table/glass,
-/obj/item/stack/medical/gauze,
-/obj/item/weapon/reagent_containers/glass/bottle/epinephrine,
-/turf/open/floor/plasteel/whiteblue/side,
-/area/medical/medbay/central)
-"bic" = (
-/obj/structure/closet/emcloset,
-/turf/open/floor/plasteel/whitepurple/side,
-/area/science/research)
-"bid" = (
-/obj/structure/closet/firecloset/full,
-/turf/open/floor/plasteel/whitepurple/side,
-/area/science/research)
-"bie" = (
-/obj/structure/table,
-/obj/item/weapon/paper_bin{
- layer = 2.9;
- pixel_x = -2;
- pixel_y = 4
- },
-/obj/item/weapon/pen,
-/turf/open/floor/plasteel/whitepurple/side,
-/area/science/research)
-"bif" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/closed/wall,
-/area/science/research)
-"big" = (
-/obj/machinery/door/airlock/research{
- cyclelinkeddir = 2;
- name = "Research Division Access";
- req_access_txt = "47"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/white,
-/area/science/research)
-"bih" = (
-/obj/machinery/computer/rdconsole/robotics,
-/turf/open/floor/plasteel/purple/side{
- dir = 8
- },
-/area/science/robotics/lab)
-"bii" = (
-/obj/effect/landmark/start/roboticist,
-/obj/effect/turf_decal/bot,
-/turf/open/floor/plasteel,
-/area/science/robotics/lab)
-"bij" = (
-/obj/structure/table,
-/obj/machinery/cell_charger,
-/obj/item/weapon/stock_parts/cell/high/plus,
-/obj/machinery/light{
- dir = 4
- },
-/obj/machinery/firealarm{
- dir = 4;
- pixel_x = 28
- },
-/turf/open/floor/plasteel/purple/side{
- dir = 4
- },
-/area/science/robotics/lab)
-"bik" = (
-/turf/closed/wall,
-/area/science/explab)
-"bil" = (
-/obj/structure/rack,
-/obj/item/clothing/mask/gas{
- pixel_x = 3;
- pixel_y = 3
- },
-/obj/item/clothing/mask/gas,
-/obj/item/clothing/mask/gas{
- pixel_x = -3;
- pixel_y = -3
- },
-/obj/machinery/atmospherics/pipe/simple/general/visible,
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/science/explab)
-"bim" = (
-/obj/machinery/button/door{
- id = "testlab";
- name = "Window Blast Doors";
- pixel_x = -6
- },
-/obj/structure/table/reinforced,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/button/door{
- id = "telelab";
- name = "Test Chamber Blast Door";
- pixel_x = 6
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/science/explab)
-"bin" = (
-/obj/machinery/computer/rdconsole/experiment,
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/science/explab)
-"bio" = (
-/obj/structure/table/reinforced,
-/obj/item/weapon/folder,
-/obj/item/weapon/book/manual/experimentor,
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/science/explab)
-"bip" = (
-/obj/item/weapon/paper_bin{
- pixel_y = 6
- },
-/obj/item/weapon/pen,
-/obj/item/device/radio/off,
-/obj/structure/table/reinforced,
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/science/explab)
-"biq" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/science/explab)
-"bir" = (
-/obj/machinery/disposal/bin,
-/obj/structure/disposalpipe/trunk{
- dir = 4
- },
-/obj/machinery/requests_console{
- department = "Science";
- departmentType = 2;
- dir = 2;
- name = "Science Requests Console";
- pixel_y = 30;
- receive_ore_updates = 1
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/science/explab)
-"bis" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/science/explab)
-"bit" = (
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/science/explab)
-"biu" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/science/explab)
-"biv" = (
-/obj/structure/rack,
-/obj/item/stack/packageWrap,
-/obj/item/stack/cable_coil,
-/obj/item/weapon/wirecutters,
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/science/explab)
-"biw" = (
-/obj/machinery/monkey_recycler,
-/turf/open/floor/plasteel/whitepurple/side{
- dir = 8
- },
-/area/science/xenobiology)
-"bix" = (
-/turf/open/floor/plasteel/white,
-/area/science/xenobiology)
-"biy" = (
-/obj/structure/chair/comfy/beige{
- dir = 4
- },
-/obj/effect/landmark/start/scientist,
-/turf/open/floor/plasteel/white,
-/area/science/xenobiology)
-"biz" = (
-/obj/machinery/computer/camera_advanced/xenobio,
-/turf/open/floor/plasteel/whitepurple/side{
- dir = 4
- },
-/area/science/xenobiology)
-"biA" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'HIGH VOLTAGE'";
- icon_state = "shock";
- name = "HIGH VOLTAGE"
- },
-/turf/closed/wall/r_wall,
-/area/science/xenobiology)
-"biB" = (
-/obj/structure/disposaloutlet{
- dir = 1
- },
-/obj/structure/disposalpipe/trunk,
-/turf/open/floor/engine,
-/area/science/xenobiology)
-"biC" = (
-/obj/machinery/space_heater,
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
- },
-/area/maintenance/department/cargo)
-"biD" = (
-/obj/machinery/atmospherics/pipe/simple/general/hidden{
- dir = 6
- },
-/turf/open/floor/plating,
-/area/maintenance/department/chapel/monastery)
-"biE" = (
-/obj/machinery/atmospherics/pipe/manifold/general/hidden{
- dir = 1
- },
-/obj/machinery/meter,
-/turf/open/floor/plating,
-/area/maintenance/department/chapel/monastery)
-"biF" = (
-/obj/machinery/atmospherics/pipe/manifold/general/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/department/chapel/monastery)
-"biG" = (
-/obj/item/weapon/extinguisher,
-/turf/open/floor/plating,
-/area/maintenance/department/chapel/monastery)
-"biH" = (
-/obj/item/weapon/storage/bag/ore,
-/turf/open/floor/plating,
-/area/shuttle/auxillary_base)
-"biI" = (
-/obj/structure/mining_shuttle_beacon,
-/turf/open/floor/plating,
-/area/shuttle/auxillary_base)
-"biJ" = (
-/obj/structure/chair/wood/normal,
-/turf/open/floor/plasteel/black,
-/area/library)
-"biK" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/light/small{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/department/engine)
-"biL" = (
-/obj/machinery/clonepod,
-/turf/open/floor/plasteel/blue,
-/area/medical/genetics)
-"biM" = (
-/turf/open/floor/plasteel/white,
-/area/medical/genetics)
-"biN" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/medical/genetics)
-"biO" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/medical/genetics)
-"biP" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/medical/genetics)
-"biQ" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/whiteblue/side{
- dir = 8
- },
-/area/medical/medbay/zone3)
-"biR" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 1
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/zone3)
-"biS" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/whiteblue/side{
- dir = 4
- },
-/area/medical/medbay/zone3)
-"biT" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/centcom{
- name = "Morgue";
- opacity = 1;
- req_access_txt = "6;5"
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/black,
-/area/medical/morgue)
-"biU" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/black,
-/area/medical/morgue)
-"biV" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
-/turf/open/floor/plasteel/black,
-/area/medical/morgue)
-"biW" = (
-/obj/machinery/light/small,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/black,
-/area/medical/morgue)
-"biX" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/black,
-/area/medical/morgue)
-"biY" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/black,
-/area/medical/morgue)
-"biZ" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/centcom{
- name = "Morgue";
- opacity = 1;
- req_access_txt = "6;5"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/black,
-/area/medical/morgue)
-"bja" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 1
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/turf/open/floor/plasteel/whiteblue/side{
- dir = 8
- },
-/area/medical/medbay/central)
-"bjb" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/central)
-"bjc" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/whiteblue/side{
- dir = 4
- },
-/area/medical/medbay/central)
-"bjd" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/medical{
- name = "Medbay Reception";
- req_access_txt = "5"
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/central)
-"bje" = (
-/obj/structure/chair/office/light{
- dir = 4
- },
-/turf/open/floor/plasteel/whiteblue/side{
- dir = 4
- },
-/area/medical/medbay/central)
-"bjf" = (
-/obj/structure/table/reinforced,
-/obj/machinery/button/door{
- desc = "A remote control switch for the medbay foyer.";
- id = "MedbayFoyer";
- name = "Medbay Door Control";
- normaldoorcontrol = 1;
- req_access_txt = "5"
- },
-/turf/open/floor/plasteel/whiteblue/side{
- dir = 8
- },
-/area/medical/medbay/central)
-"bjg" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/whiteblue/corner{
- dir = 8
- },
-/area/medical/medbay/central)
-"bjh" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/whiteblue/corner,
-/area/medical/medbay/central)
-"bji" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "chemistry_shutters";
- name = "chemistry shutters"
- },
-/turf/open/floor/plating,
-/area/medical/chemistry)
-"bjj" = (
-/obj/structure/table/reinforced,
-/obj/machinery/door/window/northleft{
- dir = 2;
- name = "Chemistry Desk";
- req_access_txt = "5; 33"
- },
-/obj/machinery/door/firedoor,
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "chemistry_shutters";
- name = "chemistry shutters"
- },
-/obj/item/weapon/folder/white,
-/obj/item/weapon/pen,
-/turf/open/floor/plasteel/whiteyellow{
- dir = 4
- },
-/area/medical/chemistry)
-"bjk" = (
-/obj/machinery/smartfridge/chemistry/preloaded,
-/turf/closed/wall,
-/area/medical/chemistry)
-"bjl" = (
-/turf/closed/wall,
-/area/medical/chemistry)
-"bjm" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "research_shutters_2";
- name = "research shutters"
- },
-/turf/open/floor/plating,
-/area/science/explab)
-"bjn" = (
-/obj/structure/table/reinforced,
-/obj/item/weapon/pen{
- layer = 3.1
- },
-/obj/machinery/door/firedoor,
-/obj/machinery/door/window/eastright{
- dir = 2;
- name = "Research and Development Desk";
- req_access_txt = "7"
- },
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "research_shutters_2";
- name = "research shutters"
- },
-/obj/item/weapon/folder/white,
-/turf/open/floor/plating,
-/area/science/explab)
-"bjo" = (
-/obj/structure/sink{
- dir = 8;
- pixel_x = -12
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/light{
- dir = 1
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/science/research)
-"bjp" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/science/research)
-"bjq" = (
-/obj/structure/closet/emcloset,
-/obj/machinery/camera{
- c_tag = "Research Division Access";
- dir = 2;
- network = list("SS13")
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 8
- },
-/obj/machinery/light{
- dir = 1
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/science/research)
-"bjr" = (
-/obj/structure/table,
-/obj/item/weapon/book/manual/robotics_cyborgs{
- pixel_x = 2;
- pixel_y = 5
- },
-/obj/item/weapon/storage/belt/utility,
-/obj/item/weapon/reagent_containers/glass/beaker/large,
-/obj/item/device/radio/intercom{
- dir = 0;
- name = "Station Intercom (General)";
- pixel_x = -27
- },
-/turf/open/floor/plasteel/purple/side{
- dir = 8
- },
-/area/science/robotics/lab)
-"bjs" = (
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/turf/open/floor/plasteel,
-/area/science/robotics/lab)
-"bjt" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel,
-/area/science/robotics/lab)
-"bju" = (
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/turf/open/floor/plasteel,
-/area/science/robotics/lab)
-"bjv" = (
-/obj/structure/sink{
- dir = 4;
- pixel_x = 11
- },
-/obj/effect/decal/cleanable/oil{
- icon_state = "floor6"
- },
-/turf/open/floor/plasteel/purple/side{
- dir = 4
- },
-/area/science/robotics/lab)
-"bjw" = (
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 1
- },
-/obj/structure/extinguisher_cabinet{
- pixel_x = -24
- },
-/turf/open/floor/plasteel,
-/area/science/explab)
-"bjx" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/science/explab)
-"bjy" = (
-/obj/structure/chair/stool,
-/obj/effect/landmark/start/scientist,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/science/explab)
-"bjz" = (
-/obj/structure/chair/stool,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/science/explab)
-"bjA" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/science/explab)
-"bjB" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/science/explab)
-"bjC" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/science/explab)
-"bjD" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/science/explab)
-"bjE" = (
-/obj/structure/table,
-/obj/item/stack/sheet/glass{
- amount = 50;
- pixel_x = 3;
- pixel_y = 3
- },
-/obj/item/stack/sheet/metal{
- amount = 50
- },
-/obj/item/device/assembly/timer,
-/obj/item/device/assembly/timer,
-/turf/open/floor/plasteel,
-/area/science/explab)
-"bjF" = (
-/obj/machinery/processor{
- desc = "A machine used to process slimes and retrieve their extract.";
- name = "Slime Processor"
- },
-/obj/machinery/light{
- dir = 8
- },
-/obj/structure/sign/poster/official/random{
- pixel_x = -32
- },
-/turf/open/floor/plasteel/whitepurple/side{
- dir = 8
- },
-/area/science/xenobiology)
-"bjG" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on,
-/turf/open/floor/plasteel/white,
-/area/science/xenobiology)
-"bjH" = (
-/obj/machinery/smartfridge/extract/preloaded,
-/turf/open/floor/plasteel/whitepurple/side{
- dir = 4
- },
-/area/science/xenobiology)
-"bjI" = (
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/obj/machinery/shieldwallgen/xenobiologyaccess,
-/turf/open/floor/plating,
-/area/science/xenobiology)
-"bjJ" = (
-/obj/structure/grille,
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/obj/structure/window/reinforced/fulltile,
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/machinery/door/poddoor/preopen{
- id = "misclab";
- name = "test chamber blast door"
- },
-/turf/open/floor/engine,
-/area/science/xenobiology)
-"bjK" = (
-/obj/structure/grille,
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/obj/machinery/door/poddoor/preopen{
- id = "misclab";
- name = "test chamber blast door"
- },
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/engine,
-/area/science/xenobiology)
-"bjL" = (
-/obj/machinery/door/window/southleft{
- dir = 1;
- name = "Test Chamber";
- req_access_txt = "55"
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/door/poddoor/preopen{
- id = "misclab";
- name = "test chamber blast door"
- },
-/turf/open/floor/engine,
-/area/science/xenobiology)
-"bjM" = (
-/obj/structure/grille,
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/obj/machinery/door/poddoor/preopen{
- id = "misclab";
- name = "test chamber blast door"
- },
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/engine,
-/area/science/xenobiology)
-"bjN" = (
-/obj/structure/grille,
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/machinery/door/poddoor/preopen{
- id = "misclab";
- name = "test chamber blast door"
- },
-/obj/structure/window/reinforced/fulltile,
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/turf/open/floor/engine,
-/area/science/xenobiology)
-"bjO" = (
-/obj/structure/cable{
- icon_state = "0-2";
- pixel_y = 1;
- d2 = 2
- },
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/machinery/shieldwallgen/xenobiologyaccess,
-/turf/open/floor/plating,
-/area/science/xenobiology)
-"bjP" = (
-/obj/machinery/atmospherics/pipe/simple/general/hidden,
-/turf/closed/wall,
-/area/science/xenobiology)
-"bjQ" = (
-/obj/machinery/door/poddoor/preopen{
- id = "xenobio5";
- name = "containment blast door"
- },
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/engine,
-/area/science/xenobiology)
-"bjR" = (
-/obj/machinery/door/window/northleft{
- base_state = "right";
- dir = 1;
- icon_state = "right";
- name = "Containment Pen #5";
- req_access_txt = "55"
- },
-/obj/machinery/door/poddoor/preopen{
- id = "xenobio5";
- name = "containment blast door"
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/engine,
-/area/science/xenobiology)
-"bjS" = (
-/obj/machinery/door/poddoor/preopen{
- id = "xenobio5";
- name = "containment blast door"
- },
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/structure/cable{
- icon_state = "0-2";
- pixel_y = 1;
- d2 = 2
- },
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/turf/open/floor/engine,
-/area/science/xenobiology)
-"bjT" = (
-/obj/machinery/door/poddoor/preopen{
- id = "xenobio6";
- name = "containment blast door"
- },
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/engine,
-/area/science/xenobiology)
-"bjU" = (
-/obj/machinery/door/window/northleft{
- base_state = "right";
- dir = 1;
- icon_state = "right";
- name = "Containment Pen #6";
- req_access_txt = "55"
- },
-/obj/machinery/door/poddoor/preopen{
- id = "xenobio6";
- name = "containment blast door"
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/engine,
-/area/science/xenobiology)
-"bjV" = (
-/obj/machinery/door/poddoor/preopen{
- id = "xenobio6";
- name = "containment blast door"
- },
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/structure/cable{
- icon_state = "0-2";
- pixel_y = 1;
- d2 = 2
- },
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/turf/open/floor/engine,
-/area/science/xenobiology)
-"bjW" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating,
-/area/maintenance/department/cargo)
-"bjX" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/light/small{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/maintenance/department/cargo)
-"bjY" = (
-/obj/structure/shuttle/engine/propulsion/left{
- dir = 8
- },
-/turf/open/floor/plating/airless,
-/area/shuttle/transport)
-"bjZ" = (
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/transport)
-"bka" = (
-/obj/structure/window/shuttle,
-/obj/structure/grille,
-/turf/open/floor/plating,
-/area/shuttle/transport)
-"bkb" = (
-/obj/structure/grille,
-/obj/structure/window/shuttle,
-/turf/open/floor/plating,
-/area/shuttle/transport)
-"bkc" = (
-/obj/machinery/power/apc{
- dir = 4;
- name = "Arrivals APC";
- pixel_x = 24
- },
-/obj/structure/cable{
- icon_state = "0-2";
- pixel_y = 1;
- d2 = 2
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plasteel/neutral/corner,
-/area/hallway/secondary/entry)
-"bkd" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 5
- },
-/turf/open/floor/carpet,
-/area/library)
-"bke" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/carpet,
-/area/library)
-"bkf" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 8
- },
-/turf/open/floor/plasteel/black,
-/area/library)
-"bkg" = (
-/obj/machinery/computer/cloning,
-/obj/machinery/light{
- dir = 8
- },
-/obj/machinery/camera{
- c_tag = "Genetics Cloning";
- dir = 4;
- network = list("SS13")
- },
-/turf/open/floor/plasteel/blue,
-/area/medical/genetics)
-"bkh" = (
-/obj/machinery/holopad,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/white,
-/area/medical/genetics)
-"bki" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/sortjunction{
- dir = 8;
- icon_state = "pipe-j2s";
- sortType = 23
- },
-/turf/open/floor/plasteel/white,
-/area/medical/genetics)
-"bkj" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/medical/genetics)
-"bkk" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass_medical{
- id_tag = "GeneticsDoor";
- name = "Cloning";
- req_access_txt = "5"
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/medical/genetics)
-"bkl" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/sortjunction{
- dir = 8;
- icon_state = "pipe-j1s";
- sortType = 9
- },
-/turf/open/floor/plasteel/whiteblue/corner{
- dir = 1
- },
-/area/medical/medbay/zone3)
-"bkm" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 1
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/zone3)
-"bkn" = (
-/obj/machinery/power/apc{
- dir = 4;
- name = "Medbay APC";
- pixel_x = 24
- },
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/turf/open/floor/plasteel/whiteblue/corner{
- dir = 4
- },
-/area/medical/medbay/zone3)
-"bko" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 5
- },
-/obj/structure/cable,
-/obj/machinery/power/apc{
- dir = 8;
- name = "Medbay APC";
- pixel_x = -24
- },
-/turf/open/floor/plasteel/whiteblue/corner{
- dir = 1
- },
-/area/medical/medbay/central)
-"bkp" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 1
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/central)
-"bkq" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 9
- },
-/obj/structure/sign/poster/official/random{
- pixel_x = 32
- },
-/turf/open/floor/plasteel/whiteblue/corner{
- dir = 4
- },
-/area/medical/medbay/central)
-"bkr" = (
-/obj/machinery/computer/med_data,
-/turf/open/floor/plasteel/whiteblue/side,
-/area/medical/medbay/central)
-"bks" = (
-/obj/machinery/computer/crew,
-/turf/open/floor/plasteel/whiteblue/side{
- dir = 6
- },
-/area/medical/medbay/central)
-"bkt" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass_medical{
- id_tag = "MedbayFoyer";
- name = "Medbay";
- req_access_txt = "5"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/whiteblue/corner{
- dir = 8
- },
-/area/medical/medbay/central)
-"bku" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass_medical{
- id_tag = "MedbayFoyer";
- name = "Medbay";
- req_access_txt = "5"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/whiteblue/corner,
-/area/medical/medbay/central)
-"bkv" = (
-/obj/machinery/chem_master{
- layer = 2.7;
- pixel_x = -2
- },
-/turf/open/floor/plasteel/whiteyellow/side{
- dir = 9
- },
-/area/medical/chemistry)
-"bkw" = (
-/obj/structure/chair/office/light{
- dir = 1
- },
-/obj/effect/landmark/start/chemist,
-/turf/open/floor/plasteel/whiteyellow/side{
- dir = 1
- },
-/area/medical/chemistry)
-"bkx" = (
-/obj/item/weapon/reagent_containers/glass/beaker/large,
-/obj/item/weapon/reagent_containers/glass/beaker/large,
-/obj/structure/table/glass,
-/obj/item/weapon/reagent_containers/glass/beaker/large,
-/obj/item/weapon/reagent_containers/glass/beaker/large,
-/obj/item/clothing/glasses/science,
-/turf/open/floor/plasteel/whiteyellow/side{
- dir = 1
- },
-/area/medical/chemistry)
-"bky" = (
-/obj/machinery/chem_master{
- layer = 2.7;
- pixel_x = -2
- },
-/obj/machinery/button/door{
- id = "chemistry_shutters";
- name = "Shutters Control";
- pixel_x = 26;
- pixel_y = 4;
- req_access_txt = "5; 33"
- },
-/turf/open/floor/plasteel/whiteyellow/side{
- dir = 5
- },
-/area/medical/chemistry)
-"bkz" = (
-/obj/structure/table,
-/obj/item/weapon/crowbar,
-/obj/item/weapon/wrench,
-/obj/machinery/requests_console{
- department = "Science";
- departmentType = 2;
- name = "Science Requests Console";
- pixel_x = -32;
- receive_ore_updates = 1
- },
-/obj/item/weapon/book/manual/research_and_development,
-/turf/open/floor/plasteel/purple/side{
- dir = 1
- },
-/area/science/explab)
-"bkA" = (
-/obj/structure/sink/kitchen{
- desc = "A sink used for washing one's hands and face. It looks rusty and home-made";
- name = "old sink";
- pixel_y = 28
- },
-/turf/open/floor/plasteel/purple/side{
- dir = 1
- },
-/area/science/explab)
-"bkB" = (
-/obj/machinery/disposal/bin,
-/obj/machinery/light{
- dir = 1
- },
-/obj/structure/disposalpipe/trunk{
- dir = 4
- },
-/turf/open/floor/plasteel/purple/side{
- dir = 1
- },
-/area/science/explab)
-"bkC" = (
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
-/turf/open/floor/plasteel/purple/side{
- dir = 1
- },
-/area/science/explab)
-"bkD" = (
-/obj/structure/chair/office/light{
- dir = 1
- },
-/turf/open/floor/plasteel/purple/side{
- dir = 1
- },
-/area/science/explab)
-"bkE" = (
-/obj/item/weapon/storage/toolbox/mechanical,
-/obj/machinery/holopad,
-/turf/open/floor/plasteel/purple/side{
- dir = 1
- },
-/area/science/explab)
-"bkF" = (
-/obj/machinery/shower{
- dir = 4;
- icon_state = "shower";
- name = "emergency shower"
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 8
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 10
- },
-/turf/open/floor/plasteel/white{
- heat_capacity = 1e+006
- },
-/area/science/research)
-"bkG" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/line,
-/turf/open/floor/plasteel/white,
-/area/science/research)
-"bkH" = (
-/obj/structure/closet/firecloset/full,
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 8
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 6
- },
-/turf/open/floor/plasteel/white,
-/area/science/research)
-"bkI" = (
-/obj/structure/closet/wardrobe/robotics_black,
-/obj/item/device/radio/headset/headset_sci{
- pixel_x = -3
- },
-/turf/open/floor/plasteel/purple/side{
- dir = 8
- },
-/area/science/robotics/lab)
-"bkJ" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
-/turf/open/floor/plasteel,
-/area/science/robotics/lab)
-"bkK" = (
-/obj/item/device/assembly/prox_sensor{
- pixel_x = -8;
- pixel_y = 4
- },
-/obj/item/device/assembly/prox_sensor{
- pixel_x = -8;
- pixel_y = 4
- },
-/obj/item/device/assembly/prox_sensor{
- pixel_x = -8;
- pixel_y = 4
- },
-/obj/item/device/assembly/prox_sensor{
- pixel_x = -8;
- pixel_y = 4
- },
-/obj/item/weapon/stock_parts/cell/high/plus,
-/obj/item/weapon/stock_parts/cell/high/plus{
- pixel_x = 5;
- pixel_y = -5
- },
-/obj/item/weapon/crowbar,
-/obj/structure/table,
-/turf/open/floor/plasteel,
-/area/science/robotics/lab)
-"bkL" = (
-/obj/item/weapon/circular_saw,
-/obj/item/weapon/scalpel{
- pixel_y = 12
- },
-/obj/structure/window/reinforced{
- dir = 1;
- pixel_y = 1
- },
-/obj/item/weapon/razor{
- pixel_y = 5
- },
-/obj/structure/window/reinforced{
- dir = 8;
- layer = 2.9
- },
-/obj/structure/table,
-/obj/effect/turf_decal/stripes/line{
- dir = 9
- },
-/turf/open/floor/plasteel/white,
-/area/science/robotics/lab)
-"bkM" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plasteel/white,
-/area/science/robotics/lab)
-"bkN" = (
-/obj/machinery/holopad,
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plasteel/white,
-/area/science/robotics/lab)
-"bkO" = (
-/obj/item/clothing/gloves/color/latex,
-/obj/item/weapon/surgical_drapes,
-/obj/structure/window/reinforced{
- dir = 1;
- pixel_y = 1
- },
-/obj/structure/table,
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plasteel/white,
-/area/science/robotics/lab)
-"bkP" = (
-/obj/machinery/atmospherics/components/unary/portables_connector/visible{
- dir = 1;
- name = "Connector Port (Air Supply)"
- },
-/obj/machinery/light_switch{
- pixel_x = -25
- },
-/turf/open/floor/plasteel,
-/area/science/explab)
-"bkQ" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
-/area/science/explab)
-"bkR" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 6
- },
-/turf/open/floor/plasteel,
-/area/science/explab)
-"bkS" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 9
- },
-/obj/machinery/holopad,
-/turf/open/floor/plasteel,
-/area/science/explab)
-"bkT" = (
-/turf/open/floor/plasteel,
-/area/science/explab)
-"bkU" = (
-/obj/machinery/droneDispenser,
-/turf/open/floor/plasteel,
-/area/science/explab)
-"bkV" = (
-/obj/structure/chair/stool,
-/obj/effect/decal/cleanable/oil{
- icon_state = "floor5"
- },
-/turf/open/floor/plasteel,
-/area/science/explab)
-"bkW" = (
-/obj/structure/chair/stool,
-/turf/open/floor/plasteel,
-/area/science/explab)
-"bkX" = (
-/obj/structure/table,
-/obj/item/weapon/storage/box/beakers{
- pixel_x = 2;
- pixel_y = 2
- },
-/obj/item/weapon/grenade/chem_grenade,
-/obj/item/weapon/grenade/chem_grenade,
-/obj/machinery/firealarm{
- dir = 4;
- pixel_x = 28
- },
-/turf/open/floor/plasteel,
-/area/science/explab)
-"bkY" = (
-/obj/structure/table/glass,
-/obj/item/weapon/folder,
-/obj/item/weapon/pen,
-/turf/open/floor/plasteel/whitepurple/side{
- dir = 8
- },
-/area/science/xenobiology)
-"bkZ" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/white,
-/area/science/xenobiology)
-"bla" = (
-/obj/structure/chair/comfy/beige{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/science/xenobiology)
-"blb" = (
-/obj/machinery/computer/camera_advanced/xenobio,
-/obj/machinery/camera{
- c_tag = "Xenobiology Port";
- dir = 8;
- network = list("SS13","RD")
- },
-/turf/open/floor/plasteel/whitepurple/side{
- dir = 4
- },
-/area/science/xenobiology)
-"blc" = (
-/obj/structure/sign/biohazard,
-/turf/closed/wall,
-/area/science/xenobiology)
-"bld" = (
-/obj/item/weapon/wrench,
-/obj/effect/turf_decal/stripes/line{
- dir = 2
- },
-/turf/open/floor/plasteel,
-/area/science/xenobiology)
-"ble" = (
-/obj/machinery/computer/security/telescreen{
- name = "Test Chamber Monitor";
- network = list("Xeno");
- pixel_y = 2
- },
-/obj/structure/table/reinforced,
-/obj/effect/turf_decal/stripes/line{
- dir = 2
- },
-/turf/open/floor/plasteel,
-/area/science/xenobiology)
-"blf" = (
-/obj/machinery/button/door{
- id = "misclab";
- name = "Test Chamber Blast Doors";
- pixel_y = -2;
- req_access_txt = "55"
- },
-/obj/structure/table/reinforced,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 6
- },
-/turf/open/floor/plasteel,
-/area/science/xenobiology)
-"blg" = (
-/obj/machinery/door/window/southleft{
- name = "Test Chamber";
- req_access_txt = "55"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 2
- },
-/turf/open/floor/plasteel,
-/area/science/xenobiology)
-"blh" = (
-/obj/machinery/disposal/bin,
-/obj/structure/disposalpipe/trunk{
- dir = 1
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 10
- },
-/turf/open/floor/plasteel,
-/area/science/xenobiology)
-"bli" = (
-/obj/machinery/atmospherics/components/unary/portables_connector/visible{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/line,
-/turf/open/floor/plasteel,
-/area/science/xenobiology)
-"blj" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 2
- },
-/turf/open/floor/plasteel,
-/area/science/xenobiology)
-"blk" = (
-/obj/structure/sign/xenobio,
-/obj/machinery/atmospherics/pipe/simple/general/hidden{
- dir = 9
- },
-/turf/closed/wall,
-/area/science/xenobiology)
-"bll" = (
-/obj/machinery/disposal/bin,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/disposalpipe/trunk{
- dir = 1
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 5
- },
-/turf/open/floor/plasteel,
-/area/science/xenobiology)
-"blm" = (
-/obj/machinery/door/window/northleft{
- base_state = "right";
- dir = 2;
- icon_state = "right";
- name = "Containment Pen #5";
- req_access_txt = "55"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/science/xenobiology)
-"bln" = (
-/obj/structure/table/reinforced,
-/obj/machinery/button/door{
- id = "xenobio5";
- name = "Containment Blast Doors";
- pixel_y = 4;
- req_access_txt = "55"
- },
-/obj/structure/window/reinforced{
- dir = 8;
- layer = 2.9
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 9
- },
-/turf/open/floor/plasteel,
-/area/science/xenobiology)
-"blo" = (
-/obj/machinery/door/window/northleft{
- base_state = "right";
- dir = 2;
- icon_state = "right";
- name = "Containment Pen #6";
- req_access_txt = "55"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/science/xenobiology)
-"blp" = (
-/obj/structure/table/reinforced,
-/obj/machinery/button/door{
- id = "xenobio6";
- name = "Containment Blast Doors";
- pixel_y = 4;
- req_access_txt = "55"
- },
-/obj/structure/window/reinforced{
- dir = 8;
- layer = 2.9
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 9
- },
-/turf/open/floor/plasteel,
-/area/science/xenobiology)
-"blq" = (
-/obj/machinery/door/airlock/maintenance{
- req_access_txt = "0";
- req_one_access_txt = "12; 55"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating,
-/area/science/xenobiology)
-"blr" = (
-/obj/structure/chair{
- dir = 4
- },
-/obj/item/weapon/cigbutt,
-/turf/open/floor/plating,
-/area/maintenance/department/cargo)
-"bls" = (
-/obj/structure/shuttle/engine/heater{
- dir = 8
- },
-/obj/structure/window/reinforced,
-/turf/open/floor/plating/airless,
-/area/shuttle/transport)
-"blt" = (
-/turf/open/floor/pod/light,
-/area/shuttle/transport)
-"blu" = (
-/obj/machinery/computer/shuttle/ferry/request,
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/transport)
-"blv" = (
-/obj/structure/chair,
-/turf/open/floor/pod/dark,
-/area/shuttle/transport)
-"blw" = (
-/obj/structure/grille,
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
- icon_state = "space";
- layer = 4;
- name = "EXTERNAL AIRLOCK"
- },
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/hallway/secondary/entry)
-"blx" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/camera{
- c_tag = "Arrivals Starboard Aft";
- dir = 8
- },
-/obj/machinery/light{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/obj/structure/extinguisher_cabinet{
- pixel_x = 27
- },
-/turf/open/floor/plasteel/neutral/corner,
-/area/hallway/secondary/entry)
-"bly" = (
-/obj/machinery/dna_scannernew,
-/turf/open/floor/plasteel/blue,
-/area/medical/genetics)
-"blz" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 6
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/medical/genetics)
-"blA" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/medical/genetics)
-"blB" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 1
- },
-/turf/open/floor/plasteel/white,
-/area/medical/genetics)
-"blC" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/medical/genetics)
-"blD" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/medical/genetics)
-"blE" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 10
- },
-/turf/open/floor/plasteel/whiteblue/corner{
- dir = 1
- },
-/area/medical/medbay/zone3)
-"blF" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/zone3)
-"blG" = (
-/obj/machinery/shower{
- dir = 8
- },
-/turf/open/floor/plasteel/whiteblue/corner{
- dir = 4
- },
-/area/medical/medbay/zone3)
-"blH" = (
-/turf/closed/wall,
-/area/medical/sleeper)
-"blI" = (
-/obj/machinery/atmospherics/components/unary/thermomachine/freezer,
-/obj/machinery/firealarm{
- dir = 8;
- pixel_x = -26
- },
-/obj/structure/sign/poster/official/random{
- pixel_y = 32
- },
-/turf/open/floor/plasteel/blue,
-/area/medical/sleeper)
-"blJ" = (
-/obj/machinery/atmospherics/components/unary/cryo_cell,
-/turf/open/floor/plasteel/blue,
-/area/medical/sleeper)
-"blK" = (
-/turf/open/floor/plasteel/black,
-/area/library)
-"blL" = (
-/obj/machinery/portable_atmospherics/canister/oxygen,
-/obj/machinery/atmospherics/components/unary/portables_connector/visible,
-/obj/structure/noticeboard{
- pixel_y = 32
- },
-/obj/machinery/light{
- dir = 1
- },
-/turf/open/floor/plasteel/blue,
-/area/medical/sleeper)
-"blM" = (
-/obj/machinery/portable_atmospherics/canister/oxygen,
-/obj/machinery/atmospherics/components/unary/portables_connector/visible,
-/obj/item/device/radio/intercom{
- broadcasting = 0;
- freerange = 0;
- frequency = 1485;
- listening = 1;
- name = "Station Intercom (Medbay)";
- pixel_x = 28
- },
-/obj/machinery/airalarm{
- pixel_y = 22
- },
-/turf/open/floor/plasteel/blue,
-/area/medical/sleeper)
-"blN" = (
-/obj/machinery/shower{
- dir = 4
- },
-/turf/open/floor/plasteel/whiteblue/corner{
- dir = 1
- },
-/area/medical/medbay/central)
-"blO" = (
-/obj/structure/extinguisher_cabinet{
- pixel_x = 24
- },
-/turf/open/floor/plasteel/whiteblue/corner{
- dir = 4
- },
-/area/medical/medbay/central)
-"blP" = (
-/obj/machinery/button/door{
- desc = "A remote control switch for the medbay foyer.";
- id = "MedbayFoyer";
- name = "Medbay Exit Button";
- normaldoorcontrol = 1;
- pixel_x = -26;
- pixel_y = -2
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/whiteblue/corner{
- dir = 8
- },
-/area/medical/medbay/central)
-"blQ" = (
-/obj/machinery/chem_dispenser{
- layer = 2.7
- },
-/obj/machinery/button/door{
- desc = "A remote control switch for the medbay foyer.";
- id = "MedbayFoyer";
- name = "Medbay Door Control";
- normaldoorcontrol = 1;
- pixel_x = -26;
- pixel_y = -2;
- req_access_txt = "5"
- },
-/turf/open/floor/plasteel/whiteyellow/side{
- dir = 8
- },
-/area/medical/chemistry)
-"blR" = (
-/turf/open/floor/plasteel/white,
-/area/medical/chemistry)
-"blS" = (
-/obj/item/weapon/book/manual/wiki/chemistry,
-/obj/item/weapon/storage/box/beakers,
-/obj/structure/table/glass,
-/turf/open/floor/plasteel/white,
-/area/medical/chemistry)
-"blT" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on,
-/turf/open/floor/plasteel/white,
-/area/medical/chemistry)
-"blU" = (
-/obj/machinery/chem_dispenser{
- layer = 2.7
- },
-/obj/item/device/radio/intercom{
- dir = 0;
- name = "Station Intercom (General)";
- pixel_x = 29
- },
-/turf/open/floor/plasteel/white,
-/area/medical/chemistry)
-"blV" = (
-/obj/machinery/light{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel/yellow/corner{
- dir = 1
- },
-/area/hallway/primary/aft)
-"blW" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"blX" = (
-/obj/structure/table,
-/obj/structure/extinguisher_cabinet{
- pixel_x = -26
- },
-/obj/item/weapon/disk/tech_disk,
-/obj/item/weapon/disk/design_disk,
-/turf/open/floor/plasteel,
-/area/science/explab)
-"blY" = (
-/obj/effect/turf_decal/stripes/line,
-/turf/open/floor/plasteel,
-/area/science/explab)
-"blZ" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/effect/turf_decal/stripes/line,
-/turf/open/floor/plasteel,
-/area/science/explab)
-"bma" = (
-/obj/machinery/power/apc{
- dir = 4;
- name = "Research Lab APC";
- pixel_x = 26
- },
-/obj/structure/cable{
- icon_state = "0-2";
- pixel_y = 1;
- d2 = 2
- },
-/turf/open/floor/plasteel,
-/area/science/explab)
-"bmb" = (
-/obj/machinery/door/firedoor/heavy,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/door/poddoor/preopen{
- id = "rndshutters";
- name = "research shutters"
- },
-/obj/effect/turf_decal/bot,
-/turf/open/floor/plasteel,
-/area/science/research)
-"bmc" = (
-/obj/machinery/door/firedoor/heavy,
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/door/poddoor/preopen{
- id = "rndshutters";
- name = "research shutters"
- },
-/obj/effect/turf_decal/bot,
-/turf/open/floor/plasteel,
-/area/science/research)
-"bmd" = (
-/obj/machinery/door/firedoor/heavy,
-/obj/machinery/door/poddoor/preopen{
- id = "rndshutters";
- name = "research shutters"
- },
-/obj/effect/turf_decal/bot,
-/turf/open/floor/plasteel,
-/area/science/research)
-"bme" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/science/robotics/lab)
-"bmf" = (
-/obj/item/weapon/storage/firstaid/regular{
- empty = 1;
- name = "First-Aid (empty)"
- },
-/obj/item/weapon/storage/firstaid/regular{
- empty = 1;
- name = "First-Aid (empty)"
- },
-/obj/item/weapon/storage/firstaid/regular{
- empty = 1;
- name = "First-Aid (empty)"
- },
-/obj/item/device/healthanalyzer,
-/obj/item/device/healthanalyzer,
-/obj/item/device/healthanalyzer,
-/obj/item/stack/cable_coil,
-/obj/item/stack/cable_coil,
-/obj/structure/table,
-/turf/open/floor/plasteel,
-/area/science/robotics/lab)
-"bmg" = (
-/obj/item/weapon/retractor,
-/obj/item/weapon/hemostat,
-/obj/structure/window/reinforced{
- dir = 8;
- layer = 2.9
- },
-/obj/structure/table,
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/science/robotics/lab)
-"bmh" = (
-/obj/structure/table/optable{
- name = "Robotics Operating Table"
- },
-/obj/machinery/camera{
- c_tag = "Robotics - Aft";
- dir = 1;
- network = list("SS13","RD")
- },
-/turf/open/floor/plasteel/white,
-/area/science/robotics/lab)
-"bmi" = (
-/obj/machinery/computer/operating{
- name = "Robotics Operating Computer"
- },
-/turf/open/floor/plasteel/white,
-/area/science/robotics/lab)
-"bmj" = (
-/obj/item/device/mmi,
-/obj/item/device/mmi,
-/obj/item/device/mmi,
-/obj/structure/table,
-/turf/open/floor/plasteel/white,
-/area/science/robotics/lab)
-"bmk" = (
-/obj/structure/rack,
-/obj/item/weapon/crowbar,
-/obj/item/weapon/wrench,
-/turf/open/floor/plasteel,
-/area/science/explab)
-"bml" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/science/explab)
-"bmm" = (
-/obj/structure/closet/emcloset,
-/obj/machinery/light,
-/turf/open/floor/plasteel,
-/area/science/explab)
-"bmn" = (
-/obj/structure/closet/radiation,
-/obj/item/device/radio/intercom{
- dir = 0;
- name = "Station Intercom (General)";
- pixel_y = -28
- },
-/turf/open/floor/plasteel,
-/area/science/explab)
-"bmo" = (
-/obj/structure/reagent_dispensers/fueltank,
-/turf/open/floor/plasteel,
-/area/science/explab)
-"bmp" = (
-/obj/structure/reagent_dispensers/watertank,
-/obj/machinery/camera{
- c_tag = "Experimentation Lab";
- dir = 1;
- network = list("SS13","RD")
- },
-/obj/machinery/airalarm{
- dir = 1;
- pixel_y = -22
- },
-/turf/open/floor/plasteel,
-/area/science/explab)
-"bmq" = (
-/obj/structure/table,
-/obj/item/weapon/storage/toolbox/mechanical,
-/obj/item/clothing/ears/earmuffs,
-/turf/open/floor/plasteel,
-/area/science/explab)
-"bmr" = (
-/obj/structure/table,
-/obj/item/device/electropack,
-/obj/item/device/healthanalyzer,
-/obj/item/device/assembly/signaler,
-/obj/machinery/light,
-/obj/item/device/assembly/voice,
-/turf/open/floor/plasteel,
-/area/science/explab)
-"bms" = (
-/obj/structure/table,
-/obj/machinery/cell_charger{
- pixel_y = 5
- },
-/obj/item/stack/cable_coil,
-/obj/item/device/multitool,
-/obj/item/weapon/screwdriver,
-/turf/open/floor/plasteel,
-/area/science/explab)
-"bmt" = (
-/obj/structure/table,
-/obj/item/weapon/hand_labeler,
-/obj/item/clothing/glasses/science,
-/obj/item/clothing/glasses/science,
-/turf/open/floor/plasteel,
-/area/science/explab)
-"bmu" = (
-/obj/machinery/disposal/bin,
-/obj/structure/disposalpipe/trunk,
-/obj/machinery/firealarm{
- dir = 8;
- pixel_x = -27
- },
-/turf/open/floor/plasteel/whitepurple/side{
- dir = 8
- },
-/area/science/xenobiology)
-"bmv" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/science/xenobiology)
-"bmw" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/science/xenobiology)
-"bmx" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/whitepurple/corner{
- dir = 4
- },
-/area/science/xenobiology)
-"bmy" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/whitegreen/side{
- dir = 1
- },
-/area/science/xenobiology)
-"bmz" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/whitegreen/side{
- dir = 1
- },
-/area/science/xenobiology)
-"bmA" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/whitegreen/side{
- dir = 1
- },
-/area/science/xenobiology)
-"bmB" = (
-/obj/machinery/light{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/whitegreen/side{
- dir = 1
- },
-/area/science/xenobiology)
-"bmC" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/whitepurple/side{
- dir = 1
- },
-/area/science/xenobiology)
-"bmD" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/whitepurple/side{
- dir = 1
- },
-/area/science/xenobiology)
-"bmE" = (
-/obj/machinery/camera{
- c_tag = "Xenobiology Starboard Fore";
- dir = 2;
- network = list("SS13","RD")
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 1
- },
-/obj/machinery/firealarm{
- dir = 1;
- pixel_y = 28
- },
-/turf/open/floor/plasteel/whitepurple/side{
- dir = 1
- },
-/area/science/xenobiology)
-"bmF" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 10
- },
-/turf/open/floor/plasteel/whitepurple/side{
- dir = 1
- },
-/area/science/xenobiology)
-"bmG" = (
-/obj/structure/chair{
- dir = 4
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 4
- },
-/obj/machinery/light/small{
- dir = 8
- },
-/obj/effect/landmark/xeno_spawn,
-/turf/open/floor/plasteel/floorgrime,
-/area/science/xenobiology)
-"bmH" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/floorgrime,
-/area/science/xenobiology)
-"bmI" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/structure/sign/biohazard,
-/turf/open/floor/plating,
-/area/science/xenobiology)
-"bmJ" = (
-/turf/open/floor/plating/airless,
-/area/science/xenobiology)
-"bmK" = (
-/obj/effect/decal/remains/xeno,
-/turf/open/floor/plating/airless,
-/area/science/xenobiology)
-"bmL" = (
-/obj/structure/chair{
- dir = 4
- },
-/obj/item/weapon/reagent_containers/food/drinks/soda_cans/dr_gibb,
-/turf/open/floor/plating,
-/area/maintenance/department/cargo)
-"bmM" = (
-/obj/structure/shuttle/engine/heater{
- dir = 8
- },
-/obj/structure/window/reinforced{
- dir = 4
- },
-/turf/open/floor/plating/airless,
-/area/shuttle/transport)
-"bmN" = (
-/obj/machinery/door/airlock/titanium,
-/obj/docking_port/mobile{
- dir = 8;
- dwidth = 2;
- height = 13;
- id = "ferry";
- name = "ferry shuttle";
- port_angle = 0;
- preferred_direction = 4;
- roundstart_move = "ferry_away";
- width = 5
- },
-/obj/docking_port/stationary{
- dir = 8;
- dwidth = 2;
- height = 13;
- id = "ferry_home";
- name = "port bay 2";
- turf_type = /turf/open/space;
- width = 5
- },
-/turf/open/floor/pod/light,
-/area/shuttle/transport)
-"bmO" = (
-/obj/machinery/door/airlock/external{
- cyclelinkeddir = 4;
- id_tag = null;
- name = "Port Docking Bay 2";
- req_access_txt = "0"
- },
-/turf/open/floor/plating,
-/area/hallway/secondary/entry)
-"bmP" = (
-/obj/machinery/door/airlock/external{
- cyclelinkeddir = 8;
- id_tag = null;
- name = "Port Docking Bay 2";
- req_access_txt = "0"
- },
-/turf/open/floor/plating,
-/area/hallway/secondary/entry)
-"bmQ" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 5
- },
-/turf/open/floor/plasteel/neutral/corner,
-/area/hallway/secondary/entry)
-"bmR" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/door/airlock/maintenance{
- req_access_txt = "12"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/department/engine)
-"bmS" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plating,
-/area/maintenance/department/engine)
-"bmT" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/open/floor/plating,
-/area/maintenance/department/engine)
-"bmU" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 10
- },
-/turf/open/floor/plating,
-/area/maintenance/department/engine)
-"bmV" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/turf/open/floor/plating,
-/area/maintenance/department/engine)
-"bmW" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21"
- },
-/turf/open/floor/plasteel/whiteblue/side,
-/area/medical/genetics)
-"bmX" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 1
- },
-/turf/open/floor/plasteel/whiteblue/side,
-/area/medical/genetics)
-"bmY" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/whiteblue/side,
-/area/medical/genetics)
-"bmZ" = (
-/obj/structure/table,
-/obj/item/weapon/book/manual/medical_cloning{
- pixel_y = 6
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/whiteblue/side,
-/area/medical/genetics)
-"bna" = (
-/obj/structure/table,
-/obj/item/weapon/storage/box/rxglasses{
- pixel_x = 3;
- pixel_y = 3
- },
-/obj/item/weapon/storage/box/bodybags,
-/obj/item/weapon/pen,
-/obj/machinery/button/door{
- desc = "A remote control switch for the genetics doors.";
- id = "GeneticsDoor";
- name = "Genetics Exit Button";
- normaldoorcontrol = 1;
- pixel_x = 24;
- pixel_y = 8
- },
-/turf/open/floor/plasteel/whiteblue/side,
-/area/medical/genetics)
-"bnb" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/zone3)
-"bnc" = (
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/zone3)
-"bnd" = (
-/obj/machinery/door/firedoor,
-/turf/open/floor/plasteel/white,
-/area/medical/sleeper)
-"bne" = (
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 5
- },
-/obj/effect/turf_decal/stripes/corner{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/medical/sleeper)
-"bnf" = (
-/obj/machinery/atmospherics/pipe/manifold/general/visible,
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plasteel/white,
-/area/medical/sleeper)
-"bng" = (
-/obj/item/weapon/wrench/medical,
-/obj/machinery/atmospherics/pipe/manifold/general/visible,
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plasteel/white,
-/area/medical/sleeper)
-"bnh" = (
-/obj/machinery/light/small{
- dir = 4
- },
-/turf/open/floor/plasteel/black,
-/area/library)
-"bni" = (
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 9
- },
-/obj/effect/turf_decal/stripes/corner{
- dir = 4
- },
-/turf/open/floor/plasteel/white{
- heat_capacity = 1e+006
- },
-/area/medical/sleeper)
-"bnj" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 5
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/central)
-"bnk" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/central)
-"bnl" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/central)
-"bnm" = (
-/obj/machinery/light{
- dir = 4
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/whiteblue/corner,
-/area/medical/medbay/central)
-"bnn" = (
-/obj/machinery/chem_heater,
-/obj/machinery/light{
- dir = 8
- },
-/obj/structure/extinguisher_cabinet{
- pixel_x = -28
- },
-/obj/machinery/camera{
- c_tag = "Chemistry";
- dir = 4;
- network = list("SS13")
- },
-/turf/open/floor/plasteel/whiteyellow/side{
- dir = 8
- },
-/area/medical/chemistry)
-"bno" = (
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/turf/open/floor/plasteel/white,
-/area/medical/chemistry)
-"bnp" = (
-/obj/machinery/disposal/bin,
-/obj/structure/disposalpipe/trunk{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/medical/chemistry)
-"bnq" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/white,
-/area/medical/chemistry)
-"bnr" = (
-/obj/machinery/chem_heater,
-/obj/machinery/firealarm{
- dir = 4;
- pixel_x = 28
- },
-/turf/open/floor/plasteel/whiteyellow/side{
- dir = 6
- },
-/area/medical/chemistry)
-"bns" = (
-/obj/structure/rack,
-/obj/effect/decal/cleanable/oil{
- icon_state = "floor6"
- },
-/obj/item/stack/sheet/metal{
- amount = 50
- },
-/obj/item/stack/sheet/glass{
- amount = 50;
- pixel_x = 3;
- pixel_y = 3
- },
-/obj/item/weapon/reagent_containers/glass/beaker/large,
-/obj/machinery/airalarm{
- dir = 4;
- pixel_x = -22
- },
-/obj/item/weapon/storage/box/beakers,
-/obj/item/clothing/glasses/welding,
-/turf/open/floor/plasteel,
-/area/science/explab)
-"bnt" = (
-/obj/machinery/r_n_d/destructive_analyzer,
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plasteel,
-/area/science/explab)
-"bnu" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/effect/turf_decal/bot,
-/turf/open/floor/plasteel,
-/area/science/explab)
-"bnv" = (
-/obj/machinery/r_n_d/protolathe,
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plasteel,
-/area/science/explab)
-"bnw" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/camera{
- c_tag = "Research and Development Lab";
- dir = 8;
- network = list("SS13","RD")
- },
-/obj/machinery/firealarm{
- dir = 4;
- pixel_x = 28
- },
-/turf/open/floor/plasteel,
-/area/science/explab)
-"bnx" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/closed/wall/r_wall,
-/area/science/research)
-"bny" = (
-/obj/machinery/door/airlock/research{
- cyclelinkeddir = 1;
- name = "Research Division Access";
- req_access_txt = "47"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plasteel/white,
-/area/science/research)
-"bnz" = (
-/turf/closed/wall/r_wall,
-/area/science/research)
-"bnA" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/science/robotics/lab)
-"bnB" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass_research{
- name = "Robotics Lab";
- req_access_txt = "29"
- },
-/turf/open/floor/plasteel,
-/area/science/robotics/lab)
-"bnC" = (
-/turf/closed/wall,
-/area/science/robotics/lab)
-"bnD" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/science/explab)
-"bnE" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass_research{
- name = "Experimentation Lab";
- req_access_txt = "47"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
-/area/science/explab)
-"bnF" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plating,
-/area/science/explab)
-"bnG" = (
-/obj/item/device/radio/intercom{
- dir = 0;
- name = "Station Intercom (General)";
- pixel_y = -28
- },
-/turf/closed/wall,
-/area/science/explab)
-"bnH" = (
-/obj/machinery/light{
- dir = 8
- },
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/turf/open/floor/plasteel/whitepurple/side{
- dir = 8
- },
-/area/science/xenobiology)
-"bnI" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/white,
-/area/science/xenobiology)
-"bnJ" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
-/turf/open/floor/plasteel/white,
-/area/science/xenobiology)
-"bnK" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/science/xenobiology)
-"bnL" = (
-/obj/machinery/door/firedoor,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/science/xenobiology)
-"bnM" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/turf/open/floor/plasteel/white,
-/area/science/xenobiology)
-"bnN" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/science/xenobiology)
-"bnO" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 10
- },
-/turf/open/floor/plasteel/white,
-/area/science/xenobiology)
-"bnP" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/white,
-/area/science/xenobiology)
-"bnQ" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/white,
-/area/science/xenobiology)
-"bnR" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/turf/open/floor/plasteel/white,
-/area/science/xenobiology)
-"bnS" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 1
- },
-/turf/open/floor/plasteel/white,
-/area/science/xenobiology)
-"bnT" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 5
- },
-/turf/open/floor/plasteel/white,
-/area/science/xenobiology)
-"bnU" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/research{
- name = "Kill Room Access";
- req_access_txt = "55"
- },
-/turf/open/floor/plasteel,
-/area/science/xenobiology)
-"bnV" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plasteel/floorgrime,
-/area/science/xenobiology)
-"bnW" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 4
- },
-/obj/effect/landmark/blobstart,
-/turf/open/floor/plasteel/floorgrime,
-/area/science/xenobiology)
-"bnX" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass_research{
- name = "Kill Room";
- req_access_txt = "55"
- },
-/turf/open/floor/plating,
-/area/science/xenobiology)
-"bnY" = (
-/obj/machinery/light/small{
- dir = 4
- },
-/obj/machinery/camera{
- c_tag = "Xenobiology Kill Room";
- dir = 8;
- network = list("SS13","RD")
- },
-/turf/open/floor/plating/airless,
-/area/science/xenobiology)
-"bnZ" = (
-/obj/structure/closet/crate,
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/transport)
-"boa" = (
-/obj/structure/chair{
- dir = 1
- },
-/turf/open/floor/pod/dark,
-/area/shuttle/transport)
-"bob" = (
-/turf/open/floor/plasteel/neutral/corner,
-/area/hallway/secondary/entry)
-"boc" = (
-/turf/closed/wall,
-/area/maintenance/department/engine)
-"bod" = (
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
- },
-/area/maintenance/department/engine)
-"boe" = (
-/obj/effect/spawner/lootdrop/grille_or_trash,
-/turf/open/floor/plating,
-/area/maintenance/department/engine)
-"bof" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
- },
-/area/maintenance/department/engine)
-"bog" = (
-/obj/machinery/portable_atmospherics/canister/air,
-/turf/open/floor/plating,
-/area/maintenance/department/engine)
-"boh" = (
-/obj/structure/girder,
-/turf/open/floor/plating,
-/area/maintenance/department/engine)
-"boi" = (
-/turf/closed/wall/r_wall,
-/area/medical/genetics)
-"boj" = (
-/obj/machinery/door/airlock/glass_research{
- name = "Genetics";
- req_access_txt = "9"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/whiteblue,
-/area/medical/genetics)
-"bok" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plating,
-/area/medical/genetics)
-"bol" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/camera{
- c_tag = "Medbay Port Hallway";
- dir = 4;
- network = list("SS13")
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/zone3)
-"bom" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/zone3)
-"bon" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/zone3)
-"boo" = (
-/obj/machinery/door/firedoor,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/medical/sleeper)
-"bop" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/medical/sleeper)
-"boq" = (
-/obj/machinery/holopad,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/medical/sleeper)
-"bor" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/central)
-"bos" = (
-/obj/structure/disposalpipe/junction{
- dir = 8;
- icon_state = "pipe-j2"
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/central)
-"bot" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/central)
-"bou" = (
-/obj/machinery/door/firedoor,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/central)
-"bov" = (
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel/whiteblue/corner,
-/area/medical/medbay/central)
-"bow" = (
-/obj/machinery/door/airlock/glass_medical{
- id_tag = null;
- name = "Chemistry Lab";
- req_access_txt = "5; 33"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/medical/chemistry)
-"box" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 10
- },
-/turf/open/floor/plasteel/white,
-/area/medical/chemistry)
-"boy" = (
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel/white,
-/area/medical/chemistry)
-"boz" = (
-/obj/machinery/shower{
- dir = 8;
- name = "emergency shower"
- },
-/obj/machinery/requests_console{
- department = "Chemistry";
- departmentType = 2;
- pixel_x = 32;
- receive_ore_updates = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/white,
-/area/medical/chemistry)
-"boA" = (
-/obj/machinery/camera{
- c_tag = "Aft Primary Hallway Chemistry";
- dir = 4;
- network = list("SS13");
- start_active = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/yellow/corner{
- dir = 1
- },
-/area/hallway/primary/aft)
-"boB" = (
-/obj/item/device/radio/intercom{
- dir = 0;
- name = "Station Intercom (General)";
- pixel_x = -28;
- pixel_y = 3
- },
-/obj/machinery/button/door{
- dir = 2;
- id = "research_shutters_2";
- name = "Shutters Control Button";
- pixel_x = -28;
- pixel_y = -7;
- req_access_txt = "7; 29"
- },
-/turf/open/floor/plasteel,
-/area/science/explab)
-"boC" = (
-/obj/machinery/computer/rdconsole/core,
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plasteel,
-/area/science/explab)
-"boD" = (
-/obj/structure/disposalpipe/segment,
-/obj/effect/landmark/start/scientist,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/effect/turf_decal/bot,
-/turf/open/floor/plasteel,
-/area/science/explab)
-"boE" = (
-/obj/machinery/r_n_d/circuit_imprinter{
- pixel_y = 4
- },
-/obj/item/weapon/reagent_containers/glass/beaker/sulphuric,
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plasteel,
-/area/science/explab)
-"boF" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel,
-/area/science/explab)
-"boG" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/white/side{
- dir = 4
- },
-/area/science/research)
-"boH" = (
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/science/research)
-"boI" = (
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/science/research)
-"boJ" = (
-/obj/machinery/power/apc{
- cell_type = 10000;
- dir = 1;
- name = "Research Division APC";
- pixel_y = 25
- },
-/obj/structure/cable{
- icon_state = "0-2";
- pixel_y = 1;
- d2 = 2
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/science/research)
-"boK" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white/side,
-/area/science/research)
-"boL" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/whitepurple/side{
- dir = 1
- },
-/area/science/research)
-"boM" = (
-/obj/machinery/light{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/science/research)
-"boN" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/airalarm{
- pixel_y = 22
- },
-/turf/open/floor/plasteel/white,
-/area/science/research)
-"boO" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/firealarm{
- dir = 1;
- pixel_y = 24
- },
-/turf/open/floor/plasteel/white,
-/area/science/research)
-"boP" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 1
- },
-/turf/open/floor/plasteel/white/side,
-/area/science/research)
-"boQ" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
-/turf/open/floor/plasteel/whitepurple/side{
- dir = 1
- },
-/area/science/research)
-"boR" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white/side,
-/area/science/research)
-"boS" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-18";
- layer = 4.1
- },
-/turf/open/floor/plasteel/white/side{
- dir = 8
- },
-/area/science/research)
-"boT" = (
-/obj/structure/closet/firecloset,
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 9
- },
-/turf/open/floor/plasteel/white,
-/area/science/xenobiology)
-"boU" = (
-/obj/structure/closet/l3closet,
-/obj/machinery/camera{
- c_tag = "Xenobiology Access";
- dir = 2;
- network = list("SS13")
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/science/xenobiology)
-"boV" = (
-/obj/structure/closet/l3closet,
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 1
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 5
- },
-/turf/open/floor/plasteel/white,
-/area/science/xenobiology)
-"boW" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/closed/wall,
-/area/science/xenobiology)
-"boX" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/whitepurple/side{
- dir = 8
- },
-/area/science/xenobiology)
-"boY" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 9
- },
-/turf/open/floor/plasteel/white,
-/area/science/xenobiology)
-"boZ" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/science/xenobiology)
-"bpa" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/whitepurple/corner,
-/area/science/xenobiology)
-"bpb" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/whitepurple/side,
-/area/science/xenobiology)
-"bpc" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/whitepurple/side,
-/area/science/xenobiology)
-"bpd" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/whitepurple/side,
-/area/science/xenobiology)
-"bpe" = (
-/obj/machinery/light,
-/obj/machinery/camera{
- c_tag = "Xenobiology Central";
- dir = 1;
- network = list("SS13","RD")
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 1
- },
-/turf/open/floor/plasteel/whitepurple/side,
-/area/science/xenobiology)
-"bpf" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
-/turf/open/floor/plasteel/whitepurple/side,
-/area/science/xenobiology)
-"bpg" = (
-/obj/machinery/light,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/machinery/camera{
- c_tag = "Xenobiology Starboard Aft";
- dir = 1;
- network = list("SS13","RD")
- },
-/turf/open/floor/plasteel/whitepurple/side,
-/area/science/xenobiology)
-"bph" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/closed/wall/r_wall,
-/area/science/xenobiology)
-"bpi" = (
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/obj/machinery/power/apc{
- cell_type = 5000;
- dir = 8;
- name = "Xenobiology APC";
- pixel_x = -25
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 8
- },
-/obj/machinery/light/small{
- brightness = 3;
- dir = 8
- },
-/turf/open/floor/plasteel/floorgrime,
-/area/science/xenobiology)
-"bpj" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/floorgrime,
-/area/science/xenobiology)
-"bpk" = (
-/obj/effect/spawner/lootdrop/maintenance,
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/turf/open/floor/plating,
-/area/maintenance/department/cargo)
-"bpl" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/closed/wall,
-/area/maintenance/department/cargo)
-"bpm" = (
-/obj/structure/disposaloutlet{
- dir = 4
- },
-/obj/structure/disposalpipe/trunk{
- dir = 8
- },
-/turf/open/floor/plating/airless,
-/area/space)
-"bpn" = (
-/turf/open/floor/plating{
- burnt = 1;
- icon_state = "panelscorched"
- },
-/area/maintenance/department/engine)
-"bpo" = (
-/turf/open/floor/plating{
- broken = 1;
- icon_state = "platingdmg1"
- },
-/area/maintenance/department/engine)
-"bpp" = (
-/obj/structure/table,
-/obj/item/weapon/folder/white,
-/obj/item/weapon/pen,
-/obj/machinery/airalarm{
- pixel_y = 22
- },
-/obj/structure/extinguisher_cabinet{
- pixel_x = -26
- },
-/turf/open/floor/plasteel/whitepurple/side{
- dir = 9
- },
-/area/medical/genetics)
-"bpq" = (
-/obj/machinery/computer/scan_consolenew,
-/turf/open/floor/plasteel/whitepurple/side{
- dir = 1
- },
-/area/medical/genetics)
-"bpr" = (
-/obj/machinery/dna_scannernew,
-/turf/open/floor/plasteel/whitepurple/side{
- dir = 1
- },
-/area/medical/genetics)
-"bps" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/whitepurple/side{
- dir = 1
- },
-/area/medical/genetics)
-"bpt" = (
-/obj/machinery/disposal/bin,
-/obj/structure/disposalpipe/trunk{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/whitepurple/side{
- dir = 1
- },
-/area/medical/genetics)
-"bpu" = (
-/obj/structure/table,
-/obj/item/weapon/storage/box/rxglasses{
- pixel_x = 4;
- pixel_y = 4
- },
-/obj/item/weapon/storage/box/bodybags,
-/turf/open/floor/plasteel/whitepurple/side{
- dir = 5
- },
-/area/medical/genetics)
-"bpv" = (
-/obj/machinery/requests_console{
- announcementConsole = 0;
- department = "Medbay";
- departmentType = 1;
- name = "Medbay RC";
- pixel_x = -32
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/zone3)
-"bpw" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/zone3)
-"bpx" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/zone3)
-"bpy" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/medical/sleeper)
-"bpz" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/effect/turf_decal/stripes/corner,
-/turf/open/floor/plasteel/white,
-/area/medical/sleeper)
-"bpA" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/line,
-/turf/open/floor/plasteel/white,
-/area/medical/sleeper)
-"bpB" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/corner{
- dir = 1
- },
-/turf/open/floor/plasteel/white,
-/area/medical/sleeper)
-"bpC" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 1
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/central)
-"bpD" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/central)
-"bpE" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/central)
-"bpF" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/central)
-"bpG" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 9
- },
-/turf/open/floor/plasteel/whiteblue/corner,
-/area/medical/medbay/central)
-"bpH" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/medical/chemistry)
-"bpI" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/medical/chemistry)
-"bpJ" = (
-/obj/structure/rack,
-/obj/item/stack/packageWrap,
-/obj/item/weapon/hand_labeler,
-/obj/item/device/radio/headset/headset_med,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/white,
-/area/medical/chemistry)
-"bpK" = (
-/obj/machinery/disposal/bin,
-/obj/structure/disposalpipe/trunk{
- dir = 4
- },
-/turf/open/floor/plasteel/yellow/side{
- dir = 8
- },
-/area/hallway/primary/aft)
-"bpL" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/structure/disposalpipe/junction{
- dir = 2;
- icon_state = "pipe-y"
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"bpM" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"bpN" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/chair{
- dir = 4
- },
-/turf/open/floor/plasteel/purple/side{
- dir = 4
- },
-/area/hallway/primary/aft)
-"bpO" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "research_shutters_2";
- name = "research shutters"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plating,
-/area/science/explab)
-"bpP" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/turf/open/floor/plasteel,
-/area/science/explab)
-"bpQ" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/science/explab)
-"bpR" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/sortjunction{
- dir = 8;
- icon_state = "pipe-j1s";
- sortType = 12
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 5
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/science/explab)
-"bpS" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/science/explab)
-"bpT" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/science/explab)
-"bpU" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass_research{
- name = "Research and Development Lab";
- req_access_txt = "0";
- req_one_access_txt = "7;29"
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/science/explab)
-"bpV" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/whitepurple/side{
- dir = 8
- },
-/area/science/research)
-"bpW" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/structure/disposalpipe/sortjunction{
- dir = 8;
- icon_state = "pipe-j2s";
- sortType = 13
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 1
- },
-/turf/open/floor/plasteel/white,
-/area/science/research)
-"bpX" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/junction{
- dir = 8;
- icon_state = "pipe-j1"
- },
-/turf/open/floor/plasteel/white,
-/area/science/research)
-"bpY" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/science/research)
-"bpZ" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/science/research)
-"bqa" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/obj/machinery/holopad,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/white,
-/area/science/research)
-"bqb" = (
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 1
- },
-/turf/open/floor/plasteel/black,
-/area/chapel/main/monastery)
-"bqc" = (
-/obj/structure/window/reinforced{
- dir = 4;
- layer = 2.9
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 1
- },
-/turf/open/floor/plasteel/black,
-/area/chapel/main/monastery)
-"bqd" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 6
- },
-/turf/open/floor/plasteel/white,
-/area/science/research)
-"bqe" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/whitepurple/side{
- dir = 4
- },
-/area/science/research)
-"bqf" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/research{
- autoclose = 0;
- frequency = 1449;
- icon_state = "door_locked";
- id_tag = "xeno_airlock_exterior";
- locked = 1;
- name = "Xenobiology Lab External Airlock";
- req_access_txt = "55"
- },
-/obj/machinery/doorButtons/access_button{
- idDoor = "xeno_airlock_exterior";
- idSelf = "xeno_airlock_control";
- name = "Access Button";
- pixel_y = -24;
- req_access_txt = "0"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/whitepurple{
- dir = 4
- },
-/area/science/xenobiology)
-"bqg" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 1
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/science/xenobiology)
-"bqh" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/science/xenobiology)
-"bqi" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/science/xenobiology)
-"bqj" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/research{
- autoclose = 0;
- frequency = 1449;
- icon_state = "door_locked";
- id_tag = "xeno_airlock_interior";
- locked = 1;
- name = "Xenobiology Lab Internal Airlock";
- req_access_txt = "55"
- },
-/obj/machinery/doorButtons/access_button{
- idDoor = "xeno_airlock_interior";
- idSelf = "xeno_airlock_control";
- name = "Access Button";
- pixel_y = -24;
- req_access_txt = "0"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/whitepurple,
-/area/science/xenobiology)
-"bqk" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/machinery/doorButtons/airlock_controller{
- idExterior = "xeno_airlock_exterior";
- idInterior = "xeno_airlock_interior";
- idSelf = "xeno_airlock_control";
- name = "Access Console";
- pixel_x = -25;
- pixel_y = 25
- },
-/turf/open/floor/plasteel/whitepurple/side{
- dir = 8
- },
-/area/science/xenobiology)
-"bql" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 9
- },
-/turf/open/floor/plasteel/white,
-/area/science/xenobiology)
-"bqm" = (
-/obj/structure/sink{
- dir = 4;
- pixel_x = 11
- },
-/turf/open/floor/plasteel/whitepurple/side{
- dir = 4
- },
-/area/science/xenobiology)
-"bqn" = (
-/obj/machinery/disposal/bin,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/disposalpipe/trunk,
-/obj/effect/turf_decal/stripes/line{
- dir = 5
- },
-/turf/open/floor/plasteel,
-/area/science/xenobiology)
-"bqo" = (
-/obj/machinery/door/window/northleft{
- base_state = "right";
- dir = 1;
- icon_state = "right";
- name = "Containment Pen #1";
- req_access_txt = "55"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/science/xenobiology)
-"bqp" = (
-/obj/structure/table/reinforced,
-/obj/machinery/button/door{
- id = "xenobio1";
- name = "Containment Blast Doors";
- pixel_y = 4;
- req_access_txt = "55"
- },
-/obj/structure/window/reinforced{
- dir = 8;
- layer = 2.9
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 9
- },
-/turf/open/floor/plasteel,
-/area/science/xenobiology)
-"bqq" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/closed/wall,
-/area/science/xenobiology)
-"bqr" = (
-/obj/machinery/door/window/northleft{
- base_state = "right";
- dir = 1;
- icon_state = "right";
- name = "Containment Pen #2";
- req_access_txt = "55"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/science/xenobiology)
-"bqs" = (
-/obj/structure/table/reinforced,
-/obj/machinery/button/door{
- id = "xenobio2";
- name = "Containment Blast Doors";
- pixel_y = 4;
- req_access_txt = "55"
- },
-/obj/structure/window/reinforced{
- dir = 8;
- layer = 2.9
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 9
- },
-/turf/open/floor/plasteel,
-/area/science/xenobiology)
-"bqt" = (
-/obj/machinery/door/window/northleft{
- base_state = "right";
- dir = 1;
- icon_state = "right";
- name = "Containment Pen #3";
- req_access_txt = "55"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/science/xenobiology)
-"bqu" = (
-/obj/structure/table/reinforced,
-/obj/machinery/button/door{
- id = "xenobio3";
- name = "Containment Blast Doors";
- pixel_y = 4;
- req_access_txt = "55"
- },
-/obj/structure/window/reinforced{
- dir = 8;
- layer = 2.9
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 9
- },
-/turf/open/floor/plasteel,
-/area/science/xenobiology)
-"bqv" = (
-/obj/machinery/door/window/northleft{
- base_state = "right";
- dir = 1;
- icon_state = "right";
- name = "Containment Pen #4";
- req_access_txt = "55"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/science/xenobiology)
-"bqw" = (
-/obj/structure/table/reinforced,
-/obj/machinery/button/door{
- id = "xenobio4";
- name = "Containment Blast Doors";
- pixel_y = 4;
- req_access_txt = "55"
- },
-/obj/structure/window/reinforced{
- dir = 8;
- layer = 2.9
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 9
- },
-/turf/open/floor/plasteel,
-/area/science/xenobiology)
-"bqx" = (
-/obj/machinery/door/airlock/maintenance{
- req_access_txt = "0";
- req_one_access_txt = "12; 55"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating,
-/area/science/xenobiology)
-"bqy" = (
-/obj/structure/girder,
-/turf/open/floor/plating/airless,
-/area/science/xenobiology)
-"bqz" = (
-/obj/structure/table,
-/obj/effect/spawner/lootdrop/maintenance,
-/obj/item/clothing/shoes/winterboots,
-/turf/open/floor/plating,
-/area/maintenance/department/engine)
-"bqA" = (
-/obj/structure/flora/ausbushes/palebush,
-/turf/open/floor/grass,
-/area/medical/genetics)
-"bqB" = (
-/obj/structure/window/reinforced{
- dir = 4;
- layer = 2.9
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 4
- },
-/mob/living/carbon/monkey,
-/turf/open/floor/grass,
-/area/medical/genetics)
-"bqC" = (
-/obj/structure/table,
-/obj/item/weapon/storage/box/disks,
-/obj/item/device/flashlight/pen,
-/obj/item/device/flashlight/pen,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/whitepurple/side{
- dir = 8
- },
-/area/medical/genetics)
-"bqD" = (
-/obj/structure/chair/stool,
-/obj/effect/landmark/start/geneticist,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/medical/genetics)
-"bqE" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 1
- },
-/turf/open/floor/plasteel/white,
-/area/medical/genetics)
-"bqF" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 9
- },
-/turf/open/floor/plasteel/white,
-/area/medical/genetics)
-"bqG" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/white,
-/area/medical/genetics)
-"bqH" = (
-/obj/structure/table,
-/obj/item/clothing/gloves/color/latex,
-/obj/item/clothing/gloves/color/latex,
-/obj/item/weapon/storage/box/monkeycubes,
-/obj/machinery/light{
- dir = 4
- },
-/turf/open/floor/plasteel/whitepurple/side{
- dir = 4
- },
-/area/medical/genetics)
-"bqI" = (
-/obj/structure/extinguisher_cabinet{
- pixel_x = -24
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 8
- },
-/obj/machinery/light{
- dir = 8
- },
-/turf/open/floor/plasteel/whiteblue/corner{
- dir = 8
- },
-/area/medical/medbay/zone3)
-"bqJ" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/zone3)
-"bqK" = (
-/obj/structure/chair{
- dir = 8
- },
-/turf/open/floor/plasteel/whiteblue/corner,
-/area/medical/medbay/zone3)
-"bqL" = (
-/obj/structure/table/glass,
-/obj/item/stack/medical/gauze,
-/obj/machinery/power/apc{
- dir = 8;
- name = "Treatment Center APC";
- pixel_x = -24
- },
-/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone,
-/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone,
-/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone,
-/obj/structure/cable,
-/turf/open/floor/plasteel/blue,
-/area/medical/sleeper)
-"bqM" = (
-/obj/structure/closet/emcloset,
-/turf/open/floor/plating,
-/area/maintenance/department/chapel/monastery)
-"bqN" = (
-/obj/machinery/camera{
- c_tag = "Medbay Sleepers";
- dir = 1;
- network = list("SS13")
- },
-/obj/machinery/light,
-/turf/open/floor/plasteel/blue,
-/area/medical/sleeper)
-"bqO" = (
-/obj/machinery/sleeper{
- dir = 1
- },
-/turf/open/floor/plasteel/blue,
-/area/medical/sleeper)
-"bqP" = (
-/obj/structure/table/glass,
-/obj/item/clothing/neck/stethoscope,
-/obj/item/device/healthanalyzer,
-/turf/open/floor/plasteel/blue,
-/area/medical/sleeper)
-"bqQ" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/whiteblue/corner{
- dir = 8
- },
-/area/medical/medbay/central)
-"bqR" = (
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/central)
-"bqS" = (
-/obj/machinery/light{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/whiteblue/corner,
-/area/medical/medbay/central)
-"bqT" = (
-/turf/closed/wall,
-/area/crew_quarters/heads/cmo)
-"bqU" = (
-/obj/structure/grille,
-/obj/structure/window/fulltile,
-/turf/open/floor/plating,
-/area/crew_quarters/heads/cmo)
-"bqV" = (
-/obj/structure/closet/secure_closet/chemical,
-/obj/machinery/power/apc{
- dir = 8;
- name = "Chemistry APC";
- pixel_x = -24
- },
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/whiteyellow/side{
- dir = 8
- },
-/area/medical/chemistry)
-"bqW" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel/white,
-/area/medical/chemistry)
-"bqX" = (
-/obj/structure/chair/office/light{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 5
- },
-/turf/open/floor/plasteel/whiteyellow/side{
- dir = 4
- },
-/area/medical/chemistry)
-"bqY" = (
-/obj/structure/table/reinforced,
-/obj/machinery/door/firedoor,
-/obj/machinery/door/window/eastright{
- dir = 8;
- name = "Chemistry Desk";
- req_access_txt = "5; 33"
- },
-/obj/item/weapon/pen,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/item/weapon/paper_bin{
- layer = 2.9;
- pixel_x = -2
- },
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "chemistry_shutters";
- name = "chemistry shutters"
- },
-/turf/open/floor/plasteel/whiteyellow{
- dir = 4
- },
-/area/medical/chemistry)
-"bqZ" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/chair{
- dir = 8
- },
-/turf/open/floor/plasteel/yellow/side{
- dir = 8
- },
-/area/hallway/primary/aft)
-"bra" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"brb" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"brc" = (
-/obj/structure/chair{
- dir = 4
- },
-/turf/open/floor/plasteel/purple/side{
- dir = 4
- },
-/area/hallway/primary/aft)
-"brd" = (
-/obj/structure/table/reinforced,
-/obj/machinery/door/window/eastright{
- dir = 4;
- name = "Research and Development Desk";
- req_access_txt = "7"
- },
-/obj/item/weapon/folder/white,
-/obj/machinery/door/firedoor,
-/obj/item/weapon/pen,
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "research_shutters_2";
- name = "research shutters"
- },
-/turf/open/floor/plating,
-/area/science/explab)
-"bre" = (
-/obj/structure/chair/office/light{
- dir = 8
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel,
-/area/science/explab)
-"brf" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on,
-/turf/open/floor/plasteel,
-/area/science/explab)
-"brg" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 5
- },
-/turf/open/floor/plasteel/white/side{
- dir = 4
- },
-/area/science/research)
-"brh" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 1
- },
-/turf/open/floor/plasteel/white,
-/area/science/research)
-"bri" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white/side{
- icon_state = "whitehall";
- dir = 1
- },
-/area/science/research)
-"brj" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,
-/turf/open/floor/plasteel/whitered/side,
-/area/science/research)
-"brk" = (
-/obj/machinery/camera{
- c_tag = "Research Division Port";
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white/side{
- icon_state = "whitehall";
- dir = 1
- },
-/area/science/research)
-"brl" = (
-/obj/item/clothing/gloves/color/latex,
-/obj/item/clothing/glasses/science,
-/obj/structure/table,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/science/research)
-"brm" = (
-/obj/item/device/analyzer,
-/obj/structure/table,
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
-/turf/open/floor/plasteel/white,
-/area/science/research)
-"brn" = (
-/obj/machinery/vending/assist,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/science/research)
-"bro" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/item/device/radio/intercom{
- dir = 0;
- name = "Station Intercom (General)";
- pixel_y = -32
- },
-/turf/open/floor/plasteel/white,
-/area/science/research)
-"brp" = (
-/obj/machinery/light,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/table,
-/obj/item/weapon/folder,
-/obj/item/weapon/pen,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/science/research)
-"brq" = (
-/obj/machinery/camera{
- c_tag = "Research Division Starboard";
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
-/turf/open/floor/plasteel/white,
-/area/science/research)
-"brr" = (
-/obj/structure/sink{
- dir = 8;
- pixel_x = -12
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 1
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 10
- },
-/turf/open/floor/plasteel/white{
- heat_capacity = 1e+006
- },
-/area/science/xenobiology)
-"brs" = (
-/obj/machinery/light,
-/turf/open/floor/plasteel/white,
-/area/science/xenobiology)
-"brt" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/shower{
- dir = 8;
- name = "emergency shower";
- pixel_y = -4
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 6
- },
-/turf/open/floor/plasteel/white,
-/area/science/xenobiology)
-"bru" = (
-/turf/open/floor/plasteel/whitepurple/side{
- dir = 10
- },
-/area/science/xenobiology)
-"brv" = (
-/obj/structure/table,
-/obj/item/weapon/storage/box/monkeycubes,
-/obj/item/weapon/storage/box/monkeycubes,
-/turf/open/floor/plasteel/whitepurple/side,
-/area/science/xenobiology)
-"brw" = (
-/obj/structure/table,
-/obj/item/weapon/extinguisher{
- pixel_x = 4;
- pixel_y = 3
- },
-/obj/item/weapon/extinguisher,
-/turf/open/floor/plasteel/whitepurple/side,
-/area/science/xenobiology)
-"brx" = (
-/obj/structure/reagent_dispensers/watertank,
-/obj/machinery/requests_console{
- department = "Science";
- departmentType = 2;
- name = "Science Requests Console";
- pixel_x = 32;
- receive_ore_updates = 1
- },
-/turf/open/floor/plasteel/whitepurple/side{
- dir = 6
- },
-/area/science/xenobiology)
-"bry" = (
-/obj/machinery/door/poddoor/preopen{
- id = "xenobio1";
- name = "containment blast door"
- },
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/engine,
-/area/science/xenobiology)
-"brz" = (
-/obj/machinery/door/poddoor/preopen{
- id = "xenobio1";
- name = "containment blast door"
- },
-/obj/machinery/door/window/northleft{
- base_state = "right";
- dir = 2;
- icon_state = "right";
- name = "Containment Pen #1";
- req_access_txt = "55"
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/engine,
-/area/science/xenobiology)
-"brA" = (
-/obj/machinery/door/poddoor/preopen{
- id = "xenobio1";
- name = "containment blast door"
- },
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/structure/cable,
-/turf/open/floor/engine,
-/area/science/xenobiology)
-"brB" = (
-/obj/machinery/door/poddoor/preopen{
- id = "xenobio2";
- name = "containment blast door"
- },
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/engine,
-/area/science/xenobiology)
-"brC" = (
-/obj/machinery/door/poddoor/preopen{
- id = "xenobio3";
- name = "containment blast door"
- },
-/obj/machinery/door/window/northleft{
- base_state = "right";
- dir = 2;
- icon_state = "right";
- name = "Containment Pen #2";
- req_access_txt = "55"
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/engine,
-/area/science/xenobiology)
-"brD" = (
-/obj/machinery/door/poddoor/preopen{
- id = "xenobio2";
- name = "containment blast door"
- },
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/structure/cable,
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/turf/open/floor/engine,
-/area/science/xenobiology)
-"brE" = (
-/obj/machinery/door/poddoor/preopen{
- id = "xenobio3";
- name = "containment blast door"
- },
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/engine,
-/area/science/xenobiology)
-"brF" = (
-/obj/machinery/door/poddoor/preopen{
- id = "xenobio3";
- name = "containment blast door"
- },
-/obj/machinery/door/window/northleft{
- base_state = "right";
- dir = 2;
- icon_state = "right";
- name = "Containment Pen #3";
- req_access_txt = "55"
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/engine,
-/area/science/xenobiology)
-"brG" = (
-/obj/machinery/door/poddoor/preopen{
- id = "xenobio3";
- name = "containment blast door"
- },
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/structure/cable,
-/turf/open/floor/engine,
-/area/science/xenobiology)
-"brH" = (
-/obj/machinery/door/poddoor/preopen{
- id = "xenobio4";
- name = "containment blast door"
- },
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/engine,
-/area/science/xenobiology)
-"brI" = (
-/obj/machinery/door/poddoor/preopen{
- id = "xenobio4";
- name = "containment blast door"
- },
-/obj/machinery/door/window/northleft{
- base_state = "right";
- dir = 2;
- icon_state = "right";
- name = "Containment Pen #4";
- req_access_txt = "55"
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/engine,
-/area/science/xenobiology)
-"brJ" = (
-/obj/machinery/door/poddoor/preopen{
- id = "xenobio4";
- name = "containment blast door"
- },
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/structure/cable,
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/turf/open/floor/engine,
-/area/science/xenobiology)
-"brK" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/machinery/light/small{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 6
- },
-/turf/open/floor/plating,
-/area/maintenance/department/science)
-"brL" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 9
- },
-/turf/open/floor/plating,
-/area/maintenance/department/science)
-"brM" = (
-/turf/closed/wall,
-/area/maintenance/department/science)
-"brN" = (
-/obj/structure/table,
-/obj/effect/spawner/lootdrop/maintenance{
- lootcount = 2;
- name = "2maintenance loot spawner"
- },
-/turf/open/floor/plating,
-/area/maintenance/department/engine)
-"brO" = (
-/obj/structure/chair/stool,
-/turf/open/floor/plating{
- burnt = 1;
- icon_state = "panelscorched"
- },
-/area/maintenance/department/engine)
-"brP" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/light/small{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
- },
-/area/maintenance/department/engine)
-"brQ" = (
-/obj/machinery/light{
- dir = 8
- },
-/obj/machinery/camera{
- c_tag = "Genetics Monkey Pen";
- dir = 4;
- network = list("SS13","RD")
- },
-/mob/living/carbon/monkey,
-/turf/open/floor/grass,
-/area/medical/genetics)
-"brR" = (
-/obj/machinery/door/window/eastleft{
- name = "Monkey Pen";
- req_one_access_txt = "9"
- },
-/obj/item/weapon/reagent_containers/food/snacks/grown/banana,
-/turf/open/floor/grass,
-/area/medical/genetics)
-"brS" = (
-/turf/open/floor/plasteel/whitepurple/side{
- dir = 8
- },
-/area/medical/genetics)
-"brT" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 1
- },
-/turf/open/floor/plasteel/white,
-/area/medical/genetics)
-"brU" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 6
- },
-/turf/open/floor/plasteel/white,
-/area/medical/genetics)
-"brV" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/medical/genetics)
-"brW" = (
-/obj/structure/sink{
- dir = 4;
- pixel_x = 11
- },
-/obj/structure/mirror{
- pixel_x = 28
- },
-/turf/open/floor/plasteel/whitepurple/side{
- dir = 4
- },
-/area/medical/genetics)
-"brX" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 5
- },
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-10";
- layer = 4.1
- },
-/turf/open/floor/plasteel/whitegreen/side,
-/area/medical/medbay/zone3)
-"brY" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 10
- },
-/turf/open/floor/plasteel/whitegreen/side,
-/area/medical/medbay/zone3)
-"brZ" = (
-/obj/structure/chair{
- dir = 8
- },
-/turf/open/floor/plasteel/whitegreen/side,
-/area/medical/medbay/zone3)
-"bsa" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/airalarm{
- dir = 4;
- pixel_x = -22
- },
-/turf/open/floor/plasteel/whiteblue/corner{
- dir = 8
- },
-/area/medical/medbay/central)
-"bsb" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/whiteblue/corner,
-/area/medical/medbay/central)
-"bsc" = (
-/obj/structure/sign/bluecross_2,
-/turf/closed/wall,
-/area/crew_quarters/heads/cmo)
-"bsd" = (
-/obj/machinery/suit_storage_unit/cmo,
-/turf/open/floor/plasteel/cmo,
-/area/crew_quarters/heads/cmo)
-"bse" = (
-/obj/machinery/computer/crew,
-/obj/machinery/light{
- dir = 1
- },
-/obj/machinery/requests_console{
- announcementConsole = 1;
- department = "Chief Medical Officer's Desk";
- departmentType = 5;
- name = "Chief Medical Officer RC";
- pixel_y = 30
- },
-/turf/open/floor/plasteel/cmo,
-/area/crew_quarters/heads/cmo)
-"bsf" = (
-/obj/machinery/computer/med_data,
-/turf/open/floor/plasteel/cmo,
-/area/crew_quarters/heads/cmo)
-"bsg" = (
-/obj/machinery/computer/card/minor/cmo,
-/obj/machinery/airalarm{
- pixel_y = 22
- },
-/turf/open/floor/plasteel/cmo,
-/area/crew_quarters/heads/cmo)
-"bsh" = (
-/obj/machinery/disposal/bin,
-/obj/structure/disposalpipe/trunk,
-/obj/machinery/button/door{
- desc = "A remote control switch for the medbay foyer.";
- id = "MedbayFoyer";
- name = "Medbay Door Control";
- normaldoorcontrol = 1;
- pixel_x = 26;
- pixel_y = -6;
- req_access_txt = "5"
- },
-/obj/machinery/keycard_auth{
- pixel_x = 26;
- pixel_y = 6
- },
-/turf/open/floor/plasteel/cmo,
-/area/crew_quarters/heads/cmo)
-"bsi" = (
-/obj/structure/closet/wardrobe/chemistry_white,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 5
- },
-/turf/open/floor/plasteel/whiteyellow/side{
- dir = 10
- },
-/area/medical/chemistry)
-"bsj" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 10
- },
-/turf/open/floor/plasteel/whiteyellow/side,
-/area/medical/chemistry)
-"bsk" = (
-/obj/structure/table/glass,
-/obj/machinery/reagentgrinder,
-/obj/machinery/light,
-/obj/machinery/airalarm{
- dir = 1;
- pixel_y = -22
- },
-/turf/open/floor/plasteel/whiteyellow/side,
-/area/medical/chemistry)
-"bsl" = (
-/obj/structure/table/glass,
-/obj/item/stack/sheet/mineral/plasma{
- amount = 2;
- layer = 2.9
- },
-/obj/item/weapon/grenade/chem_grenade,
-/obj/item/weapon/grenade/chem_grenade,
-/obj/item/weapon/grenade/chem_grenade,
-/obj/item/stack/cable_coil/random,
-/obj/item/weapon/screwdriver,
-/turf/open/floor/plasteel/whiteyellow/side{
- dir = 6
- },
-/area/medical/chemistry)
-"bsm" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"bsn" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"bso" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"bsp" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/table/glass,
-/obj/item/weapon/paper_bin{
- layer = 2.9;
- pixel_x = -2;
- pixel_y = 4
- },
-/turf/open/floor/plasteel/purple/side{
- dir = 4
- },
-/area/hallway/primary/aft)
-"bsq" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "research_shutters_2";
- name = "research shutters"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/science/explab)
-"bsr" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/purple/side,
-/area/science/explab)
-"bss" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 9
- },
-/turf/open/floor/plasteel/purple/side,
-/area/science/explab)
-"bst" = (
-/obj/structure/table,
-/obj/machinery/light,
-/obj/item/weapon/stock_parts/console_screen,
-/obj/item/weapon/stock_parts/console_screen,
-/obj/item/weapon/stock_parts/capacitor,
-/obj/item/weapon/stock_parts/capacitor,
-/obj/item/weapon/stock_parts/manipulator,
-/obj/item/weapon/stock_parts/manipulator,
-/obj/item/weapon/stock_parts/scanning_module,
-/obj/item/weapon/stock_parts/scanning_module,
-/obj/item/device/multitool,
-/turf/open/floor/plasteel/purple/side,
-/area/science/explab)
-"bsu" = (
-/obj/structure/table,
-/obj/machinery/cell_charger,
-/obj/item/weapon/stock_parts/cell/high/plus,
-/obj/item/weapon/stock_parts/cell/high/plus,
-/turf/open/floor/plasteel/purple/side,
-/area/science/explab)
-"bsv" = (
-/obj/structure/table,
-/obj/item/weapon/stock_parts/matter_bin,
-/obj/item/weapon/stock_parts/matter_bin,
-/obj/item/weapon/stock_parts/micro_laser,
-/obj/item/weapon/stock_parts/micro_laser,
-/obj/item/stack/cable_coil,
-/obj/item/stack/cable_coil,
-/obj/machinery/light_switch{
- pixel_x = 25
- },
-/turf/open/floor/plasteel/purple/side,
-/area/science/explab)
-"bsw" = (
-/turf/open/floor/plasteel/white/side{
- icon_state = "whitehall";
- dir = 1
- },
-/area/science/research)
-"bsx" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/whiteblue/side,
-/area/science/research)
-"bsy" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/security/checkpoint/science)
-"bsz" = (
-/obj/machinery/door/airlock/glass_security{
- name = "Research Security Post";
- req_access_txt = "63"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/whitered,
-/area/security/checkpoint/science)
-"bsA" = (
-/turf/closed/wall/r_wall,
-/area/science/storage)
-"bsB" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/closed/wall/r_wall,
-/area/science/storage)
-"bsC" = (
-/obj/machinery/light{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/science/research)
-"bsD" = (
-/turf/closed/wall,
-/area/science/mixing)
-"bsE" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/closed/wall,
-/area/science/mixing)
-"bsF" = (
-/obj/structure/disposaloutlet,
-/obj/structure/disposalpipe/trunk{
- dir = 1
- },
-/turf/open/floor/engine,
-/area/science/xenobiology)
-"bsG" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating,
-/area/maintenance/department/science)
-"bsH" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 4
- },
-/turf/open/floor/grass,
-/area/medical/genetics)
-"bsI" = (
-/obj/structure/window/reinforced{
- dir = 4;
- layer = 2.9
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/mob/living/carbon/monkey,
-/turf/open/floor/grass,
-/area/medical/genetics)
-"bsJ" = (
-/obj/structure/table,
-/obj/item/weapon/reagent_containers/glass/beaker,
-/obj/item/weapon/reagent_containers/dropper,
-/obj/item/weapon/storage/pill_bottle/mutadone,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/whitepurple/side{
- dir = 8
- },
-/area/medical/genetics)
-"bsK" = (
-/obj/structure/chair/stool,
-/obj/effect/landmark/start/geneticist,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/medical/genetics)
-"bsL" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 9
- },
-/turf/open/floor/plasteel/white,
-/area/medical/genetics)
-"bsM" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 1
- },
-/turf/open/floor/plasteel/white,
-/area/medical/genetics)
-"bsN" = (
-/obj/machinery/shower{
- dir = 8
- },
-/obj/machinery/requests_console{
- department = "Genetics";
- departmentType = 0;
- name = "Genetics Requests Console";
- pixel_x = 32
- },
-/turf/open/floor/plasteel/whitepurple/side{
- dir = 4
- },
-/area/medical/genetics)
-"bsO" = (
-/turf/closed/wall,
-/area/medical/virology)
-"bsP" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/virology{
- autoclose = 0;
- frequency = 1449;
- icon_state = "door_locked";
- id_tag = "virology_airlock_exterior";
- locked = 1;
- name = "Virology Exterior Airlock";
- req_access_txt = "39"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/doorButtons/access_button{
- idDoor = "virology_airlock_exterior";
- idSelf = "virology_airlock_control";
- name = "Virology Access Button";
- pixel_x = -24;
- req_access_txt = "39"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"bsQ" = (
-/obj/structure/sign/biohazard,
-/turf/closed/wall,
-/area/medical/virology)
-"bsR" = (
-/obj/structure/table,
-/obj/item/weapon/storage/box/beakers{
- pixel_x = 2;
- pixel_y = 2
- },
-/obj/item/weapon/storage/box/syringes,
-/obj/structure/extinguisher_cabinet{
- pixel_x = -26
- },
-/turf/open/floor/plasteel/whiteblue/side{
- dir = 1
- },
-/area/medical/medbay/central)
-"bsS" = (
-/obj/structure/table,
-/obj/item/weapon/storage/firstaid/brute{
- pixel_x = 3;
- pixel_y = 3
- },
-/obj/item/weapon/storage/firstaid/brute,
-/obj/item/weapon/storage/firstaid/regular{
- pixel_x = -3;
- pixel_y = -3
- },
-/turf/open/floor/plasteel/whiteblue/side{
- dir = 1
- },
-/area/medical/medbay/central)
-"bsT" = (
-/obj/structure/table,
-/obj/item/weapon/storage/firstaid/fire{
- pixel_x = 3;
- pixel_y = 3
- },
-/obj/item/weapon/storage/firstaid/fire,
-/obj/item/weapon/storage/firstaid/regular{
- pixel_x = -3;
- pixel_y = -3
- },
-/turf/open/floor/plasteel/whiteblue/side{
- dir = 1
- },
-/area/medical/medbay/central)
-"bsU" = (
-/obj/structure/table,
-/obj/item/weapon/storage/firstaid/toxin{
- pixel_x = 3;
- pixel_y = 3
- },
-/obj/item/weapon/storage/firstaid/toxin,
-/obj/item/weapon/storage/firstaid/regular{
- pixel_x = -3;
- pixel_y = -3
- },
-/turf/open/floor/plasteel/whiteblue/side{
- dir = 1
- },
-/area/medical/medbay/central)
-"bsV" = (
-/obj/structure/table,
-/obj/item/weapon/storage/firstaid/o2{
- pixel_x = 3;
- pixel_y = 3
- },
-/obj/item/weapon/storage/firstaid/o2,
-/obj/item/weapon/storage/firstaid/regular{
- pixel_x = -3;
- pixel_y = -3
- },
-/turf/open/floor/plasteel/whiteblue/side{
- dir = 1
- },
-/area/medical/medbay/central)
-"bsW" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel/whiteblue/side{
- dir = 8
- },
-/area/medical/medbay/central)
-"bsX" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/central)
-"bsY" = (
-/turf/open/floor/plasteel/cmo,
-/area/crew_quarters/heads/cmo)
-"bsZ" = (
-/mob/living/simple_animal/pet/cat/Runtime,
-/turf/open/floor/plasteel/cmo,
-/area/crew_quarters/heads/cmo)
-"bta" = (
-/obj/effect/landmark/start/chief_medical_officer,
-/obj/structure/chair/office/light{
- dir = 1
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 4
- },
-/turf/open/floor/plasteel/cmo,
-/area/crew_quarters/heads/cmo)
-"btb" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/cmo,
-/area/crew_quarters/heads/cmo)
-"btc" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/camera{
- c_tag = "Chief Medical Office";
- dir = 8;
- network = list("SS13")
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 10
- },
-/obj/machinery/computer/security/telescreen{
- desc = "Used for watching surgery.";
- dir = 8;
- layer = 4;
- name = "Surgery Telescreen";
- network = list("Surgery");
- pixel_x = 30
- },
-/turf/open/floor/plasteel/cmo,
-/area/crew_quarters/heads/cmo)
-"btd" = (
-/obj/machinery/door/airlock/maintenance{
- name = "Chemistry Lab Maintenance";
- req_access_txt = "5; 33"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plating,
-/area/medical/chemistry)
-"bte" = (
-/turf/closed/wall/r_wall,
-/area/science/server)
-"btf" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/command{
- name = "Server Room";
- req_access = null;
- req_access_txt = "30"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/black,
-/area/science/server)
-"btg" = (
-/obj/machinery/atmospherics/components/unary/tank/air{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/maintenance/department/chapel/monastery)
-"bth" = (
-/turf/closed/wall,
-/area/crew_quarters/heads/hor)
-"bti" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/crew_quarters/heads/hor)
-"btj" = (
-/obj/machinery/door/airlock/glass_command{
- name = "Research Director";
- req_access_txt = "30"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/crew_quarters/heads/hor)
-"btk" = (
-/obj/structure/filingcabinet,
-/turf/open/floor/plasteel/red/side{
- dir = 9
- },
-/area/security/checkpoint/science)
-"btl" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/red/side{
- dir = 1
- },
-/area/security/checkpoint/science)
-"btm" = (
-/obj/structure/closet/wardrobe/red,
-/obj/machinery/airalarm{
- dir = 8;
- pixel_x = 23
- },
-/turf/open/floor/plasteel/red/side{
- dir = 5
- },
-/area/security/checkpoint/science)
-"btn" = (
-/obj/machinery/portable_atmospherics/canister/toxins,
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plasteel,
-/area/science/storage)
-"bto" = (
-/obj/machinery/portable_atmospherics/canister/toxins,
-/obj/machinery/light{
- dir = 1
- },
-/obj/machinery/camera{
- c_tag = "Toxins Storage";
- dir = 2;
- network = list("SS13","RD")
- },
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plasteel,
-/area/science/storage)
-"btp" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/science/storage)
-"btq" = (
-/obj/machinery/portable_atmospherics/scrubber/huge,
-/obj/machinery/power/apc{
- cell_type = 5000;
- dir = 1;
- name = "Toxins Storage APC";
- pixel_y = 25
- },
-/obj/structure/cable{
- icon_state = "0-2";
- pixel_y = 1;
- d2 = 2
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
-/area/science/storage)
-"btr" = (
-/obj/machinery/portable_atmospherics/scrubber/huge,
-/obj/machinery/airalarm{
- pixel_y = 22
- },
-/turf/open/floor/plasteel,
-/area/science/storage)
-"bts" = (
-/obj/machinery/door/firedoor,
-/turf/open/floor/plasteel/white,
-/area/science/research)
-"btt" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/white,
-/area/science/research)
-"btu" = (
-/obj/structure/closet/bombcloset,
-/obj/machinery/firealarm{
- dir = 8;
- pixel_x = -24
- },
-/turf/open/floor/plasteel/white,
-/area/science/mixing)
-"btv" = (
-/obj/structure/closet/bombcloset,
-/turf/open/floor/plasteel/white,
-/area/science/mixing)
-"btw" = (
-/obj/machinery/portable_atmospherics/scrubber,
-/obj/machinery/light{
- dir = 1
- },
-/obj/machinery/airalarm{
- pixel_y = 22
- },
-/turf/open/floor/plasteel/white,
-/area/science/mixing)
-"btx" = (
-/obj/machinery/portable_atmospherics/pump,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/item/device/radio/intercom{
- dir = 0;
- name = "Station Intercom (General)";
- pixel_y = 26
- },
-/turf/open/floor/plasteel/white,
-/area/science/mixing)
-"bty" = (
-/obj/machinery/portable_atmospherics/canister,
-/turf/open/floor/plasteel/white,
-/area/science/mixing)
-"btz" = (
-/obj/machinery/portable_atmospherics/canister,
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
- },
-/obj/machinery/power/apc{
- dir = 1;
- name = "Toxins Lab APC";
- pixel_y = 25
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/science/mixing)
-"btA" = (
-/obj/machinery/atmospherics/components/unary/portables_connector/visible,
-/obj/machinery/camera{
- c_tag = "Toxins Lab";
- dir = 2;
- network = list("SS13","RD")
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/structure/sign/poster/official/random{
- pixel_y = 32
- },
-/turf/open/floor/plasteel,
-/area/science/mixing)
-"btB" = (
-/obj/machinery/atmospherics/components/unary/portables_connector/visible,
-/turf/open/floor/plasteel,
-/area/science/mixing)
-"btC" = (
-/obj/machinery/atmospherics/components/unary/portables_connector/visible,
-/obj/structure/extinguisher_cabinet{
- pixel_x = 24
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/structure/sign/poster/official/random{
- pixel_y = 32
- },
-/turf/open/floor/plasteel,
-/area/science/mixing)
-"btD" = (
-/obj/effect/landmark/revenantspawn,
-/mob/living/simple_animal/slime,
-/turf/open/floor/engine,
-/area/science/xenobiology)
-"btE" = (
-/obj/structure/reagent_dispensers/fueltank,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plating,
-/area/maintenance/department/chapel/monastery)
-"btF" = (
-/turf/open/floor/plating,
-/area/maintenance/department/engine)
-"btG" = (
-/obj/structure/table,
-/obj/item/weapon/pen,
-/obj/item/device/radio/intercom{
- dir = 0;
- name = "Station Intercom (General)";
- pixel_x = -27
- },
-/obj/item/weapon/paper_bin{
- layer = 2.9
- },
-/turf/open/floor/plasteel/whitepurple/side{
- dir = 10
- },
-/area/medical/genetics)
-"btH" = (
-/obj/machinery/computer/scan_consolenew,
-/turf/open/floor/plasteel/whitepurple/side,
-/area/medical/genetics)
-"btI" = (
-/obj/machinery/dna_scannernew,
-/obj/machinery/camera{
- c_tag = "Genetics";
- dir = 1;
- network = list("SS13","RD")
- },
-/turf/open/floor/plasteel/whitepurple/side,
-/area/medical/genetics)
-"btJ" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/turf/open/floor/plasteel/whitepurple/corner{
- dir = 8
- },
-/area/medical/genetics)
-"btK" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/white,
-/area/medical/genetics)
-"btL" = (
-/obj/machinery/power/apc{
- dir = 4;
- name = "Genetics APC";
- pixel_x = 27
- },
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/turf/open/floor/plasteel/whitepurple/side{
- dir = 4
- },
-/area/medical/genetics)
-"btM" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 4
- },
-/obj/machinery/shower{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 9
- },
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"btN" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"btO" = (
-/obj/structure/closet/emcloset,
-/obj/machinery/camera{
- c_tag = "Virology Airlock";
- dir = 2;
- network = list("SS13")
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 5
- },
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"btP" = (
-/obj/structure/sink{
- dir = 8;
- pixel_x = -12;
- pixel_y = 2
- },
-/obj/machinery/requests_console{
- announcementConsole = 0;
- department = "Medbay";
- departmentType = 1;
- name = "Medbay RC";
- pixel_x = -32
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/central)
-"btQ" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/central)
-"btR" = (
-/obj/machinery/door/airlock/glass_medical{
- id_tag = null;
- name = "Medbay Storage";
- req_access_txt = "45"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/central)
-"btS" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/whiteblue/side{
- dir = 8
- },
-/area/medical/medbay/central)
-"btT" = (
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/central)
-"btU" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel/whiteblue/side{
- dir = 4
- },
-/area/medical/medbay/central)
-"btV" = (
-/obj/machinery/door/airlock/glass_command{
- name = "Chief Medical Office";
- req_access_txt = "40"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/barber,
-/area/crew_quarters/heads/cmo)
-"btW" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 10
- },
-/turf/open/floor/plasteel/cmo,
-/area/crew_quarters/heads/cmo)
-"btX" = (
-/obj/structure/table/glass,
-/obj/item/weapon/paper_bin{
- pixel_x = -2;
- pixel_y = 5
- },
-/obj/item/weapon/pen{
- layer = 3.1
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel/cmo,
-/area/crew_quarters/heads/cmo)
-"btY" = (
-/obj/structure/table/glass,
-/obj/item/weapon/folder/white,
-/obj/item/clothing/glasses/hud/health,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel/cmo,
-/area/crew_quarters/heads/cmo)
-"btZ" = (
-/obj/structure/table/glass,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/item/stack/medical/gauze,
-/obj/item/clothing/neck/stethoscope,
-/turf/open/floor/plasteel/cmo,
-/area/crew_quarters/heads/cmo)
-"bua" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/structure/disposalpipe/sortjunction{
- dir = 8;
- icon_state = "pipe-j1s";
- sortType = 10
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 5
- },
-/turf/open/floor/plasteel/cmo,
-/area/crew_quarters/heads/cmo)
-"bub" = (
-/obj/machinery/door/airlock/maintenance{
- name = "CMO Maintenance";
- req_access_txt = "40"
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/department/engine)
-"buc" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/department/engine)
-"bud" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/structure/disposalpipe/sortjunction{
- dir = 8;
- icon_state = "pipe-j1s";
- sortType = 11
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
-/turf/open/floor/plating,
-/area/maintenance/department/engine)
-"bue" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/light/small{
- dir = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/department/engine)
-"buf" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 10
- },
-/turf/open/floor/plating,
-/area/maintenance/department/engine)
-"bug" = (
-/obj/machinery/light{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/yellow/corner,
-/area/hallway/primary/aft)
-"buh" = (
-/obj/machinery/atmospherics/components/unary/thermomachine/freezer{
- target_temperature = 80;
- dir = 2;
- on = 1
- },
-/turf/open/floor/plasteel/black,
-/area/science/server)
-"bui" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/black,
-/area/science/server)
-"buj" = (
-/obj/machinery/r_n_d/server/core,
-/turf/open/floor/circuit{
- name = "Server Base";
- initial_gas_mix = "n2=500;TEMP=80"
- },
-/area/science/server)
-"buk" = (
-/obj/structure/closet/secure_closet/RD,
-/obj/machinery/airalarm{
- pixel_y = 22
- },
-/turf/open/floor/plasteel/whitepurple/side{
- dir = 9
- },
-/area/crew_quarters/heads/hor)
-"bul" = (
-/obj/machinery/power/apc{
- dir = 1;
- name = "RD Office APC";
- pixel_y = 24
- },
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/turf/open/floor/plasteel/whitepurple/side{
- dir = 1
- },
-/area/crew_quarters/heads/hor)
-"bum" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/whitepurple/side{
- dir = 1
- },
-/area/crew_quarters/heads/hor)
-"bun" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/whitepurple/side{
- dir = 1
- },
-/area/crew_quarters/heads/hor)
-"buo" = (
-/obj/item/weapon/twohanded/required/kirbyplants/dead,
-/obj/machinery/button/door{
- id = "rndshutters";
- name = "Research Lockdown";
- pixel_x = 28;
- req_access_txt = "47"
- },
-/turf/open/floor/plasteel/whitepurple/side{
- dir = 5
- },
-/area/crew_quarters/heads/hor)
-"bup" = (
-/obj/machinery/light{
- dir = 8
- },
-/obj/machinery/camera{
- c_tag = "Science Security Post";
- dir = 4;
- network = list("SS13","RD")
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 4
- },
-/turf/open/floor/plasteel/red/side{
- dir = 8
- },
-/area/security/checkpoint/science)
-"buq" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 9
- },
-/turf/open/floor/plasteel,
-/area/security/checkpoint/science)
-"bur" = (
-/obj/machinery/power/apc{
- dir = 4;
- name = "Science Security APC";
- pixel_x = 24
- },
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/turf/open/floor/plasteel/red/side{
- dir = 4
- },
-/area/security/checkpoint/science)
-"bus" = (
-/obj/machinery/portable_atmospherics/canister/nitrogen,
-/obj/effect/turf_decal/bot,
-/turf/open/floor/plasteel,
-/area/science/storage)
-"but" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/science/storage)
-"buu" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 9
- },
-/turf/open/floor/plasteel,
-/area/science/storage)
-"buv" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/science/storage)
-"buw" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/closed/wall/r_wall,
-/area/science/storage)
-"bux" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white/side{
- dir = 4
- },
-/area/science/research)
-"buy" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
-/turf/open/floor/plasteel/white/side{
- dir = 8
- },
-/area/science/research)
-"buz" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/science/mixing)
-"buA" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/science/mixing)
-"buB" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 10
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/science/mixing)
-"buC" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/science/mixing)
-"buD" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/science/mixing)
-"buE" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 5
- },
-/turf/open/floor/plasteel,
-/area/science/mixing)
-"buF" = (
-/obj/machinery/atmospherics/components/trinary/mixer/flipped{
- dir = 1
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/science/mixing)
-"buG" = (
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 9
- },
-/turf/open/floor/plasteel,
-/area/science/mixing)
-"buH" = (
-/obj/machinery/atmospherics/pipe/simple/general/visible,
-/obj/machinery/requests_console{
- department = "Science";
- departmentType = 2;
- name = "Science Requests Console";
- pixel_x = 32;
- receive_ore_updates = 1
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/science/mixing)
-"buI" = (
-/obj/machinery/light,
-/turf/open/floor/engine,
-/area/science/xenobiology)
-"buJ" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/maintenance/department/science)
-"buK" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/maintenance/department/engine)
-"buL" = (
-/obj/structure/closet/crate/medical,
-/obj/item/stack/medical/ointment,
-/obj/item/stack/medical/bruise_pack,
-/turf/open/floor/plating,
-/area/maintenance/department/engine)
-"buM" = (
-/obj/item/trash/candy,
-/obj/effect/decal/cleanable/deadcockroach,
-/turf/open/floor/plating,
-/area/maintenance/department/engine)
-"buN" = (
-/obj/item/weapon/extinguisher,
-/turf/open/floor/plating,
-/area/maintenance/department/engine)
-"buO" = (
-/obj/item/chair,
-/obj/item/weapon/cigbutt/roach,
-/turf/open/floor/plating,
-/area/maintenance/department/engine)
-"buP" = (
-/obj/structure/closet/secure_closet/medical1,
-/turf/open/floor/plasteel/whitepurple/side{
- dir = 10
- },
-/area/medical/genetics)
-"buQ" = (
-/obj/structure/closet/secure_closet/personal/patient,
-/obj/machinery/light,
-/obj/machinery/airalarm{
- dir = 1;
- pixel_y = -22
- },
-/turf/open/floor/plasteel/whitepurple/side,
-/area/medical/genetics)
-"buR" = (
-/obj/structure/closet/wardrobe/genetics_white,
-/turf/open/floor/plasteel/whitepurple/side{
- dir = 6
- },
-/area/medical/genetics)
-"buS" = (
-/obj/machinery/shower{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"buT" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"buU" = (
-/obj/structure/closet/l3closet,
-/obj/machinery/light{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"buV" = (
-/obj/machinery/shower{
- icon_state = "shower";
- dir = 4
- },
-/obj/item/device/radio/intercom{
- broadcasting = 0;
- freerange = 0;
- frequency = 1485;
- listening = 1;
- name = "Station Intercom (Medbay)";
- pixel_x = -28
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/central)
-"buW" = (
-/obj/effect/landmark/start/medical_doctor,
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/central)
-"buX" = (
-/obj/machinery/door/airlock/glass_medical{
- id_tag = null;
- name = "Medbay Storage";
- req_access_txt = "45"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/central)
-"buY" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/whiteblue/side{
- dir = 8
- },
-/area/medical/medbay/central)
-"buZ" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/whiteblue/side{
- dir = 4
- },
-/area/medical/medbay/central)
-"bva" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 5
- },
-/turf/open/floor/plasteel/cmo,
-/area/crew_quarters/heads/cmo)
-"bvb" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/cmo,
-/area/crew_quarters/heads/cmo)
-"bvc" = (
-/obj/structure/chair/office/light{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/cmo,
-/area/crew_quarters/heads/cmo)
-"bvd" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 8
- },
-/turf/open/floor/plasteel/cmo,
-/area/crew_quarters/heads/cmo)
-"bve" = (
-/obj/machinery/power/apc{
- dir = 4;
- name = "CMO's Office APC";
- pixel_x = 26
- },
-/obj/structure/cable,
-/turf/open/floor/plasteel/cmo,
-/area/crew_quarters/heads/cmo)
-"bvf" = (
-/turf/closed/wall,
-/area/medical/exam_room)
-"bvg" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plating,
-/area/maintenance/department/engine)
-"bvh" = (
-/obj/machinery/power/apc{
- dir = 8;
- name = "Server Room APC";
- pixel_x = -24
- },
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/general/visible{
- dir = 8
- },
-/turf/open/floor/plasteel/black,
-/area/science/server)
-"bvi" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/turf/open/floor/plasteel/black,
-/area/science/server)
-"bvj" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 4
- },
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/turf/open/floor/plating,
-/area/science/server)
-"bvk" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 8;
- external_pressure_bound = 140;
- name = "server vent";
- pressure_checks = 0
- },
-/turf/open/floor/circuit{
- name = "Server Base";
- initial_gas_mix = "n2=500;TEMP=80"
- },
-/area/science/server)
-"bvl" = (
-/obj/machinery/computer/robotics,
-/turf/open/floor/plasteel/whitepurple/side{
- dir = 8
- },
-/area/crew_quarters/heads/hor)
-"bvm" = (
-/turf/open/floor/plasteel/white,
-/area/crew_quarters/heads/hor)
-"bvn" = (
-/obj/structure/displaycase/labcage,
-/turf/open/floor/plasteel/white,
-/area/crew_quarters/heads/hor)
-"bvo" = (
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 1
- },
-/turf/open/floor/plasteel/white,
-/area/crew_quarters/heads/hor)
-"bvp" = (
-/obj/machinery/disposal/bin,
-/obj/machinery/light{
- dir = 4
- },
-/obj/structure/disposalpipe/trunk{
- dir = 8
- },
-/turf/open/floor/plasteel/whitepurple/side{
- dir = 4
- },
-/area/crew_quarters/heads/hor)
-"bvq" = (
-/obj/item/weapon/pen,
-/obj/structure/table,
-/obj/structure/reagent_dispensers/peppertank{
- pixel_x = -32
- },
-/obj/item/weapon/paper_bin{
- layer = 2.9
- },
-/turf/open/floor/plasteel/red/side{
- dir = 8
- },
-/area/security/checkpoint/science)
-"bvr" = (
-/obj/structure/chair/office/dark,
-/obj/effect/landmark/start/depsec/science,
-/turf/open/floor/plasteel,
-/area/security/checkpoint/science)
-"bvs" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on,
-/turf/open/floor/plasteel/red/side{
- dir = 4
- },
-/area/security/checkpoint/science)
-"bvt" = (
-/obj/machinery/portable_atmospherics/canister/oxygen,
-/obj/effect/turf_decal/bot,
-/turf/open/floor/plasteel,
-/area/science/storage)
-"bvu" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/turf/open/floor/plasteel,
-/area/science/storage)
-"bvv" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel,
-/area/science/storage)
-"bvw" = (
-/obj/machinery/door/firedoor/heavy,
-/obj/machinery/door/airlock/research{
- name = "Toxins Storage";
- req_access_txt = "8"
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel,
-/area/science/storage)
-"bvx" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/whitepurple/side{
- dir = 8
- },
-/area/science/research)
-"bvy" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/white,
-/area/science/research)
-"bvz" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/whitepurple/side{
- dir = 4
- },
-/area/science/research)
-"bvA" = (
-/obj/machinery/door/firedoor/heavy,
-/obj/machinery/door/airlock/glass_research{
- name = "Toxins Lab";
- req_access_txt = "8"
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel,
-/area/science/mixing)
-"bvB" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel,
-/area/science/mixing)
-"bvC" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/science/mixing)
-"bvD" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
-/area/science/mixing)
-"bvE" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/science/mixing)
-"bvF" = (
-/obj/machinery/atmospherics/pipe/manifold/general/visible{
- dir = 8
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/science/mixing)
-"bvG" = (
-/obj/machinery/atmospherics/components/binary/valve{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/science/mixing)
-"bvH" = (
-/obj/machinery/atmospherics/pipe/manifold/general/visible{
- dir = 4
- },
-/obj/machinery/firealarm{
- dir = 4;
- pixel_x = 28
- },
-/obj/machinery/light{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/science/mixing)
-"bvI" = (
-/turf/closed/wall,
-/area/science/mineral_storeroom)
-"bvJ" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/closed/wall,
-/area/science/mineral_storeroom)
-"bvK" = (
-/turf/closed/wall/r_wall,
-/area/science/mineral_storeroom)
-"bvL" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/item/trash/sosjerky,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating,
-/area/maintenance/department/science)
-"bvM" = (
-/obj/structure/closet,
-/obj/item/stack/cable_coil/random,
-/obj/item/weapon/electronics/airalarm,
-/turf/open/floor/plating,
-/area/maintenance/department/engine)
-"bvN" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/turf/open/floor/plating,
-/area/maintenance/department/engine)
-"bvO" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/turf/open/floor/plating,
-/area/maintenance/department/engine)
-"bvP" = (
-/turf/closed/wall/r_wall,
-/area/medical/virology)
-"bvQ" = (
-/obj/structure/sink{
- dir = 8;
- pixel_x = -12;
- pixel_y = 2
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 10
- },
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"bvR" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"bvS" = (
-/obj/structure/closet/l3closet,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 10
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 6
- },
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"bvT" = (
-/obj/machinery/vending/medical,
-/turf/open/floor/plasteel/whiteblue/side,
-/area/medical/medbay/central)
-"bvU" = (
-/obj/structure/closet/secure_closet/medical3,
-/turf/open/floor/plasteel/whiteblue/side,
-/area/medical/medbay/central)
-"bvV" = (
-/obj/structure/closet/secure_closet/medical3,
-/obj/machinery/light,
-/obj/machinery/camera{
- c_tag = "Medbay Equipment Room";
- dir = 1;
- network = list("SS13")
- },
-/turf/open/floor/plasteel/whiteblue/side,
-/area/medical/medbay/central)
-"bvW" = (
-/obj/structure/closet/wardrobe/white/medical,
-/turf/open/floor/plasteel/whiteblue/side,
-/area/medical/medbay/central)
-"bvX" = (
-/obj/structure/table,
-/obj/item/weapon/storage/belt/medical{
- pixel_y = 2
- },
-/obj/item/weapon/storage/belt/medical{
- pixel_y = 2
- },
-/obj/item/weapon/storage/belt/medical{
- pixel_y = 2
- },
-/obj/item/clothing/glasses/hud/health,
-/obj/item/clothing/glasses/hud/health,
-/obj/item/clothing/glasses/hud/health,
-/obj/item/weapon/reagent_containers/spray/cleaner,
-/turf/open/floor/plasteel/whiteblue/side,
-/area/medical/medbay/central)
-"bvY" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/whiteblue/corner{
- dir = 1
- },
-/area/medical/medbay/central)
-"bvZ" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/whiteblue/corner{
- dir = 4
- },
-/area/medical/medbay/central)
-"bwa" = (
-/obj/structure/closet/secure_closet/CMO,
-/obj/item/weapon/valentine,
-/turf/open/floor/plasteel/cmo,
-/area/crew_quarters/heads/cmo)
-"bwb" = (
-/obj/machinery/modular_computer/console/preset/civilian,
-/turf/open/floor/plasteel/cmo,
-/area/crew_quarters/heads/cmo)
-"bwc" = (
-/obj/item/weapon/cartridge/medical{
- pixel_x = -2;
- pixel_y = 6
- },
-/obj/item/weapon/cartridge/medical{
- pixel_x = 6;
- pixel_y = 3
- },
-/obj/item/weapon/cartridge/medical,
-/obj/item/weapon/cartridge/chemistry{
- pixel_y = 2
- },
-/obj/structure/table,
-/obj/machinery/light,
-/obj/item/weapon/wrench/medical,
-/turf/open/floor/plasteel/cmo,
-/area/crew_quarters/heads/cmo)
-"bwd" = (
-/obj/item/weapon/folder/blue,
-/obj/item/weapon/stamp/cmo,
-/obj/structure/table,
-/turf/open/floor/plasteel/cmo,
-/area/crew_quarters/heads/cmo)
-"bwe" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-16";
- layer = 4.1
- },
-/turf/open/floor/plasteel/cmo,
-/area/crew_quarters/heads/cmo)
-"bwf" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/structure/closet,
-/obj/item/clothing/under/rank/nursesuit,
-/obj/item/clothing/head/nursehat,
-/obj/effect/decal/cleanable/cobweb,
-/obj/machinery/airalarm{
- pixel_y = 22
- },
-/turf/open/floor/plasteel/black,
-/area/medical/exam_room)
-"bwg" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/light/small{
- dir = 1
- },
-/obj/machinery/vending/wallmed{
- pixel_y = 28;
- products = list(/obj/item/weapon/reagent_containers/syringe = 3, /obj/item/weapon/reagent_containers/pill/patch/styptic = 1, /obj/item/weapon/reagent_containers/pill/patch/silver_sulf = 1, /obj/item/weapon/reagent_containers/spray/medical/sterilizer = 1)
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/on,
-/obj/effect/landmark/blobstart,
-/obj/item/weapon/melee/baton/cattleprod{
- cell = new /obj/item/weapon/stock_parts/cell/high()
- },
-/turf/open/floor/plasteel/black,
-/area/medical/exam_room)
-"bwh" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/button/door{
- id = "CMOCell";
- name = "Door Bolt Control";
- normaldoorcontrol = 1;
- pixel_y = 26;
- req_access_txt = "0";
- specialfunctions = 4
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 4
- },
-/obj/effect/landmark/xeno_spawn,
-/turf/open/floor/plasteel/black,
-/area/medical/exam_room)
-"bwi" = (
-/obj/machinery/door/airlock/command{
- id_tag = "CMOCell";
- name = "Personal Examination Room";
- req_access_txt = "40"
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/black,
-/area/medical/exam_room)
-"bwj" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/department/engine)
-"bwk" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"bwl" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/yellow/corner,
-/area/hallway/primary/aft)
-"bwm" = (
-/obj/structure/chair/office/dark,
-/obj/machinery/light{
- dir = 8
- },
-/obj/machinery/camera{
- c_tag = "Server Room";
- dir = 4;
- network = list("SS13","RD")
- },
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 5
- },
-/turf/open/floor/plasteel/black,
-/area/science/server)
-"bwn" = (
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 4
- },
-/turf/open/floor/plasteel/black,
-/area/science/server)
-"bwo" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass_command{
- name = "Server Room";
- req_access_txt = "30"
- },
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 4
- },
-/turf/open/floor/plasteel/black,
-/area/science/server)
-"bwp" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{
- dir = 8;
- external_pressure_bound = 120;
- name = "server vent"
- },
-/turf/open/floor/circuit{
- name = "Server Base";
- initial_gas_mix = "n2=500;TEMP=80"
- },
-/area/science/server)
-"bwq" = (
-/obj/machinery/computer/aifixer,
-/turf/open/floor/plasteel/whitepurple/side{
- dir = 8
- },
-/area/crew_quarters/heads/hor)
-"bwr" = (
-/obj/structure/chair/office/light{
- dir = 8
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/crew_quarters/heads/hor)
-"bws" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 10
- },
-/turf/open/floor/plasteel/white,
-/area/crew_quarters/heads/hor)
-"bwt" = (
-/obj/structure/chair/office/light,
-/obj/effect/landmark/start/research_director,
-/turf/open/floor/plasteel/white,
-/area/crew_quarters/heads/hor)
-"bwu" = (
-/obj/machinery/computer/card/minor/rd,
-/obj/machinery/keycard_auth{
- pixel_x = 28;
- pixel_y = 4
- },
-/turf/open/floor/plasteel/whitepurple/side{
- dir = 4
- },
-/area/crew_quarters/heads/hor)
-"bwv" = (
-/obj/machinery/recharger{
- pixel_y = 4
- },
-/obj/structure/table,
-/turf/open/floor/plasteel/red/side{
- dir = 10
- },
-/area/security/checkpoint/science)
-"bww" = (
-/obj/machinery/computer/security/mining,
-/obj/item/device/radio/intercom{
- dir = 8;
- freerange = 1;
- name = "Station Intercom (Telecomms)";
- pixel_y = -26
- },
-/turf/open/floor/plasteel/red/side,
-/area/security/checkpoint/science)
-"bwx" = (
-/obj/machinery/computer/secure_data,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/red/side{
- dir = 6
- },
-/area/security/checkpoint/science)
-"bwy" = (
-/obj/machinery/portable_atmospherics/canister/air,
-/obj/effect/turf_decal/bot,
-/turf/open/floor/plasteel,
-/area/science/storage)
-"bwz" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel,
-/area/science/storage)
-"bwA" = (
-/turf/open/floor/plasteel,
-/area/science/storage)
-"bwB" = (
-/turf/open/floor/plasteel/white/side{
- dir = 4
- },
-/area/science/research)
-"bwC" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/science/mixing)
-"bwD" = (
-/turf/open/floor/plasteel,
-/area/science/mixing)
-"bwE" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/science/mixing)
-"bwF" = (
-/obj/item/device/assembly/prox_sensor{
- pixel_x = -4;
- pixel_y = 1
- },
-/obj/item/device/assembly/prox_sensor{
- pixel_x = 8;
- pixel_y = 9
- },
-/obj/item/device/assembly/prox_sensor{
- pixel_x = 9;
- pixel_y = -2
- },
-/obj/item/device/assembly/prox_sensor{
- pixel_y = 2
- },
-/obj/structure/table/reinforced,
-/turf/open/floor/plasteel,
-/area/science/mixing)
-"bwG" = (
-/obj/structure/chair/stool,
-/obj/effect/landmark/start/scientist,
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/science/mixing)
-"bwH" = (
-/obj/structure/table/reinforced,
-/obj/item/weapon/wrench,
-/obj/item/weapon/screwdriver{
- pixel_y = 10
- },
-/obj/item/device/analyzer,
-/turf/open/floor/plasteel,
-/area/science/mixing)
-"bwI" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/science/mixing)
-"bwJ" = (
-/obj/machinery/atmospherics/pipe/simple/general/visible,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/science/mixing)
-"bwK" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel,
-/area/science/mixing)
-"bwL" = (
-/obj/machinery/atmospherics/pipe/simple/general/visible,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/computer/security/telescreen{
- desc = "Used for watching the turbine vent.";
- dir = 8;
- name = "turbine vent monitor";
- network = list("Turbine");
- pixel_x = 30
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/science/mixing)
-"bwM" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/closed/wall,
-/area/science/mixing)
-"bwN" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/closet/emcloset,
-/turf/open/floor/plasteel,
-/area/science/mineral_storeroom)
-"bwO" = (
-/obj/machinery/power/smes,
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/turf/open/floor/plasteel,
-/area/science/mineral_storeroom)
-"bwP" = (
-/obj/machinery/suit_storage_unit/rd,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/light{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/science/mineral_storeroom)
-"bwQ" = (
-/obj/structure/ore_box,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/science/mineral_storeroom)
-"bwR" = (
-/obj/structure/ore_box,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/camera{
- c_tag = "Toxins Launch Area";
- dir = 2;
- network = list("SS13","RD")
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 6
- },
-/obj/structure/sign/poster/official/random{
- pixel_y = 32
- },
-/turf/open/floor/plasteel,
-/area/science/mineral_storeroom)
-"bwS" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/science/mineral_storeroom)
-"bwT" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/light{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/science/mineral_storeroom)
-"bwU" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/science/mineral_storeroom)
-"bwV" = (
-/obj/machinery/power/apc{
- dir = 1;
- name = "Toxins Launch Room APC";
- pixel_y = 25
- },
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/science/mineral_storeroom)
-"bwW" = (
-/obj/machinery/door/airlock/maintenance{
- name = "Toxins Launch Room Maintenance";
- req_access_txt = "8"
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/science/mineral_storeroom)
-"bwX" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/department/science)
-"bwY" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/item/weapon/cigbutt/cigarbutt,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/department/science)
-"bwZ" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/light/small{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/department/science)
-"bxa" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/effect/landmark/xeno_spawn,
-/turf/open/floor/plating,
-/area/maintenance/department/science)
-"bxb" = (
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/open/floor/plating,
-/area/maintenance/department/engine)
-"bxc" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 6
- },
-/turf/open/floor/plating,
-/area/maintenance/department/engine)
-"bxd" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/department/engine)
-"bxe" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/closed/wall/r_wall,
-/area/medical/virology)
-"bxf" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/mob/living/carbon/monkey,
-/turf/open/floor/plasteel/freezer,
-/area/medical/virology)
-"bxg" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/obj/effect/landmark/xeno_spawn,
-/turf/open/floor/plasteel/freezer,
-/area/medical/virology)
-"bxh" = (
-/obj/machinery/light{
- dir = 1
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 8
- },
-/mob/living/carbon/monkey,
-/turf/open/floor/plasteel/freezer,
-/area/medical/virology)
-"bxi" = (
-/obj/effect/decal/cleanable/deadcockroach,
-/turf/open/floor/plasteel/freezer,
-/area/medical/virology)
-"bxj" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/virology{
- autoclose = 0;
- frequency = 1449;
- icon_state = "door_locked";
- id_tag = "virology_airlock_interior";
- locked = 1;
- name = "Virology Interior Airlock";
- req_access_txt = "39"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/doorButtons/access_button{
- idDoor = "virology_airlock_interior";
- idSelf = "virology_airlock_control";
- name = "Virology Access Button";
- pixel_x = -24;
- req_access_txt = "39"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"bxk" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/closed/wall/r_wall,
-/area/medical/virology)
-"bxl" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/door/firedoor,
-/turf/open/floor/plasteel/whiteblue/corner{
- dir = 1
- },
-/area/medical/medbay/central)
-"bxm" = (
-/obj/machinery/door/firedoor,
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/central)
-"bxn" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/door/firedoor,
-/turf/open/floor/plasteel/whiteblue/corner{
- dir = 4
- },
-/area/medical/medbay/central)
-"bxo" = (
-/turf/closed/wall,
-/area/medical/surgery)
-"bxp" = (
-/obj/structure/table/glass,
-/obj/item/device/flashlight/pen,
-/obj/item/clothing/neck/stethoscope,
-/obj/item/weapon/lipstick/black,
-/obj/machinery/power/apc{
- dir = 8;
- name = "Personal Examination Room APC";
- pixel_x = -25
- },
-/obj/structure/cable,
-/obj/item/weapon/reagent_containers/pill/morphine,
-/turf/open/floor/plasteel/black,
-/area/medical/exam_room)
-"bxq" = (
-/obj/effect/decal/remains/human,
-/obj/structure/chair/office/dark{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/effect/landmark/revenantspawn,
-/turf/open/floor/plasteel/black,
-/area/medical/exam_room)
-"bxr" = (
-/obj/structure/bed,
-/obj/item/weapon/bedsheet/cmo,
-/obj/effect/decal/cleanable/blood/drip,
-/obj/item/weapon/restraints/handcuffs,
-/obj/item/clothing/mask/muzzle,
-/obj/effect/landmark/revenantspawn,
-/turf/open/floor/plasteel/black,
-/area/medical/exam_room)
-"bxs" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/structure/sign/examroom{
- pixel_x = -32
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plating,
-/area/maintenance/department/engine)
-"bxt" = (
-/obj/machinery/camera{
- c_tag = "Aft Primary Hallway Central";
- dir = 8;
- network = list("SS13")
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/yellow/corner,
-/area/hallway/primary/aft)
-"bxu" = (
-/obj/structure/table,
-/obj/item/weapon/folder/white,
-/obj/item/weapon/pen,
-/turf/open/floor/plasteel/black,
-/area/science/server)
-"bxv" = (
-/obj/machinery/computer/rdservercontrol,
-/turf/open/floor/plasteel/black,
-/area/science/server)
-"bxw" = (
-/obj/machinery/r_n_d/server/robotics,
-/turf/open/floor/circuit{
- name = "Server Base";
- initial_gas_mix = "n2=500;TEMP=80"
- },
-/area/science/server)
-"bxx" = (
-/obj/machinery/computer/mecha,
-/obj/item/device/radio/intercom{
- dir = 0;
- name = "Station Intercom (General)";
- pixel_y = -26
- },
-/turf/open/floor/plasteel/whitepurple/side{
- dir = 10
- },
-/area/crew_quarters/heads/hor)
-"bxy" = (
-/obj/structure/table,
-/obj/item/device/aicard,
-/obj/item/weapon/circuitboard/aicore,
-/obj/machinery/requests_console{
- announcementConsole = 1;
- department = "Research Director's Desk";
- departmentType = 5;
- name = "Research Director RC";
- pixel_y = -30;
- receive_ore_updates = 1
- },
-/turf/open/floor/plasteel/whitepurple/side,
-/area/crew_quarters/heads/hor)
-"bxz" = (
-/obj/structure/table,
-/obj/item/weapon/paper_bin{
- layer = 2.9;
- pixel_x = -2;
- pixel_y = 5
- },
-/obj/item/weapon/folder/white,
-/obj/item/weapon/pen,
-/obj/item/weapon/stamp/rd,
-/obj/machinery/status_display{
- density = 0;
- pixel_y = -30;
- supply_display = 0
- },
-/obj/machinery/camera{
- c_tag = "Research Director's Office";
- dir = 1;
- network = list("SS13","RD")
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/whitepurple/side,
-/area/crew_quarters/heads/hor)
-"bxA" = (
-/obj/structure/table,
-/obj/item/weapon/cartridge/signal/toxins,
-/obj/item/weapon/cartridge/signal/toxins{
- pixel_x = -4;
- pixel_y = 2
- },
-/obj/item/weapon/cartridge/signal/toxins{
- pixel_x = 4;
- pixel_y = 6
- },
-/obj/machinery/computer/security/telescreen{
- desc = "Used for watching the RD's goons and the AI's satellite from the safety of his office.";
- name = "Research Monitor";
- network = list("RD","MiniSat");
- pixel_y = -32
- },
-/turf/open/floor/plasteel/whitepurple/side,
-/area/crew_quarters/heads/hor)
-"bxB" = (
-/obj/machinery/newscaster{
- pixel_y = -30
- },
-/obj/machinery/modular_computer/console/preset/research,
-/turf/open/floor/plasteel/whitepurple/side{
- dir = 6
- },
-/area/crew_quarters/heads/hor)
-"bxC" = (
-/turf/closed/wall/r_wall,
-/area/crew_quarters/heads/hor)
-"bxD" = (
-/turf/closed/wall/r_wall,
-/area/security/checkpoint/science)
-"bxE" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/closed/wall/r_wall,
-/area/security/checkpoint/science)
-"bxF" = (
-/obj/machinery/portable_atmospherics/canister/carbon_dioxide,
-/obj/effect/turf_decal/bot,
-/turf/open/floor/plasteel,
-/area/science/storage)
-"bxG" = (
-/obj/structure/sign/nosmoking_2{
- pixel_x = 32
- },
-/turf/open/floor/plasteel,
-/area/science/storage)
-"bxH" = (
-/obj/structure/closet/firecloset,
-/turf/open/floor/plasteel/white/side{
- icon_state = "whitehall";
- dir = 1
- },
-/area/science/research)
-"bxI" = (
-/obj/structure/reagent_dispensers/watertank,
-/obj/machinery/light,
-/turf/open/floor/plasteel/white/side{
- icon_state = "whitehall";
- dir = 1
- },
-/area/science/research)
-"bxJ" = (
-/obj/structure/reagent_dispensers/fueltank,
-/turf/open/floor/plasteel/white/side{
- icon_state = "whitehall";
- dir = 1
- },
-/area/science/research)
-"bxK" = (
-/obj/structure/tank_dispenser,
-/turf/open/floor/plasteel,
-/area/science/mixing)
-"bxL" = (
-/obj/structure/closet/wardrobe/science_white,
-/turf/open/floor/plasteel,
-/area/science/mixing)
-"bxM" = (
-/obj/item/device/assembly/signaler{
- pixel_y = 8
- },
-/obj/item/device/assembly/signaler{
- pixel_x = -8;
- pixel_y = 5
- },
-/obj/item/device/assembly/signaler{
- pixel_x = 6;
- pixel_y = 5
- },
-/obj/item/device/assembly/signaler{
- pixel_x = -2;
- pixel_y = -2
- },
-/obj/structure/table/reinforced,
-/turf/open/floor/plasteel/white,
-/area/science/mixing)
-"bxN" = (
-/obj/item/device/transfer_valve{
- pixel_x = -5
- },
-/obj/item/device/transfer_valve{
- pixel_x = -5
- },
-/obj/item/device/transfer_valve,
-/obj/item/device/transfer_valve,
-/obj/item/device/transfer_valve{
- pixel_x = 5
- },
-/obj/item/device/transfer_valve{
- pixel_x = 5
- },
-/obj/structure/table/reinforced,
-/turf/open/floor/plasteel,
-/area/science/mixing)
-"bxO" = (
-/obj/item/device/assembly/timer{
- pixel_x = 5;
- pixel_y = 4
- },
-/obj/item/device/assembly/timer{
- pixel_x = -4;
- pixel_y = 2
- },
-/obj/item/device/assembly/timer{
- pixel_x = 6;
- pixel_y = -4
- },
-/obj/item/device/assembly/timer,
-/obj/structure/table/reinforced,
-/turf/open/floor/plasteel,
-/area/science/mixing)
-"bxP" = (
-/obj/machinery/computer/turbine_computer{
- id = "incineratorturbine"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/science/mixing)
-"bxQ" = (
-/obj/machinery/atmospherics/pipe/simple/general/visible,
-/obj/machinery/meter,
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/science/mixing)
-"bxR" = (
-/obj/structure/cable/yellow{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/turf/open/floor/plasteel,
-/area/science/mixing)
-"bxS" = (
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/meter,
-/obj/machinery/atmospherics/pipe/manifold/general/visible{
- dir = 8
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/science/mixing)
-"bxT" = (
-/obj/machinery/door/firedoor/heavy,
-/obj/machinery/door/airlock/research{
- name = "Toxins Launch Room";
- req_access_txt = "8"
- },
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/dark/visible{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/science/mixing)
-"bxU" = (
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 10
- },
-/turf/open/floor/plasteel,
-/area/science/mineral_storeroom)
-"bxV" = (
-/obj/structure/cable/yellow{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/machinery/power/terminal{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/science/mineral_storeroom)
-"bxW" = (
-/turf/open/floor/plasteel,
-/area/science/mineral_storeroom)
-"bxX" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/science/mineral_storeroom)
-"bxY" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
-/area/science/mineral_storeroom)
-"bxZ" = (
-/obj/structure/reagent_dispensers/watertank,
-/turf/open/floor/plating,
-/area/maintenance/department/chapel/monastery)
-"bya" = (
-/turf/open/floor/plasteel/loadingarea{
- dir = 4
- },
-/area/science/mineral_storeroom)
-"byb" = (
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plasteel,
-/area/science/mineral_storeroom)
-"byc" = (
-/obj/structure/closet/boxinggloves,
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
- },
-/area/maintenance/department/engine)
-"byd" = (
-/obj/structure/closet/masks,
-/obj/item/trash/deadmouse,
-/obj/effect/landmark/revenantspawn,
-/turf/open/floor/plating,
-/area/maintenance/department/engine)
-"bye" = (
-/obj/machinery/vending/cigarette,
-/turf/open/floor/plating,
-/area/maintenance/department/engine)
-"byf" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plating,
-/area/maintenance/department/engine)
-"byg" = (
-/obj/structure/window/reinforced,
-/turf/open/floor/plasteel/freezer,
-/area/medical/virology)
-"byh" = (
-/obj/structure/window/reinforced,
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
-/mob/living/carbon/monkey,
-/turf/open/floor/plasteel/freezer,
-/area/medical/virology)
-"byi" = (
-/obj/structure/window/reinforced,
-/obj/effect/landmark/blobstart,
-/turf/open/floor/plasteel/freezer,
-/area/medical/virology)
-"byj" = (
-/obj/machinery/door/window/eastleft{
- dir = 2;
- name = "Monkey Pen";
- req_one_access_txt = "39"
- },
-/mob/living/carbon/monkey,
-/turf/open/floor/plasteel/freezer,
-/area/medical/virology)
-"byk" = (
-/obj/machinery/doorButtons/airlock_controller{
- idExterior = "virology_airlock_exterior";
- idInterior = "virology_airlock_interior";
- idSelf = "virology_airlock_control";
- name = "Virology Access Console";
- pixel_x = 8;
- pixel_y = 22;
- req_access_txt = "39"
- },
-/obj/machinery/light_switch{
- pixel_x = -4;
- pixel_y = 24
- },
-/turf/open/floor/plasteel/whitegreen/side{
- icon_state = "whitegreen";
- dir = 9
- },
-/area/medical/virology)
-"byl" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"bym" = (
-/obj/machinery/power/apc{
- cell_type = 5000;
- dir = 1;
- name = "Virology APC";
- pixel_y = 24
- },
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plasteel/whitegreen/side{
- icon_state = "whitegreen";
- dir = 5
- },
-/area/medical/virology)
-"byn" = (
-/obj/item/weapon/bedsheet/medical,
-/obj/structure/bed,
-/obj/effect/landmark/revenantspawn,
-/obj/structure/mirror{
- pixel_x = -28
- },
-/obj/structure/curtain{
- layer = 4.5
- },
-/turf/open/floor/plasteel/freezer,
-/area/medical/medbay/central)
-"byo" = (
-/obj/machinery/vending/wallmed{
- pixel_y = 28;
- products = list(/obj/item/weapon/reagent_containers/syringe = 3, /obj/item/weapon/reagent_containers/pill/patch/styptic = 1, /obj/item/weapon/reagent_containers/pill/patch/silver_sulf = 1, /obj/item/weapon/reagent_containers/spray/medical/sterilizer = 1)
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 4
- },
-/obj/machinery/light{
- dir = 1
- },
-/turf/open/floor/plasteel/freezer,
-/area/medical/medbay/central)
-"byp" = (
-/obj/machinery/button/door{
- id = "patientA";
- name = "Privacy Shutters";
- pixel_y = 25
- },
-/obj/machinery/camera{
- c_tag = "Patient Room A";
- dir = 2
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/freezer,
-/area/medical/medbay/central)
-"byq" = (
-/obj/machinery/door/airlock/medical{
- name = "Patient Room A";
- req_access_txt = "5"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/freezer,
-/area/medical/medbay/central)
-"byr" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/central)
-"bys" = (
-/obj/machinery/light{
- dir = 4
- },
-/obj/machinery/firealarm{
- dir = 4;
- pixel_x = 28
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/whiteblue/side{
- dir = 4
- },
-/area/medical/medbay/central)
-"byt" = (
-/obj/structure/closet/crate/freezer/surplus_limbs,
-/obj/item/weapon/reagent_containers/glass/beaker/synthflesh,
-/obj/machinery/newscaster/security_unit{
- pixel_y = 32
- },
-/turf/open/floor/plasteel/freezer,
-/area/medical/surgery)
-"byu" = (
-/obj/machinery/computer/med_data,
-/obj/machinery/status_display{
- density = 0;
- layer = 4;
- pixel_y = 32
- },
-/turf/open/floor/plasteel/freezer,
-/area/medical/surgery)
-"byv" = (
-/obj/structure/table,
-/obj/structure/bedsheetbin,
-/obj/structure/extinguisher_cabinet{
- pixel_x = 24
- },
-/obj/machinery/computer/security/telescreen/entertainment{
- pixel_y = 32
- },
-/turf/open/floor/plasteel/freezer,
-/area/medical/surgery)
-"byw" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/closed/wall,
-/area/medical/surgery)
-"byx" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/closed/wall/r_wall,
-/area/crew_quarters/heads/hor)
-"byy" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 6
- },
-/obj/structure/table,
-/obj/item/toy/cards/deck,
-/turf/open/floor/plating,
-/area/maintenance/department/engine/atmos)
-"byz" = (
-/obj/machinery/space_heater,
-/obj/machinery/light/small{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/department/engine/atmos)
-"byA" = (
-/obj/machinery/space_heater,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating,
-/area/maintenance/department/engine/atmos)
-"byB" = (
-/obj/machinery/portable_atmospherics/canister/nitrous_oxide,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
- dir = 4
- },
-/obj/effect/turf_decal/bot,
-/turf/open/floor/plasteel,
-/area/science/storage)
-"byC" = (
-/obj/machinery/portable_atmospherics/canister/nitrous_oxide,
-/obj/machinery/light,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
- dir = 4
- },
-/obj/effect/turf_decal/bot,
-/turf/open/floor/plasteel,
-/area/science/storage)
-"byD" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/science/storage)
-"byE" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 8;
- name = "External to Filter";
- on = 1
- },
-/turf/open/floor/plasteel,
-/area/science/storage)
-"byF" = (
-/obj/machinery/atmospherics/components/unary/portables_connector/visible{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/science/storage)
-"byG" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/science/research)
-"byH" = (
-/turf/closed/wall/r_wall,
-/area/science/mixing)
-"byI" = (
-/obj/machinery/atmospherics/components/binary/valve,
-/obj/machinery/button/door{
- id = "turbinevent";
- name = "Aft Vent Control";
- pixel_x = 6;
- pixel_y = -24;
- req_access_txt = "0";
- req_one_access_txt = "8;24"
- },
-/obj/machinery/button/door{
- id = "mixvent";
- name = "Starboard Vent Control";
- pixel_x = -6;
- pixel_y = -24;
- req_access_txt = "0";
- req_one_access_txt = "8;24"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/science/mixing)
-"byJ" = (
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel,
-/area/science/mixing)
-"byK" = (
-/obj/machinery/atmospherics/components/binary/valve,
-/obj/machinery/button/ignition{
- id = "Incinerator";
- pixel_x = -6;
- pixel_y = -24
- },
-/obj/machinery/doorButtons/airlock_controller{
- idExterior = "incinerator_airlock_exterior";
- idInterior = "incinerator_airlock_interior";
- idSelf = "incinerator_access_control";
- name = "Incinerator Access Console";
- pixel_x = 6;
- pixel_y = -26;
- req_access_txt = "0"
- },
-/obj/structure/extinguisher_cabinet{
- pixel_x = 24
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/science/mixing)
-"byL" = (
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 2;
- name = "Incinerator Output Pump";
- on = 0
- },
-/turf/open/floor/plasteel,
-/area/science/mineral_storeroom)
-"byM" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/science/mineral_storeroom)
-"byN" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/science/mineral_storeroom)
-"byO" = (
-/obj/machinery/holopad,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 9
- },
-/turf/open/floor/plasteel,
-/area/science/mineral_storeroom)
-"byP" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/science/mineral_storeroom)
-"byQ" = (
-/obj/item/device/radio/intercom{
- dir = 8;
- name = "Station Intercom (General)";
- pixel_x = 28
- },
-/turf/open/floor/plasteel/brown{
- dir = 4
- },
-/area/science/mineral_storeroom)
-"byR" = (
-/obj/structure/table/wood,
-/obj/item/weapon/folder/yellow,
-/obj/item/weapon/pen,
-/obj/machinery/camera{
- c_tag = "Monastery Library";
- dir = 4;
- network = list("SS13","Monastery")
- },
-/turf/open/floor/plasteel/black,
-/area/library)
-"byS" = (
-/obj/machinery/mineral/unloading_machine{
- dir = 1;
- icon_state = "unloader-corner";
- input_dir = 1;
- output_dir = 2
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 9
- },
-/turf/open/floor/plating,
-/area/science/mineral_storeroom)
-"byT" = (
-/obj/structure/table,
-/obj/item/device/flashlight/lamp,
-/obj/effect/decal/cleanable/cobweb{
- icon_state = "cobweb2"
- },
-/turf/open/floor/plating,
-/area/maintenance/department/engine)
-"byU" = (
-/obj/machinery/vending/medical,
-/turf/open/floor/plasteel/whitegreen/side{
- icon_state = "whitegreen";
- dir = 9
- },
-/area/medical/virology)
-"byV" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel/whitegreen/side{
- dir = 1
- },
-/area/medical/virology)
-"byW" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/whitegreen/side{
- dir = 1
- },
-/area/medical/virology)
-"byX" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 1
- },
-/turf/open/floor/plasteel/whitegreen/side{
- dir = 1
- },
-/area/medical/virology)
-"byY" = (
-/obj/machinery/camera{
- c_tag = "Virology";
- dir = 2;
- network = list("SS13")
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/item/device/radio/intercom{
- dir = 8;
- freerange = 1;
- name = "Station Intercom (Telecomms)";
- pixel_y = 26
- },
-/turf/open/floor/plasteel/whitegreen/side{
- dir = 1
- },
-/area/medical/virology)
-"byZ" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 1
- },
-/turf/open/floor/plasteel/whitegreen/corner{
- dir = 1
- },
-/area/medical/virology)
-"bza" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 9
- },
-/obj/machinery/holopad,
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"bzb" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plasteel/whitegreen/corner{
- dir = 4
- },
-/area/medical/virology)
-"bzc" = (
-/obj/machinery/light{
- dir = 1
- },
-/obj/machinery/airalarm{
- pixel_y = 22
- },
-/turf/open/floor/plasteel/whitegreen/side{
- dir = 1
- },
-/area/medical/virology)
-"bzd" = (
-/obj/structure/closet/l3closet/virology,
-/turf/open/floor/plasteel/whitegreen/side{
- icon_state = "whitegreen";
- dir = 5
- },
-/area/medical/virology)
-"bze" = (
-/obj/structure/table,
-/obj/item/weapon/clipboard{
- toppaper = null
- },
-/obj/item/weapon/pen{
- layer = 3.1
- },
-/obj/item/clothing/neck/stethoscope{
- layer = 3.2
- },
-/turf/open/floor/plasteel/freezer,
-/area/medical/medbay/central)
-"bzf" = (
-/turf/open/floor/carpet,
-/area/library)
-"bzg" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/structure/closet/secure_closet/personal/patient,
-/turf/open/floor/plasteel/freezer,
-/area/medical/medbay/central)
-"bzh" = (
-/obj/structure/grille,
-/obj/structure/window/fulltile,
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "patientA";
- name = "privacy shutters"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/medical/medbay/central)
-"bzi" = (
-/obj/structure/grille,
-/obj/structure/window/fulltile,
-/turf/open/floor/plating,
-/area/medical/surgery)
-"bzj" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 4
- },
-/turf/open/floor/plasteel/freezer,
-/area/medical/surgery)
-"bzk" = (
-/obj/machinery/camera{
- c_tag = "Medbay Recovery Room";
- dir = 8;
- network = list("SS13")
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/item/device/radio/intercom{
- broadcasting = 0;
- freerange = 0;
- frequency = 1485;
- listening = 1;
- name = "Station Intercom (Medbay)";
- pixel_x = 28
- },
-/obj/machinery/holopad,
-/turf/open/floor/plasteel/freezer,
-/area/medical/surgery)
-"bzl" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/closed/wall,
-/area/medical/surgery)
-"bzm" = (
-/obj/structure/closet/crate/freezer/blood,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/whiteblue,
-/area/medical/surgery)
-"bzn" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/structure/sink{
- pixel_y = 28
- },
-/turf/open/floor/plasteel/whiteblue/side{
- dir = 1
- },
-/area/medical/surgery)
-"bzo" = (
-/obj/machinery/light{
- dir = 1
- },
-/obj/machinery/camera{
- c_tag = "Surgery";
- dir = 2;
- network = list("SS13","Surgery")
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/machinery/airalarm{
- pixel_y = 22
- },
-/turf/open/floor/plasteel/whiteblue/side{
- dir = 1
- },
-/area/medical/surgery)
-"bzp" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/vending/wallmed{
- pixel_y = 28;
- products = list(/obj/item/weapon/reagent_containers/syringe = 3, /obj/item/weapon/reagent_containers/pill/patch/styptic = 1, /obj/item/weapon/reagent_containers/pill/patch/silver_sulf = 1, /obj/item/weapon/reagent_containers/spray/medical/sterilizer = 1)
- },
-/turf/open/floor/plasteel/whiteblue/side{
- dir = 1
- },
-/area/medical/surgery)
-"bzq" = (
-/obj/structure/closet/secure_closet/medical2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 10
- },
-/turf/open/floor/plasteel/whiteblue,
-/area/medical/surgery)
-"bzr" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel/yellow/corner{
- dir = 8
- },
-/area/hallway/primary/aft)
-"bzs" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"bzt" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/yellow/corner,
-/area/hallway/primary/aft)
-"bzu" = (
-/obj/machinery/door/airlock/maintenance{
- name = "Atmospherics Maintenance";
- req_access_txt = "24"
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/department/engine/atmos)
-"bzv" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/department/engine/atmos)
-"bzw" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/department/engine/atmos)
-"bzx" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/sign/poster/contraband/random{
- pixel_y = 32
- },
-/turf/open/floor/plating,
-/area/maintenance/department/engine/atmos)
-"bzy" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/maintenance/department/engine/atmos)
-"bzz" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
-/turf/open/floor/plating,
-/area/maintenance/department/engine/atmos)
-"bzA" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/department/engine/atmos)
-"bzB" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/chair/stool,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/department/engine/atmos)
-"bzC" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 1
- },
-/obj/effect/landmark/blobstart,
-/obj/item/chair/stool,
-/turf/open/floor/plating,
-/area/maintenance/department/engine/atmos)
-"bzD" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 9
- },
-/obj/structure/sign/poster/contraband/random{
- pixel_x = 32
- },
-/turf/open/floor/plating,
-/area/maintenance/department/engine/atmos)
-"bzE" = (
-/obj/machinery/door/firedoor/heavy,
-/obj/machinery/door/airlock/atmos{
- name = "Toxins Storage";
- req_access_txt = "24"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel,
-/area/science/storage)
-"bzF" = (
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 2
- },
-/turf/closed/wall/r_wall,
-/area/science/mixing)
-"bzG" = (
-/obj/machinery/door/airlock/glass{
- autoclose = 0;
- frequency = 1449;
- heat_proof = 1;
- icon_state = "door_locked";
- id_tag = "incinerator_airlock_interior";
- locked = 1;
- name = "Turbine Interior Airlock";
- req_access_txt = "0";
- req_one_access_txt = "8;24"
- },
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/engine,
-/area/science/mixing)
-"bzH" = (
-/obj/machinery/atmospherics/pipe/simple/general/visible,
-/turf/closed/wall/r_wall,
-/area/science/mixing)
-"bzI" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
-/turf/open/floor/plasteel,
-/area/science/mineral_storeroom)
-"bzJ" = (
-/obj/structure/window/reinforced,
-/obj/machinery/doppler_array{
- dir = 2
- },
-/obj/effect/turf_decal/bot{
- dir = 2
- },
-/turf/open/floor/plasteel{
- dir = 2
- },
-/area/science/mineral_storeroom)
-"bzK" = (
-/obj/machinery/conveyor_switch/oneway{
- id = "toxmineral";
- name = "smelting conveyor"
- },
-/turf/open/floor/plasteel/brown{
- dir = 4
- },
-/area/science/mineral_storeroom)
-"bzL" = (
-/obj/effect/spawner/structure/window,
-/turf/open/floor/plating,
-/area/science/mineral_storeroom)
-"bzM" = (
-/obj/machinery/conveyor{
- dir = 2;
- id = "toxmineral"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/science/mineral_storeroom)
-"bzN" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/science/mineral_storeroom)
-"bzO" = (
-/obj/structure/chair/comfy/black,
-/obj/item/trash/pistachios,
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plasteel/black,
-/area/maintenance/department/engine)
-"bzP" = (
-/obj/structure/chair/comfy/black,
-/obj/item/stack/spacecash/c100,
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plasteel/black,
-/area/maintenance/department/engine)
-"bzQ" = (
-/obj/structure/chair/comfy/black,
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plasteel/black,
-/area/maintenance/department/engine)
-"bzR" = (
-/obj/structure/chair/comfy/black,
-/obj/item/weapon/cigbutt,
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plasteel/black,
-/area/maintenance/department/engine)
-"bzS" = (
-/obj/item/trash/popcorn,
-/obj/effect/turf_decal/stripes/line{
- dir = 5
- },
-/turf/open/floor/plasteel/black,
-/area/maintenance/department/engine)
-"bzT" = (
-/obj/structure/sign/poster/contraband/random{
- pixel_x = 32
- },
-/turf/open/floor/plating,
-/area/maintenance/department/engine)
-"bzU" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21"
- },
-/turf/open/floor/plating,
-/area/maintenance/department/engine)
-"bzV" = (
-/obj/structure/rack,
-/obj/item/weapon/cartridge/medical,
-/turf/open/floor/plating,
-/area/maintenance/department/engine)
-"bzW" = (
-/obj/structure/table/glass,
-/obj/item/weapon/book/manual/wiki/infections,
-/obj/item/weapon/hand_labeler,
-/obj/item/device/radio/headset/headset_med,
-/obj/machinery/light{
- dir = 8
- },
-/obj/structure/extinguisher_cabinet{
- pixel_x = -26
- },
-/turf/open/floor/plasteel/whitegreen/side{
- dir = 8
- },
-/area/medical/virology)
-"bzX" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"bzY" = (
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"bzZ" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 1
- },
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"bAa" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"bAb" = (
-/obj/machinery/firealarm{
- dir = 4;
- pixel_x = 28
- },
-/obj/structure/sink{
- dir = 4;
- pixel_x = 11
- },
-/turf/open/floor/plasteel/whitegreen/side{
- icon_state = "whitegreen";
- dir = 4
- },
-/area/medical/virology)
-"bAc" = (
-/obj/machinery/requests_console{
- announcementConsole = 0;
- department = "Medbay";
- departmentType = 1;
- name = "Medbay RC";
- pixel_x = -30
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/whiteblue/side{
- dir = 8
- },
-/area/medical/medbay/central)
-"bAd" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel/whiteblue/side{
- dir = 4
- },
-/area/medical/medbay/central)
-"bAe" = (
-/obj/machinery/door/airlock/glass_medical{
- id_tag = null;
- name = "Recovery Room";
- req_access_txt = "0"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/freezer,
-/area/medical/surgery)
-"bAf" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/freezer,
-/area/medical/surgery)
-"bAg" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 1
- },
-/turf/open/floor/plasteel/freezer,
-/area/medical/surgery)
-"bAh" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/medical{
- name = "Surgery";
- req_access_txt = "45"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/freezer,
-/area/medical/surgery)
-"bAi" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 1
- },
-/turf/open/floor/plasteel/whiteblue/side{
- dir = 8
- },
-/area/medical/surgery)
-"bAj" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 10
- },
-/turf/open/floor/plasteel/white,
-/area/medical/surgery)
-"bAk" = (
-/obj/machinery/computer/operating,
-/turf/open/floor/plasteel/white,
-/area/medical/surgery)
-"bAl" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/white,
-/area/medical/surgery)
-"bAm" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel/whiteblue/side{
- dir = 4
- },
-/area/medical/surgery)
-"bAn" = (
-/obj/machinery/door/airlock/maintenance{
- name = "Surgery Maintenance";
- req_access_txt = "45"
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/medical/surgery)
-"bAo" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 9
- },
-/turf/open/floor/plating,
-/area/maintenance/department/engine)
-"bAp" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/yellow/corner{
- dir = 8
- },
-/area/hallway/primary/aft)
-"bAq" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"bAr" = (
-/obj/machinery/light{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel/yellow/corner,
-/area/hallway/primary/aft)
-"bAs" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/closed/wall,
-/area/maintenance/department/engine/atmos)
-"bAt" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/department/engine/atmos)
-"bAu" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/open/floor/plating,
-/area/maintenance/department/engine/atmos)
-"bAv" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating,
-/area/maintenance/department/engine/atmos)
-"bAw" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 1
- },
-/obj/effect/decal/cleanable/vomit/old,
-/turf/open/floor/plating,
-/area/maintenance/department/engine/atmos)
-"bAx" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 9
- },
-/turf/open/floor/plating,
-/area/maintenance/department/engine/atmos)
-"bAy" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating,
-/area/maintenance/department/engine/atmos)
-"bAz" = (
-/obj/machinery/portable_atmospherics/canister,
-/turf/open/floor/plating,
-/area/maintenance/department/engine/atmos)
-"bAA" = (
-/turf/closed/wall/r_wall,
-/area/engine/atmos)
-"bAB" = (
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/obj/machinery/power/apc{
- dir = 8;
- name = "Atmospherics APC";
- pixel_x = -24
- },
-/obj/machinery/portable_atmospherics/scrubber,
-/turf/open/floor/plasteel/yellow/side{
- dir = 1
- },
-/area/engine/atmos)
-"bAC" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/airalarm{
- dir = 2;
- pixel_y = 22
- },
-/turf/open/floor/plasteel/yellow/side{
- dir = 1
- },
-/area/engine/atmos)
-"bAD" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/requests_console{
- announcementConsole = 1;
- department = "Head of Security's Desk";
- departmentType = 5;
- name = "Head of Security RC";
- pixel_y = 30
- },
-/turf/open/floor/plasteel/yellow/side{
- dir = 1
- },
-/area/engine/atmos)
-"bAE" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/machinery/light{
- dir = 1
- },
-/obj/machinery/camera{
- c_tag = "Atmospherics Toxins";
- dir = 2;
- network = list("SS13");
- start_active = 1
- },
-/obj/item/device/radio/intercom{
- dir = 0;
- name = "Station Intercom (General)";
- pixel_y = 26
- },
-/turf/open/floor/plasteel/yellow/side{
- dir = 1
- },
-/area/engine/atmos)
-"bAF" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/yellow/side{
- dir = 1
- },
-/area/engine/atmos)
-"bAG" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/turf/open/floor/plasteel/yellow/side{
- dir = 1
- },
-/area/engine/atmos)
-"bAH" = (
-/turf/open/floor/plasteel/yellow/side{
- dir = 5
- },
-/area/engine/atmos)
-"bAI" = (
-/obj/machinery/bookbinder,
-/turf/open/floor/plasteel/black,
-/area/library)
-"bAJ" = (
-/obj/structure/grille,
-/turf/closed/wall/r_wall,
-/area/engine/atmos)
-"bAK" = (
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 2;
- on = 1;
- target_pressure = 101.325
- },
-/obj/machinery/doorButtons/access_button{
- idDoor = "incinerator_airlock_exterior";
- idSelf = "incinerator_access_control";
- layer = 3.1;
- name = "Incinerator airlock control";
- pixel_x = 8;
- pixel_y = -24
- },
-/turf/open/floor/engine,
-/area/science/mixing)
-"bAL" = (
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/engine,
-/area/science/mixing)
-"bAM" = (
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 1;
- on = 1;
- target_pressure = 101.325
- },
-/obj/machinery/doorButtons/access_button{
- idSelf = "incinerator_access_control";
- idDoor = "incinerator_airlock_interior";
- name = "Incinerator airlock control";
- pixel_x = -8;
- pixel_y = 24
- },
-/turf/open/floor/engine,
-/area/science/mixing)
-"bAN" = (
-/obj/machinery/computer/security/telescreen{
- desc = "Used for watching the test chamber.";
- dir = 2;
- layer = 4;
- name = "Test Chamber Telescreen";
- network = list("Toxins");
- pixel_y = -32
- },
-/turf/open/floor/plasteel,
-/area/science/mineral_storeroom)
-"bAO" = (
-/obj/machinery/button/massdriver{
- dir = 2;
- id = "toxinsdriver";
- pixel_y = -24
- },
-/turf/open/floor/plasteel/loadingarea{
- dir = 4
- },
-/area/science/mineral_storeroom)
-"bAP" = (
-/obj/machinery/mass_driver{
- id = "toxinsdriver"
- },
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/machinery/door/window/southleft{
- dir = 8;
- name = "Mass Driver Door";
- req_access_txt = "7"
- },
-/obj/effect/turf_decal/stripes/end{
- dir = 1
- },
-/turf/open/floor/plating{
- icon_state = "plating_warn_end"
- },
-/area/science/mineral_storeroom)
-"bAQ" = (
-/obj/machinery/light{
- dir = 4
- },
-/turf/open/floor/plasteel/brown{
- dir = 4
- },
-/area/science/mineral_storeroom)
-"bAR" = (
-/obj/machinery/mineral/processing_unit_console,
-/turf/closed/wall,
-/area/science/mineral_storeroom)
-"bAS" = (
-/obj/machinery/mineral/processing_unit{
- dir = 1;
- output_dir = 2
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 9
- },
-/turf/open/floor/plating,
-/area/science/mineral_storeroom)
-"bAT" = (
-/obj/machinery/door/window/eastright{
- base_state = "left";
- dir = 8;
- icon_state = "left";
- name = "Arena"
- },
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/chair/stool,
-/turf/open/floor/engine,
-/area/maintenance/department/engine)
-"bAU" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/mob/living/simple_animal/chicken{
- name = "Bloodthirsty Peckins"
- },
-/turf/open/floor/engine,
-/area/maintenance/department/engine)
-"bAV" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/turf/open/floor/engine,
-/area/maintenance/department/engine)
-"bAW" = (
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 1
- },
-/turf/open/floor/engine,
-/area/maintenance/department/engine)
-"bAX" = (
-/obj/item/stack/medical/gauze,
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/turf/open/floor/plasteel/black,
-/area/maintenance/department/engine)
-"bAY" = (
-/obj/structure/light_construct{
- icon_state = "tube-construct-stage1";
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/department/engine)
-"bAZ" = (
-/obj/structure/grille,
-/obj/structure/window/fulltile,
-/turf/open/floor/plating,
-/area/medical/virology)
-"bBa" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass_virology{
- name = "Isolation B";
- req_access_txt = "39"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/freezer,
-/area/medical/virology)
-"bBb" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass_virology{
- name = "Isolation A";
- req_access_txt = "39"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/freezer,
-/area/medical/virology)
-"bBc" = (
-/obj/machinery/disposal/bin,
-/obj/structure/disposalpipe/trunk,
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"bBd" = (
-/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
- dir = 8
- },
-/obj/machinery/computer/pandemic,
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"bBe" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"bBf" = (
-/obj/machinery/smartfridge/chemistry/virology/preloaded,
-/turf/open/floor/plasteel/whitegreen/side{
- icon_state = "whitegreen";
- dir = 4
- },
-/area/medical/virology)
-"bBg" = (
-/obj/structure/bookcase/random/reference,
-/turf/open/floor/plasteel/black,
-/area/library)
-"bBh" = (
-/obj/machinery/button/door{
- id = "patientB";
- name = "Privacy Shutters";
- pixel_y = 25
- },
-/obj/machinery/camera{
- c_tag = "Patient Room B";
- dir = 2
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/freezer,
-/area/medical/medbay/central)
-"bBi" = (
-/obj/machinery/door/airlock/medical{
- name = "Patient Room B";
- req_access_txt = "5"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/freezer,
-/area/medical/medbay/central)
-"bBj" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/effect/landmark/event_spawn,
-/obj/item/device/radio/beacon,
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/central)
-"bBk" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 9
- },
-/turf/open/floor/plasteel/whiteblue/side{
- dir = 4
- },
-/area/medical/medbay/central)
-"bBl" = (
-/obj/structure/bed/roller,
-/obj/machinery/iv_drip{
- density = 0
- },
-/turf/open/floor/plasteel/freezer,
-/area/medical/surgery)
-"bBm" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/freezer,
-/area/medical/surgery)
-"bBn" = (
-/obj/structure/bed,
-/turf/open/floor/plasteel/freezer,
-/area/medical/surgery)
-"bBo" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 1
- },
-/turf/open/floor/plasteel/whiteblue/side{
- dir = 8
- },
-/area/medical/surgery)
-"bBp" = (
-/obj/structure/table/optable,
-/obj/effect/landmark/revenantspawn,
-/turf/open/floor/plasteel/white,
-/area/medical/surgery)
-"bBq" = (
-/obj/machinery/power/apc{
- dir = 4;
- name = "Surgery APC";
- pixel_x = 26
- },
-/obj/structure/cable,
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 1
- },
-/turf/open/floor/plasteel/whiteblue/side{
- dir = 4
- },
-/area/medical/surgery)
-"bBr" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plating,
-/area/maintenance/department/engine)
-"bBs" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/yellow/corner{
- dir = 8
- },
-/area/hallway/primary/aft)
-"bBt" = (
-/obj/machinery/door/firedoor,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"bBu" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/yellow/corner,
-/area/hallway/primary/aft)
-"bBv" = (
-/turf/closed/wall,
-/area/maintenance/department/engine/atmos)
-"bBw" = (
-/obj/machinery/door/firedoor/heavy,
-/obj/machinery/door/airlock/atmos{
- name = "Atmospherics Maintenance";
- req_access_txt = "12;24"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating,
-/area/engine/atmos)
-"bBx" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
-/turf/closed/wall/r_wall,
-/area/engine/atmos)
-"bBy" = (
-/obj/machinery/atmospherics/pipe/simple/supply/visible,
-/turf/closed/wall/r_wall,
-/area/engine/atmos)
-"bBz" = (
-/obj/machinery/atmospherics/pipe/simple/yellow/visible{
- dir = 6
- },
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"bBA" = (
-/obj/structure/bookcase/random/nonfiction,
-/turf/open/floor/plasteel/black,
-/area/library)
-"bBB" = (
-/obj/machinery/atmospherics/pipe/simple/yellow/visible{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"bBC" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/yellow/visible{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"bBD" = (
-/obj/structure/bookcase/random/fiction,
-/turf/open/floor/plasteel/black,
-/area/library)
-"bBE" = (
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 8;
- name = "Mix Outlet Pump";
- on = 0
- },
-/turf/open/floor/plasteel/yellow/side{
- dir = 4
- },
-/area/engine/atmos)
-"bBF" = (
-/obj/structure/grille,
-/obj/machinery/atmospherics/pipe/simple/cyan/visible,
-/obj/machinery/atmospherics/pipe/simple/yellow/visible{
- dir = 4
- },
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/engine/atmos)
-"bBG" = (
-/obj/structure/lattice,
-/obj/machinery/atmospherics/pipe/simple/yellow/visible{
- dir = 4
- },
-/turf/open/space,
-/area/space)
-"bBH" = (
-/obj/machinery/atmospherics/pipe/simple{
- dir = 4
- },
-/obj/structure/grille,
-/obj/machinery/meter,
-/turf/closed/wall/r_wall,
-/area/engine/atmos)
-"bBI" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{
- dir = 8;
- frequency = 1441;
- id_tag = "mix_in";
- name = "distro out"
- },
-/turf/open/floor/engine/vacuum,
-/area/engine/atmos)
-"bBJ" = (
-/obj/machinery/camera{
- c_tag = "Atmospherics Waste Tank"
- },
-/turf/open/floor/engine/vacuum,
-/area/engine/atmos)
-"bBK" = (
-/turf/open/floor/engine/vacuum,
-/area/engine/atmos)
-"bBL" = (
-/obj/machinery/door/airlock/glass{
- autoclose = 0;
- frequency = 1449;
- heat_proof = 1;
- icon_state = "door_locked";
- id_tag = "incinerator_airlock_exterior";
- locked = 1;
- name = "Turbine Exterior Airlock";
- req_access_txt = "0";
- req_one_access_txt = "8;24"
- },
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/engine,
-/area/science/mixing)
-"bBM" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
-/obj/machinery/door/airlock/external{
- cyclelinkeddir = 2;
- req_access_txt = "8";
- req_one_access_txt = "0"
- },
-/turf/open/floor/plating,
-/area/science/mineral_storeroom)
-"bBN" = (
-/obj/structure/window/reinforced{
- dir = 8;
- layer = 2.9
- },
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/science/mineral_storeroom)
-"bBO" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 9
- },
-/turf/closed/wall,
-/area/science/mineral_storeroom)
-"bBP" = (
-/obj/structure/closet/crate{
- icon_state = "crateopen";
- opened = 1
- },
-/obj/item/weapon/storage/bag/ore,
-/obj/item/weapon/storage/bag/ore,
-/turf/open/floor/plasteel,
-/area/science/mineral_storeroom)
-"bBQ" = (
-/turf/open/floor/plasteel/loadingarea{
- dir = 8
- },
-/area/science/mineral_storeroom)
-"bBR" = (
-/obj/machinery/conveyor{
- dir = 8;
- id = "toxmineral"
- },
-/obj/structure/plasticflaps,
-/obj/effect/turf_decal/stripes/line{
- dir = 9
- },
-/turf/open/floor/plating,
-/area/science/mineral_storeroom)
-"bBS" = (
-/obj/machinery/conveyor{
- dir = 10;
- id = "toxmineral"
- },
-/obj/machinery/light/small,
-/obj/effect/turf_decal/stripes/corner{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/science/mineral_storeroom)
-"bBT" = (
-/obj/structure/window/reinforced{
- dir = 8
- },
-/turf/open/floor/engine,
-/area/maintenance/department/engine)
-"bBU" = (
-/obj/effect/landmark/revenantspawn,
-/turf/open/floor/engine,
-/area/maintenance/department/engine)
-"bBV" = (
-/turf/open/floor/engine,
-/area/maintenance/department/engine)
-"bBW" = (
-/obj/structure/window/reinforced{
- dir = 4
- },
-/turf/open/floor/engine,
-/area/maintenance/department/engine)
-"bBX" = (
-/obj/structure/mineral_door/wood{
- name = "The Roosterdome"
- },
-/turf/open/floor/plating,
-/area/maintenance/department/engine)
-"bBY" = (
-/obj/structure/barricade/wooden,
-/obj/structure/girder,
-/turf/open/floor/plating,
-/area/maintenance/department/engine)
-"bBZ" = (
-/obj/item/weapon/bedsheet/medical,
-/obj/structure/bed,
-/obj/effect/decal/cleanable/cobweb,
-/obj/effect/landmark/revenantspawn,
-/turf/open/floor/plasteel/freezer,
-/area/medical/virology)
-"bCa" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/freezer,
-/area/medical/virology)
-"bCb" = (
-/obj/structure/bed,
-/obj/item/weapon/bedsheet/medical,
-/obj/effect/landmark/revenantspawn,
-/turf/open/floor/plasteel/freezer,
-/area/medical/virology)
-"bCc" = (
-/obj/structure/table,
-/obj/item/weapon/reagent_containers/dropper,
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"bCd" = (
-/obj/effect/landmark/start/virologist,
-/obj/structure/chair/office/light{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"bCe" = (
-/obj/structure/table/glass,
-/obj/item/clothing/gloves/color/latex,
-/obj/machinery/requests_console{
- department = "Virology";
- name = "Virology Requests Console";
- pixel_x = 32;
- receive_ore_updates = 1
- },
-/obj/item/weapon/storage/box/monkeycubes{
- layer = 3.1
- },
-/obj/item/stack/sheet/mineral/plasma{
- amount = 1;
- layer = 3
- },
-/turf/open/floor/plasteel/whitegreen/side{
- icon_state = "whitegreen";
- dir = 4
- },
-/area/medical/virology)
-"bCf" = (
-/obj/structure/chair/office/light{
- dir = 8
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 4
- },
-/turf/open/floor/plasteel/freezer,
-/area/medical/medbay/central)
-"bCg" = (
-/obj/structure/shuttle/engine/propulsion/burst,
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/abandoned)
-"bCh" = (
-/obj/structure/grille,
-/obj/structure/window/fulltile,
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "patientB";
- name = "privacy shutters"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/medical/medbay/central)
-"bCi" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
-/turf/open/floor/plasteel/whiteblue/side{
- dir = 8
- },
-/area/medical/medbay/central)
-"bCj" = (
-/obj/structure/window/reinforced{
- dir = 1;
- layer = 2.9
- },
-/turf/open/space,
-/area/space)
-"bCk" = (
-/obj/machinery/light{
- dir = 4
- },
-/turf/open/floor/plasteel/whiteblue/side{
- dir = 4
- },
-/area/medical/medbay/central)
-"bCl" = (
-/obj/machinery/light,
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 1
- },
-/turf/open/floor/plasteel/freezer,
-/area/medical/surgery)
-"bCm" = (
-/obj/structure/table,
-/obj/item/clothing/gloves/color/latex,
-/obj/item/clothing/mask/surgical,
-/obj/item/clothing/suit/apron/surgical,
-/turf/open/floor/plasteel/whiteblue/side{
- dir = 8
- },
-/area/medical/surgery)
-"bCn" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 5
- },
-/turf/open/floor/plasteel/white,
-/area/medical/surgery)
-"bCo" = (
-/obj/effect/landmark/start/medical_doctor,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/medical/surgery)
-"bCp" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 9
- },
-/turf/open/floor/plasteel/white,
-/area/medical/surgery)
-"bCq" = (
-/obj/structure/table,
-/obj/item/weapon/surgical_drapes,
-/turf/open/floor/plasteel/whiteblue/side{
- dir = 4
- },
-/area/medical/surgery)
-"bCr" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/yellow/corner,
-/area/hallway/primary/aft)
-"bCs" = (
-/turf/closed/wall,
-/area/hallway/primary/aft)
-"bCt" = (
-/obj/machinery/vending/cigarette,
-/turf/open/floor/plasteel/yellow/corner{
- dir = 1
- },
-/area/hallway/primary/aft)
-"bCu" = (
-/obj/machinery/vending/cola,
-/turf/open/floor/plasteel/yellow/corner{
- dir = 1
- },
-/area/hallway/primary/aft)
-"bCv" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "applebush";
- layer = 4.1
- },
-/obj/machinery/airalarm{
- pixel_y = 22
- },
-/turf/open/floor/plasteel/yellow/corner{
- dir = 1
- },
-/area/hallway/primary/aft)
-"bCw" = (
-/obj/machinery/atmospherics/components/unary/portables_connector/visible{
- dir = 4
- },
-/obj/machinery/portable_atmospherics/scrubber,
-/turf/open/floor/plasteel/escape{
- dir = 9
- },
-/area/hallway/primary/aft)
-"bCx" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
- dir = 10
- },
-/turf/closed/wall/r_wall,
-/area/engine/atmos)
-"bCy" = (
-/turf/open/floor/plasteel/yellow/side{
- dir = 1
- },
-/area/engine/atmos)
-"bCz" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel/yellow/side{
- dir = 1
- },
-/area/engine/atmos)
-"bCA" = (
-/obj/machinery/light{
- dir = 1
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 8
- },
-/turf/open/floor/plasteel/yellow/side{
- dir = 1
- },
-/area/engine/atmos)
-"bCB" = (
-/obj/machinery/computer/atmos_control,
-/turf/open/floor/plasteel/yellow/side{
- dir = 1
- },
-/area/engine/atmos)
-"bCC" = (
-/obj/machinery/computer/atmos_alert,
-/turf/open/floor/plasteel/yellow/side{
- dir = 1
- },
-/area/engine/atmos)
-"bCD" = (
-/obj/machinery/meter{
- frequency = 1441;
- id_tag = "waste_meter";
- name = "Waste Loop"
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{
- dir = 8
- },
-/turf/open/floor/plasteel/yellow/side{
- dir = 1
- },
-/area/engine/atmos)
-"bCE" = (
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 8;
- name = "Distro to Waste";
- on = 0
- },
-/obj/machinery/light{
- dir = 1
- },
-/turf/open/floor/plasteel/yellow/side{
- dir = 1
- },
-/area/engine/atmos)
-"bCF" = (
-/obj/machinery/meter{
- frequency = 1441;
- id_tag = "distro_meter";
- name = "Distribution Loop"
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/visible,
-/turf/open/floor/plasteel/yellow/side{
- dir = 1
- },
-/area/engine/atmos)
-"bCG" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/visible{
- dir = 1
- },
-/turf/open/floor/plasteel/yellow/side{
- dir = 1
- },
-/area/engine/atmos)
-"bCH" = (
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 8;
- name = "Mix to Distro";
- on = 0
- },
-/turf/open/floor/plasteel/yellow/side{
- dir = 1
- },
-/area/engine/atmos)
-"bCI" = (
-/obj/machinery/atmospherics/pipe/manifold/yellow/visible{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"bCJ" = (
-/obj/structure/window/reinforced{
- dir = 1;
- layer = 2.9
- },
-/obj/structure/window/reinforced{
- dir = 4
- },
-/turf/open/space,
-/area/space)
-"bCK" = (
-/obj/machinery/door/poddoor{
- id = "chapelgun";
- name = "mass driver door"
- },
-/turf/open/floor/plating,
-/area/chapel/main/monastery)
-"bCL" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"bCM" = (
-/obj/machinery/atmospherics/pipe/simple/green/visible{
- dir = 6
- },
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"bCN" = (
-/obj/structure/window/reinforced{
- dir = 1;
- layer = 2.9
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/turf/open/space,
-/area/space)
-"bCO" = (
-/obj/machinery/computer/atmos_control/tank{
- frequency = 1441;
- input_tag = "mix_in";
- name = "Gas Mix Tank Control";
- output_tag = "mix_in";
- sensors = list("mix_sensor" = "Tank")
- },
-/turf/open/floor/plasteel/yellow/side{
- dir = 4
- },
-/area/engine/atmos)
-"bCP" = (
-/obj/structure/grille,
-/obj/machinery/atmospherics/pipe/simple/cyan/visible,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/engine/atmos)
-"bCQ" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating/airless,
-/area/engine/atmos)
-"bCR" = (
-/obj/machinery/air_sensor{
- frequency = 1441;
- id_tag = "mix_sensor"
- },
-/turf/open/floor/engine/vacuum,
-/area/engine/atmos)
-"bCS" = (
-/obj/machinery/light/small{
- dir = 4
- },
-/turf/open/floor/engine/vacuum,
-/area/engine/atmos)
-"bCT" = (
-/obj/machinery/door/poddoor{
- id = "mixvent";
- name = "Starboard Vent"
- },
-/turf/open/floor/engine/vacuum,
-/area/science/mixing)
-"bCU" = (
-/obj/machinery/atmospherics/components/unary/outlet_injector/on{
- dir = 1;
- frequency = 1441;
- id = "inc_in"
- },
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
- icon_state = "space";
- layer = 4;
- name = "EXTERNAL AIRLOCK";
- pixel_y = -32
- },
-/turf/open/floor/engine/vacuum,
-/area/science/mixing)
-"bCV" = (
-/obj/machinery/igniter{
- icon_state = "igniter0";
- id = "Incinerator";
- luminosity = 2;
- on = 0
- },
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/engine/vacuum,
-/area/science/mixing)
-"bCW" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{
- dir = 1
- },
-/turf/open/floor/engine/vacuum,
-/area/science/mixing)
-"bCX" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
-/obj/machinery/light/small{
- dir = 8
- },
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
- icon_state = "space";
- layer = 4;
- name = "EXTERNAL AIRLOCK";
- pixel_x = -32
- },
-/turf/open/floor/plating,
-/area/science/mineral_storeroom)
-"bCY" = (
-/obj/structure/closet/emcloset{
- anchored = 1;
- desc = "It's a storage unit for emergency breath masks and O2 tanks, and is securely bolted in place.";
- name = "anchored emergency closet"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/science/mineral_storeroom)
-"bCZ" = (
-/obj/machinery/door/poddoor{
- id = "toxinsdriver";
- name = "toxins launcher bay door"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/science/mineral_storeroom)
-"bDa" = (
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/engine,
-/area/maintenance/department/engine)
-"bDb" = (
-/obj/item/stack/spacecash/c10,
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/turf/open/floor/plasteel/black,
-/area/maintenance/department/engine)
-"bDc" = (
-/obj/machinery/atmospherics/components/unary/vent_pump,
-/turf/open/floor/plasteel/freezer,
-/area/medical/virology)
-"bDd" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 1
- },
-/turf/open/floor/plasteel/freezer,
-/area/medical/virology)
-"bDe" = (
-/obj/structure/table,
-/obj/structure/disposalpipe/segment,
-/obj/structure/table,
-/obj/item/clothing/gloves/color/latex,
-/obj/item/clothing/glasses/hud/health,
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"bDf" = (
-/turf/open/floor/plasteel/whitegreen/corner,
-/area/medical/virology)
-"bDg" = (
-/obj/structure/table/glass,
-/obj/item/weapon/storage/box/beakers{
- pixel_x = 4;
- pixel_y = 4
- },
-/obj/item/weapon/storage/box/syringes,
-/obj/structure/reagent_dispensers/virusfood{
- density = 0;
- pixel_x = 32
- },
-/obj/item/weapon/reagent_containers/spray/cleaner,
-/turf/open/floor/plasteel/whitegreen/side{
- icon_state = "whitegreen";
- dir = 6
- },
-/area/medical/virology)
-"bDh" = (
-/obj/machinery/vending/cigarette,
-/turf/open/floor/plasteel/whiteblue/side{
- dir = 10
- },
-/area/medical/medbay/central)
-"bDi" = (
-/obj/machinery/light,
-/obj/item/weapon/soap/nanotrasen,
-/obj/item/clothing/neck/stethoscope,
-/obj/item/weapon/gun/syringe,
-/obj/structure/table/glass,
-/turf/open/floor/plasteel/whiteblue/side,
-/area/medical/medbay/central)
-"bDj" = (
-/obj/structure/closet/l3closet,
-/turf/open/floor/plasteel/whiteblue/side{
- dir = 6
- },
-/area/medical/medbay/central)
-"bDk" = (
-/obj/structure/table,
-/obj/item/weapon/hemostat,
-/obj/item/stack/medical/gauze,
-/turf/open/floor/plasteel/whiteblue,
-/area/medical/surgery)
-"bDl" = (
-/obj/structure/table,
-/obj/item/weapon/surgicaldrill,
-/turf/open/floor/plasteel/whiteblue,
-/area/medical/surgery)
-"bDm" = (
-/obj/structure/table,
-/obj/item/weapon/scalpel{
- pixel_y = 12
- },
-/obj/item/weapon/circular_saw,
-/obj/machinery/light,
-/turf/open/floor/plasteel/whiteblue,
-/area/medical/surgery)
-"bDn" = (
-/obj/structure/table,
-/obj/item/weapon/cautery{
- pixel_x = 4
- },
-/obj/item/weapon/razor{
- pixel_y = 5
- },
-/turf/open/floor/plasteel/whiteblue,
-/area/medical/surgery)
-"bDo" = (
-/obj/structure/table,
-/obj/item/weapon/retractor,
-/turf/open/floor/plasteel/whiteblue,
-/area/medical/surgery)
-"bDp" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"bDq" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"bDr" = (
-/obj/machinery/camera{
- c_tag = "Aft Primary Hallway Atmospherics";
- dir = 2;
- network = list("SS13");
- start_active = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/item/device/radio/intercom{
- dir = 8;
- freerange = 1;
- name = "Station Intercom (Telecomms)";
- pixel_y = 26
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"bDs" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 10
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"bDt" = (
-/obj/machinery/atmospherics/components/unary/portables_connector/visible{
- dir = 4
- },
-/obj/machinery/portable_atmospherics/scrubber,
-/turf/open/floor/plasteel/escape{
- dir = 10
- },
-/area/hallway/primary/aft)
-"bDu" = (
-/obj/machinery/meter,
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible,
-/turf/closed/wall/r_wall,
-/area/engine/atmos)
-"bDv" = (
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 4;
- name = "External to Filter";
- on = 1
- },
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"bDw" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"bDx" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"bDy" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"bDz" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"bDA" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 1;
- name = "Air to Distro";
- on = 1
- },
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"bDB" = (
-/obj/machinery/atmospherics/pipe/simple/yellow/visible,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"bDC" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 6
- },
-/turf/closed/wall,
-/area/maintenance/department/chapel/monastery)
-"bDD" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/closed/wall,
-/area/maintenance/department/chapel/monastery)
-"bDE" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"bDF" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 9
- },
-/turf/closed/wall,
-/area/maintenance/department/chapel/monastery)
-"bDG" = (
-/obj/machinery/atmospherics/pipe/manifold/green/visible{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"bDH" = (
-/obj/machinery/atmospherics/pipe/simple/green/visible{
- dir = 4
- },
-/turf/open/floor/plasteel/yellow/side{
- dir = 4
- },
-/area/engine/atmos)
-"bDI" = (
-/obj/structure/grille,
-/obj/machinery/atmospherics/pipe/simple/cyan/visible,
-/obj/machinery/atmospherics/pipe/simple/green/visible{
- dir = 4
- },
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/atmospherics/pipe/simple/green/visible{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/engine/atmos)
-"bDJ" = (
-/obj/structure/lattice,
-/obj/machinery/atmospherics/pipe/simple/green/visible{
- dir = 4
- },
-/turf/open/space,
-/area/space)
-"bDK" = (
-/obj/machinery/atmospherics/components/unary/outlet_injector/on{
- dir = 8;
- frequency = 1441;
- id = "mix_in";
- pixel_y = 1
- },
-/turf/open/floor/engine/vacuum,
-/area/engine/atmos)
-"bDL" = (
-/obj/structure/cable/yellow,
-/obj/structure/cable/yellow{
- d2 = 2;
- icon_state = "0-2"
- },
-/obj/machinery/camera{
- c_tag = "Turbine Chamber";
- dir = 4;
- network = list("Turbine")
- },
-/obj/machinery/power/compressor{
- comp_id = "incineratorturbine";
- dir = 1;
- luminosity = 2
- },
-/turf/open/floor/engine/vacuum,
-/area/science/mixing)
-"bDM" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
-/turf/open/floor/plating,
-/area/science/mineral_storeroom)
-"bDN" = (
-/obj/item/stack/medical/bruise_pack,
-/turf/open/floor/plating,
-/area/maintenance/department/engine)
-"bDO" = (
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/turf/open/floor/engine,
-/area/maintenance/department/engine)
-"bDP" = (
-/obj/structure/window/reinforced,
-/turf/open/floor/engine,
-/area/maintenance/department/engine)
-"bDQ" = (
-/obj/structure/window/reinforced,
-/mob/living/simple_animal/chicken{
- name = "Killer Cluck"
- },
-/turf/open/floor/engine,
-/area/maintenance/department/engine)
-"bDR" = (
-/obj/machinery/door/window/eastright{
- base_state = "left";
- icon_state = "left";
- name = "Arena"
- },
-/obj/structure/window/reinforced,
-/obj/structure/chair/stool,
-/turf/open/floor/engine,
-/area/maintenance/department/engine)
-"bDS" = (
-/obj/structure/grille/broken,
-/turf/open/floor/plating,
-/area/maintenance/department/engine)
-"bDT" = (
-/obj/structure/table/glass,
-/obj/item/weapon/reagent_containers/dropper,
-/obj/item/weapon/reagent_containers/syringe,
-/obj/item/weapon/reagent_containers/glass/beaker,
-/obj/machinery/light/small,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plasteel/freezer,
-/area/medical/virology)
-"bDU" = (
-/obj/structure/table/glass,
-/obj/item/weapon/folder/white{
- pixel_y = 4
- },
-/obj/item/weapon/pen/red,
-/turf/open/floor/plasteel/freezer,
-/area/medical/virology)
-"bDV" = (
-/obj/structure/table/glass,
-/obj/item/weapon/folder/white{
- pixel_y = 4
- },
-/obj/item/weapon/pen/red,
-/obj/machinery/light/small,
-/turf/open/floor/plasteel/freezer,
-/area/medical/virology)
-"bDW" = (
-/obj/structure/table/glass,
-/obj/item/weapon/reagent_containers/dropper,
-/obj/item/weapon/reagent_containers/syringe,
-/obj/item/weapon/reagent_containers/glass/beaker,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plasteel/freezer,
-/area/medical/virology)
-"bDX" = (
-/obj/structure/table,
-/obj/structure/disposalpipe/segment,
-/obj/machinery/reagentgrinder,
-/turf/open/floor/plasteel/whitegreen/side,
-/area/medical/virology)
-"bDY" = (
-/obj/machinery/light,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/obj/structure/table,
-/obj/item/weapon/paper_bin{
- layer = 2.9
- },
-/obj/item/weapon/pen/red,
-/turf/open/floor/plasteel/whitegreen/side,
-/area/medical/virology)
-"bDZ" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21"
- },
-/turf/open/floor/plasteel/whitegreen/side{
- icon_state = "whitegreen";
- dir = 6
- },
-/area/medical/virology)
-"bEa" = (
-/obj/structure/closet/emcloset,
-/turf/open/floor/plating,
-/area/maintenance/department/engine)
-"bEb" = (
-/obj/structure/closet/firecloset,
-/obj/machinery/light/small{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/maintenance/department/engine)
-"bEc" = (
-/obj/structure/chair,
-/turf/open/floor/plating,
-/area/maintenance/department/engine)
-"bEd" = (
-/obj/machinery/light/small{
- dir = 1
- },
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
- },
-/area/maintenance/department/engine)
-"bEe" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 6
- },
-/turf/open/floor/plating,
-/area/maintenance/department/engine)
-"bEf" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/machinery/door/airlock/maintenance{
- req_access_txt = "12"
- },
-/turf/open/floor/plating,
-/area/maintenance/department/engine)
-"bEg" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/yellow/corner{
- dir = 8
- },
-/area/hallway/primary/aft)
-"bEh" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"bEi" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"bEj" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"bEk" = (
-/obj/machinery/atmospherics/components/unary/portables_connector/visible{
- dir = 4
- },
-/obj/machinery/portable_atmospherics/pump,
-/turf/open/floor/plasteel/arrival{
- icon_state = "arrival";
- dir = 9
- },
-/area/hallway/primary/aft)
-"bEl" = (
-/obj/machinery/atmospherics/pipe/manifold/cyan/visible{
- dir = 1
- },
-/obj/machinery/meter,
-/turf/closed/wall/r_wall,
-/area/engine/atmos)
-"bEm" = (
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 8;
- name = "Air to External";
- on = 1
- },
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"bEn" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/visible{
- dir = 4
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"bEo" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/visible{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"bEp" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/visible{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"bEq" = (
-/obj/machinery/atmospherics/pipe/manifold/cyan/visible,
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"bEr" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/visible{
- dir = 4
- },
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 0;
- name = "Mix to Port";
- on = 0
- },
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"bEs" = (
-/obj/structure/chair/wood/normal{
- dir = 1
- },
-/turf/open/floor/plasteel/black,
-/area/library)
-"bEt" = (
-/obj/machinery/atmospherics/pipe/manifold/general/visible{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"bEu" = (
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 8;
- name = "Pure to Port"
- },
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"bEv" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/visible{
- dir = 4
- },
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 1;
- name = "Unfiltered to Mix";
- on = 1
- },
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"bEw" = (
-/turf/open/floor/plasteel/yellow/side{
- dir = 4
- },
-/area/engine/atmos)
-"bEx" = (
-/obj/structure/cable/yellow,
-/obj/machinery/power/turbine{
- luminosity = 2
- },
-/turf/open/floor/engine/vacuum,
-/area/science/mixing)
-"bEy" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
-/obj/machinery/door/airlock/external{
- cyclelinkeddir = 1;
- req_access_txt = "8";
- req_one_access_txt = "0"
- },
-/turf/open/floor/plating,
-/area/science/mineral_storeroom)
-"bEz" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 5
- },
-/turf/open/floor/carpet,
-/area/library)
-"bEA" = (
-/obj/structure/chair/comfy/black{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/maintenance/department/engine)
-"bEB" = (
-/obj/structure/chair/stool,
-/turf/open/floor/plating,
-/area/maintenance/department/engine)
-"bEC" = (
-/obj/structure/grille,
-/turf/open/floor/plating,
-/area/maintenance/department/engine)
-"bED" = (
-/obj/structure/disposalpipe/segment,
-/turf/closed/wall/r_wall,
-/area/medical/virology)
-"bEE" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/turf/open/floor/plating,
-/area/maintenance/department/engine)
-"bEF" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/department/engine)
-"bEG" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/landmark/blobstart,
-/turf/open/floor/plating,
-/area/maintenance/department/engine)
-"bEH" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 6
- },
-/turf/open/floor/plating,
-/area/maintenance/department/engine)
-"bEI" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 9
- },
-/turf/open/floor/plating,
-/area/maintenance/department/engine)
-"bEJ" = (
-/obj/structure/chair/stool,
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"bEK" = (
-/obj/machinery/atmospherics/components/unary/portables_connector/visible{
- dir = 4
- },
-/turf/open/floor/plasteel/arrival{
- dir = 10
- },
-/area/hallway/primary/aft)
-"bEL" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/visible{
- dir = 9
- },
-/turf/closed/wall/r_wall,
-/area/engine/atmos)
-"bEM" = (
-/turf/open/floor/plasteel/yellow/side,
-/area/engine/atmos)
-"bEN" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel/yellow/side,
-/area/engine/atmos)
-"bEO" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/yellow/side,
-/area/engine/atmos)
-"bEP" = (
-/obj/machinery/space_heater,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/camera{
- c_tag = "Atmospherics Monitoring";
- dir = 1;
- network = list("SS13")
- },
-/turf/open/floor/plasteel/yellow/side,
-/area/engine/atmos)
-"bEQ" = (
-/obj/machinery/space_heater,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/yellow/side,
-/area/engine/atmos)
-"bER" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"bES" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 10
- },
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"bET" = (
-/obj/structure/table,
-/obj/item/clothing/head/welding{
- pixel_x = -3;
- pixel_y = 7
- },
-/obj/item/clothing/head/welding{
- pixel_x = -5;
- pixel_y = 3
- },
-/obj/machinery/light{
- dir = 8
- },
-/obj/item/device/multitool{
- layer = 4
- },
-/turf/open/floor/plasteel/yellow/side,
-/area/engine/atmos)
-"bEU" = (
-/obj/structure/table,
-/obj/item/stack/sheet/glass{
- amount = 50
- },
-/obj/item/weapon/storage/belt/utility,
-/obj/item/device/t_scanner,
-/obj/item/device/t_scanner,
-/obj/item/device/t_scanner,
-/turf/open/floor/plasteel/yellow/side,
-/area/engine/atmos)
-"bEV" = (
-/obj/structure/table,
-/obj/item/stack/sheet/metal{
- amount = 50
- },
-/obj/item/stack/sheet/metal{
- amount = 50;
- pixel_x = 2;
- pixel_y = 2
- },
-/obj/item/stack/sheet/glass{
- layer = 3.1
- },
-/obj/item/stack/rods{
- amount = 50;
- layer = 3.2
- },
-/turf/open/floor/plasteel/yellow/side,
-/area/engine/atmos)
-"bEW" = (
-/obj/machinery/meter,
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"bEX" = (
-/obj/machinery/atmospherics/pipe/manifold/general/visible{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"bEY" = (
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"bEZ" = (
-/obj/machinery/atmospherics/pipe/manifold/yellow/visible{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"bFa" = (
-/obj/machinery/atmospherics/pipe/simple/green/visible,
-/obj/machinery/atmospherics/pipe/simple/yellow/visible{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"bFb" = (
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 8;
- name = "N2O Outlet Pump";
- on = 0
- },
-/turf/open/floor/plasteel/yellow/side{
- dir = 4
- },
-/area/engine/atmos)
-"bFc" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{
- dir = 8;
- frequency = 1441;
- id_tag = "n2o_out";
- name = "n2o out"
- },
-/turf/open/floor/engine/n2o,
-/area/engine/atmos)
-"bFd" = (
-/turf/open/floor/engine/n2o,
-/area/engine/atmos)
-"bFe" = (
-/obj/structure/sign/fire,
-/turf/closed/wall/r_wall,
-/area/science/mixing)
-"bFf" = (
-/obj/machinery/door/poddoor{
- id = "turbinevent";
- name = "Aft Vent"
- },
-/turf/open/floor/engine/vacuum,
-/area/science/mixing)
-"bFg" = (
-/obj/structure/lattice/catwalk,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
-/turf/open/space,
-/area/space)
-"bFh" = (
-/obj/structure/sign/poster/contraband/random{
- pixel_y = -32
- },
-/turf/open/floor/plating,
-/area/maintenance/department/engine)
-"bFi" = (
-/obj/item/trash/chips,
-/obj/effect/decal/cleanable/deadcockroach,
-/turf/open/floor/plating,
-/area/maintenance/department/engine)
-"bFj" = (
-/obj/structure/table,
-/obj/item/weapon/paper,
-/obj/item/weapon/pen,
-/turf/open/floor/plating,
-/area/maintenance/department/engine)
-"bFk" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 5
- },
-/turf/open/floor/plating,
-/area/maintenance/department/engine)
-"bFl" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/maintenance/department/engine)
-"bFm" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/cyan/hidden,
-/turf/open/floor/plating,
-/area/maintenance/department/engine)
-"bFn" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/maintenance/department/engine)
-"bFo" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/department/engine)
-"bFp" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/cyan/hidden,
-/mob/living/simple_animal/mouse/gray,
-/turf/open/floor/plating,
-/area/maintenance/department/engine)
-"bFq" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
- },
-/area/maintenance/department/engine)
-"bFr" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 9
- },
-/turf/open/floor/plating,
-/area/maintenance/department/engine)
-"bFs" = (
-/turf/closed/wall/r_wall,
-/area/engine/gravity_generator)
-"bFt" = (
-/obj/structure/table,
-/obj/item/trash/chips,
-/turf/open/floor/plating,
-/area/maintenance/department/engine)
-"bFu" = (
-/turf/closed/wall,
-/area/storage/tech)
-"bFv" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/closed/wall,
-/area/storage/tech)
-"bFw" = (
-/obj/machinery/light{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/firealarm{
- dir = 8;
- pixel_x = -24
- },
-/turf/open/floor/plasteel/yellow/corner{
- dir = 8
- },
-/area/hallway/primary/aft)
-"bFx" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"bFy" = (
-/obj/structure/table,
-/obj/item/weapon/reagent_containers/food/drinks/soda_cans/lemon_lime,
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"bFz" = (
-/obj/structure/table,
-/obj/item/clothing/gloves/color/fyellow,
-/obj/item/weapon/wrench,
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"bFA" = (
-/obj/structure/table,
-/obj/item/weapon/storage/toolbox/mechanical,
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"bFB" = (
-/obj/machinery/light{
- dir = 4
- },
-/turf/open/floor/plasteel/yellow/corner,
-/area/hallway/primary/aft)
-"bFC" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/engine/atmos)
-"bFD" = (
-/obj/machinery/door/firedoor/heavy,
-/obj/machinery/door/airlock/glass_atmos{
- name = "Atmospherics Monitoring";
- req_access_txt = "24"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"bFE" = (
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 0;
- name = "Waste In";
- on = 1
- },
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"bFF" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"bFG" = (
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 0;
- name = "Air to Port";
- on = 0
- },
-/obj/machinery/light{
- dir = 8
- },
-/obj/structure/extinguisher_cabinet{
- pixel_x = -27
- },
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"bFH" = (
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 0;
- name = "Mix to Port";
- on = 0
- },
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"bFI" = (
-/obj/machinery/atmospherics/pipe/simple/yellow/visible,
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"bFJ" = (
-/obj/machinery/atmospherics/pipe/simple/green/visible,
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"bFK" = (
-/obj/machinery/computer/atmos_control/tank{
- frequency = 1441;
- input_tag = "n2o_in";
- name = "Nitrous Oxide Supply Control";
- output_tag = "n2o_out";
- sensors = list("n2o_sensor" = "Tank")
- },
-/turf/open/floor/plasteel/yellow/side{
- dir = 4
- },
-/area/engine/atmos)
-"bFL" = (
-/obj/machinery/air_sensor{
- frequency = 1441;
- id_tag = "n2o_sensor"
- },
-/turf/open/floor/engine/n2o,
-/area/engine/atmos)
-"bFM" = (
-/obj/machinery/portable_atmospherics/canister/nitrous_oxide,
-/turf/open/floor/engine/n2o,
-/area/engine/atmos)
-"bFN" = (
-/obj/machinery/light/small{
- dir = 4
- },
-/turf/open/floor/engine/n2o,
-/area/engine/atmos)
-"bFO" = (
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plating,
-/area/maintenance/department/engine)
-"bFP" = (
-/obj/structure/closet/emcloset,
-/obj/effect/decal/cleanable/deadcockroach,
-/turf/open/floor/plating,
-/area/maintenance/department/engine)
-"bFQ" = (
-/obj/structure/closet/firecloset,
-/turf/open/floor/plating,
-/area/maintenance/department/engine)
-"bFR" = (
-/obj/structure/rack,
-/obj/item/weapon/book/manual/detective,
-/obj/item/clothing/head/that,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plating,
-/area/maintenance/department/engine)
-"bFS" = (
-/obj/structure/girder,
-/turf/closed/wall,
-/area/maintenance/department/engine)
-"bFT" = (
-/obj/item/trash/raisins,
-/turf/open/floor/plating,
-/area/maintenance/department/engine)
-"bFU" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/turf/open/floor/plating,
-/area/maintenance/department/engine)
-"bFV" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/turf/open/floor/plating,
-/area/maintenance/department/engine)
-"bFW" = (
-/turf/open/floor/plasteel/black,
-/area/engine/gravity_generator)
-"bFX" = (
-/obj/machinery/camera{
- c_tag = "Gravity Generator";
- dir = 2;
- network = list("SS13")
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/line,
-/turf/open/floor/plasteel/black,
-/area/engine/gravity_generator)
-"bFY" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/line,
-/turf/open/floor/plasteel/black,
-/area/engine/gravity_generator)
-"bFZ" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 10
- },
-/obj/effect/turf_decal/stripes/corner{
- dir = 1
- },
-/turf/open/floor/plasteel/black,
-/area/engine/gravity_generator)
-"bGa" = (
-/turf/closed/wall/r_wall,
-/area/storage/tech)
-"bGb" = (
-/obj/structure/table,
-/obj/item/device/flashlight{
- pixel_x = 1;
- pixel_y = 5
- },
-/obj/item/device/flashlight{
- pixel_x = 1;
- pixel_y = 5
- },
-/obj/item/device/assembly/flash/handheld,
-/obj/item/device/assembly/flash/handheld,
-/obj/effect/decal/cleanable/cobweb,
-/obj/structure/extinguisher_cabinet{
- pixel_x = -26
- },
-/turf/open/floor/plasteel/black,
-/area/storage/tech)
-"bGc" = (
-/obj/structure/table,
-/obj/item/device/aicard,
-/obj/item/weapon/aiModule/reset,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/airalarm{
- dir = 2;
- pixel_y = 22
- },
-/turf/open/floor/plasteel/black,
-/area/storage/tech)
-"bGd" = (
-/obj/structure/table,
-/obj/machinery/cell_charger{
- pixel_y = 5
- },
-/obj/item/weapon/stock_parts/cell/high/plus,
-/turf/open/floor/plasteel/black,
-/area/storage/tech)
-"bGe" = (
-/obj/structure/rack{
- dir = 8;
- layer = 2.9
- },
-/obj/item/weapon/circuitboard/computer/pandemic{
- pixel_x = -3;
- pixel_y = 3
- },
-/obj/item/weapon/circuitboard/computer/rdconsole,
-/obj/item/weapon/circuitboard/machine/rdserver{
- pixel_x = 3;
- pixel_y = -3
- },
-/obj/item/weapon/circuitboard/machine/destructive_analyzer,
-/obj/item/weapon/circuitboard/machine/protolathe,
-/obj/item/weapon/circuitboard/computer/aifixer,
-/obj/item/weapon/circuitboard/computer/teleporter,
-/obj/item/weapon/circuitboard/machine/circuit_imprinter,
-/obj/item/weapon/circuitboard/machine/mechfab,
-/obj/structure/sign/poster/official/random{
- pixel_y = 32
- },
-/turf/open/floor/plasteel/black,
-/area/storage/tech)
-"bGf" = (
-/obj/structure/rack{
- dir = 8;
- layer = 2.9
- },
-/obj/item/weapon/circuitboard/computer/mining,
-/obj/item/weapon/circuitboard/machine/autolathe{
- pixel_x = 3;
- pixel_y = -3
- },
-/obj/item/weapon/circuitboard/computer/arcade/battle,
-/obj/machinery/light{
- dir = 1
- },
-/obj/machinery/camera{
- c_tag = "Tech Storage";
- dir = 2;
- network = list("SS13")
- },
-/obj/item/weapon/circuitboard/computer/shuttle/monastery_shuttle,
-/turf/open/floor/plasteel/black,
-/area/storage/tech)
-"bGg" = (
-/obj/structure/rack,
-/obj/item/weapon/circuitboard/machine/telecomms/processor,
-/obj/item/weapon/circuitboard/machine/telecomms/receiver,
-/obj/item/weapon/circuitboard/machine/telecomms/server,
-/obj/item/weapon/circuitboard/machine/telecomms/bus,
-/obj/item/weapon/circuitboard/machine/telecomms/broadcaster,
-/obj/item/weapon/circuitboard/computer/message_monitor{
- pixel_y = -5
- },
-/turf/open/floor/plasteel/black,
-/area/storage/tech)
-"bGh" = (
-/obj/structure/rack,
-/obj/item/weapon/electronics/airalarm,
-/obj/item/weapon/electronics/airlock,
-/obj/item/weapon/electronics/apc,
-/obj/item/weapon/electronics/firealarm,
-/obj/item/weapon/electronics/firelock,
-/obj/item/weapon/electronics/tracker,
-/obj/structure/sign/poster/official/random{
- pixel_y = 32
- },
-/turf/open/floor/plasteel/black,
-/area/storage/tech)
-"bGi" = (
-/obj/machinery/computer/arcade,
-/turf/open/floor/plasteel/black,
-/area/storage/tech)
-"bGj" = (
-/obj/machinery/vending/assist,
-/turf/open/floor/plasteel/black,
-/area/storage/tech)
-"bGk" = (
-/obj/machinery/power/apc{
- name = "Aft Hall APC";
- dir = 8;
- pixel_x = -25;
- pixel_y = 1
- },
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/yellow/corner{
- dir = 8
- },
-/area/hallway/primary/aft)
-"bGl" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/machinery/navbeacon{
- codes_txt = "patrol;next_patrol=Bar2";
- location = "Eng"
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"bGm" = (
-/turf/open/floor/plasteel/yellow/corner,
-/area/hallway/primary/aft)
-"bGn" = (
-/obj/structure/table/reinforced,
-/obj/machinery/door/firedoor/heavy,
-/obj/machinery/door/window/northleft{
- dir = 4;
- icon_state = "left";
- name = "Atmospherics Desk";
- req_access_txt = "24"
- },
-/obj/machinery/door/poddoor/preopen{
- id = "atmos";
- layer = 2.9;
- name = "atmos blast door"
- },
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"bGo" = (
-/obj/structure/chair/office/dark{
- dir = 8
- },
-/obj/effect/landmark/start/atmospheric_technician,
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"bGp" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"bGq" = (
-/obj/structure/tank_dispenser,
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"bGr" = (
-/obj/machinery/pipedispenser,
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"bGs" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"bGt" = (
-/obj/structure/closet/secure_closet/atmospherics,
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"bGu" = (
-/obj/machinery/atmospherics/components/unary/portables_connector/visible{
- dir = 4
- },
-/obj/machinery/portable_atmospherics/canister,
-/obj/effect/turf_decal/bot{
- dir = 2
- },
-/turf/open/floor/plasteel{
- dir = 2
- },
-/area/engine/atmos)
-"bGv" = (
-/obj/machinery/atmospherics/components/unary/portables_connector/visible{
- dir = 8
- },
-/obj/effect/turf_decal/bot{
- dir = 2
- },
-/turf/open/floor/plasteel{
- dir = 2
- },
-/area/engine/atmos)
-"bGw" = (
-/obj/machinery/atmospherics/components/trinary/filter{
- dir = 1;
- filter_type = "n2o";
- on = 1
- },
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"bGx" = (
-/obj/machinery/atmospherics/components/unary/outlet_injector/on{
- dir = 8;
- frequency = 1441;
- id = "n2o_in";
- pixel_y = 1
- },
-/turf/open/floor/engine/n2o,
-/area/engine/atmos)
-"bGy" = (
-/obj/machinery/atmospherics/components/unary/outlet_injector/on{
- dir = 4
- },
-/turf/open/floor/plating/airless,
-/area/space/nearstation)
-"bGz" = (
-/obj/structure/lattice,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
- dir = 9
- },
-/turf/open/space,
-/area/space)
-"bGA" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 8
- },
-/turf/open/floor/plasteel/black,
-/area/library)
-"bGB" = (
-/obj/structure/grille,
-/obj/structure/window/fulltile,
-/turf/open/floor/plating,
-/area/maintenance/department/engine)
-"bGC" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/closed/wall,
-/area/maintenance/department/engine)
-"bGD" = (
-/turf/open/floor/plasteel/vault{
- dir = 1
- },
-/area/engine/gravity_generator)
-"bGE" = (
-/turf/open/floor/plasteel/vault{
- dir = 8
- },
-/area/engine/gravity_generator)
-"bGF" = (
-/turf/open/floor/plasteel/vault{
- dir = 4
- },
-/area/engine/gravity_generator)
-"bGG" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 5
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/floor/plasteel/black,
-/area/engine/gravity_generator)
-"bGH" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/closed/wall/r_wall,
-/area/engine/gravity_generator)
-"bGI" = (
-/obj/structure/closet/radiation,
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 1
- },
-/obj/machinery/airalarm{
- dir = 2;
- pixel_y = 22
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 9
- },
-/turf/open/floor/plasteel,
-/area/engine/gravity_generator)
-"bGJ" = (
-/obj/structure/closet/radiation,
-/obj/machinery/camera{
- c_tag = "Gravity Generator Foyer";
- dir = 2;
- network = list("SS13")
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/item/device/radio/intercom{
- dir = 0;
- name = "Station Intercom (General)";
- pixel_y = 26
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 5
- },
-/turf/open/floor/plasteel,
-/area/engine/gravity_generator)
-"bGK" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/closed/wall/r_wall,
-/area/storage/tech)
-"bGL" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'RADIOACTIVE AREA'";
- icon_state = "radiation";
- name = "RADIOACTIVE AREA";
- pixel_x = -32
- },
-/obj/effect/turf_decal/stripes/corner{
- dir = 1
- },
-/turf/open/floor/plasteel/black,
-/area/storage/tech)
-"bGM" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 4
- },
-/obj/structure/chair/office/dark{
- dir = 1
- },
-/turf/open/floor/plasteel/black,
-/area/storage/tech)
-"bGN" = (
-/turf/open/floor/plasteel/black,
-/area/storage/tech)
-"bGO" = (
-/obj/machinery/light_switch{
- pixel_x = 25
- },
-/turf/open/floor/plasteel/black,
-/area/storage/tech)
-"bGP" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 5
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"bGQ" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"bGR" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"bGS" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 1
- },
-/turf/open/floor/plasteel/yellow/corner,
-/area/hallway/primary/aft)
-"bGT" = (
-/obj/structure/table/reinforced,
-/obj/machinery/door/firedoor/heavy,
-/obj/machinery/door/window/northleft{
- dir = 4;
- icon_state = "left";
- name = "Atmospherics Desk";
- req_access_txt = "24"
- },
-/obj/machinery/door/poddoor/preopen{
- id = "atmos";
- layer = 2.9;
- name = "atmos blast door"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"bGU" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/structure/chair/office/dark{
- dir = 8
- },
-/obj/effect/landmark/start/atmospheric_technician,
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"bGV" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 10
- },
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"bGW" = (
-/obj/structure/rack{
- dir = 8;
- layer = 2.9
- },
-/obj/item/clothing/mask/gas{
- pixel_x = 3;
- pixel_y = 3
- },
-/obj/item/clothing/mask/gas,
-/obj/item/clothing/mask/gas{
- pixel_x = -3;
- pixel_y = -3
- },
-/obj/machinery/requests_console{
- department = "Atmospherics";
- departmentType = 4;
- name = "Atmos RC";
- pixel_x = 30
- },
-/obj/machinery/light{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"bGX" = (
-/obj/machinery/pipedispenser/disposal,
-/obj/machinery/light{
- dir = 8
- },
-/obj/machinery/camera{
- c_tag = "Atmospherics Central";
- dir = 4;
- network = list("SS13")
- },
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"bGY" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"bGZ" = (
-/obj/machinery/suit_storage_unit/atmos,
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"bHa" = (
-/obj/machinery/atmospherics/pipe/manifold/general/visible{
- dir = 4
- },
-/obj/machinery/meter,
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"bHb" = (
-/obj/machinery/holopad,
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"bHc" = (
-/obj/machinery/atmospherics/pipe/manifold/general/visible{
- dir = 8
- },
-/obj/machinery/meter,
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"bHd" = (
-/obj/machinery/light{
- dir = 4
- },
-/turf/open/floor/plasteel/yellow/side{
- dir = 4
- },
-/area/engine/atmos)
-"bHe" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 6
- },
-/obj/item/weapon/wrench,
-/turf/open/floor/plating,
-/area/maintenance/department/engine)
-"bHf" = (
-/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
- dir = 4
- },
-/obj/machinery/meter,
-/turf/open/floor/plating,
-/area/maintenance/department/engine)
-"bHg" = (
-/obj/item/weapon/broken_bottle,
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/open/floor/plating,
-/area/maintenance/department/engine)
-"bHh" = (
-/obj/effect/decal/cleanable/ash,
-/turf/open/floor/plating,
-/area/maintenance/department/engine)
-"bHi" = (
-/obj/structure/closet,
-/obj/item/weapon/restraints/handcuffs/cable,
-/turf/open/floor/plating,
-/area/maintenance/department/engine)
-"bHj" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/engineering{
- name = "Gravity Generator";
- req_access_txt = "11"
- },
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plasteel,
-/area/engine/gravity_generator)
-"bHk" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 1
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/engine/gravity_generator)
-"bHl" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on,
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/engine/gravity_generator)
-"bHm" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/engineering{
- name = "Gravity Generator";
- req_access_txt = "11"
- },
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plasteel,
-/area/storage/tech)
-"bHn" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel/black,
-/area/storage/tech)
-"bHo" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 8
- },
-/turf/open/floor/plasteel/black,
-/area/storage/tech)
-"bHp" = (
-/obj/structure/rack{
- dir = 8;
- layer = 2.9
- },
-/obj/item/weapon/circuitboard/computer/cloning,
-/obj/item/weapon/circuitboard/computer/med_data{
- pixel_x = 3;
- pixel_y = -3
- },
-/obj/item/weapon/circuitboard/machine/clonescanner,
-/obj/item/weapon/circuitboard/machine/clonepod,
-/obj/item/weapon/circuitboard/computer/scan_consolenew,
-/turf/open/floor/plasteel/black,
-/area/storage/tech)
-"bHq" = (
-/obj/structure/rack{
- dir = 8;
- layer = 2.9
- },
-/obj/item/weapon/circuitboard/computer/secure_data{
- pixel_x = -2;
- pixel_y = 2
- },
-/obj/item/weapon/circuitboard/computer/security{
- pixel_x = 1;
- pixel_y = -1
- },
-/turf/open/floor/plasteel/black,
-/area/storage/tech)
-"bHr" = (
-/obj/structure/rack{
- dir = 8;
- layer = 2.9
- },
-/obj/item/weapon/circuitboard/computer/powermonitor{
- pixel_x = -2;
- pixel_y = 2
- },
-/obj/item/weapon/circuitboard/computer/stationalert{
- pixel_x = 1;
- pixel_y = -1
- },
-/obj/item/weapon/circuitboard/computer/atmos_alert{
- pixel_x = 3;
- pixel_y = -3
- },
-/turf/open/floor/plasteel/black,
-/area/storage/tech)
-"bHs" = (
-/obj/machinery/holopad,
-/turf/open/floor/plasteel/black,
-/area/storage/tech)
-"bHt" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on,
-/turf/open/floor/plasteel/black,
-/area/storage/tech)
-"bHu" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 6
- },
-/turf/open/floor/plasteel/black,
-/area/storage/tech)
-"bHv" = (
-/obj/machinery/door/airlock/engineering{
- name = "Tech Storage";
- req_access_txt = "23"
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/black,
-/area/storage/tech)
-"bHw" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/yellow/corner{
- dir = 8
- },
-/area/hallway/primary/aft)
-"bHx" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"bHy" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"bHz" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"bHA" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"bHB" = (
-/obj/structure/plasticflaps{
- opacity = 1
- },
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"bHC" = (
-/obj/machinery/navbeacon{
- codes_txt = "delivery;dir=4";
- freq = 1400;
- location = "Atmospherics"
- },
-/turf/open/floor/plasteel/loadingarea{
- dir = 4
- },
-/area/engine/atmos)
-"bHD" = (
-/obj/structure/disposalpipe/sortjunction{
- dir = 2;
- icon_state = "pipe-j2s";
- sortType = 6
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"bHE" = (
-/obj/machinery/disposal/bin,
-/obj/structure/disposalpipe/trunk{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"bHF" = (
-/obj/machinery/pipedispenser/disposal/transit_tube,
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"bHG" = (
-/obj/machinery/atmospherics/pipe/manifold/general/visible{
- dir = 4
- },
-/obj/item/weapon/wrench,
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"bHH" = (
-/obj/machinery/camera{
- c_tag = "Atmospherics Starboard";
- dir = 8;
- network = list("SS13")
- },
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 8;
- name = "Plasma Outlet Pump";
- on = 0
- },
-/turf/open/floor/plasteel/yellow/side{
- dir = 4
- },
-/area/engine/atmos)
-"bHI" = (
-/obj/structure/grille,
-/obj/machinery/atmospherics/pipe/simple/cyan/visible,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/atmospherics/pipe/simple/yellow/visible{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/engine/atmos)
-"bHJ" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{
- dir = 8;
- frequency = 1441;
- id_tag = "tox_out";
- name = "toxin out"
- },
-/turf/open/floor/engine/plasma,
-/area/engine/atmos)
-"bHK" = (
-/turf/open/floor/engine/plasma,
-/area/engine/atmos)
-"bHL" = (
-/obj/effect/landmark/xeno_spawn,
-/turf/open/floor/engine/plasma,
-/area/engine/atmos)
-"bHM" = (
-/obj/structure/disposalpipe/junction{
- dir = 2;
- icon_state = "pipe-y"
- },
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
- },
-/area/maintenance/department/engine)
-"bHN" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating/airless,
-/area/maintenance/department/engine)
-"bHO" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/chair/stool,
-/turf/open/floor/plating,
-/area/maintenance/department/engine)
-"bHP" = (
-/obj/item/stack/sheet/cardboard{
- amount = 14
- },
-/obj/item/weapon/vending_refill/cola,
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/turf/open/floor/plating,
-/area/maintenance/department/engine)
-"bHQ" = (
-/obj/machinery/door/airlock/atmos{
- name = "Atmospherics Maintenance";
- req_access_txt = "12;24"
- },
-/turf/open/floor/plating,
-/area/maintenance/department/engine)
-"bHR" = (
-/obj/machinery/atmospherics/components/binary/valve,
-/obj/effect/landmark/blobstart,
-/turf/open/floor/plating,
-/area/maintenance/department/engine)
-"bHS" = (
-/obj/machinery/light/small{
- dir = 4
- },
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 1;
- name = "Air Out";
- on = 1
- },
-/turf/open/floor/plating,
-/area/maintenance/department/engine)
-"bHT" = (
-/obj/item/weapon/picket_sign,
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/open/floor/plating,
-/area/maintenance/department/engine)
-"bHU" = (
-/obj/structure/bonfire,
-/turf/open/floor/plating,
-/area/maintenance/department/engine)
-"bHV" = (
-/obj/structure/closet,
-/obj/item/weapon/cigbutt/cigarbutt,
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/open/floor/plating,
-/area/maintenance/department/engine)
-"bHW" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
- },
-/area/maintenance/department/engine)
-"bHX" = (
-/obj/structure/rack,
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/open/floor/plating,
-/area/maintenance/department/engine)
-"bHY" = (
-/obj/machinery/gravity_generator/main/station,
-/turf/open/floor/plasteel/vault{
- dir = 8
- },
-/area/engine/gravity_generator)
-"bHZ" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 6
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/floor/plasteel/black,
-/area/engine/gravity_generator)
-"bIa" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/closed/wall/r_wall,
-/area/engine/gravity_generator)
-"bIb" = (
-/obj/structure/chair/office/light,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 10
- },
-/turf/open/floor/plasteel,
-/area/engine/gravity_generator)
-"bIc" = (
-/obj/machinery/power/terminal,
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
-/obj/effect/turf_decal/stripes/line{
- dir = 6
- },
-/turf/open/floor/plasteel,
-/area/engine/gravity_generator)
-"bId" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/closed/wall/r_wall,
-/area/storage/tech)
-"bIe" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'RADIOACTIVE AREA'";
- icon_state = "radiation";
- name = "RADIOACTIVE AREA";
- pixel_x = -32
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/corner{
- dir = 4
- },
-/turf/open/floor/plasteel/black,
-/area/storage/tech)
-"bIf" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/item/device/radio/beacon,
-/turf/open/floor/plasteel/black,
-/area/storage/tech)
-"bIg" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 1
- },
-/turf/open/floor/plasteel/black,
-/area/storage/tech)
-"bIh" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/black,
-/area/storage/tech)
-"bIi" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
-/turf/open/floor/plasteel/black,
-/area/storage/tech)
-"bIj" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 9
- },
-/turf/open/floor/plasteel/black,
-/area/storage/tech)
-"bIk" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 5
- },
-/turf/open/floor/plasteel/yellow/corner,
-/area/hallway/primary/aft)
-"bIl" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/yellow/corner,
-/area/hallway/primary/aft)
-"bIm" = (
-/obj/machinery/camera{
- c_tag = "Aft Primary Hallway Engineering";
- dir = 1;
- network = list("SS13");
- start_active = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/yellow/corner,
-/area/hallway/primary/aft)
-"bIn" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 10
- },
-/turf/open/floor/plasteel/yellow/corner,
-/area/hallway/primary/aft)
-"bIo" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-02"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/yellow/corner,
-/area/hallway/primary/aft)
-"bIp" = (
-/obj/machinery/door/firedoor/heavy,
-/obj/machinery/door/airlock/glass_atmos{
- name = "Atmospherics Monitoring";
- req_access_txt = "24"
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"bIq" = (
-/obj/machinery/light{
- dir = 8
- },
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 0;
- name = "Port to Filter";
- on = 0
- },
-/obj/structure/extinguisher_cabinet{
- pixel_x = -27
- },
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"bIr" = (
-/obj/machinery/atmospherics/pipe/manifold/general/visible{
- dir = 8
- },
-/obj/structure/chair/stool,
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"bIs" = (
-/obj/machinery/atmospherics/components/unary/thermomachine/heater{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"bIt" = (
-/obj/machinery/computer/atmos_control/tank{
- frequency = 1441;
- input_tag = "tox_in";
- name = "Plasma Supply Control";
- output_tag = "tox_out";
- sensors = list("tox_sensor" = "Tank")
- },
-/turf/open/floor/plasteel/yellow/side{
- dir = 4
- },
-/area/engine/atmos)
-"bIu" = (
-/obj/machinery/air_sensor{
- frequency = 1441;
- id_tag = "tox_sensor"
- },
-/turf/open/floor/engine/plasma,
-/area/engine/atmos)
-"bIv" = (
-/obj/machinery/portable_atmospherics/canister/toxins,
-/turf/open/floor/engine/plasma,
-/area/engine/atmos)
-"bIw" = (
-/obj/machinery/light/small{
- dir = 4
- },
-/turf/open/floor/engine/plasma,
-/area/engine/atmos)
-"bIx" = (
-/obj/structure/table,
-/obj/item/weapon/storage/box/mousetraps,
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/open/floor/plating,
-/area/maintenance/department/engine)
-"bIy" = (
-/obj/structure/table,
-/obj/item/stack/cable_coil,
-/obj/item/weapon/extinguisher,
-/turf/open/floor/plating,
-/area/maintenance/department/engine)
-"bIz" = (
-/obj/machinery/atmospherics/components/unary/portables_connector/visible{
- dir = 1;
- name = "Connector Port (Air Supply)"
- },
-/obj/machinery/portable_atmospherics/canister/nitrous_oxide,
-/turf/open/floor/plating,
-/area/maintenance/department/engine)
-"bIA" = (
-/obj/machinery/atmospherics/components/unary/tank/air{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/maintenance/department/engine)
-"bIB" = (
-/obj/structure/grille/broken,
-/obj/structure/piano,
-/turf/open/floor/plating,
-/area/maintenance/department/engine)
-"bIC" = (
-/obj/item/weapon/reagent_containers/food/snacks/beans,
-/turf/open/floor/plating,
-/area/maintenance/department/engine)
-"bID" = (
-/obj/structure/closet,
-/obj/item/weapon/shard,
-/obj/item/stack/spacecash/c10,
-/turf/open/floor/plating,
-/area/maintenance/department/engine)
-"bIE" = (
-/obj/machinery/space_heater,
-/turf/open/floor/plating,
-/area/maintenance/department/engine)
-"bIF" = (
-/obj/machinery/light,
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plasteel/black,
-/area/engine/gravity_generator)
-"bIG" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plasteel/black,
-/area/engine/gravity_generator)
-"bIH" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 9
- },
-/obj/effect/turf_decal/stripes/corner{
- dir = 4
- },
-/turf/open/floor/plasteel/black,
-/area/engine/gravity_generator)
-"bII" = (
-/obj/machinery/power/apc{
- dir = 8;
- name = "Gravity Generator APC";
- pixel_x = -25;
- pixel_y = 1
- },
-/obj/structure/table,
-/obj/item/weapon/paper/guides/jobs/engi/gravity_gen{
- layer = 3
- },
-/obj/item/weapon/pen/blue,
-/obj/machinery/power/terminal{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/obj/machinery/light,
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/engine/gravity_generator)
-"bIJ" = (
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/machinery/power/smes{
- charge = 5e+006
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/engine/gravity_generator)
-"bIK" = (
-/obj/machinery/suit_storage_unit/standard_unit,
-/turf/open/floor/plasteel/black,
-/area/storage/tech)
-"bIL" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/black,
-/area/storage/tech)
-"bIM" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/closet/crate/engineering/electrical,
-/obj/item/stack/cable_coil,
-/obj/item/stack/cable_coil,
-/obj/item/weapon/electronics/apc,
-/obj/item/weapon/electronics/airalarm,
-/obj/item/weapon/electronics/airlock,
-/turf/open/floor/plasteel/black,
-/area/storage/tech)
-"bIN" = (
-/obj/structure/rack,
-/obj/item/weapon/stock_parts/subspace/filter,
-/obj/item/weapon/stock_parts/subspace/filter,
-/obj/item/weapon/stock_parts/subspace/treatment,
-/obj/item/weapon/stock_parts/subspace/treatment,
-/obj/item/weapon/stock_parts/subspace/transmitter,
-/obj/item/weapon/stock_parts/subspace/transmitter,
-/turf/open/floor/plasteel/black,
-/area/storage/tech)
-"bIO" = (
-/obj/structure/rack,
-/obj/item/weapon/stock_parts/subspace/ansible,
-/obj/item/weapon/stock_parts/subspace/ansible,
-/obj/item/weapon/stock_parts/subspace/crystal,
-/obj/item/weapon/stock_parts/subspace/crystal,
-/obj/machinery/light,
-/turf/open/floor/plasteel/black,
-/area/storage/tech)
-"bIP" = (
-/obj/structure/rack,
-/obj/item/weapon/stock_parts/subspace/amplifier,
-/obj/item/weapon/stock_parts/subspace/amplifier,
-/obj/item/weapon/stock_parts/subspace/analyzer,
-/obj/item/weapon/stock_parts/subspace/analyzer,
-/turf/open/floor/plasteel/black,
-/area/storage/tech)
-"bIQ" = (
-/obj/structure/rack{
- dir = 8;
- layer = 2.9
- },
-/obj/item/weapon/storage/toolbox/electrical{
- pixel_x = 2;
- pixel_y = 4
- },
-/obj/item/clothing/gloves/color/yellow,
-/obj/item/device/t_scanner,
-/turf/open/floor/plasteel/black,
-/area/storage/tech)
-"bIR" = (
-/obj/structure/rack{
- dir = 8;
- layer = 2.9
- },
-/obj/item/weapon/storage/toolbox/electrical{
- pixel_x = 2;
- pixel_y = 4
- },
-/obj/item/device/multitool,
-/obj/item/clothing/glasses/meson,
-/obj/machinery/requests_console{
- department = "Tech storage";
- pixel_y = -32
- },
-/turf/open/floor/plasteel/black,
-/area/storage/tech)
-"bIS" = (
-/obj/structure/closet/crate{
- name = "solar pack crate"
- },
-/obj/item/solar_assembly,
-/obj/item/solar_assembly,
-/obj/item/solar_assembly,
-/obj/item/solar_assembly,
-/obj/item/solar_assembly,
-/obj/item/solar_assembly,
-/obj/item/solar_assembly,
-/obj/item/solar_assembly,
-/obj/item/solar_assembly,
-/obj/item/solar_assembly,
-/obj/item/solar_assembly,
-/obj/item/solar_assembly,
-/obj/item/solar_assembly,
-/obj/item/weapon/circuitboard/computer/solar_control,
-/obj/item/weapon/electronics/tracker,
-/obj/item/weapon/paper/guides/jobs/engi/solars,
-/obj/machinery/power/apc{
- dir = 2;
- name = "Tech Storage APC";
- pixel_y = -24
- },
-/obj/structure/cable,
-/turf/open/floor/plasteel/black,
-/area/storage/tech)
-"bIT" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/security/checkpoint/engineering)
-"bIU" = (
-/turf/closed/wall,
-/area/security/checkpoint/engineering)
-"bIV" = (
-/turf/closed/wall,
-/area/engine/engineering)
-"bIW" = (
-/obj/machinery/door/airlock/engineering{
- cyclelinkeddir = 2;
- name = "Engineering";
- req_one_access_txt = "10;24"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"bIX" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/closed/wall,
-/area/engine/engineering)
-"bIY" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
- dir = 6
- },
-/turf/open/floor/plasteel/yellow/side{
- dir = 1
- },
-/area/engine/atmos)
-"bIZ" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
- dir = 4
- },
-/turf/open/floor/plasteel/yellow/side{
- dir = 1
- },
-/area/engine/atmos)
-"bJa" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
- dir = 4
- },
-/obj/structure/sign/atmosplaque{
- pixel_y = 32
- },
-/obj/machinery/light{
- dir = 1
- },
-/obj/machinery/camera{
- c_tag = "Atmospherics Entrance";
- dir = 2;
- network = list("SS13")
- },
-/turf/open/floor/plasteel/yellow/side{
- dir = 1
- },
-/area/engine/atmos)
-"bJb" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
- dir = 4
- },
-/obj/machinery/firealarm{
- dir = 1;
- pixel_y = 29
- },
-/turf/open/floor/plasteel/yellow/side{
- dir = 1
- },
-/area/engine/atmos)
-"bJc" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible,
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"bJd" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
- dir = 4
- },
-/obj/item/device/radio/intercom{
- dir = 0;
- name = "Station Intercom (General)";
- pixel_x = 30;
- pixel_y = 26
- },
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"bJe" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
- dir = 4
- },
-/obj/structure/closet/wardrobe/atmospherics_yellow,
-/turf/open/floor/plasteel/yellow/side{
- dir = 1
- },
-/area/engine/atmos)
-"bJf" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
- dir = 4
- },
-/obj/structure/reagent_dispensers/watertank/high,
-/obj/structure/fireaxecabinet{
- pixel_y = 32
- },
-/turf/open/floor/plasteel/yellow/side{
- dir = 1
- },
-/area/engine/atmos)
-"bJg" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
- dir = 4
- },
-/obj/structure/reagent_dispensers/fueltank,
-/obj/machinery/camera{
- c_tag = "Atmospherics Mixing";
- dir = 2;
- network = list("SS13")
- },
-/turf/open/floor/plasteel/yellow/side{
- dir = 1
- },
-/area/engine/atmos)
-"bJh" = (
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 8;
- name = "Port to Filter";
- on = 0
- },
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"bJi" = (
-/obj/machinery/atmospherics/pipe/manifold/general/visible,
-/obj/item/weapon/cigbutt,
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"bJj" = (
-/obj/machinery/atmospherics/components/unary/thermomachine/freezer{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"bJk" = (
-/obj/machinery/atmospherics/components/trinary/filter{
- dir = 1;
- filter_type = "plasma";
- on = 1
- },
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"bJl" = (
-/obj/structure/grille,
-/obj/machinery/atmospherics/pipe/simple/cyan/visible,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/atmospherics/pipe/simple/green/visible{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/engine/atmos)
-"bJm" = (
-/obj/machinery/atmospherics/components/unary/outlet_injector/on{
- dir = 8;
- frequency = 1441;
- id = "tox_in";
- pixel_y = 1
- },
-/turf/open/floor/engine/plasma,
-/area/engine/atmos)
-"bJn" = (
-/obj/item/weapon/cigbutt/cigarbutt,
-/turf/open/floor/plating,
-/area/maintenance/department/engine)
-"bJo" = (
-/obj/structure/sign/securearea,
-/turf/closed/wall/r_wall,
-/area/storage/tech)
-"bJp" = (
-/obj/machinery/door/airlock/highsecurity{
- name = "Secure Tech Storage";
- req_access_txt = "19;23"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/black,
-/area/storage/tech)
-"bJq" = (
-/obj/structure/sign/securearea,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/closed/wall/r_wall,
-/area/storage/tech)
-"bJr" = (
-/obj/structure/table,
-/obj/item/weapon/book/manual/wiki/security_space_law,
-/obj/machinery/camera{
- c_tag = "Engineering Security Post";
- dir = 4;
- network = list("SS13")
- },
-/obj/machinery/airalarm{
- dir = 4;
- pixel_x = -23
- },
-/turf/open/floor/plasteel/red/side{
- dir = 9
- },
-/area/security/checkpoint/engineering)
-"bJs" = (
-/obj/machinery/computer/secure_data,
-/turf/open/floor/plasteel/red/side{
- dir = 1
- },
-/area/security/checkpoint/engineering)
-"bJt" = (
-/obj/machinery/computer/secure_data,
-/turf/open/floor/plasteel/red/side{
- dir = 5
- },
-/area/security/checkpoint/engineering)
-"bJu" = (
-/obj/machinery/light{
- dir = 1
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/on,
-/obj/machinery/firealarm{
- dir = 1;
- pixel_y = 28
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 9
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"bJv" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"bJw" = (
-/obj/machinery/light{
- dir = 1
- },
-/obj/machinery/camera{
- c_tag = "Engineering Access"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 6
- },
-/obj/item/device/radio/intercom{
- dir = 0;
- name = "Station Intercom (General)";
- pixel_y = 24
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 5
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"bJx" = (
-/obj/machinery/door/poddoor/preopen{
- id = "atmos";
- name = "atmos blast door"
- },
-/obj/machinery/door/firedoor/heavy,
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 4
- },
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"bJy" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"bJz" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 6
- },
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"bJA" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/visible{
- dir = 6
- },
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"bJB" = (
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 4;
- name = "N2 to Pure";
- on = 0
- },
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"bJC" = (
-/obj/machinery/atmospherics/pipe/manifold/yellow/visible{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"bJD" = (
-/obj/machinery/atmospherics/components/unary/outlet_injector/on{
- dir = 1
- },
-/turf/open/floor/plating/airless,
-/area/space)
-"bJE" = (
-/obj/machinery/light/small{
- dir = 8
- },
-/obj/machinery/libraryscanner,
-/turf/open/floor/plasteel/black,
-/area/library)
-"bJF" = (
-/obj/machinery/newscaster{
- pixel_x = -32;
- pixel_y = -32
- },
-/turf/open/floor/carpet,
-/area/library)
-"bJG" = (
-/obj/structure/closet/crate/bin,
-/turf/open/floor/plasteel/black,
-/area/library)
-"bJH" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/visible{
- dir = 4
- },
-/turf/open/floor/plasteel/yellow/side{
- dir = 4
- },
-/area/engine/atmos)
-"bJI" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/atmospherics/pipe/simple/cyan/visible,
-/turf/open/floor/plating,
-/area/engine/atmos)
-"bJJ" = (
-/obj/docking_port/stationary{
- dheight = 9;
- dir = 2;
- dwidth = 5;
- height = 24;
- id = "syndicate_southmaint";
- name = "south maintenance airlock";
- turf_type = /turf/open/space;
- width = 18
- },
-/turf/open/space,
-/area/space)
-"bJK" = (
-/obj/structure/mopbucket,
-/obj/item/weapon/mop,
-/turf/open/floor/plating,
-/area/maintenance/department/engine)
-"bJL" = (
-/obj/structure/grille/broken,
-/obj/structure/window/fulltile,
-/turf/open/floor/plating,
-/area/maintenance/department/engine)
-"bJM" = (
-/obj/structure/bookcase/random/adult,
-/turf/open/floor/plasteel/black,
-/area/library)
-"bJN" = (
-/obj/structure/reagent_dispensers/fueltank,
-/turf/open/floor/plating{
- icon_state = "panelscorched"
- },
-/area/maintenance/department/engine)
-"bJO" = (
-/obj/structure/table/wood,
-/obj/item/weapon/clipboard,
-/obj/item/weapon/paper,
-/obj/item/weapon/pen,
-/obj/item/clothing/head/fedora,
-/turf/open/floor/plating,
-/area/maintenance/department/engine)
-"bJP" = (
-/obj/structure/table/wood,
-/obj/item/device/flashlight/lamp,
-/turf/open/floor/plating,
-/area/maintenance/department/engine)
-"bJQ" = (
-/obj/structure/closet{
- name = "Clue Closet"
- },
-/obj/item/weapon/kitchen/knife,
-/obj/item/candle,
-/obj/item/pipe,
-/obj/item/weapon/gun/ballistic/revolver/russian,
-/obj/item/stack/cable_coil/white,
-/obj/item/weapon/wrench,
-/obj/effect/decal/cleanable/cobweb{
- icon_state = "cobweb2"
- },
-/turf/open/floor/plating{
- icon_state = "panelscorched"
- },
-/area/maintenance/department/engine)
-"bJR" = (
-/obj/structure/reagent_dispensers/fueltank,
-/turf/open/floor/plating,
-/area/maintenance/department/engine)
-"bJS" = (
-/obj/item/weapon/circuitboard/computer/libraryconsole,
-/turf/open/floor/plating,
-/area/maintenance/department/engine)
-"bJT" = (
-/turf/closed/wall/r_wall,
-/area/crew_quarters/heads/chief)
-"bJU" = (
-/obj/item/weapon/cartridge/engineering{
- pixel_x = 4;
- pixel_y = 5
- },
-/obj/item/weapon/cartridge/engineering{
- pixel_x = -3;
- pixel_y = 2
- },
-/obj/item/weapon/cartridge/engineering{
- pixel_x = 3
- },
-/obj/structure/table/reinforced,
-/obj/item/weapon/cartridge/atmos,
-/obj/machinery/requests_console{
- announcementConsole = 1;
- department = "Chief Engineer's Desk";
- departmentType = 3;
- name = "Chief Engineer RC";
- pixel_x = -32
- },
-/turf/open/floor/plasteel/yellow/side{
- dir = 9
- },
-/area/crew_quarters/heads/chief)
-"bJV" = (
-/obj/structure/filingcabinet/chestdrawer,
-/obj/machinery/light{
- dir = 1
- },
-/obj/machinery/camera{
- c_tag = "Chief Engineer's Office";
- dir = 2;
- network = list("SS13")
- },
-/mob/living/simple_animal/parrot/Poly,
-/turf/open/floor/plasteel/yellow/side{
- dir = 1
- },
-/area/crew_quarters/heads/chief)
-"bJW" = (
-/obj/machinery/airalarm{
- dir = 2;
- pixel_y = 22
- },
-/obj/machinery/computer/apc_control,
-/turf/open/floor/plasteel/yellow/side{
- dir = 1
- },
-/area/crew_quarters/heads/chief)
-"bJX" = (
-/obj/machinery/computer/station_alert,
-/obj/machinery/computer/security/telescreen/entertainment{
- pixel_y = 32
- },
-/turf/open/floor/plasteel/yellow/side{
- dir = 1
- },
-/area/crew_quarters/heads/chief)
-"bJY" = (
-/obj/machinery/computer/card/minor/ce,
-/turf/open/floor/plasteel/yellow/side{
- dir = 5
- },
-/area/crew_quarters/heads/chief)
-"bJZ" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-07";
- name = "Photosynthetic Potted plant";
- pixel_y = 10
- },
-/turf/open/floor/plasteel/vault{
- dir = 8
- },
-/area/storage/tech)
-"bKa" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-07";
- name = "Photosynthetic Potted plant";
- pixel_y = 10
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/vault{
- dir = 8
- },
-/area/storage/tech)
-"bKb" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/turf/closed/wall,
-/area/engine/engine_smes)
-"bKc" = (
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/obj/machinery/power/smes/engineering,
-/turf/open/floor/plasteel/yellow/side{
- dir = 1
- },
-/area/engine/engine_smes)
-"bKd" = (
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/obj/machinery/power/smes/engineering,
-/obj/machinery/camera{
- c_tag = "Engineering Power Storage";
- dir = 2;
- network = list("SS13")
- },
-/turf/open/floor/plasteel/yellow/side{
- dir = 1
- },
-/area/engine/engine_smes)
-"bKe" = (
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/machinery/power/smes/engineering,
-/turf/open/floor/plasteel/yellow/side{
- dir = 1
- },
-/area/engine/engine_smes)
-"bKf" = (
-/turf/closed/wall,
-/area/engine/engine_smes)
-"bKg" = (
-/turf/closed/wall/r_wall,
-/area/engine/engine_smes)
-"bKh" = (
-/obj/structure/table,
-/obj/item/weapon/pen,
-/obj/machinery/light{
- dir = 8
- },
-/obj/machinery/requests_console{
- department = "Security";
- departmentType = 5;
- pixel_x = -32
- },
-/obj/item/weapon/paper_bin{
- layer = 2.9
- },
-/turf/open/floor/plasteel/red/side{
- dir = 8
- },
-/area/security/checkpoint/engineering)
-"bKi" = (
-/obj/structure/chair/office/dark{
- dir = 1
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/effect/landmark/start/depsec/engineering,
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/security/checkpoint/engineering)
-"bKj" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/red/side{
- dir = 4
- },
-/area/security/checkpoint/engineering)
-"bKk" = (
-/obj/machinery/door/airlock/glass_security{
- name = "Engineering Security Post";
- req_access_txt = "63"
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/red,
-/area/security/checkpoint/engineering)
-"bKl" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"bKm" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/goonplaque,
-/area/engine/engineering)
-"bKn" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 9
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"bKo" = (
-/obj/machinery/door/poddoor/preopen{
- id = "atmos";
- name = "atmos blast door"
- },
-/obj/machinery/door/firedoor/heavy,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 8
- },
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"bKp" = (
-/obj/machinery/door/firedoor/heavy,
-/obj/machinery/door/airlock/atmos{
- name = "Atmospherics";
- req_access_txt = "24"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"bKq" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"bKr" = (
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"bKs" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"bKt" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"bKu" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/visible{
- dir = 4
- },
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 1;
- name = "O2 to Pure";
- on = 0
- },
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"bKv" = (
-/obj/effect/decal/remains/human,
-/turf/closed/mineral,
-/area/chapel/asteroid{
- name = "Monastery Asteroid"
- })
-"bKw" = (
-/obj/structure/table/wood,
-/obj/machinery/computer/libraryconsole/bookmanagement,
-/turf/open/floor/plasteel/black,
-/area/library)
-"bKx" = (
-/obj/structure/table/wood,
-/obj/item/weapon/paper_bin{
- layer = 2.9;
- pixel_x = -2;
- pixel_y = 4
- },
-/obj/item/weapon/pen,
-/obj/item/weapon/barcodescanner,
-/turf/open/floor/plasteel/black,
-/area/library)
-"bKy" = (
-/obj/machinery/atmospherics/pipe/manifold/yellow/visible,
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"bKz" = (
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 8;
- name = "CO2 Outlet Pump";
- on = 0
- },
-/turf/open/floor/plasteel/yellow/side{
- dir = 4
- },
-/area/engine/atmos)
-"bKA" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/atmospherics/pipe/simple/yellow/visible{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/visible,
-/turf/open/floor/plating,
-/area/engine/atmos)
-"bKB" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{
- dir = 8;
- frequency = 1441;
- id_tag = "co2_out";
- name = "co2 out"
- },
-/turf/open/floor/engine/co2,
-/area/engine/atmos)
-"bKC" = (
-/turf/open/floor/engine/co2,
-/area/engine/atmos)
-"bKD" = (
-/obj/structure/reagent_dispensers/watertank,
-/turf/open/floor/plating,
-/area/maintenance/department/engine)
-"bKE" = (
-/obj/structure/reagent_dispensers/fueltank,
-/obj/machinery/light/small{
- dir = 4
- },
-/turf/open/floor/plating{
- broken = 1;
- icon_state = "platingdmg1"
- },
-/area/maintenance/department/engine)
-"bKF" = (
-/obj/structure/chair{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/maintenance/department/engine)
-"bKG" = (
-/obj/structure/closet/lawcloset,
-/obj/item/weapon/gavelhammer,
-/obj/item/weapon/gavelblock,
-/obj/item/weapon/cartridge/lawyer,
-/obj/item/clothing/head/powdered_wig,
-/turf/open/floor/plating,
-/area/maintenance/department/engine)
-"bKH" = (
-/obj/structure/chair{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/maintenance/department/engine)
-"bKI" = (
-/obj/item/weapon/book/manual/barman_recipes,
-/obj/structure/closet/crate{
- icon_state = "crateopen";
- opened = 1
- },
-/obj/item/weapon/cigbutt,
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/open/floor/plating,
-/area/maintenance/department/engine)
-"bKJ" = (
-/obj/machinery/button/door{
- desc = "A remote control-switch for the engineering security doors.";
- id = "Engineering";
- name = "Engineering Lockdown";
- pixel_x = -24;
- pixel_y = -10;
- req_access_txt = "10"
- },
-/obj/machinery/button/door{
- desc = "A remote control-switch for secure storage.";
- id = "Secure Storage";
- name = "Engineering Secure Storage";
- pixel_x = -24;
- req_access_txt = "11"
- },
-/obj/machinery/button/door{
- id = "atmos";
- name = "Atmospherics Lockdown";
- pixel_x = -24;
- pixel_y = 10;
- req_access_txt = "24"
- },
-/obj/structure/table/reinforced,
-/obj/item/weapon/folder/yellow,
-/obj/item/weapon/paper/monitorkey,
-/obj/item/weapon/pen,
-/turf/open/floor/plasteel/yellow/side{
- dir = 8
- },
-/area/crew_quarters/heads/chief)
-"bKK" = (
-/turf/open/floor/plasteel,
-/area/crew_quarters/heads/chief)
-"bKL" = (
-/obj/effect/landmark/start/chief_engineer,
-/turf/open/floor/plasteel,
-/area/crew_quarters/heads/chief)
-"bKM" = (
-/obj/structure/chair/office/light{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/heads/chief)
-"bKN" = (
-/obj/structure/table/reinforced,
-/obj/item/weapon/clipboard,
-/obj/item/weapon/lighter,
-/obj/item/clothing/glasses/meson{
- pixel_y = 4
- },
-/obj/item/weapon/stamp/ce,
-/obj/item/weapon/stock_parts/cell/high/plus,
-/obj/machinery/keycard_auth{
- pixel_x = 26;
- pixel_y = 26
- },
-/turf/open/floor/plasteel/yellow/side{
- dir = 4
- },
-/area/crew_quarters/heads/chief)
-"bKO" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 4
- },
-/obj/machinery/light/small{
- dir = 8
- },
-/turf/open/floor/plasteel/black,
-/area/storage/tech)
-"bKP" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 9
- },
-/turf/open/floor/plasteel/black,
-/area/storage/tech)
-"bKQ" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 1
- },
-/obj/machinery/light/small{
- dir = 4
- },
-/turf/open/floor/plasteel/black,
-/area/storage/tech)
-"bKR" = (
-/obj/structure/table,
-/obj/item/weapon/storage/box/metalfoam{
- pixel_x = 4;
- pixel_y = 7
- },
-/obj/item/weapon/storage/box/lights/mixed,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/airalarm{
- dir = 4;
- pixel_x = -23
- },
-/turf/open/floor/plasteel/yellow/side{
- dir = 8
- },
-/area/engine/engine_smes)
-"bKS" = (
-/obj/machinery/power/terminal{
- dir = 1
- },
-/obj/structure/cable/yellow{
- d2 = 2;
- icon_state = "0-2"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/engine/engine_smes)
-"bKT" = (
-/obj/machinery/suit_storage_unit/engine,
-/turf/open/floor/plasteel/yellow/side{
- dir = 4
- },
-/area/engine/engine_smes)
-"bKU" = (
-/obj/structure/table,
-/obj/machinery/recharger{
- pixel_y = 4
- },
-/obj/machinery/power/apc{
- dir = 8;
- name = "Engineering Security APC";
- pixel_x = -24
- },
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/turf/open/floor/plasteel/red/side{
- dir = 8
- },
-/area/security/checkpoint/engineering)
-"bKV" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 6
- },
-/turf/open/floor/plasteel,
-/area/security/checkpoint/engineering)
-"bKW" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/red/side{
- dir = 4
- },
-/area/security/checkpoint/engineering)
-"bKX" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/security/checkpoint/engineering)
-"bKY" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
-/obj/effect/turf_decal/stripes/line{
- dir = 10
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"bKZ" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/line,
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"bLa" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 6
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"bLb" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"bLc" = (
-/obj/item/weapon/pickaxe/mini,
-/turf/closed/mineral,
-/area/chapel/asteroid{
- name = "Monastery Asteroid"
- })
-"bLd" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"bLe" = (
-/obj/machinery/atmospherics/pipe/manifold/cyan/visible{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"bLf" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/visible,
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"bLg" = (
-/obj/machinery/computer/atmos_control/tank{
- frequency = 1441;
- input_tag = "co2_in";
- name = "Carbon Dioxide Supply Control";
- output_tag = "co2_out";
- sensors = list("co2_sensor" = "Tank")
- },
-/turf/open/floor/plasteel/yellow/side{
- dir = 4
- },
-/area/engine/atmos)
-"bLh" = (
-/obj/machinery/air_sensor{
- frequency = 1441;
- id_tag = "co2_sensor"
- },
-/turf/open/floor/engine/co2,
-/area/engine/atmos)
-"bLi" = (
-/obj/machinery/portable_atmospherics/canister/carbon_dioxide,
-/turf/open/floor/engine/co2,
-/area/engine/atmos)
-"bLj" = (
-/obj/machinery/light/small{
- dir = 4
- },
-/turf/open/floor/engine/co2,
-/area/engine/atmos)
-"bLk" = (
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/closed/mineral/random/low_chance,
-/area/mine/explored{
- name = "Bomb Testing Asteroid"
- })
-"bLl" = (
-/obj/structure/grille/broken,
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
- },
-/area/maintenance/department/engine)
-"bLm" = (
-/obj/structure/reagent_dispensers/watertank,
-/turf/open/floor/plating{
- icon_state = "panelscorched"
- },
-/area/maintenance/department/engine)
-"bLn" = (
-/obj/structure/closet/secure_closet/engineering_chief{
- req_access_txt = "0"
- },
-/obj/structure/extinguisher_cabinet{
- pixel_x = -27
- },
-/obj/item/clothing/glasses/meson/gar,
-/turf/open/floor/plasteel/yellow/side{
- dir = 8
- },
-/area/crew_quarters/heads/chief)
-"bLo" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/heads/chief)
-"bLp" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 10
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/heads/chief)
-"bLq" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/on,
-/turf/open/floor/plasteel,
-/area/crew_quarters/heads/chief)
-"bLr" = (
-/obj/machinery/power/apc{
- dir = 4;
- name = "CE Office APC";
- pixel_x = 28
- },
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/machinery/modular_computer/console/preset/engineering,
-/turf/open/floor/plasteel/yellow/side{
- dir = 4
- },
-/area/crew_quarters/heads/chief)
-"bLs" = (
-/obj/structure/rack{
- dir = 8;
- layer = 2.9
- },
-/obj/item/weapon/circuitboard/computer/robotics{
- pixel_x = -2;
- pixel_y = 2
- },
-/obj/item/weapon/circuitboard/computer/mecha_control{
- pixel_x = 1;
- pixel_y = -1
- },
-/turf/open/floor/plating,
-/area/storage/tech)
-"bLt" = (
-/obj/structure/rack{
- dir = 8;
- layer = 2.9
- },
-/obj/item/weapon/circuitboard/computer/crew{
- pixel_x = -1;
- pixel_y = 1
- },
-/obj/item/weapon/circuitboard/computer/card{
- pixel_x = 2;
- pixel_y = -2
- },
-/obj/item/weapon/circuitboard/computer/communications{
- pixel_x = 5;
- pixel_y = -5
- },
-/obj/machinery/camera{
- c_tag = "Secure Tech Storage";
- dir = 1
- },
-/turf/open/floor/plating,
-/area/storage/tech)
-"bLu" = (
-/obj/structure/rack{
- dir = 8;
- layer = 2.9
- },
-/obj/item/weapon/circuitboard/computer/borgupload{
- pixel_x = -1;
- pixel_y = 1
- },
-/obj/item/weapon/circuitboard/computer/aiupload{
- pixel_x = 2;
- pixel_y = -2
- },
-/turf/open/floor/plating,
-/area/storage/tech)
-"bLv" = (
-/obj/structure/table,
-/obj/item/stack/sheet/plasteel{
- amount = 20;
- pixel_x = -3;
- pixel_y = 3
- },
-/obj/item/stack/sheet/glass{
- amount = 50;
- layer = 4
- },
-/obj/item/stack/sheet/glass{
- amount = 50;
- layer = 4
- },
-/obj/item/stack/sheet/glass{
- amount = 50;
- layer = 4
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/light{
- dir = 8
- },
-/obj/machinery/computer/security/telescreen{
- desc = "Used for watching the engine containment area.";
- dir = 4;
- name = "Engine Monitor";
- network = list("Engine");
- pixel_x = -32
- },
-/turf/open/floor/plasteel/yellow/side{
- dir = 8
- },
-/area/engine/engine_smes)
-"bLw" = (
-/obj/structure/cable/yellow{
- icon_state = "1-4";
- d1 = 1;
- d2 = 4
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/engine/engine_smes)
-"bLx" = (
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/cable/yellow{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/structure/cable/yellow{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/effect/landmark/start/station_engineer,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 10
- },
-/turf/open/floor/plasteel,
-/area/engine/engine_smes)
-"bLy" = (
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/on,
-/turf/open/floor/plasteel,
-/area/engine/engine_smes)
-"bLz" = (
-/obj/structure/tank_dispenser,
-/obj/machinery/light{
- dir = 4
- },
-/turf/open/floor/plasteel/yellow/side{
- dir = 4
- },
-/area/engine/engine_smes)
-"bLA" = (
-/obj/structure/filingcabinet,
-/obj/machinery/computer/security/telescreen{
- desc = "Used for watching the engine containment area.";
- dir = 4;
- name = "Engine Monitor";
- network = list("Engine");
- pixel_x = -32
- },
-/turf/open/floor/plasteel/red/side{
- dir = 10
- },
-/area/security/checkpoint/engineering)
-"bLB" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 1
- },
-/turf/open/floor/plasteel/red/side,
-/area/security/checkpoint/engineering)
-"bLC" = (
-/obj/structure/reagent_dispensers/peppertank{
- pixel_x = 32
- },
-/obj/structure/closet/wardrobe/red,
-/turf/open/floor/plasteel/red/side{
- dir = 6
- },
-/area/security/checkpoint/engineering)
-"bLD" = (
-/turf/closed/wall/r_wall,
-/area/security/checkpoint/engineering)
-"bLE" = (
-/obj/machinery/door/poddoor/preopen{
- id = "Engineering";
- name = "engineering security door"
- },
-/obj/machinery/door/firedoor,
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"bLF" = (
-/obj/machinery/door/poddoor/preopen{
- id = "Engineering";
- name = "engineering security door"
- },
-/obj/machinery/door/firedoor,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"bLG" = (
-/obj/machinery/door/poddoor/preopen{
- id = "Engineering";
- name = "engineering security door"
- },
-/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 6
- },
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"bLH" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 9
- },
-/turf/closed/wall,
-/area/engine/engineering)
-"bLI" = (
-/obj/machinery/portable_atmospherics/scrubber,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"bLJ" = (
-/obj/machinery/portable_atmospherics/pump,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
- dir = 5
- },
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"bLK" = (
-/obj/machinery/atmospherics/components/trinary/filter{
- dir = 4;
- filter_type = "o2";
- on = 1
- },
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"bLL" = (
-/obj/machinery/atmospherics/pipe/simple/green/visible{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"bLM" = (
-/obj/machinery/atmospherics/pipe/simple/green/visible{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/visible,
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"bLN" = (
-/obj/machinery/camera{
- c_tag = "Telecomms External Fore";
- dir = 1;
- network = list("SS13, Telecomms");
- start_active = 1
- },
-/turf/open/space,
-/area/space)
-"bLO" = (
-/obj/machinery/atmospherics/pipe/simple/green/visible{
- dir = 4;
-
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/visible,
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"bLP" = (
-/obj/machinery/atmospherics/pipe/simple/green/visible{
- dir = 10
- },
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"bLQ" = (
-/obj/machinery/atmospherics/components/trinary/filter{
- dir = 1;
- filter_type = "co2";
- on = 1
- },
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"bLR" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/atmospherics/pipe/simple/green/visible{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/engine/atmos)
-"bLS" = (
-/obj/machinery/atmospherics/components/unary/outlet_injector/on{
- dir = 8;
- frequency = 1441;
- id = "co2_in";
- pixel_y = 1
- },
-/turf/open/floor/engine/co2,
-/area/engine/atmos)
-"bLT" = (
-/obj/item/device/flashlight,
-/turf/open/floor/plating,
-/area/maintenance/department/engine)
-"bLU" = (
-/obj/effect/decal/cleanable/vomit/old,
-/obj/structure/grille/broken,
-/turf/open/floor/plating,
-/area/maintenance/department/engine)
-"bLV" = (
-/obj/structure/rack,
-/obj/effect/spawner/lootdrop/maintenance{
- lootcount = 2;
- name = "2maintenance loot spawner"
- },
-/turf/open/floor/plating,
-/area/maintenance/department/engine)
-"bLW" = (
-/obj/machinery/suit_storage_unit/ce,
-/turf/open/floor/plasteel/yellow/side{
- dir = 10
- },
-/area/crew_quarters/heads/chief)
-"bLX" = (
-/turf/open/floor/plasteel/yellow/side,
-/area/crew_quarters/heads/chief)
-"bLY" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/yellow/side,
-/area/crew_quarters/heads/chief)
-"bLZ" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/yellow/side,
-/area/crew_quarters/heads/chief)
-"bMa" = (
-/obj/machinery/disposal/bin,
-/obj/structure/disposalpipe/trunk{
- dir = 8
- },
-/obj/machinery/light_switch{
- pixel_x = 25
- },
-/turf/open/floor/plasteel/yellow/side{
- dir = 6
- },
-/area/crew_quarters/heads/chief)
-"bMb" = (
-/turf/closed/wall/r_wall,
-/area/engine/engineering)
-"bMc" = (
-/obj/structure/table,
-/obj/item/stack/sheet/metal{
- amount = 50
- },
-/obj/item/stack/sheet/metal{
- amount = 50
- },
-/obj/item/stack/rods{
- amount = 50
- },
-/obj/item/stack/cable_coil,
-/obj/machinery/power/apc{
- cell_type = 10000;
- dir = 8;
- name = "Engine Room APC";
- pixel_x = -26
- },
-/obj/structure/cable,
-/obj/item/stack/sheet/metal{
- amount = 50;
- layer = 2.9
- },
-/obj/item/stack/cable_coil,
-/turf/open/floor/plasteel/yellow/side{
- dir = 8
- },
-/area/engine/engine_smes)
-"bMd" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel,
-/area/engine/engine_smes)
-"bMe" = (
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/engine/engine_smes)
-"bMf" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
-/area/engine/engine_smes)
-"bMg" = (
-/obj/machinery/door/airlock/engineering{
- cyclelinkeddir = 1;
- name = "Engine Room";
- req_access_txt = "10"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"bMh" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/closed/wall/r_wall,
-/area/engine/engineering)
-"bMi" = (
-/obj/machinery/portable_atmospherics/scrubber,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
-/turf/open/floor/plasteel/yellow/side,
-/area/engine/atmos)
-"bMj" = (
-/obj/machinery/portable_atmospherics/pump,
-/turf/open/floor/plasteel/yellow/side,
-/area/engine/atmos)
-"bMk" = (
-/obj/machinery/atmospherics/pipe/simple/green/visible,
-/turf/open/floor/plasteel/yellow/side,
-/area/engine/atmos)
-"bMl" = (
-/obj/machinery/computer/atmos_control/tank{
- frequency = 1441;
- input_tag = "n2_in";
- name = "Nitrogen Supply Control";
- output_tag = "n2_out";
- sensors = list("n2_sensor" = "Tank")
- },
-/turf/open/floor/plasteel/yellow/side,
-/area/engine/atmos)
-"bMm" = (
-/obj/machinery/camera/motion{
- c_tag = "Telecomms External Access";
- dir = 1;
- network = list("SS13","Telecomms")
- },
-/turf/open/floor/plasteel,
-/area/tcommsat/computer)
-"bMn" = (
-/obj/machinery/light,
-/turf/open/floor/plasteel/yellow/side,
-/area/engine/atmos)
-"bMo" = (
-/obj/machinery/computer/atmos_control/tank{
- frequency = 1441;
- input_tag = "o2_in";
- name = "Oxygen Supply Control";
- output_tag = "o2_out";
- sensors = list("o2_sensor" = "Tank")
- },
-/turf/open/floor/plasteel/yellow/side,
-/area/engine/atmos)
-"bMp" = (
-/obj/machinery/atmospherics/pipe/manifold/cyan/visible{
- dir = 8
- },
-/turf/open/floor/plasteel/yellow/side,
-/area/engine/atmos)
-"bMq" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/visible,
-/turf/open/floor/plasteel/yellow/side,
-/area/engine/atmos)
-"bMr" = (
-/obj/machinery/computer/atmos_control/tank{
- frequency = 1441;
- input_tag = "air_in";
- name = "Mixed Air Supply Control";
- output_tag = "air_out";
- sensors = list("air_sensor" = "Tank")
- },
-/turf/open/floor/plasteel/yellow/side,
-/area/engine/atmos)
-"bMs" = (
-/obj/structure/lattice,
-/obj/machinery/camera/motion{
- c_tag = "Telecomms External Port";
- dir = 8;
- network = list("Telecomms")
- },
-/turf/open/space,
-/area/space)
-"bMt" = (
-/obj/machinery/light,
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 4;
- name = "Air Outlet Pump";
- on = 1
- },
-/turf/open/floor/plasteel/yellow/side,
-/area/engine/atmos)
-"bMu" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/visible{
- dir = 4
- },
-/turf/open/floor/plasteel/yellow/side,
-/area/engine/atmos)
-"bMv" = (
-/obj/structure/lattice,
-/obj/machinery/camera/motion{
- c_tag = "Telecomms External Starboard";
- dir = 4;
- network = list("Telecomms")
- },
-/turf/open/space,
-/area/space)
-"bMw" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/visible{
- dir = 4
- },
-/turf/open/floor/plasteel/yellow/side{
- dir = 6
- },
-/area/engine/atmos)
-"bMx" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/turf/open/floor/plating,
-/area/maintenance/department/engine)
-"bMy" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/turf/open/floor/plating,
-/area/maintenance/department/engine)
-"bMz" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/crew_quarters/heads/chief)
-"bMA" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plating,
-/area/crew_quarters/heads/chief)
-"bMB" = (
-/obj/machinery/door/airlock/glass_command{
- name = "Chief Engineer";
- req_access_txt = "56"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
-/area/crew_quarters/heads/chief)
-"bMC" = (
-/turf/closed/wall,
-/area/crew_quarters/heads/chief)
-"bMD" = (
-/obj/machinery/computer/atmos_alert,
-/turf/open/floor/plasteel/yellow/side{
- dir = 1
- },
-/area/engine/engineering)
-"bME" = (
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
- },
-/obj/machinery/modular_computer/console/preset/engineering,
-/turf/open/floor/plasteel/yellow/side{
- dir = 1
- },
-/area/engine/engineering)
-"bMF" = (
-/obj/machinery/computer/station_alert,
-/turf/open/floor/plasteel/yellow/side{
- dir = 1
- },
-/area/engine/engineering)
-"bMG" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'HIGH VOLTAGE'";
- icon_state = "shock";
- name = "HIGH VOLTAGE"
- },
-/turf/open/floor/plating,
-/area/engine/engine_smes)
-"bMH" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/engine/engine_smes)
-"bMI" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass_engineering{
- name = "Power Storage";
- req_access_txt = "11";
- req_one_access_txt = "0"
- },
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/engine/engine_smes)
-"bMJ" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating,
-/area/engine/engine_smes)
-"bMK" = (
-/obj/machinery/vending/engivend,
-/turf/open/floor/plasteel/yellow/side{
- dir = 1
- },
-/area/engine/engineering)
-"bML" = (
-/obj/machinery/vending/tool,
-/turf/open/floor/plasteel/yellow/side{
- dir = 1
- },
-/area/engine/engineering)
-"bMM" = (
-/obj/structure/closet/firecloset,
-/turf/open/floor/plasteel/yellow/side{
- dir = 1
- },
-/area/engine/engineering)
-"bMN" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"bMO" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"bMP" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"bMQ" = (
-/obj/structure/grille,
-/obj/machinery/atmospherics/pipe/simple/green/visible,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/engine/atmos)
-"bMR" = (
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 0;
- name = "Waste to Space";
- on = 0
- },
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"bMS" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/visible,
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/atmospherics/pipe/simple/green/visible{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/engine/atmos)
-"bMT" = (
-/obj/machinery/door/airlock/external{
- cyclelinkeddir = 2;
- name = "Atmospherics External Access";
- req_access = null;
- req_access_txt = "24"
- },
-/turf/open/floor/plating,
-/area/engine/atmos)
-"bMU" = (
-/obj/structure/table_frame/wood,
-/turf/open/floor/plating,
-/area/maintenance/department/engine)
-"bMV" = (
-/obj/item/trash/candy,
-/turf/open/floor/plating,
-/area/maintenance/department/engine)
-"bMW" = (
-/turf/open/space,
-/area/space/nearstation)
-"bMX" = (
-/obj/structure/lattice,
-/turf/open/space,
-/area/space/nearstation)
-"bMY" = (
-/obj/machinery/power/apc{
- cell_type = 5000;
- dir = 8;
- name = "Engineering Maintenance APC";
- pixel_x = -25;
- pixel_y = 1
- },
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/department/engine)
-"bMZ" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/turf/open/floor/plating,
-/area/maintenance/department/engine)
-"bNa" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/door/airlock/maintenance{
- name = "Engineering Maintenance";
- req_access_txt = "10"
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/engine/engineering)
-"bNb" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 6
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"bNc" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"bNd" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/structure/disposalpipe/sortjunction{
- dir = 8;
- icon_state = "pipe-j1s";
- sortType = 5
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"bNe" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"bNf" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/camera{
- c_tag = "Engineering Port Fore";
- dir = 2;
- network = list("SS13")
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/sign/map{
- icon_state = "map-pubby";
- pixel_y = 32
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"bNg" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"bNh" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"bNi" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"bNj" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/airalarm{
- dir = 2;
- pixel_y = 22
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"bNk" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"bNl" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"bNm" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"bNn" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"bNo" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/firealarm{
- dir = 1;
- pixel_y = 29
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"bNp" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/camera{
- c_tag = "Engineering Starboard Fore";
- dir = 2;
- network = list("SS13")
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/item/device/radio/intercom{
- dir = 0;
- name = "Station Intercom (General)";
- pixel_y = 26
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"bNq" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/structure/disposalpipe/sortjunction{
- dir = 8;
- icon_state = "pipe-j2s";
- sortType = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"bNr" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 9
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"bNs" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"bNt" = (
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"bNu" = (
-/obj/structure/lattice,
-/obj/machinery/atmospherics/pipe/simple/green/visible,
-/turf/open/space,
-/area/space)
-"bNv" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/closed/wall/r_wall,
-/area/engine/atmos)
-"bNw" = (
-/obj/structure/lattice,
-/obj/machinery/atmospherics/pipe/simple/cyan/visible,
-/turf/open/space,
-/area/space)
-"bNx" = (
-/obj/machinery/light/small{
- dir = 8
- },
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
- icon_state = "space";
- layer = 4;
- name = "EXTERNAL AIRLOCK";
- pixel_x = -32
- },
-/turf/open/floor/plating,
-/area/engine/atmos)
-"bNy" = (
-/obj/structure/table_frame/wood,
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/open/floor/plating,
-/area/maintenance/department/engine)
-"bNz" = (
-/obj/item/weapon/bikehorn/rubberducky,
-/turf/open/floor/plating,
-/area/maintenance/department/engine)
-"bNA" = (
-/turf/closed/wall/r_wall,
-/area/maintenance/department/engine)
-"bNB" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"bNC" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"bND" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"bNE" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"bNF" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"bNG" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"bNH" = (
-/obj/machinery/holopad,
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"bNI" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"bNJ" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"bNK" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"bNL" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"bNM" = (
-/obj/machinery/disposal/bin,
-/obj/structure/disposalpipe/trunk{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"bNN" = (
-/obj/machinery/atmospherics/pipe/simple,
-/obj/structure/grille,
-/obj/machinery/meter,
-/turf/closed/wall/r_wall,
-/area/engine/atmos)
-"bNO" = (
-/obj/machinery/atmospherics/pipe/simple,
-/obj/structure/grille,
-/obj/machinery/meter{
- name = "Mixed Air Tank In"
- },
-/turf/closed/wall/r_wall,
-/area/engine/atmos)
-"bNP" = (
-/obj/machinery/atmospherics/pipe/simple,
-/obj/structure/grille,
-/obj/machinery/meter{
- name = "Mixed Air Tank Out"
- },
-/turf/closed/wall/r_wall,
-/area/engine/atmos)
-"bNQ" = (
-/obj/machinery/door/airlock/external{
- cyclelinkeddir = 1;
- name = "Atmospherics External Access";
- req_access = null;
- req_access_txt = "24"
- },
-/turf/open/floor/plating,
-/area/engine/atmos)
-"bNR" = (
-/obj/structure/plasticflaps{
- opacity = 1
- },
-/turf/open/floor/plasteel/vault{
- dir = 8
- },
-/area/engine/engineering)
-"bNS" = (
-/obj/machinery/door/window/southleft{
- base_state = "left";
- dir = 4;
- icon_state = "left";
- name = "Engineering Delivery";
- req_access_txt = "10"
- },
-/obj/machinery/navbeacon{
- codes_txt = "delivery;dir=4";
- freq = 1400;
- location = "Engineering"
- },
-/turf/open/floor/plasteel/vault{
- dir = 8
- },
-/area/engine/engineering)
-"bNT" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/loadingarea{
- dir = 4
- },
-/area/engine/engineering)
-"bNU" = (
-/obj/structure/chair/stool,
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"bNV" = (
-/obj/structure/chair/stool,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"bNW" = (
-/obj/structure/chair/stool,
-/obj/effect/landmark/start/station_engineer,
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"bNX" = (
-/obj/structure/rack{
- dir = 8;
- layer = 2.9
- },
-/obj/item/weapon/storage/belt/utility,
-/obj/item/clothing/head/welding{
- pixel_x = -3;
- pixel_y = 5
- },
-/obj/item/clothing/glasses/meson{
- pixel_x = 3;
- pixel_y = -4
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"bNY" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"bNZ" = (
-/obj/structure/cable/yellow{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"bOa" = (
-/obj/structure/cable/yellow{
- icon_state = "1-4";
- d1 = 1;
- d2 = 4
- },
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/machinery/camera{
- c_tag = "Engineering Central";
- dir = 1;
- network = list("SS13")
- },
-/obj/machinery/light,
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"bOb" = (
-/obj/structure/cable/yellow{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"bOc" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"bOd" = (
-/obj/structure/rack{
- dir = 8;
- layer = 2.9
- },
-/obj/item/clothing/mask/gas{
- pixel_x = 3;
- pixel_y = 3
- },
-/obj/item/clothing/mask/gas,
-/obj/item/clothing/mask/gas{
- pixel_x = -3;
- pixel_y = -3
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"bOe" = (
-/obj/structure/table,
-/obj/item/weapon/airlock_painter{
- pixel_y = 3
- },
-/obj/item/device/flashlight,
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"bOf" = (
-/obj/structure/table,
-/obj/item/weapon/electronics/airlock,
-/obj/item/weapon/electronics/airlock,
-/obj/item/weapon/electronics/apc,
-/obj/item/weapon/stock_parts/cell/high/plus,
-/obj/item/weapon/stock_parts/cell/high/plus,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/item/stack/cable_coil,
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"bOg" = (
-/obj/structure/closet/wardrobe/engineering_yellow,
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"bOh" = (
-/obj/machinery/atmospherics/components/unary/outlet_injector/on{
- dir = 1;
- frequency = 1441;
- id = "n2_in"
- },
-/turf/open/floor/engine/n2,
-/area/engine/atmos)
-"bOi" = (
-/obj/machinery/air_sensor{
- frequency = 1441;
- id_tag = "n2_sensor"
- },
-/turf/open/floor/engine/n2,
-/area/engine/atmos)
-"bOj" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{
- dir = 1;
- frequency = 1441;
- id_tag = "n2_out";
- name = "n2 out"
- },
-/turf/open/floor/engine/n2,
-/area/engine/atmos)
-"bOk" = (
-/obj/machinery/atmospherics/components/unary/outlet_injector/on{
- dir = 1;
- frequency = 1441;
- id = "o2_in"
- },
-/turf/open/floor/engine/o2,
-/area/engine/atmos)
-"bOl" = (
-/obj/machinery/air_sensor{
- frequency = 1441;
- id_tag = "o2_sensor"
- },
-/turf/open/floor/engine/o2,
-/area/engine/atmos)
-"bOm" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{
- dir = 1;
- frequency = 1441;
- id_tag = "o2_out";
- name = "oxygen out"
- },
-/turf/open/floor/engine/o2,
-/area/engine/atmos)
-"bOn" = (
-/obj/machinery/atmospherics/components/unary/outlet_injector/on{
- dir = 1;
- frequency = 1441;
- id = "air_in"
- },
-/turf/open/floor/engine/air,
-/area/engine/atmos)
-"bOo" = (
-/obj/machinery/air_sensor{
- frequency = 1441;
- id_tag = "air_sensor"
- },
-/turf/open/floor/engine/air,
-/area/engine/atmos)
-"bOp" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/high_volume/siphon/on{
- dir = 1;
- frequency = 1441;
- id_tag = "air_out";
- name = "air out"
- },
-/turf/open/floor/engine/air,
-/area/engine/atmos)
-"bOq" = (
-/obj/structure/rack,
-/obj/item/weapon/paper,
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/open/floor/plating,
-/area/maintenance/department/engine)
-"bOr" = (
-/obj/item/toy/beach_ball{
- desc = "The simple beach ball is one of Nanotrasen's most popular products. 'Why do we make beach balls? Because we can! (TM)' - Nanotrasen";
- item_state = "beachball";
- name = "NanoTrasen-brand beach ball";
- pixel_y = 7
- },
-/turf/open/floor/plating/airless,
-/area/space/nearstation)
-"bOs" = (
-/obj/item/weapon/phone,
-/turf/open/floor/plating/airless,
-/area/space/nearstation)
-"bOt" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/light{
- dir = 8
- },
-/obj/item/device/radio/intercom{
- dir = 0;
- name = "Station Intercom (General)";
- pixel_x = -27
- },
-/obj/effect/turf_decal/stripes/corner{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"bOu" = (
-/obj/structure/table,
-/obj/item/weapon/pen,
-/obj/item/weapon/storage/belt/utility,
-/obj/item/clothing/glasses/meson,
-/obj/item/weapon/paper_bin{
- layer = 2.9
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"bOv" = (
-/obj/structure/table,
-/obj/item/weapon/book/manual/wiki/engineering_hacking{
- pixel_x = 3;
- pixel_y = 3
- },
-/obj/item/weapon/book/manual/wiki/engineering_construction,
-/obj/item/clothing/gloves/color/yellow,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"bOw" = (
-/obj/structure/table,
-/obj/item/weapon/book/manual/engineering_singularity_safety{
- pixel_x = 3;
- pixel_y = 3
- },
-/obj/item/weapon/book/manual/wiki/engineering_guide,
-/obj/item/weapon/book/manual/engineering_particle_accelerator{
- pixel_x = -3;
- pixel_y = -3
- },
-/obj/item/clothing/gloves/color/yellow,
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"bOx" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 1
- },
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"bOy" = (
-/obj/machinery/light{
- dir = 4
- },
-/obj/structure/closet/radiation,
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"bOz" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'RADIOACTIVE AREA'";
- icon_state = "radiation";
- name = "RADIOACTIVE AREA"
- },
-/turf/closed/wall/r_wall,
-/area/engine/engineering)
-"bOA" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "Singularity";
- name = "radiation shutters"
- },
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/effect/turf_decal/bot{
- dir = 2
- },
-/turf/open/floor/plasteel{
- dir = 2
- },
-/area/engine/engineering)
-"bOB" = (
-/obj/machinery/light{
- dir = 8
- },
-/obj/structure/closet/secure_closet/engineering_welding,
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"bOC" = (
-/obj/structure/table,
-/obj/item/clothing/gloves/color/yellow,
-/obj/item/weapon/storage/belt/utility,
-/obj/item/clothing/glasses/meson,
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"bOD" = (
-/obj/structure/table,
-/obj/machinery/cell_charger,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"bOE" = (
-/obj/effect/landmark/start/station_engineer,
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"bOF" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 9
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"bOG" = (
-/obj/structure/closet/secure_closet/engineering_personal,
-/obj/machinery/light{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"bOH" = (
-/turf/open/floor/engine/n2,
-/area/engine/atmos)
-"bOI" = (
-/obj/machinery/portable_atmospherics/canister/nitrogen,
-/turf/open/floor/engine/n2,
-/area/engine/atmos)
-"bOJ" = (
-/turf/open/floor/engine/o2,
-/area/engine/atmos)
-"bOK" = (
-/obj/machinery/portable_atmospherics/canister/oxygen,
-/turf/open/floor/engine/o2,
-/area/engine/atmos)
-"bOL" = (
-/obj/effect/landmark/xeno_spawn,
-/turf/open/floor/engine/air,
-/area/engine/atmos)
-"bOM" = (
-/obj/machinery/portable_atmospherics/canister/air,
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/engine/air,
-/area/engine/atmos)
-"bON" = (
-/turf/open/floor/engine/air,
-/area/engine/atmos)
-"bOO" = (
-/obj/item/trash/tray,
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
- },
-/area/maintenance/department/engine)
-"bOP" = (
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
- },
-/area/maintenance/department/engine)
-"bOQ" = (
-/obj/machinery/shieldgen,
-/turf/open/floor/plating,
-/area/engine/engineering)
-"bOR" = (
-/obj/machinery/shieldgen,
-/obj/machinery/light/small{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/engine/engineering)
-"bOS" = (
-/turf/open/floor/plating,
-/area/engine/engineering)
-"bOT" = (
-/obj/machinery/door/poddoor{
- id = "Secure Storage";
- name = "secure storage"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/engine/engineering)
-"bOU" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"bOV" = (
-/obj/structure/closet/radiation,
-/obj/structure/extinguisher_cabinet{
- pixel_x = 27
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"bOW" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 9
- },
-/turf/open/floor/plating,
-/area/engine/engineering)
-"bOX" = (
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/engine/engineering)
-"bOY" = (
-/obj/machinery/camera{
- c_tag = "Engineering Center";
- dir = 2;
- network = list("SS13","Engine");
- pixel_x = 23
- },
-/obj/machinery/light{
- dir = 1
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/engine/engineering)
-"bOZ" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 5
- },
-/turf/open/floor/plating,
-/area/engine/engineering)
-"bPa" = (
-/obj/structure/closet/secure_closet/engineering_electrical,
-/obj/structure/extinguisher_cabinet{
- pixel_x = -27
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"bPb" = (
-/obj/structure/table,
-/obj/item/weapon/storage/toolbox/mechanical{
- pixel_x = 2;
- pixel_y = 4
- },
-/obj/item/weapon/storage/toolbox/mechanical{
- pixel_x = -2
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"bPc" = (
-/obj/structure/table,
-/obj/item/weapon/storage/toolbox/electrical{
- pixel_x = 2;
- pixel_y = 4
- },
-/obj/item/weapon/storage/toolbox/electrical{
- pixel_x = -2
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"bPd" = (
-/obj/structure/closet/secure_closet/engineering_personal,
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"bPe" = (
-/obj/machinery/light/small,
-/turf/open/floor/engine/n2,
-/area/engine/atmos)
-"bPf" = (
-/obj/machinery/light/small,
-/turf/open/floor/engine/o2,
-/area/engine/atmos)
-"bPg" = (
-/obj/machinery/light/small,
-/turf/open/floor/engine/air,
-/area/engine/atmos)
-"bPh" = (
-/obj/structure/table,
-/obj/item/weapon/wirecutters,
-/obj/effect/spawner/lootdrop/maintenance,
-/obj/machinery/light/small{
- brightness = 3;
- dir = 8
- },
-/turf/open/floor/plating,
-/area/maintenance/department/engine)
-"bPi" = (
-/obj/structure/table,
-/obj/item/weapon/storage/fancy/cigarettes/cigpack_robustgold,
-/obj/effect/decal/cleanable/deadcockroach,
-/turf/open/floor/plating,
-/area/maintenance/department/engine)
-"bPj" = (
-/obj/structure/closet/emcloset,
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
- },
-/area/maintenance/department/engine)
-"bPk" = (
-/turf/open/floor/plating{
- icon_state = "panelscorched"
- },
-/area/maintenance/department/engine)
-"bPl" = (
-/obj/machinery/field/generator,
-/turf/open/floor/plating,
-/area/engine/engineering)
-"bPm" = (
-/obj/structure/closet/crate,
-/obj/item/stack/sheet/metal{
- amount = 50
- },
-/obj/item/stack/rods{
- amount = 50
- },
-/obj/item/stack/sheet/glass{
- amount = 50
- },
-/obj/item/weapon/electronics/airlock,
-/obj/item/weapon/electronics/airlock,
-/obj/item/weapon/stock_parts/cell/high/plus,
-/obj/item/stack/sheet/mineral/plasma{
- amount = 30
- },
-/turf/open/floor/plating,
-/area/engine/engineering)
-"bPn" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"bPo" = (
-/obj/structure/cable/yellow{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"bPp" = (
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/cable/yellow{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"bPq" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "Singularity";
- name = "radiation shutters"
- },
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/effect/turf_decal/bot{
- dir = 2
- },
-/turf/open/floor/plasteel{
- dir = 2
- },
-/area/engine/engineering)
-"bPr" = (
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/cable/yellow{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/engine/engineering)
-"bPs" = (
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/turf/open/floor/plating,
-/area/engine/engineering)
-"bPt" = (
-/obj/structure/particle_accelerator/end_cap,
-/turf/open/floor/plating,
-/area/engine/engineering)
-"bPu" = (
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plating,
-/area/engine/engineering)
-"bPv" = (
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/engine/engineering)
-"bPw" = (
-/obj/structure/cable/yellow{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"bPx" = (
-/obj/structure/cable/yellow{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"bPy" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"bPz" = (
-/obj/item/weapon/shovel,
-/turf/open/floor/plating,
-/area/maintenance/department/engine)
-"bPA" = (
-/obj/machinery/portable_atmospherics/canister/toxins,
-/turf/open/floor/plating,
-/area/engine/engineering)
-"bPB" = (
-/obj/machinery/power/port_gen/pacman,
-/turf/open/floor/plating,
-/area/engine/engineering)
-"bPC" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/effect/turf_decal/stripes/corner{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"bPD" = (
-/obj/effect/turf_decal/stripes/corner,
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"bPE" = (
-/obj/effect/turf_decal/stripes/line,
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"bPF" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/effect/turf_decal/stripes/line,
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"bPG" = (
-/obj/machinery/camera{
- c_tag = "Engineering Port Aft";
- dir = 1;
- network = list("SS13")
- },
-/obj/machinery/light,
-/obj/effect/turf_decal/stripes/line,
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"bPH" = (
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/yellow/side,
-/area/engine/engineering)
-"bPI" = (
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/button/door{
- id = "Singularity";
- name = "Shutters Control";
- pixel_x = 25;
- req_access_txt = "11"
- },
-/turf/open/floor/plasteel/yellow/side,
-/area/engine/engineering)
-"bPJ" = (
-/obj/machinery/button/door{
- id = "Singularity";
- name = "Shutters Control";
- pixel_x = -25;
- req_access_txt = "11"
- },
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/engine/engineering)
-"bPK" = (
-/obj/machinery/particle_accelerator/control_box,
-/obj/structure/cable/yellow,
-/turf/open/floor/plating,
-/area/engine/engineering)
-"bPL" = (
-/obj/structure/particle_accelerator/fuel_chamber,
-/turf/open/floor/plating,
-/area/engine/engineering)
-"bPM" = (
-/obj/effect/landmark/start/station_engineer,
-/turf/open/floor/plating,
-/area/engine/engineering)
-"bPN" = (
-/obj/machinery/button/door{
- id = "Singularity";
- name = "Shutters Control";
- pixel_x = 25;
- req_access_txt = "11"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/engine/engineering)
-"bPO" = (
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/button/door{
- id = "Singularity";
- name = "Shutters Control";
- pixel_x = -25;
- req_access_txt = "11"
- },
-/turf/open/floor/plasteel/yellow/side,
-/area/engine/engineering)
-"bPP" = (
-/obj/machinery/camera{
- c_tag = "Engineering Starboard Aft";
- dir = 1;
- network = list("SS13")
- },
-/obj/machinery/light,
-/obj/effect/turf_decal/stripes/line,
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"bPQ" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/effect/turf_decal/stripes/line,
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"bPR" = (
-/obj/structure/reagent_dispensers/fueltank,
-/obj/effect/turf_decal/stripes/corner{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"bPS" = (
-/obj/structure/reagent_dispensers/watertank,
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"bPT" = (
-/obj/structure/closet/crate/medical,
-/obj/item/stack/medical/gauze,
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/open/floor/plating,
-/area/maintenance/department/engine)
-"bPU" = (
-/obj/structure/bed,
-/obj/item/weapon/bedsheet/random,
-/obj/structure/table/optable,
-/turf/open/floor/plating,
-/area/maintenance/department/engine)
-"bPV" = (
-/obj/machinery/power/emitter,
-/turf/open/floor/plating,
-/area/engine/engineering)
-"bPW" = (
-/obj/machinery/door/airlock/engineering{
- name = "Telecommunications Transit Tube";
- req_access_txt = "10; 61"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"bPX" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/door/airlock/external{
- cyclelinkeddir = 2;
- name = "Engineering External Access";
- req_access = null;
- req_access_txt = "10;13"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plating,
-/area/engine/engineering)
-"bPY" = (
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "Singularity";
- name = "radiation shutters"
- },
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/engine/engineering)
-"bPZ" = (
-/obj/item/stack/cable_coil{
- pixel_x = 3;
- pixel_y = -7
- },
-/obj/item/stack/cable_coil{
- pixel_x = 3;
- pixel_y = -7
- },
-/obj/item/weapon/crowbar,
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/engine/engineering)
-"bQa" = (
-/obj/structure/chair/stool,
-/turf/open/floor/plating,
-/area/engine/engineering)
-"bQb" = (
-/obj/structure/particle_accelerator/power_box,
-/turf/open/floor/plating,
-/area/engine/engineering)
-"bQc" = (
-/obj/item/weapon/screwdriver,
-/turf/open/floor/plating,
-/area/engine/engineering)
-"bQd" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/engine/engineering)
-"bQe" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/door/airlock/external{
- cyclelinkeddir = 2;
- name = "Engineering External Access";
- req_access = null;
- req_access_txt = "10;13"
- },
-/turf/open/floor/plating,
-/area/engine/engineering)
-"bQf" = (
-/obj/effect/landmark/xeno_spawn,
-/turf/open/floor/plating,
-/area/maintenance/department/engine)
-"bQg" = (
-/obj/effect/decal/cleanable/robot_debris{
- icon_state = "gib7"
- },
-/turf/open/floor/plating,
-/area/maintenance/department/engine)
-"bQh" = (
-/obj/item/device/radio,
-/turf/open/floor/plating,
-/area/maintenance/department/engine)
-"bQi" = (
-/obj/effect/spawner/lootdrop/maintenance,
-/obj/structure/grille/broken,
-/turf/open/floor/plating,
-/area/maintenance/department/engine)
-"bQj" = (
-/obj/machinery/field/generator,
-/turf/open/floor/plating,
-/area/maintenance/department/engine)
-"bQk" = (
-/obj/machinery/power/emitter,
-/turf/open/floor/plating,
-/area/maintenance/department/engine)
-"bQl" = (
-/obj/effect/decal/cleanable/cobweb,
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/engine/engineering)
-"bQm" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 4
- },
-/obj/structure/sign/poster/official/random{
- pixel_y = 32
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"bQn" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 9
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"bQo" = (
-/obj/machinery/light/small{
- dir = 8
- },
-/obj/structure/closet/emcloset{
- anchored = 1;
- desc = "It's a storage unit for emergency breath masks and O2 tanks, and is securely bolted in place.";
- name = "anchored emergency closet"
- },
-/turf/open/floor/plating,
-/area/engine/engineering)
-"bQp" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
- icon_state = "space";
- layer = 4;
- name = "EXTERNAL AIRLOCK";
- pixel_x = 32
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plating,
-/area/engine/engineering)
-"bQq" = (
-/obj/machinery/power/rad_collector{
- anchored = 1
- },
-/obj/item/weapon/tank/internals/plasma,
-/obj/structure/cable/yellow,
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/engine/engineering)
-"bQr" = (
-/obj/machinery/power/rad_collector{
- anchored = 1
- },
-/obj/structure/cable/yellow,
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/engine/engineering)
-"bQs" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/engine/engineering)
-"bQt" = (
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/engine/engineering)
-"bQu" = (
-/obj/structure/particle_accelerator/particle_emitter/left,
-/turf/open/floor/plating,
-/area/engine/engineering)
-"bQv" = (
-/obj/structure/particle_accelerator/particle_emitter/center,
-/turf/open/floor/plating,
-/area/engine/engineering)
-"bQw" = (
-/obj/structure/particle_accelerator/particle_emitter/right,
-/turf/open/floor/plating,
-/area/engine/engineering)
-"bQx" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
- icon_state = "space";
- layer = 4;
- name = "EXTERNAL AIRLOCK";
- pixel_x = -32
- },
-/turf/open/floor/plating,
-/area/engine/engineering)
-"bQy" = (
-/obj/machinery/light/small{
- dir = 4
- },
-/obj/structure/closet/emcloset{
- anchored = 1;
- desc = "It's a storage unit for emergency breath masks and O2 tanks, and is securely bolted in place.";
- name = "anchored emergency closet"
- },
-/turf/open/floor/plating,
-/area/engine/engineering)
-"bQz" = (
-/obj/docking_port/stationary{
- dheight = 9;
- dir = 2;
- dwidth = 5;
- height = 24;
- id = "syndicate_se";
- name = "southeast of station";
- turf_type = /turf/open/space;
- width = 18
- },
-/turf/open/space,
-/area/space)
-"bQA" = (
-/obj/structure/chair,
-/obj/item/weapon/cigbutt,
-/turf/open/floor/plating,
-/area/maintenance/department/engine)
-"bQB" = (
-/obj/item/weapon/reagent_containers/food/drinks/soda_cans/cola,
-/turf/open/floor/plating,
-/area/maintenance/department/engine)
-"bQC" = (
-/obj/structure/transit_tube_pod,
-/obj/structure/transit_tube/station/reverse{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/engine/engineering)
-"bQD" = (
-/obj/machinery/camera{
- c_tag = "Engineering Telecomms Access";
- dir = 8;
- network = list("Labor")
- },
-/obj/machinery/light{
- dir = 4
- },
-/obj/machinery/computer/security/telescreen{
- desc = "Used for watching telecomms.";
- dir = 8;
- layer = 4;
- name = "Telecomms Telescreen";
- network = list("Telecomms");
- pixel_x = 30
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"bQE" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/door/airlock/external{
- cyclelinkeddir = 1;
- name = "Engineering External Access";
- req_access = null;
- req_access_txt = "10;13"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plating,
-/area/engine/engineering)
-"bQF" = (
-/obj/structure/cable/yellow{
- icon_state = "1-4";
- d1 = 1;
- d2 = 4
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 10
- },
-/turf/open/floor/plating,
-/area/engine/engineering)
-"bQG" = (
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/effect/turf_decal/stripes/line,
-/turf/open/floor/plating,
-/area/engine/engineering)
-"bQH" = (
-/obj/item/weapon/wirecutters,
-/obj/structure/cable/yellow{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/effect/turf_decal/stripes/line,
-/turf/open/floor/plating,
-/area/engine/engineering)
-"bQI" = (
-/obj/effect/turf_decal/stripes/line,
-/turf/open/floor/plating,
-/area/engine/engineering)
-"bQJ" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 6
- },
-/turf/open/floor/plating,
-/area/engine/engineering)
-"bQK" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/door/airlock/external{
- cyclelinkeddir = 1;
- name = "Engineering External Access";
- req_access = null;
- req_access_txt = "10;13"
- },
-/turf/open/floor/plating,
-/area/engine/engineering)
-"bQL" = (
-/obj/structure/lattice,
-/obj/machinery/camera/motion{
- c_tag = "Telecomms External Port Aft";
- dir = 2;
- network = list("Telecomms")
- },
-/turf/open/space,
-/area/space)
-"bQM" = (
-/obj/structure/lattice,
-/obj/machinery/camera/motion{
- c_tag = "Telecomms External Starboard Aft";
- dir = 2;
- network = list("Telecomms")
- },
-/turf/open/space,
-/area/space)
-"bQN" = (
-/obj/structure/transit_tube,
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/engine/engineering)
-"bQO" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"bQP" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/closed/wall/r_wall,
-/area/engine/engineering)
-"bQQ" = (
-/obj/structure/grille,
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plating/airless,
-/area/engine/engineering)
-"bQR" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 9
- },
-/turf/open/floor/plating/airless,
-/area/engine/engineering)
-"bQS" = (
-/obj/machinery/camera/emp_proof{
- c_tag = "Engine Containment Port Fore";
- dir = 2;
- network = list("Engine")
- },
-/turf/open/floor/plating/airless,
-/area/engine/engineering)
-"bQT" = (
-/obj/machinery/power/grounding_rod,
-/turf/open/floor/plating/airless,
-/area/engine/engineering)
-"bQU" = (
-/turf/open/floor/plating/airless,
-/area/engine/engineering)
-"bQV" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/engine/engineering)
-"bQW" = (
-/obj/machinery/camera/emp_proof{
- c_tag = "Engine Containment Starboard Fore";
- dir = 2;
- network = list("Engine")
- },
-/turf/open/floor/plating/airless,
-/area/engine/engineering)
-"bQX" = (
/obj/structure/cable{
d1 = 1;
d2 = 4;
@@ -44163,164 +52355,8 @@
},
/turf/open/floor/plating/airless,
/area/engine/engineering)
-"bQY" = (
+"cjU" = (
/obj/structure/grille,
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/turf/open/floor/plating/airless,
-/area/engine/engineering)
-"bQZ" = (
-/obj/structure/window/reinforced/fulltile,
-/obj/structure/transit_tube,
-/turf/open/floor/plating,
-/area/engine/engineering)
-"bRa" = (
-/obj/machinery/door/airlock/external{
- cyclelinkeddir = 2;
- name = "Engineering External Access";
- req_access = null;
- req_access_txt = "61"
- },
-/turf/open/floor/plating,
-/area/engine/engineering)
-"bRb" = (
-/obj/structure/grille,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plating/airless,
-/area/engine/engineering)
-"bRc" = (
-/obj/structure/cable/yellow{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/turf/open/floor/plating/airless,
-/area/engine/engineering)
-"bRd" = (
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plating/airless,
-/area/engine/engineering)
-"bRe" = (
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/structure/cable/yellow{
- icon_state = "1-4";
- d1 = 1;
- d2 = 4
- },
-/turf/open/floor/plating/airless,
-/area/engine/engineering)
-"bRf" = (
-/obj/structure/cable/yellow{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/turf/open/floor/plating/airless,
-/area/engine/engineering)
-"bRg" = (
-/obj/structure/transit_tube,
-/turf/open/floor/plating,
-/area/space)
-"bRh" = (
-/obj/machinery/light/small{
- dir = 8
- },
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
- icon_state = "space";
- layer = 4;
- name = "EXTERNAL AIRLOCK";
- pixel_x = -32
- },
-/turf/open/floor/plating,
-/area/engine/engineering)
-"bRi" = (
-/obj/structure/grille,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/turf/open/floor/plating/airless,
-/area/engine/engineering)
-"bRj" = (
-/obj/machinery/power/emitter{
- anchored = 1;
- dir = 4;
- state = 2
- },
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/turf/open/floor/plating/airless,
-/area/engine/engineering)
-"bRk" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/floor/plating/airless,
-/area/engine/engineering)
-"bRl" = (
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plating/airless,
-/area/engine/engineering)
-"bRm" = (
-/obj/machinery/field/generator{
- anchored = 1;
- state = 2
- },
-/turf/open/floor/plating/airless,
-/area/space/nearstation)
-"bRn" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/turf/open/floor/plating/airless,
-/area/engine/engineering)
-"bRo" = (
-/obj/machinery/power/emitter{
- anchored = 1;
- dir = 8;
- state = 2
- },
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/turf/open/floor/plating/airless,
-/area/engine/engineering)
-"bRp" = (
-/obj/structure/grille,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
/obj/structure/cable{
d1 = 1;
d2 = 8;
@@ -44328,157 +52364,7 @@
},
/turf/open/floor/plating/airless,
/area/engine/engineering)
-"bRq" = (
-/obj/machinery/door/airlock/external{
- cyclelinkeddir = 1;
- name = "Engineering External Access";
- req_access = null;
- req_access_txt = "61"
- },
-/turf/open/floor/plating,
-/area/engine/engineering)
-"bRr" = (
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/cable/yellow{
- icon_state = "1-4";
- d1 = 1;
- d2 = 4
- },
-/turf/open/floor/plating/airless,
-/area/engine/engineering)
-"bRs" = (
-/obj/structure/cable/yellow{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/machinery/power/tesla_coil,
-/turf/open/floor/plating/airless,
-/area/engine/engineering)
-"bRt" = (
-/obj/structure/cable/yellow{
- icon_state = "0-4";
- d2 = 4
- },
-/obj/machinery/power/tesla_coil,
-/turf/open/floor/plating/airless,
-/area/engine/engineering)
-"bRu" = (
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/cable/yellow{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/turf/open/floor/plating/airless,
-/area/engine/engineering)
-"bRv" = (
-/obj/structure/lattice/catwalk,
-/turf/open/space,
-/area/space/nearstation)
-"bRw" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/structure/grille,
-/turf/open/floor/plating/airless,
-/area/engine/engineering)
-"bRx" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/structure/grille,
-/turf/open/floor/plating/airless,
-/area/engine/engineering)
-"bRy" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/structure/grille,
-/turf/open/floor/plating/airless,
-/area/engine/engineering)
-"bRz" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/structure/grille,
-/turf/open/floor/plating/airless,
-/area/engine/engineering)
-"bRA" = (
-/turf/closed/mineral,
-/area/mine/explored{
- name = "Bomb Testing Asteroid"
- })
-"bRB" = (
-/turf/closed/wall,
-/area/mine/explored{
- name = "Bomb Testing Asteroid"
- })
-"bRC" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'BOMB RANGE";
- name = "BOMB RANGE"
- },
-/turf/closed/indestructible{
- desc = "A wall impregnated with Fixium, able to withstand massive explosions with ease";
- icon_state = "riveted";
- name = "hyper-reinforced wall"
- },
-/area/mine/explored{
- name = "Bomb Testing Asteroid"
- })
-"bRD" = (
-/turf/open/floor/plating/asteroid/airless,
-/area/mine/explored{
- name = "Bomb Testing Asteroid"
- })
-"bRE" = (
-/obj/structure/transit_tube/crossing,
-/turf/open/floor/plating,
-/area/space)
-"bRF" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/grille,
-/turf/open/floor/plating/airless,
-/area/engine/engineering)
-"bRG" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 9
- },
-/turf/open/floor/plating/airless,
-/area/space/nearstation)
-"bRH" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plating/airless,
-/area/space/nearstation)
-"bRI" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 5
- },
-/turf/open/floor/plating/airless,
-/area/space/nearstation)
-"bRJ" = (
+"cjV" = (
/obj/machinery/camera{
active_power_usage = 0;
c_tag = "Bomb Testing Asteroid Fore";
@@ -44493,122 +52379,151 @@
/area/mine/explored{
name = "Bomb Testing Asteroid"
})
-"bRK" = (
-/obj/machinery/light{
+"cjW" = (
+/obj/structure/window/reinforced{
dir = 8
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+/obj/structure/window/reinforced,
+/obj/structure/table/glass,
+/obj/item/weapon/tank/internals/oxygen,
+/obj/item/clothing/mask/breath,
+/obj/item/clothing/suit/space/hardsuit/engine/elite,
+/turf/open/floor/plating/abductor,
+/area/shuttle/abandoned)
+"cjX" = (
+/obj/structure/chair{
+ dir = 1
},
-/obj/structure/grille,
-/turf/open/floor/plating/airless,
-/area/engine/engineering)
-"bRL" = (
-/obj/machinery/the_singularitygen,
-/obj/effect/turf_decal/stripes/line{
+/turf/open/floor/plating/abductor,
+/area/shuttle/abandoned)
+"cjY" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced,
+/obj/structure/table/glass,
+/obj/item/clothing/shoes/magboots,
+/turf/open/floor/plating/abductor,
+/area/shuttle/abandoned)
+"cjZ" = (
+/obj/structure/table,
+/obj/item/weapon/storage/crayons,
+/obj/item/weapon/wrench,
+/turf/open/floor/plasteel/black,
+/area/chapel/main/monastery)
+"cka" = (
+/obj/structure/chair{
dir = 8
},
-/turf/open/floor/plating/airless,
-/area/space/nearstation)
-"bRM" = (
-/obj/machinery/the_singularitygen/tesla,
-/turf/open/floor/plating/airless,
-/area/space/nearstation)
-"bRN" = (
-/obj/effect/turf_decal/stripes/line{
+/turf/open/floor/plasteel/black,
+/area/chapel/main/monastery)
+"ckb" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/structure/chair{
dir = 4
},
-/turf/open/floor/plating/airless,
-/area/space/nearstation)
-"bRO" = (
-/obj/machinery/light{
+/turf/open/floor/plasteel/black,
+/area/chapel/main/monastery)
+"ckc" = (
+/obj/structure/window/reinforced,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/carpet,
+/area/chapel/main/monastery)
+"ckd" = (
+/obj/machinery/light/small{
dir = 4
},
+/obj/effect/decal/cleanable/cobweb{
+ icon_state = "cobweb2"
+ },
+/obj/item/weapon/storage/box/matches{
+ pixel_x = -3;
+ pixel_y = 8
+ },
+/obj/item/weapon/storage/fancy/candle_box,
+/obj/structure/table/wood/fancy,
+/turf/open/floor/plasteel/black,
+/area/chapel/main/monastery)
+"cke" = (
+/obj/machinery/power/smes{
+ charge = 5e+006
+ },
+/obj/structure/cable,
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/grille,
-/turf/open/floor/plating/airless,
-/area/engine/engineering)
-"bRP" = (
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/open/floor/plating/asteroid/airless,
-/area/mine/explored{
- name = "Bomb Testing Asteroid"
- })
-"bRQ" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 10
- },
-/turf/open/floor/plating/airless,
-/area/space/nearstation)
-"bRR" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 2
- },
-/turf/open/floor/plating/airless,
-/area/space/nearstation)
-"bRS" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 6
- },
-/turf/open/floor/plating/airless,
-/area/space/nearstation)
-"bRT" = (
-/turf/closed/mineral/random/low_chance,
-/area/mine/explored{
- name = "Bomb Testing Asteroid"
- })
-"bRU" = (
-/obj/item/device/radio/beacon,
-/obj/effect/landmark/revenantspawn,
-/turf/open/floor/plating/airless,
-/area/mine/explored{
- name = "Bomb Testing Asteroid"
- })
-"bRV" = (
-/obj/item/device/flashlight/lantern{
- on = 1
- },
-/turf/open/floor/plating/asteroid/airless,
-/area/mine/explored{
- name = "Bomb Testing Asteroid"
- })
-"bRW" = (
-/obj/structure/grille,
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/turf/open/floor/plating/airless,
-/area/engine/engineering)
-"bRX" = (
-/obj/structure/grille,
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/turf/open/floor/plating/airless,
-/area/engine/engineering)
-"bRY" = (
-/obj/structure/grille,
-/turf/open/floor/plating/airless,
-/area/engine/engineering)
-"bRZ" = (
-/obj/structure/cable/yellow{
icon_state = "0-2";
d2 = 2
},
-/obj/machinery/power/tesla_coil,
+/turf/open/floor/plating,
+/area/maintenance/department/chapel/monastery)
+"ckf" = (
+/obj/machinery/power/terminal{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/chapel/monastery)
+"ckg" = (
+/obj/item/weapon/wrench,
+/turf/open/floor/plating,
+/area/maintenance/department/chapel/monastery)
+"ckh" = (
+/obj/item/stack/cable_coil,
+/obj/item/stack/cable_coil,
+/turf/open/floor/plating,
+/area/maintenance/department/chapel/monastery)
+"cki" = (
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 1;
+ name = "Air Out";
+ on = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/chapel/monastery)
+"ckj" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plating,
+/area/maintenance/department/chapel/monastery)
+"ckk" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 24
+ },
+/obj/item/stack/rods{
+ amount = 50
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/chapel/monastery)
+"ckl" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/machinery/photocopier,
+/turf/open/floor/plasteel/black,
+/area/library)
+"ckm" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/carpet,
+/area/library)
+"ckn" = (
+/obj/item/weapon/storage/bag/books,
+/turf/open/floor/plasteel/black,
+/area/library)
+"cko" = (
+/obj/structure/bookcase/random/religion,
+/turf/open/floor/plasteel/black,
+/area/library)
+"ckp" = (
+/obj/structure/bookcase/random/religion,
+/obj/effect/decal/cleanable/cobweb{
+ icon_state = "cobweb2"
+ },
+/turf/open/floor/plasteel/black,
+/area/library)
+"ckq" = (
+/obj/structure/grille,
/turf/open/floor/plating/airless,
/area/engine/engineering)
-"bSa" = (
+"ckr" = (
/obj/machinery/camera/emp_proof{
c_tag = "Engine Containment Port Aft";
dir = 1;
@@ -44616,50 +52531,7 @@
},
/turf/open/floor/plating/airless,
/area/engine/engineering)
-"bSb" = (
-/obj/structure/cable/yellow{
- icon_state = "1-4";
- d1 = 1;
- d2 = 4
- },
-/turf/open/floor/plating/airless,
-/area/engine/engineering)
-"bSc" = (
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/turf/open/floor/plating/airless,
-/area/engine/engineering)
-"bSd" = (
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/machinery/light,
-/turf/open/floor/plating/airless,
-/area/engine/engineering)
-"bSe" = (
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/turf/open/floor/plating/airless,
-/area/engine/engineering)
-"bSf" = (
+"cks" = (
/obj/machinery/camera/emp_proof{
c_tag = "Engine Containment Starboard Aft";
dir = 1;
@@ -44667,38 +52539,378 @@
},
/turf/open/floor/plating/airless,
/area/engine/engineering)
-"bSg" = (
-/turf/closed/mineral/iron,
+"ckt" = (
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/plating/asteroid/airless,
/area/mine/explored{
name = "Bomb Testing Asteroid"
})
-"bSh" = (
+"cku" = (
+/obj/item/weapon/reagent_containers/food/snacks/grown/poppy,
+/obj/item/weapon/reagent_containers/food/snacks/grown/poppy,
+/obj/item/weapon/reagent_containers/food/snacks/grown/poppy,
+/obj/structure/table/wood/fancy,
+/turf/open/floor/plasteel/black,
+/area/chapel/main/monastery)
+"ckv" = (
+/obj/machinery/mass_driver{
+ id = "chapelgun"
+ },
+/obj/machinery/door/window/eastleft{
+ dir = 8;
+ name = "Mass Driver";
+ req_one_access_txt = "0"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/black,
+/area/chapel/main/monastery)
+"ckw" = (
+/obj/machinery/mass_driver{
+ id = "chapelgun"
+ },
+/obj/structure/window/reinforced{
+ dir = 4;
+ layer = 2.9
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/black,
+/area/chapel/main/monastery)
+"ckx" = (
+/obj/structure/table/wood/fancy,
+/obj/item/clothing/under/burial,
+/obj/item/clothing/under/burial,
+/obj/item/clothing/under/burial,
+/obj/item/clothing/under/burial,
+/turf/open/floor/plasteel/black,
+/area/chapel/main/monastery)
+"cky" = (
+/obj/machinery/power/smes{
+ charge = 5e+006
+ },
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/maintenance/department/chapel/monastery)
+"ckz" = (
+/obj/machinery/atmospherics/pipe/simple/general/hidden{
+ dir = 6
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/chapel/monastery)
+"ckA" = (
+/obj/machinery/atmospherics/pipe/manifold/general/hidden{
+ dir = 1
+ },
+/obj/machinery/meter,
+/turf/open/floor/plating,
+/area/maintenance/department/chapel/monastery)
+"ckB" = (
+/obj/machinery/atmospherics/pipe/manifold/general/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/chapel/monastery)
+"ckC" = (
+/obj/item/weapon/extinguisher,
+/turf/open/floor/plating,
+/area/maintenance/department/chapel/monastery)
+"ckD" = (
+/obj/structure/chair/wood/normal,
+/turf/open/floor/plasteel/black,
+/area/library)
+"ckE" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 5
+ },
+/turf/open/floor/carpet,
+/area/library)
+"ckF" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/carpet,
+/area/library)
+"ckG" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/open/floor/plasteel/black,
+/area/library)
+"ckH" = (
+/turf/open/floor/plasteel/black,
+/area/library)
+"ckI" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/plasteel/black,
+/area/library)
+"ckJ" = (
/obj/structure/sign/securearea,
/turf/closed/wall/r_wall,
/area/engine/engineering)
-"bSi" = (
+"ckK" = (
+/turf/closed/mineral/random/low_chance,
+/area/mine/explored{
+ name = "Bomb Testing Asteroid"
+ })
+"ckL" = (
+/obj/item/device/radio/beacon,
+/obj/effect/landmark/revenantspawn,
+/turf/open/floor/plating/airless,
+/area/mine/explored{
+ name = "Bomb Testing Asteroid"
+ })
+"ckM" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/open/floor/plasteel/black,
+/area/chapel/main/monastery)
+"ckN" = (
+/obj/structure/window/reinforced{
+ dir = 4;
+ layer = 2.9
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/open/floor/plasteel/black,
+/area/chapel/main/monastery)
+"ckO" = (
+/obj/structure/closet/emcloset,
+/turf/open/floor/plating,
+/area/maintenance/department/chapel/monastery)
+"ckP" = (
+/obj/machinery/atmospherics/components/unary/tank/air{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/chapel/monastery)
+"ckQ" = (
+/obj/structure/reagent_dispensers/fueltank,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plating,
+/area/maintenance/department/chapel/monastery)
+"ckR" = (
+/obj/structure/reagent_dispensers/watertank,
+/turf/open/floor/plating,
+/area/maintenance/department/chapel/monastery)
+"ckS" = (
+/obj/structure/table/wood,
+/obj/item/weapon/folder/yellow,
+/obj/item/weapon/pen,
+/obj/machinery/camera{
+ c_tag = "Monastery Library";
+ dir = 4;
+ network = list("SS13","Monastery")
+ },
+/turf/open/floor/plasteel/black,
+/area/library)
+"ckT" = (
+/turf/open/floor/carpet,
+/area/library)
+"ckU" = (
+/obj/machinery/bookbinder,
+/turf/open/floor/plasteel/black,
+/area/library)
+"ckV" = (
+/obj/structure/bookcase/random/reference,
+/turf/open/floor/plasteel/black,
+/area/library)
+"ckW" = (
+/obj/structure/bookcase/random/nonfiction,
+/turf/open/floor/plasteel/black,
+/area/library)
+"ckX" = (
+/obj/structure/bookcase/random/fiction,
+/turf/open/floor/plasteel/black,
+/area/library)
+"ckY" = (
+/obj/structure/shuttle/engine/propulsion/burst,
+/turf/closed/wall/mineral/titanium,
+/area/shuttle/abandoned)
+"ckZ" = (
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 2.9
+ },
+/turf/open/space,
+/area/space)
+"cla" = (
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 2.9
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/open/space,
+/area/space)
+"clb" = (
+/obj/machinery/door/poddoor{
+ id = "chapelgun";
+ name = "mass driver door"
+ },
+/turf/open/floor/plating,
+/area/chapel/main/monastery)
+"clc" = (
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 2.9
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/open/space,
+/area/space)
+"cld" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 6
+ },
+/turf/closed/wall,
+/area/maintenance/department/chapel/monastery)
+"cle" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/closed/wall,
+/area/maintenance/department/chapel/monastery)
+"clf" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 9
+ },
+/turf/closed/wall,
+/area/maintenance/department/chapel/monastery)
+"clg" = (
+/obj/structure/chair/wood/normal{
+ dir = 1
+ },
+/turf/open/floor/plasteel/black,
+/area/library)
+"clh" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 5
+ },
+/turf/open/floor/carpet,
+/area/library)
+"cli" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/open/floor/plasteel/black,
+/area/library)
+"clj" = (
+/obj/item/device/flashlight/lantern{
+ on = 1
+ },
+/turf/open/floor/plating/asteroid/airless,
+/area/mine/explored{
+ name = "Bomb Testing Asteroid"
+ })
+"clk" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/machinery/libraryscanner,
+/turf/open/floor/plasteel/black,
+/area/library)
+"cll" = (
+/obj/machinery/newscaster{
+ pixel_x = -32;
+ pixel_y = -32
+ },
+/turf/open/floor/carpet,
+/area/library)
+"clm" = (
+/obj/structure/closet/crate/bin,
+/turf/open/floor/plasteel/black,
+/area/library)
+"cln" = (
+/obj/structure/bookcase/random/adult,
+/turf/open/floor/plasteel/black,
+/area/library)
+"clo" = (
+/obj/effect/decal/remains/human,
+/turf/closed/mineral,
+/area/chapel/asteroid{
+ name = "Monastery Asteroid"
+ })
+"clp" = (
+/obj/structure/table/wood,
+/obj/machinery/computer/libraryconsole/bookmanagement,
+/turf/open/floor/plasteel/black,
+/area/library)
+"clq" = (
+/obj/structure/table/wood,
+/obj/item/weapon/paper_bin{
+ layer = 2.9;
+ pixel_x = -2;
+ pixel_y = 4
+ },
+/obj/item/weapon/pen,
+/obj/item/weapon/barcodescanner,
+/turf/open/floor/plasteel/black,
+/area/library)
+"clr" = (
+/obj/item/weapon/pickaxe/mini,
+/turf/closed/mineral,
+/area/chapel/asteroid{
+ name = "Monastery Asteroid"
+ })
+"cls" = (
/obj/effect/spawner/lootdrop/maintenance,
/turf/closed/mineral,
/area/mine/explored{
name = "Bomb Testing Asteroid"
})
-"bSj" = (
+"clt" = (
+/obj/docking_port/stationary{
+ dheight = 9;
+ dir = 2;
+ dwidth = 5;
+ height = 24;
+ id = "syndicate_southmaint";
+ name = "south maintenance airlock";
+ turf_type = /turf/open/space;
+ width = 18
+ },
+/turf/open/space,
+/area/space)
+"clu" = (
+/obj/machinery/camera{
+ c_tag = "Telecomms External Fore";
+ dir = 1;
+ network = list("SS13, Telecomms");
+ start_active = 1
+ },
+/turf/open/space,
+/area/space)
+"clv" = (
+/turf/closed/mineral/iron,
+/area/mine/explored{
+ name = "Bomb Testing Asteroid"
+ })
+"clw" = (
/turf/closed/wall/r_wall,
/area/tcommsat/computer)
-"bSk" = (
+"clx" = (
/obj/machinery/atmospherics/components/unary/outlet_injector/on{
dir = 4
},
/turf/open/floor/plating/airless,
/area/space)
-"bSl" = (
+"cly" = (
/obj/structure/lattice,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 10
},
/turf/open/space,
/area/space)
-"bSm" = (
+"clz" = (
/obj/machinery/door/airlock/external{
cyclelinkeddir = 2;
name = "Telecommunications External Access";
@@ -44707,27 +52919,23 @@
},
/turf/open/floor/plating,
/area/tcommsat/computer)
-"bSn" = (
+"clA" = (
/obj/machinery/light/small{
brightness = 3;
dir = 8
},
/turf/open/floor/plating,
/area/tcommsat/computer)
-"bSo" = (
-/obj/structure/closet/emcloset{
- anchored = 1;
- desc = "It's a storage unit for emergency breath masks and O2 tanks, and is securely bolted in place.";
- name = "anchored emergency closet"
- },
+"clB" = (
+/obj/structure/closet/emcloset/anchored,
/turf/open/floor/plating,
/area/tcommsat/computer)
-"bSp" = (
+"clC" = (
/obj/structure/window/reinforced/fulltile,
/obj/structure/transit_tube,
/turf/open/floor/plating,
/area/tcommsat/computer)
-"bSq" = (
+"clD" = (
/obj/machinery/door/airlock/external{
cyclelinkeddir = 1;
name = "Telecommunications External Access";
@@ -44736,55 +52944,48 @@
},
/turf/open/floor/plating,
/area/tcommsat/computer)
-"bSr" = (
+"clE" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/closed/wall/r_wall,
/area/tcommsat/computer)
-"bSs" = (
-/obj/docking_port/stationary{
- dheight = 9;
- dir = 2;
- dwidth = 5;
- height = 24;
- id = "syndicate_s";
- name = "south of station";
- turf_type = /turf/open/space;
- width = 18
- },
-/turf/open/space,
-/area/space)
-"bSt" = (
+"clF" = (
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/closed/mineral/random/low_chance,
+/area/mine/explored{
+ name = "Bomb Testing Asteroid"
+ })
+"clG" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/tcommsat/computer)
-"bSu" = (
+"clH" = (
/obj/structure/transit_tube,
/obj/effect/turf_decal/stripes/line{
dir = 4
},
/turf/open/floor/plating,
/area/tcommsat/computer)
-"bSv" = (
+"clI" = (
/obj/machinery/light/small{
dir = 1
},
/turf/open/floor/plasteel,
/area/tcommsat/computer)
-"bSw" = (
+"clJ" = (
/turf/open/floor/plasteel,
/area/tcommsat/computer)
-"bSx" = (
+"clK" = (
/obj/machinery/atmospherics/components/unary/vent_pump/on,
/obj/machinery/light/small{
dir = 1
},
/turf/open/floor/plasteel,
/area/tcommsat/computer)
-"bSy" = (
+"clL" = (
/turf/closed/wall,
/area/tcommsat/computer)
-"bSz" = (
+"clM" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 1;
name = "Waste Out";
@@ -44792,17 +52993,17 @@
},
/turf/open/floor/plating,
/area/tcommsat/computer)
-"bSA" = (
+"clN" = (
/obj/machinery/atmospherics/components/unary/tank/air,
/turf/open/floor/plating,
/area/tcommsat/computer)
-"bSB" = (
+"clO" = (
/obj/structure/grille,
/obj/structure/lattice,
/obj/structure/lattice,
/turf/open/space,
/area/space)
-"bSC" = (
+"clP" = (
/obj/structure/transit_tube/station/reverse/flipped{
dir = 8
},
@@ -44811,27 +53012,27 @@
},
/turf/open/floor/plating,
/area/tcommsat/computer)
-"bSD" = (
+"clQ" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
dir = 4
},
/turf/open/floor/plasteel,
/area/tcommsat/computer)
-"bSE" = (
+"clR" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 1
},
/obj/item/device/radio/beacon,
/turf/open/floor/plasteel,
/area/tcommsat/computer)
-"bSF" = (
+"clS" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel,
/area/tcommsat/computer)
-"bSG" = (
+"clT" = (
/obj/machinery/door/airlock/maintenance_hatch{
name = "Telecommunications Maintenance";
req_access_txt = "61"
@@ -44841,13 +53042,13 @@
},
/turf/open/floor/plating,
/area/tcommsat/computer)
-"bSH" = (
+"clU" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 9
},
/turf/open/floor/plating,
/area/tcommsat/computer)
-"bSI" = (
+"clV" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 0;
name = "Air Out";
@@ -44858,29 +53059,37 @@
},
/turf/open/floor/plating,
/area/tcommsat/computer)
-"bSJ" = (
+"clW" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
},
/turf/open/floor/plating,
/area/tcommsat/computer)
-"bSK" = (
+"clX" = (
+/obj/machinery/camera/motion{
+ c_tag = "Telecomms External Access";
+ dir = 1;
+ network = list("SS13","Telecomms")
+ },
+/turf/open/floor/plasteel,
+/area/tcommsat/computer)
+"clY" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel,
/area/tcommsat/computer)
-"bSL" = (
+"clZ" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 8
},
/turf/open/floor/plasteel,
/area/tcommsat/computer)
-"bSM" = (
+"cma" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/closed/wall,
/area/tcommsat/computer)
-"bSN" = (
+"cmb" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -44888,14 +53097,14 @@
/obj/item/stack/cable_coil,
/turf/open/floor/plating,
/area/tcommsat/computer)
-"bSO" = (
+"cmc" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 9
},
/obj/machinery/power/port_gen/pacman,
/turf/open/floor/plating,
/area/tcommsat/computer)
-"bSP" = (
+"cmd" = (
/obj/machinery/door/airlock/engineering{
name = "Telecommunications Chamber";
req_access_txt = "61"
@@ -44903,11 +53112,11 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel,
/area/tcommsat/computer)
-"bSQ" = (
+"cme" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/closed/wall/r_wall,
/area/tcommsat/computer)
-"bSR" = (
+"cmf" = (
/obj/structure/rack,
/obj/item/weapon/storage/toolbox/mechanical,
/obj/item/device/radio,
@@ -44919,7 +53128,7 @@
dir = 9
},
/area/tcommsat/computer)
-"bSS" = (
+"cmg" = (
/obj/machinery/requests_console{
announcementConsole = 1;
department = "Telecomms Admin";
@@ -44934,13 +53143,13 @@
dir = 1
},
/area/tcommsat/computer)
-"bST" = (
+"cmh" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
/turf/open/floor/plasteel/yellow/side{
dir = 1
},
/area/tcommsat/computer)
-"bSU" = (
+"cmi" = (
/obj/structure/cable{
d1 = 2;
d2 = 4;
@@ -44963,7 +53172,7 @@
dir = 1
},
/area/tcommsat/computer)
-"bSV" = (
+"cmj" = (
/obj/machinery/door/airlock/glass_command{
name = "Control Room";
req_access_txt = "19; 61"
@@ -44980,7 +53189,7 @@
dir = 1
},
/area/tcommsat/computer)
-"bSW" = (
+"cmk" = (
/obj/machinery/power/apc{
dir = 1;
name = "Telecomms Monitoring APC";
@@ -44997,13 +53206,13 @@
dir = 1
},
/area/tcommsat/computer)
-"bSX" = (
+"cml" = (
/obj/machinery/announcement_system,
/turf/open/floor/plasteel/yellow/side{
dir = 5
},
/area/tcommsat/computer)
-"bSY" = (
+"cmm" = (
/obj/machinery/light/small{
brightness = 3;
dir = 8
@@ -45015,20 +53224,20 @@
dir = 8
},
/area/tcommsat/computer)
-"bSZ" = (
+"cmn" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/obj/structure/chair/office/dark,
/turf/open/floor/plasteel/yellow/corner,
/area/tcommsat/computer)
-"bTa" = (
+"cmo" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel/yellow/side,
/area/tcommsat/computer)
-"bTb" = (
+"cmp" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -45037,7 +53246,7 @@
/obj/machinery/atmospherics/pipe/manifold/supply,
/turf/open/floor/plasteel/yellow/side,
/area/tcommsat/computer)
-"bTc" = (
+"cmq" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -45045,7 +53254,7 @@
},
/turf/open/floor/plating,
/area/tcommsat/computer)
-"bTd" = (
+"cmr" = (
/obj/structure/chair/office/dark,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -45054,7 +53263,7 @@
dir = 8
},
/area/tcommsat/computer)
-"bTe" = (
+"cms" = (
/obj/machinery/light/small{
dir = 4
},
@@ -45065,7 +53274,16 @@
dir = 4
},
/area/tcommsat/computer)
-"bTf" = (
+"cmt" = (
+/obj/structure/lattice,
+/obj/machinery/camera/motion{
+ c_tag = "Telecomms External Port";
+ dir = 8;
+ network = list("Telecomms")
+ },
+/turf/open/space,
+/area/space)
+"cmu" = (
/obj/machinery/status_display{
pixel_x = -32
},
@@ -45079,7 +53297,7 @@
dir = 10
},
/area/tcommsat/computer)
-"bTg" = (
+"cmv" = (
/obj/machinery/computer/telecomms/monitor{
network = "tcommsat"
},
@@ -45087,7 +53305,7 @@
dir = 6
},
/area/tcommsat/computer)
-"bTh" = (
+"cmw" = (
/obj/machinery/door/airlock/glass_engineering{
cyclelinkeddir = 2;
name = "Server Room";
@@ -45102,7 +53320,7 @@
dir = 5
},
/area/tcommsat/computer)
-"bTi" = (
+"cmx" = (
/obj/machinery/computer/telecomms/server{
network = "tcommsat"
},
@@ -45110,13 +53328,22 @@
dir = 10
},
/area/tcommsat/computer)
-"bTj" = (
+"cmy" = (
/obj/machinery/computer/message_monitor,
/turf/open/floor/plasteel/yellow/side{
dir = 6
},
/area/tcommsat/computer)
-"bTk" = (
+"cmz" = (
+/obj/structure/lattice,
+/obj/machinery/camera/motion{
+ c_tag = "Telecomms External Starboard";
+ dir = 4;
+ network = list("Telecomms")
+ },
+/turf/open/space,
+/area/space)
+"cmA" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -45126,10 +53353,10 @@
dir = 5
},
/area/tcommsat/computer)
-"bTl" = (
+"cmB" = (
/turf/closed/wall/r_wall,
/area/tcommsat/server)
-"bTm" = (
+"cmC" = (
/obj/structure/cable{
d1 = 2;
d2 = 4;
@@ -45137,7 +53364,7 @@
},
/turf/closed/wall/r_wall,
/area/tcommsat/server)
-"bTn" = (
+"cmD" = (
/obj/machinery/power/smes{
charge = 5e+006
},
@@ -45149,12 +53376,9 @@
d2 = 8;
icon_state = "0-8"
},
-/turf/open/floor/circuit{
- name = "Mainframe Base";
- initial_gas_mix = "n2=100;TEMP=80"
- },
+/turf/open/floor/circuit/telecomms/mainframe,
/area/tcommsat/server)
-"bTo" = (
+"cmE" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/structure/cable{
@@ -45164,7 +53388,7 @@
},
/turf/open/floor/plating,
/area/tcommsat/computer)
-"bTp" = (
+"cmF" = (
/obj/machinery/door/airlock/glass_engineering{
cyclelinkeddir = 1;
name = "Server Room";
@@ -45179,21 +53403,15 @@
dir = 5
},
/area/tcommsat/computer)
-"bTq" = (
+"cmG" = (
/obj/machinery/blackbox_recorder,
-/turf/open/floor/circuit{
- name = "Mainframe Base";
- initial_gas_mix = "n2=100;TEMP=80"
- },
+/turf/open/floor/circuit/telecomms/mainframe,
/area/tcommsat/server)
-"bTr" = (
+"cmH" = (
/obj/machinery/message_server,
-/turf/open/floor/circuit{
- name = "Mainframe Base";
- initial_gas_mix = "n2=100;TEMP=80"
- },
+/turf/open/floor/circuit/telecomms/mainframe,
/area/tcommsat/server)
-"bTs" = (
+"cmI" = (
/obj/machinery/power/apc{
cell_type = 5000;
dir = 1;
@@ -45202,66 +53420,151 @@
pixel_y = 24
},
/obj/structure/cable,
-/turf/open/floor/plasteel/black{
- initial_gas_mix = "n2=100;TEMP=80"
- },
+/turf/open/floor/plasteel/black/telecomms,
/area/tcommsat/server)
-"bTt" = (
+"cmJ" = (
/obj/machinery/power/terminal{
dir = 1
},
-/turf/open/floor/plasteel/black{
- initial_gas_mix = "n2=100;TEMP=80"
- },
+/turf/open/floor/plasteel/black/telecomms,
/area/tcommsat/server)
-"bTu" = (
-/turf/open/floor/plasteel/black{
- initial_gas_mix = "n2=100;TEMP=80"
- },
+"cmK" = (
+/turf/open/floor/plasteel/black/telecomms,
/area/tcommsat/server)
-"bTv" = (
+"cmL" = (
/obj/machinery/telecomms/bus/preset_three,
-/turf/open/floor/circuit{
- name = "Mainframe Base";
- initial_gas_mix = "n2=100;TEMP=80"
- },
+/turf/open/floor/circuit/telecomms/mainframe,
/area/tcommsat/server)
-"bTw" = (
+"cmM" = (
/obj/machinery/telecomms/receiver/preset_left,
-/turf/open/floor/circuit{
- name = "Mainframe Base";
- initial_gas_mix = "n2=100;TEMP=80"
- },
+/turf/open/floor/circuit/telecomms/mainframe,
/area/tcommsat/server)
-"bTx" = (
+"cmN" = (
/obj/machinery/telecomms/processor/preset_three,
-/turf/open/floor/circuit{
- name = "Mainframe Base";
- initial_gas_mix = "n2=100;TEMP=80"
- },
+/turf/open/floor/circuit/telecomms/mainframe,
/area/tcommsat/server)
-"bTy" = (
+"cmO" = (
/obj/machinery/telecomms/processor/preset_one,
-/turf/open/floor/circuit{
- name = "Mainframe Base";
- initial_gas_mix = "n2=100;TEMP=80"
- },
+/turf/open/floor/circuit/telecomms/mainframe,
/area/tcommsat/server)
-"bTz" = (
+"cmP" = (
/obj/machinery/telecomms/receiver/preset_right,
-/turf/open/floor/circuit{
- name = "Mainframe Base";
- initial_gas_mix = "n2=100;TEMP=80"
- },
+/turf/open/floor/circuit/telecomms/mainframe,
/area/tcommsat/server)
-"bTA" = (
+"cmQ" = (
/obj/machinery/telecomms/bus/preset_one,
-/turf/open/floor/circuit{
- name = "Mainframe Base";
- initial_gas_mix = "n2=100;TEMP=80"
+/turf/open/floor/circuit/telecomms/mainframe,
+/area/tcommsat/server)
+"cmR" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/plasteel/darkred/side/telecomms,
+/area/tcommsat/server)
+"cmS" = (
+/turf/open/floor/plasteel/whitepurple/side/telecomms,
+/area/tcommsat/server)
+"cmT" = (
+/turf/open/floor/plasteel/darkgreen/side/telecomms,
+/area/tcommsat/server)
+"cmU" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/plasteel/whitepurple/side/telecomms,
+/area/tcommsat/server)
+"cmV" = (
+/obj/machinery/telecomms/server/presets/security,
+/turf/open/floor/circuit/telecomms/mainframe,
+/area/tcommsat/server)
+"cmW" = (
+/obj/machinery/telecomms/server/presets/science,
+/turf/open/floor/circuit/telecomms/mainframe,
+/area/tcommsat/server)
+"cmX" = (
+/obj/machinery/telecomms/hub/preset,
+/turf/open/floor/circuit/telecomms/mainframe,
+/area/tcommsat/server)
+"cmY" = (
+/obj/machinery/telecomms/server/presets/common,
+/turf/open/floor/circuit/telecomms/mainframe,
+/area/tcommsat/server)
+"cmZ" = (
+/obj/machinery/telecomms/server/presets/service,
+/turf/open/floor/circuit/telecomms/mainframe,
+/area/tcommsat/server)
+"cna" = (
+/obj/machinery/telecomms/server/presets/medical,
+/turf/open/floor/circuit/telecomms/mainframe,
+/area/tcommsat/server)
+"cnb" = (
+/obj/machinery/telecomms/server/presets/command,
+/turf/open/floor/circuit/telecomms/mainframe,
+/area/tcommsat/server)
+"cnc" = (
+/obj/machinery/power/terminal,
+/obj/machinery/ntnet_relay,
+/turf/open/floor/circuit/telecomms/mainframe,
+/area/tcommsat/server)
+"cnd" = (
+/obj/machinery/telecomms/server/presets/supply,
+/turf/open/floor/circuit/telecomms/mainframe,
+/area/tcommsat/server)
+"cne" = (
+/obj/machinery/telecomms/server/presets/engineering,
+/turf/open/floor/circuit/telecomms/mainframe,
+/area/tcommsat/server)
+"cnf" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/plasteel/darkblue/side/telecomms{
+ dir = 1
},
/area/tcommsat/server)
-"bTB" = (
+"cng" = (
+/turf/open/floor/plasteel/darkblue/side/telecomms{
+ dir = 1
+ },
+/area/tcommsat/server)
+"cnh" = (
+/turf/open/floor/plasteel/whitepurple/side/telecomms{
+ dir = 1
+ },
+/area/tcommsat/server)
+"cni" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/plasteel/whitepurple/side/telecomms{
+ dir = 1
+ },
+/area/tcommsat/server)
+"cnj" = (
+/obj/machinery/telecomms/processor/preset_four,
+/turf/open/floor/circuit/telecomms/mainframe,
+/area/tcommsat/server)
+"cnk" = (
+/obj/machinery/telecomms/broadcaster/preset_left,
+/turf/open/floor/circuit/telecomms/mainframe,
+/area/tcommsat/server)
+"cnl" = (
+/obj/machinery/telecomms/bus/preset_four,
+/turf/open/floor/circuit/telecomms/mainframe,
+/area/tcommsat/server)
+"cnm" = (
+/obj/machinery/telecomms/bus/preset_two,
+/turf/open/floor/circuit/telecomms/mainframe,
+/area/tcommsat/server)
+"cnn" = (
+/obj/machinery/telecomms/broadcaster/preset_right,
+/turf/open/floor/circuit/telecomms/mainframe,
+/area/tcommsat/server)
+"cno" = (
+/obj/machinery/telecomms/processor/preset_two,
+/turf/open/floor/circuit/telecomms/mainframe,
+/area/tcommsat/server)
+"cnp" = (
/obj/machinery/camera{
active_power_usage = 0;
c_tag = "Bomb Testing Asteroid Aft";
@@ -45277,33 +53580,7 @@
/area/mine/explored{
name = "Bomb Testing Asteroid"
})
-"bTC" = (
-/obj/machinery/light{
- dir = 8
- },
-/turf/open/floor/plasteel/darkred/side{
- initial_gas_mix = "n2=100;TEMP=80"
- },
-/area/tcommsat/server)
-"bTD" = (
-/turf/open/floor/plasteel/darkpurple/side{
- initial_gas_mix = "n2=100;TEMP=80"
- },
-/area/tcommsat/server)
-"bTE" = (
-/turf/open/floor/plasteel/darkgreen/side{
- initial_gas_mix = "n2=100;TEMP=80"
- },
-/area/tcommsat/server)
-"bTF" = (
-/obj/machinery/light{
- dir = 4
- },
-/turf/open/floor/plasteel/darkgreen/side{
- initial_gas_mix = "n2=100;TEMP=80"
- },
-/area/tcommsat/server)
-"bTG" = (
+"cnq" = (
/turf/closed/indestructible{
desc = "A wall impregnated with Fixium, able to withstand massive explosions with ease";
icon_state = "riveted";
@@ -45312,6434 +53589,99 @@
/area/mine/explored{
name = "Bomb Testing Asteroid"
})
-"bTH" = (
-/obj/machinery/telecomms/server/presets/security,
-/turf/open/floor/circuit{
- name = "Mainframe Base";
- initial_gas_mix = "n2=100;TEMP=80"
- },
-/area/tcommsat/server)
-"bTI" = (
-/obj/machinery/telecomms/server/presets/science,
-/turf/open/floor/circuit{
- name = "Mainframe Base";
- initial_gas_mix = "n2=100;TEMP=80"
- },
-/area/tcommsat/server)
-"bTJ" = (
-/obj/machinery/telecomms/hub/preset,
-/turf/open/floor/circuit{
- name = "Mainframe Base";
- initial_gas_mix = "n2=100;TEMP=80"
- },
-/area/tcommsat/server)
-"bTK" = (
-/obj/machinery/telecomms/server/presets/common,
-/turf/open/floor/circuit{
- name = "Mainframe Base";
- initial_gas_mix = "n2=100;TEMP=80"
- },
-/area/tcommsat/server)
-"bTL" = (
-/obj/machinery/telecomms/server/presets/service,
-/turf/open/floor/circuit{
- name = "Mainframe Base";
- initial_gas_mix = "n2=100;TEMP=80"
- },
-/area/tcommsat/server)
-"bTM" = (
-/obj/machinery/telecomms/server/presets/medical,
-/turf/open/floor/circuit{
- name = "Mainframe Base";
- initial_gas_mix = "n2=100;TEMP=80"
- },
-/area/tcommsat/server)
-"bTN" = (
-/obj/machinery/telecomms/server/presets/command,
-/turf/open/floor/circuit{
- name = "Mainframe Base";
- initial_gas_mix = "n2=100;TEMP=80"
- },
-/area/tcommsat/server)
-"bTO" = (
-/obj/machinery/power/terminal,
-/obj/machinery/ntnet_relay,
-/turf/open/floor/circuit{
- name = "Mainframe Base";
- initial_gas_mix = "n2=100;TEMP=80"
- },
-/area/tcommsat/server)
-"bTP" = (
-/obj/machinery/telecomms/server/presets/supply,
-/turf/open/floor/circuit{
- name = "Mainframe Base";
- initial_gas_mix = "n2=100;TEMP=80"
- },
-/area/tcommsat/server)
-"bTQ" = (
-/obj/machinery/telecomms/server/presets/engineering,
-/turf/open/floor/circuit{
- name = "Mainframe Base";
- initial_gas_mix = "n2=100;TEMP=80"
- },
-/area/tcommsat/server)
-"bTR" = (
-/obj/machinery/light{
- dir = 8
- },
-/turf/open/floor/plasteel/darkblue/side{
- dir = 1;
- initial_gas_mix = "n2=100;TEMP=80"
- },
-/area/tcommsat/server)
-"bTS" = (
-/turf/open/floor/plasteel/darkblue/side{
- dir = 1;
- initial_gas_mix = "n2=100;TEMP=80"
- },
-/area/tcommsat/server)
-"bTT" = (
-/turf/open/floor/plasteel/darkyellow/side{
- dir = 1;
- initial_gas_mix = "n2=100;TEMP=80"
- },
-/area/tcommsat/server)
-"bTU" = (
-/obj/machinery/light{
- dir = 4
- },
-/turf/open/floor/plasteel/darkyellow/side{
- dir = 1;
- initial_gas_mix = "n2=100;TEMP=80"
- },
-/area/tcommsat/server)
-"bTV" = (
-/obj/machinery/telecomms/processor/preset_four,
-/turf/open/floor/circuit{
- name = "Mainframe Base";
- initial_gas_mix = "n2=100;TEMP=80"
- },
-/area/tcommsat/server)
-"bTW" = (
-/obj/machinery/telecomms/broadcaster/preset_left,
-/turf/open/floor/circuit{
- name = "Mainframe Base";
- initial_gas_mix = "n2=100;TEMP=80"
- },
-/area/tcommsat/server)
-"bTX" = (
-/obj/machinery/telecomms/bus/preset_four,
-/turf/open/floor/circuit{
- name = "Mainframe Base";
- initial_gas_mix = "n2=100;TEMP=80"
- },
-/area/tcommsat/server)
-"bTY" = (
-/obj/machinery/telecomms/bus/preset_two,
-/turf/open/floor/circuit{
- name = "Mainframe Base";
- initial_gas_mix = "n2=100;TEMP=80"
- },
-/area/tcommsat/server)
-"bTZ" = (
-/obj/machinery/telecomms/broadcaster/preset_right,
-/turf/open/floor/circuit{
- name = "Mainframe Base";
- initial_gas_mix = "n2=100;TEMP=80"
- },
-/area/tcommsat/server)
-"bUa" = (
-/obj/machinery/telecomms/processor/preset_two,
-/turf/open/floor/circuit{
- name = "Mainframe Base";
- initial_gas_mix = "n2=100;TEMP=80"
- },
-/area/tcommsat/server)
-"bUb" = (
+"cnr" = (
/obj/structure/table,
/obj/item/weapon/stock_parts/subspace/amplifier,
/obj/item/weapon/stock_parts/subspace/amplifier,
/obj/item/weapon/stock_parts/subspace/analyzer,
/obj/item/weapon/stock_parts/subspace/analyzer,
-/turf/open/floor/plasteel/black{
- initial_gas_mix = "n2=100;TEMP=80"
- },
+/turf/open/floor/plasteel/black/telecomms,
/area/tcommsat/server)
-"bUc" = (
+"cns" = (
/obj/structure/table,
/obj/item/weapon/stock_parts/subspace/ansible,
/obj/item/weapon/stock_parts/subspace/ansible,
/obj/item/weapon/stock_parts/subspace/crystal,
/obj/item/weapon/stock_parts/subspace/crystal,
-/turf/open/floor/plasteel/black{
- initial_gas_mix = "n2=100;TEMP=80"
- },
+/turf/open/floor/plasteel/black/telecomms,
/area/tcommsat/server)
-"bUd" = (
+"cnt" = (
/obj/structure/table,
/obj/item/weapon/stock_parts/subspace/filter,
/obj/item/weapon/stock_parts/subspace/filter,
/obj/item/weapon/stock_parts/subspace/transmitter,
/obj/item/weapon/stock_parts/subspace/transmitter,
-/turf/open/floor/plasteel/black{
- initial_gas_mix = "n2=100;TEMP=80"
- },
+/turf/open/floor/plasteel/black/telecomms,
/area/tcommsat/server)
-"bUe" = (
+"cnu" = (
/obj/machinery/camera/motion{
c_tag = "Telecomms Server Room";
dir = 1;
network = list("SS13","Telecomms")
},
-/turf/open/floor/plasteel/black{
- initial_gas_mix = "n2=100;TEMP=80"
- },
+/turf/open/floor/plasteel/black/telecomms,
/area/tcommsat/server)
-"bUf" = (
+"cnv" = (
/obj/structure/table,
/obj/item/weapon/stock_parts/subspace/treatment,
/obj/item/weapon/stock_parts/subspace/treatment,
/obj/item/weapon/stock_parts/manipulator,
/obj/item/weapon/stock_parts/manipulator,
-/turf/open/floor/plasteel/black{
- initial_gas_mix = "n2=100;TEMP=80"
- },
+/turf/open/floor/plasteel/black/telecomms,
/area/tcommsat/server)
-"bUg" = (
+"cnw" = (
/obj/structure/table,
/obj/item/weapon/stock_parts/console_screen,
/obj/item/weapon/stock_parts/console_screen,
/obj/item/weapon/stock_parts/micro_laser,
/obj/item/weapon/stock_parts/micro_laser,
-/turf/open/floor/plasteel/black{
- initial_gas_mix = "n2=100;TEMP=80"
- },
+/turf/open/floor/plasteel/black/telecomms,
/area/tcommsat/server)
-"bUh" = (
+"cnx" = (
/obj/structure/table,
/obj/item/weapon/stock_parts/scanning_module,
/obj/item/weapon/stock_parts/scanning_module,
-/turf/open/floor/plasteel/black{
- initial_gas_mix = "n2=100;TEMP=80"
- },
+/turf/open/floor/plasteel/black/telecomms,
/area/tcommsat/server)
-"bUi" = (
-/obj/machinery/camera/motion{
- c_tag = "MiniSat External Port";
- dir = 8;
- network = list("MiniSat")
- },
-/turf/open/space,
-/area/space)
-"bUj" = (
-/obj/machinery/door/firedoor/heavy,
-/obj/machinery/door/airlock/glass_command{
- name = "AI Core";
- req_access_txt = "65"
- },
-/turf/open/floor/plasteel/white,
-/area/wreck/ai)
-"bUk" = (
-/obj/machinery/camera/motion{
- c_tag = "MiniSat External Starboard";
- dir = 4;
- network = list("MiniSat")
- },
-/turf/open/space,
-/area/space)
-"bUl" = (
-/obj/item/device/radio/intercom{
- broadcasting = 1;
- frequency = 1447;
- listening = 0;
- name = "Station Intercom (AI Private)";
- pixel_y = 24
- },
-/turf/open/floor/circuit,
-/area/wreck/ai)
-"bUm" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
-/turf/open/floor/plasteel/black,
-/area/wreck/ai)
-"bUn" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 5
- },
-/turf/open/floor/plating,
-/area/wreck/ai)
-"bUo" = (
-/turf/open/floor/plating,
-/area/ai_monitored/turret_protected/AIsatextAP)
-"bUp" = (
+"cny" = (
/obj/structure/lattice,
/obj/machinery/camera/motion{
- c_tag = "MiniSat Entrance";
+ c_tag = "Telecomms External Port Aft";
dir = 2;
- network = list("MiniSat")
+ network = list("Telecomms")
},
/turf/open/space,
/area/space)
-"bUq" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/obj/structure/cable,
-/turf/open/floor/plating,
-/area/security/transfer)
-"bUr" = (
-/obj/structure/closet/l3closet,
-/turf/open/floor/plasteel/showroomfloor,
-/area/security/main)
-"bUs" = (
-/obj/structure/closet/bombcloset,
-/turf/open/floor/plasteel/showroomfloor,
-/area/security/main)
-"bUt" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/structure/sign/barsign,
-/turf/open/floor/plating,
-/area/maintenance/department/crew_quarters/dorms)
-"bUu" = (
-/turf/closed/wall/r_wall,
-/area/crew_quarters/heads/hos)
-"bUv" = (
-/obj/machinery/door/poddoor/shutters{
- id = "supplybridge"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/maintenance/department/crew_quarters/dorms)
-"bUw" = (
-/obj/effect/landmark/start/security_officer,
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/security/main)
-"bUx" = (
-/obj/effect/landmark/start/security_officer,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/security/main)
-"bUy" = (
-/obj/structure/extinguisher_cabinet{
- pixel_x = -24
- },
-/turf/open/floor/plating,
-/area/maintenance/department/crew_quarters/dorms)
-"bUz" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/maintenance/department/crew_quarters/dorms)
-"bUA" = (
-/obj/machinery/door/airlock/glass{
- name = "space-bridge access"
- },
-/obj/machinery/button/door{
- id = "supplybridge";
- name = "Space Bridge Control";
- pixel_y = 27;
- req_access_txt = "0"
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/maintenance/department/crew_quarters/dorms)
-"bUB" = (
-/obj/item/weapon/storage/secure/safe{
- pixel_x = -22;
- pixel_y = 32
- },
-/turf/open/floor/plasteel/darkred/side,
-/area/crew_quarters/heads/hos)
-"bUC" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/obj/machinery/firealarm{
- dir = 8;
- pixel_x = -27
- },
-/turf/open/floor/plasteel/red/side{
- dir = 8
- },
-/area/security/main)
-"bUD" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/turf/open/floor/plasteel/black,
-/area/security/processing/cremation)
-"bUE" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 6
- },
-/turf/closed/wall,
-/area/security/processing/cremation)
-"bUF" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plasteel,
-/area/security/main)
-"bUG" = (
-/turf/open/floor/plating{
- icon_state = "platingdmg1"
- },
-/area/maintenance/department/crew_quarters/dorms)
-"bUH" = (
-/turf/closed/wall/r_wall,
-/area/maintenance/fore)
-"bUI" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
- },
-/area/maintenance/department/crew_quarters/dorms)
-"bUJ" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/machinery/airalarm{
- frequency = 1439;
- locked = 0;
- pixel_y = 23
- },
-/turf/open/floor/plasteel/red/side{
- dir = 1
- },
-/area/security/brig)
-"bUK" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/effect/turf_decal/stripes/line,
-/turf/open/floor/plating,
-/area/crew_quarters/dorms)
-"bUL" = (
-/obj/machinery/computer/shuttle/monastery_shuttle,
-/obj/structure/sign/pods{
- pixel_y = 32
- },
-/turf/open/floor/plasteel/black,
-/area/crew_quarters/dorms)
-"bUM" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/crew_quarters/dorms)
-"bUN" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/holopad,
-/turf/open/floor/plasteel,
-/area/crew_quarters/dorms)
-"bUO" = (
-/obj/machinery/light{
- dir = 4
- },
-/obj/machinery/firealarm{
- dir = 4;
- pixel_x = 28
- },
-/turf/open/floor/plasteel/darkblue/side{
- dir = 4
- },
-/area/bridge)
-"bUP" = (
-/obj/structure/extinguisher_cabinet{
- pixel_y = 30
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/fore)
-"bUQ" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/extinguisher_cabinet{
- pixel_x = -24
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/dorms)
-"bUR" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plating{
- broken = 1;
- icon_state = "platingdmg1"
- },
-/area/maintenance/department/security/brig)
-"bUS" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/light/small{
- dir = 1
- },
-/turf/open/floor/plating{
- icon_state = "panelscorched"
- },
-/area/maintenance/department/security/brig)
-"bUT" = (
-/obj/machinery/disposal/bin,
-/obj/structure/disposalpipe/trunk,
-/obj/structure/extinguisher_cabinet{
- pixel_x = -24
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bUU" = (
-/turf/open/floor/plating{
- broken = 1;
- icon_state = "platingdmg3"
- },
-/area/maintenance/department/security/brig)
-"bUV" = (
-/turf/open/floor/plating{
- icon_state = "panelscorched"
- },
-/area/maintenance/department/security/brig)
-"bUW" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/extinguisher_cabinet{
- pixel_x = -26
- },
-/turf/open/floor/plasteel/red/corner{
- dir = 8
- },
-/area/hallway/primary/fore)
-"bUX" = (
-/obj/machinery/porta_turret/ai{
- dir = 8
- },
-/turf/open/floor/plasteel/darkblue,
-/area/ai_monitored/turret_protected/ai_upload)
-"bUY" = (
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/open/floor/plating{
- broken = 1;
- icon_state = "platingdmg3"
- },
-/area/maintenance/department/security/brig)
-"bUZ" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/light{
- dir = 4
- },
-/turf/open/floor/plasteel/red/corner,
-/area/hallway/primary/fore)
-"bVa" = (
-/obj/structure/chair/stool,
-/turf/open/floor/plasteel,
-/area/storage/primary)
-"bVb" = (
-/obj/structure/extinguisher_cabinet{
- pixel_x = -24
- },
-/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/toilet/restrooms)
-"bVc" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
- icon_state = "space";
- layer = 4;
- name = "EXTERNAL AIRLOCK";
- pixel_y = 32
- },
-/turf/open/floor/plating,
-/area/maintenance/department/cargo)
-"bVd" = (
-/obj/machinery/door/airlock/external{
- cyclelinkeddir = 4;
- req_access_txt = "13"
- },
-/turf/open/floor/plating,
-/area/maintenance/department/cargo)
-"bVe" = (
-/obj/machinery/door/airlock/external{
- cyclelinkeddir = 8;
- req_access_txt = "13"
- },
-/turf/open/floor/plating,
-/area/maintenance/department/cargo)
-"bVf" = (
-/obj/structure/table,
-/obj/machinery/light{
- dir = 4
- },
-/obj/item/device/taperecorder,
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bVg" = (
-/obj/machinery/light/small{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/department/cargo)
-"bVh" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/effect/turf_decal/bot,
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bVi" = (
-/obj/structure/sink{
- dir = 8;
- pixel_x = -12;
- pixel_y = 2
- },
-/obj/structure/mirror{
- pixel_x = -28
- },
-/obj/effect/decal/cleanable/vomit/old,
-/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/toilet/restrooms)
-"bVj" = (
-/obj/machinery/camera{
- c_tag = "Dormitory Toilets";
- dir = 1
- },
-/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/toilet/restrooms)
-"bVk" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/structure/cable,
-/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
- },
-/turf/open/floor/plating,
-/area/hallway/primary/central)
-"bVl" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
- },
-/turf/open/floor/plating,
-/area/hallway/primary/central)
-"bVm" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/structure/cable,
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/turf/open/floor/plating,
-/area/hallway/primary/central)
-"bVn" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/neutral/corner{
- dir = 4
- },
-/area/hallway/primary/central)
-"bVo" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/machinery/airalarm{
- frequency = 1439;
- locked = 0;
- pixel_y = 23
- },
-/turf/open/floor/plasteel/neutral/corner{
- dir = 4
- },
-/area/hallway/primary/central)
-"bVp" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 1
- },
-/turf/open/floor/plasteel/neutral/corner{
- dir = 4
- },
-/area/hallway/primary/central)
-"bVq" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
-/turf/open/floor/plasteel/neutral/corner{
- dir = 4
- },
-/area/hallway/primary/central)
-"bVr" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/machinery/firealarm{
- dir = 1;
- pixel_y = 29
- },
-/turf/open/floor/plasteel/blue/corner{
- dir = 1
- },
-/area/hallway/primary/central)
-"bVs" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/machinery/airalarm{
- frequency = 1439;
- locked = 0;
- pixel_y = 23
- },
-/turf/open/floor/plasteel/blue/corner{
- dir = 1
- },
-/area/hallway/primary/central)
-"bVt" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/structure/extinguisher_cabinet{
- pixel_y = 30
- },
-/turf/open/floor/plasteel/blue/corner{
- dir = 1
- },
-/area/hallway/primary/central)
-"bVu" = (
-/obj/structure/toilet{
- dir = 8
- },
-/obj/machinery/light/small{
- dir = 8
- },
-/obj/effect/decal/cleanable/deadcockroach,
-/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/toilet/restrooms)
-"bVv" = (
-/obj/machinery/recharge_station,
-/turf/open/floor/mineral/titanium/yellow,
-/area/shuttle/escape)
-"bVw" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plating{
- broken = 1;
- icon_state = "platingdmg1"
- },
-/area/maintenance/department/cargo)
-"bVx" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/effect/decal/cleanable/blood/old,
-/turf/open/floor/plating{
- burnt = 1;
- icon_state = "panelscorched"
- },
-/area/maintenance/department/cargo)
-"bVy" = (
-/obj/structure/closet/coffin,
-/obj/item/toy/figure/ian,
-/turf/open/floor/plating,
-/area/maintenance/department/cargo)
-"bVz" = (
-/obj/structure/extinguisher_cabinet{
- pixel_x = 27
- },
-/obj/machinery/light/small{
- dir = 4
- },
-/turf/open/floor/mineral/titanium/yellow,
-/area/shuttle/escape)
-"bVA" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/light,
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bVB" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/light,
-/turf/open/floor/plasteel/blue/corner{
- dir = 8
- },
-/area/hallway/primary/central)
-"bVC" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/structure/cable{
- icon_state = "0-2";
- pixel_y = 1;
- d2 = 2
- },
-/turf/open/floor/plating,
-/area/teleporter)
-"bVD" = (
-/obj/machinery/door/airlock/glass{
- name = "Emergency Shuttle Cargo Hold";
- req_access_txt = "0"
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/escape)
-"bVE" = (
-/obj/structure/extinguisher_cabinet{
- pixel_x = 27
- },
-/turf/open/floor/plasteel/floorgrime,
-/area/quartermaster/storage)
-"bVF" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/sign/directions/evac{
- dir = 1;
- icon_state = "direction_evac";
- pixel_x = 32
- },
-/turf/open/floor/plasteel/neutral/corner,
-/area/hallway/primary/central)
-"bVG" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/brown/corner{
- dir = 1
- },
-/area/hallway/primary/central)
-"bVH" = (
-/obj/machinery/door/airlock/maintenance{
- req_access_txt = "12"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/department/crew_quarters/bar)
-"bVI" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/brown/corner{
- dir = 1
- },
-/area/hallway/primary/central)
-"bVJ" = (
-/obj/structure/extinguisher_cabinet{
- pixel_x = -24
- },
-/turf/open/floor/plasteel/hydrofloor,
-/area/hydroponics)
-"bVK" = (
-/obj/structure/extinguisher_cabinet{
- pixel_x = 26
- },
-/turf/open/floor/plasteel/showroomfloor,
-/area/crew_quarters/kitchen)
-"bVL" = (
-/obj/structure/closet,
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/open/floor/plating,
-/area/maintenance/department/cargo)
-"bVM" = (
-/obj/structure/closet,
-/obj/item/weapon/canvas/twentythreeXnineteen,
-/obj/item/weapon/canvas/nineteenXnineteen,
-/obj/item/weapon/canvas/twentythreeXtwentythree,
-/obj/item/weapon/storage/crayons,
-/turf/open/floor/plating,
-/area/maintenance/department/cargo)
-"bVN" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/structure/extinguisher_cabinet{
- pixel_x = -26
- },
-/turf/open/floor/plasteel/black,
-/area/crew_quarters/bar)
-"bVO" = (
-/obj/effect/decal/remains/human,
-/turf/open/floor/plating,
-/area/maintenance/department/cargo)
-"bVP" = (
-/turf/closed/wall/r_wall,
-/area/hallway/secondary/exit/departure_lounge)
-"bVQ" = (
-/turf/closed/wall/r_wall,
-/area/security/checkpoint/customs)
-"bVR" = (
-/obj/item/weapon/reagent_containers/glass/bucket,
-/turf/open/floor/plasteel,
-/area/hydroponics)
-"bVS" = (
-/obj/structure/window/reinforced,
-/obj/item/device/flashlight/lantern,
-/turf/open/floor/wood,
-/area/crew_quarters/theatre)
-"bVT" = (
-/obj/item/device/flashlight/lantern,
-/obj/structure/window/reinforced,
-/turf/open/floor/wood,
-/area/crew_quarters/theatre)
-"bVU" = (
-/obj/structure/grille/broken,
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/open/floor/plating,
-/area/maintenance/department/cargo)
-"bVV" = (
-/turf/open/floor/plasteel/green/corner{
- dir = 4
- },
-/area/hydroponics)
-"bVW" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/green/corner{
- dir = 1
- },
-/area/hydroponics)
-"bVX" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/black,
-/area/crew_quarters/bar)
-"bVY" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/vault{
- dir = 5
- },
-/area/crew_quarters/bar)
-"bVZ" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/extinguisher_cabinet{
- pixel_y = 30
- },
-/turf/open/floor/plasteel/vault{
- dir = 5
- },
-/area/crew_quarters/bar)
-"bWa" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/light{
- dir = 4
- },
-/turf/open/floor/plasteel/brown/corner{
- dir = 4
- },
-/area/hallway/primary/central)
-"bWb" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/obj/machinery/airalarm{
- pixel_y = 22
- },
-/turf/open/floor/plasteel/arrival{
- dir = 1
- },
-/area/hallway/secondary/entry)
-"bWc" = (
-/turf/open/floor/plasteel/green/side{
- dir = 4
- },
-/area/hydroponics)
-"bWd" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 9
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel/black,
-/area/crew_quarters/bar)
-"bWe" = (
-/obj/structure/table/reinforced,
-/obj/item/weapon/book/manual/barman_recipes,
-/obj/item/weapon/reagent_containers/glass/rag,
-/turf/open/floor/plasteel/darkred/side{
- dir = 8
- },
-/area/crew_quarters/bar)
-"bWf" = (
-/obj/machinery/computer/slot_machine,
-/obj/item/device/radio/intercom{
- dir = 0;
- name = "Station Intercom (General)";
- pixel_y = 26
- },
-/turf/open/floor/carpet{
- icon_state = "carpetsymbol"
- },
-/area/crew_quarters/bar)
-"bWg" = (
-/obj/machinery/computer/slot_machine,
-/obj/machinery/airalarm{
- pixel_y = 24
- },
-/turf/open/floor/carpet{
- icon_state = "carpetsymbol"
- },
-/area/crew_quarters/bar)
-"bWh" = (
-/obj/machinery/computer/arcade,
-/obj/structure/noticeboard{
- pixel_y = 32
- },
-/turf/open/floor/carpet{
- icon_state = "carpetsymbol"
- },
-/area/crew_quarters/bar)
-"bWi" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 8
- },
-/obj/machinery/button/door{
+"cnz" = (
+/obj/structure/lattice,
+/obj/machinery/camera/motion{
+ c_tag = "Telecomms External Starboard Aft";
dir = 2;
- id = "jangarage";
- name = "Custodial Closet Shutters Control";
- pixel_x = 25;
- req_access_txt = "26"
- },
-/turf/open/floor/plasteel/neutral/corner,
-/area/hallway/primary/central)
-"bWj" = (
-/obj/effect/landmark/start/botanist,
-/obj/machinery/holopad,
-/turf/open/floor/plasteel,
-/area/hydroponics)
-"bWk" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/green/side{
- dir = 8
- },
-/area/hydroponics)
-"bWl" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel/black,
-/area/crew_quarters/bar)
-"bWm" = (
-/obj/structure/table/wood/fancy,
-/obj/item/toy/cards/deck,
-/turf/open/floor/carpet{
- icon_state = "carpetsymbol"
- },
-/area/crew_quarters/bar)
-"bWn" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/poddoor/shutters{
- id = "jangarage";
- name = "Custodial Closet Shutters"
- },
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plasteel,
-/area/janitor)
-"bWo" = (
-/obj/structure/table/reinforced,
-/obj/machinery/door/firedoor,
-/obj/machinery/door/window/westright{
- dir = 1;
- name = "Hydroponics Desk";
- req_access_txt = "35"
- },
-/obj/item/weapon/reagent_containers/food/snacks/monkeycube,
-/turf/open/floor/plasteel,
-/area/hydroponics)
-"bWp" = (
-/obj/machinery/newscaster{
- pixel_y = 1
- },
-/turf/closed/wall,
-/area/crew_quarters/kitchen)
-"bWq" = (
-/obj/structure/chair/wood/normal{
- dir = 1
- },
-/turf/open/floor/carpet{
- icon_state = "carpetsymbol"
- },
-/area/crew_quarters/bar)
-"bWr" = (
-/obj/effect/landmark/start/assistant,
-/obj/structure/chair/wood/normal{
- dir = 1
- },
-/turf/open/floor/carpet{
- icon_state = "carpetsymbol"
- },
-/area/crew_quarters/bar)
-"bWs" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass{
- name = "Bar"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/sign/poster/random{
- pixel_y = 32
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/bar)
-"bWt" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/brown/corner{
- dir = 1
- },
-/area/hallway/primary/central)
-"bWu" = (
-/obj/effect/decal/cleanable/cobweb,
-/turf/open/floor/plating{
- burnt = 1;
- icon_state = "panelscorched"
- },
-/area/maintenance/department/cargo)
-"bWv" = (
-/obj/item/chair,
-/turf/open/floor/plating{
- broken = 1;
- icon_state = "platingdmg3"
- },
-/area/maintenance/department/cargo)
-"bWw" = (
-/turf/open/floor/plasteel/green/corner{
- dir = 8
- },
-/area/hydroponics)
-"bWx" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/green/corner{
- dir = 8
- },
-/area/hydroponics)
-"bWy" = (
-/obj/machinery/door/airlock/glass{
- name = "Kitchen";
- req_access_txt = "25;28"
- },
-/turf/open/floor/plasteel/black,
-/area/crew_quarters/kitchen)
-"bWz" = (
-/obj/structure/chair/stool/bar,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/vault{
- dir = 5
- },
-/area/crew_quarters/bar)
-"bWA" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass{
- name = "Bar"
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/bar)
-"bWB" = (
-/turf/open/floor/plating{
- broken = 1;
- icon_state = "platingdmg3"
- },
-/area/maintenance/department/cargo)
-"bWC" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/sign/poster/contraband/random{
- pixel_y = 32
- },
-/turf/open/floor/plating,
-/area/maintenance/department/cargo)
-"bWD" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"bWE" = (
-/obj/structure/sink{
- dir = 8;
- pixel_x = -12;
- pixel_y = 2
- },
-/obj/effect/decal/cleanable/deadcockroach,
-/turf/open/floor/plasteel/green/side{
- dir = 8
- },
-/area/hydroponics)
-"bWF" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/machinery/holopad,
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bWG" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/disposal/bin,
-/obj/structure/disposalpipe/trunk{
- dir = 4
- },
-/obj/machinery/firealarm{
- dir = 4;
- pixel_x = -28
- },
-/turf/open/floor/plasteel/black,
-/area/crew_quarters/bar)
-"bWH" = (
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/turf/open/floor/plasteel/black,
-/area/crew_quarters/bar)
-"bWI" = (
-/obj/structure/chair/wood/normal{
- dir = 4
- },
-/turf/open/floor/plasteel/black,
-/area/crew_quarters/bar)
-"bWJ" = (
-/obj/structure/chair/wood/normal{
- dir = 8
- },
-/turf/open/floor/plasteel/black,
-/area/crew_quarters/bar)
-"bWK" = (
-/obj/machinery/hydroponics/constructable,
-/turf/open/floor/plasteel/green/side,
-/area/hydroponics)
-"bWL" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/closed/wall,
-/area/crew_quarters/bar)
-"bWM" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/vault{
- dir = 5
- },
-/area/crew_quarters/bar)
-"bWN" = (
-/obj/structure/frame/machine,
-/turf/open/floor/plating,
-/area/maintenance/department/cargo)
-"bWO" = (
-/obj/machinery/airalarm{
- pixel_y = 22
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/arrival)
-"bWP" = (
-/obj/machinery/atmospherics/components/unary/tank/air,
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/arrival)
-"bWQ" = (
-/turf/closed/wall,
-/area/crew_quarters/lounge)
-"bWR" = (
-/obj/machinery/disposal/bin,
-/obj/structure/disposalpipe/trunk,
-/turf/open/floor/plasteel/purple/corner{
- dir = 4
- },
-/area/hallway/primary/central)
-"bWS" = (
-/obj/structure/table,
-/obj/item/trash/plate,
-/obj/item/weapon/storage/fancy/rollingpapers,
-/turf/open/floor/plasteel/neutral/corner{
- dir = 1
- },
-/area/hallway/primary/central)
-"bWT" = (
-/obj/structure/chair{
- dir = 4
- },
-/turf/open/floor/plasteel/neutral/corner{
- dir = 1
- },
-/area/hallway/primary/central)
-"bWU" = (
-/obj/structure/table,
-/obj/item/weapon/storage/fancy/donut_box,
-/turf/open/floor/plasteel/neutral/corner{
- dir = 1
- },
-/area/hallway/primary/central)
-"bWV" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-14";
- layer = 4.1
- },
-/turf/open/floor/plasteel/neutral/corner{
- dir = 4
- },
-/area/hallway/primary/central)
-"bWW" = (
-/obj/structure/chair,
-/obj/item/clothing/head/bowler,
-/turf/open/floor/plasteel/neutral/corner{
- dir = 4
- },
-/area/hallway/primary/central)
-"bWX" = (
-/obj/machinery/firealarm{
- dir = 1;
- pixel_y = 27
- },
-/obj/structure/chair,
-/obj/item/clothing/mask/cigarette,
-/turf/open/floor/plasteel/neutral/corner{
- dir = 4
- },
-/area/hallway/primary/central)
-"bWY" = (
-/obj/structure/sign/poster/official/random{
- pixel_y = 32
- },
-/turf/open/floor/plasteel/neutral/corner{
- dir = 4
- },
-/area/hallway/primary/central)
-"bWZ" = (
-/obj/machinery/computer/security/telescreen/entertainment{
- pixel_y = 32
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bXa" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 5
- },
-/turf/open/floor/plasteel,
-/area/science/robotics/mechbay)
-"bXb" = (
-/obj/structure/grille,
-/obj/structure/window/shuttle,
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "arrivy";
- name = "ship shutters"
- },
-/turf/open/floor/plating,
-/area/shuttle/arrival)
-"bXc" = (
-/obj/machinery/door/airlock/titanium{
- name = "Arrivals Shuttle Airlock"
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/arrival)
-"bXd" = (
-/obj/structure/chair{
- dir = 8
- },
-/obj/effect/landmark{
- name = "JoinLate"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 9
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/arrival)
-"bXe" = (
-/obj/item/trash/tray,
-/obj/item/weapon/reagent_containers/food/snacks/badrecipe,
-/turf/open/floor/plating,
-/area/maintenance/department/cargo)
-"bXf" = (
-/obj/structure/closet/radiation,
-/obj/structure/sign/poster/contraband/random{
- pixel_x = 32
- },
-/turf/open/floor/plating,
-/area/maintenance/department/cargo)
-"bXg" = (
-/obj/machinery/holopad,
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bXh" = (
-/obj/item/chair,
-/obj/item/trash/popcorn,
-/turf/open/floor/plating{
- broken = 1;
- icon_state = "platingdmg3"
- },
-/area/maintenance/department/cargo)
-"bXi" = (
-/obj/structure/chair,
-/obj/structure/sign/poster/contraband/random{
- pixel_x = 32
- },
-/turf/open/floor/plating{
- icon_state = "platingdmg1"
- },
-/area/maintenance/department/cargo)
-"bXj" = (
-/obj/structure/extinguisher_cabinet{
- pixel_y = -29
- },
-/obj/machinery/light,
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/arrival)
-"bXk" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/obj/structure/extinguisher_cabinet{
- pixel_x = 27
- },
-/turf/open/floor/plasteel/neutral/corner,
-/area/hallway/secondary/entry)
-"bXl" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/carpet,
-/area/crew_quarters/lounge)
-"bXm" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/blue/corner,
-/area/hallway/primary/central)
-"bXn" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 1
- },
-/turf/open/floor/plasteel/blue/corner,
-/area/hallway/primary/central)
-"bXo" = (
-/obj/machinery/light,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/purple/corner,
-/area/hallway/primary/central)
-"bXp" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
-/turf/open/floor/plasteel/purple/corner,
-/area/hallway/primary/central)
-"bXq" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/science/robotics/mechbay)
-"bXr" = (
-/obj/item/weapon/wrench,
-/turf/open/floor/plating,
-/area/maintenance/department/cargo)
-"bXs" = (
-/obj/structure/table,
-/obj/item/trash/plate,
-/turf/open/floor/plating{
- icon_state = "platingdmg1"
- },
-/area/maintenance/department/cargo)
-"bXt" = (
-/obj/structure/table,
-/obj/item/weapon/kitchen/fork,
-/turf/open/floor/plating{
- burnt = 1;
- icon_state = "panelscorched"
- },
-/area/maintenance/department/cargo)
-"bXu" = (
-/obj/structure/table/wood,
-/obj/item/device/flashlight/lamp/green{
- pixel_x = 1;
- pixel_y = 5
- },
-/obj/machinery/power/apc{
- dir = 2;
- name = "Lounge APC";
- pixel_y = -24
- },
-/obj/structure/cable,
-/turf/open/floor/plasteel/grimy,
-/area/crew_quarters/lounge)
-"bXv" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-05";
- layer = 4.1
- },
-/turf/open/floor/plasteel/blue/side,
-/area/hallway/primary/central)
-"bXw" = (
-/obj/structure/closet/emcloset,
-/turf/open/floor/plasteel/blue/corner{
- dir = 8
- },
-/area/hallway/primary/central)
-"bXx" = (
-/obj/structure/closet/firecloset,
-/turf/open/floor/plasteel/blue/corner{
- dir = 8
- },
-/area/hallway/primary/central)
-"bXy" = (
-/turf/open/floor/plasteel/blue/side,
-/area/hallway/primary/central)
-"bXz" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-10";
- layer = 4.1
- },
-/turf/open/floor/plasteel/purple/side,
-/area/hallway/primary/central)
-"bXA" = (
-/obj/effect/decal/cleanable/cobweb/cobweb2,
-/turf/open/floor/plasteel/black,
-/area/medical/morgue)
-"bXB" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/shower{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/central)
-"bXC" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/sink{
- dir = 8;
- pixel_x = -12
- },
-/turf/open/floor/plasteel/white,
-/area/science/research)
-"bXD" = (
-/obj/structure/chair{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/central)
-"bXE" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/door/firedoor,
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"bXF" = (
-/obj/machinery/door/firedoor,
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"bXG" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/door/firedoor,
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"bXH" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/chair/stool,
-/turf/open/floor/plasteel/white,
-/area/science/research)
-"bXI" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 10
- },
-/obj/structure/chair/stool,
-/turf/open/floor/plasteel/white,
-/area/science/research)
-"bXJ" = (
-/obj/structure/chair/stool,
-/turf/open/floor/plasteel/white,
-/area/science/research)
-"bXK" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-05";
- layer = 4.1
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/central)
-"bXL" = (
-/obj/machinery/holopad,
-/turf/open/floor/plasteel/white,
-/area/science/research)
-"bXM" = (
-/obj/effect/turf_decal/stripes/corner,
-/turf/open/floor/plasteel,
-/area/science/robotics/lab)
-"bXN" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/science/robotics/lab)
-"bXO" = (
-/obj/structure/chair,
-/turf/open/floor/plasteel/whitepurple/side,
-/area/science/research)
-"bXP" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-17"
- },
-/turf/open/floor/plasteel/whitepurple/side,
-/area/science/research)
-"bXQ" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/medical/genetics)
-"bXR" = (
-/obj/machinery/smartfridge/chemistry/preloaded,
-/turf/open/floor/plasteel/black,
-/area/medical/chemistry)
-"bXS" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/extinguisher_cabinet{
- pixel_x = -24
- },
-/turf/open/floor/plasteel/yellow/corner{
- dir = 1
- },
-/area/hallway/primary/aft)
-"bXT" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/yellow/corner{
- icon_state = "yellowcorner";
- dir = 4
- },
-/area/hallway/primary/aft)
-"bXU" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/yellow/corner{
- dir = 1
- },
-/area/hallway/primary/aft)
-"bXV" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/structure/chair/stool,
-/turf/open/floor/plasteel/white,
-/area/medical/genetics)
-"bXW" = (
-/turf/open/floor/plasteel/purple/side{
- dir = 8
- },
-/area/science/robotics/lab)
-"bXX" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/department/engine)
-"bXY" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/holopad,
-/turf/open/floor/plasteel/white,
-/area/science/xenobiology)
-"bXZ" = (
-/obj/effect/spawner/lootdrop/grille_or_trash,
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
- },
-/area/maintenance/department/engine)
-"bYa" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/sign/poster/official/random{
- pixel_y = 32
- },
-/turf/open/floor/plasteel/white,
-/area/science/research)
-"bYb" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/white,
-/area/medical/sleeper)
-"bYc" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/structure/bed/roller,
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/central)
-"bYd" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/structure/bed/roller,
-/obj/machinery/iv_drip{
- density = 0
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/central)
-"bYe" = (
-/obj/machinery/holopad,
-/turf/open/floor/plasteel/white,
-/area/medical/chemistry)
-"bYf" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"bYg" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
-/turf/open/floor/plasteel/white,
-/area/science/research)
-"bYh" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 1
- },
-/turf/open/floor/plasteel/white,
-/area/science/research)
-"bYi" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-20";
- layer = 4.1;
- pixel_y = 3
- },
-/turf/open/floor/plasteel/white,
-/area/science/research)
-"bYj" = (
-/obj/structure/chair/comfy{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/science/research)
-"bYk" = (
-/obj/structure/chair/comfy{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/science/research)
-"bYl" = (
-/turf/open/floor/plasteel/white/side{
- dir = 8
- },
-/area/science/research)
-"bYm" = (
-/obj/item/weapon/folder/white,
-/obj/item/clothing/gloves/color/latex,
-/obj/structure/table/glass,
-/turf/open/floor/plasteel/yellow/side{
- dir = 8
- },
-/area/hallway/primary/aft)
-"bYn" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 1
- },
-/turf/open/floor/plasteel/white,
-/area/science/research)
-"bYo" = (
-/obj/machinery/atmospherics/components/unary/tank/air{
- dir = 2
- },
-/turf/open/floor/plating,
-/area/maintenance/department/engine)
-"bYp" = (
-/obj/machinery/portable_atmospherics/canister/oxygen,
-/turf/open/floor/plating,
-/area/maintenance/department/engine)
-"bYq" = (
-/obj/structure/grille/broken,
-/obj/structure/lattice,
-/turf/open/space,
-/area/space)
-"bYr" = (
-/obj/machinery/atmospherics/pipe/manifold/general/hidden{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/maintenance/department/engine)
-"bYs" = (
-/obj/machinery/atmospherics/pipe/manifold/general/hidden,
-/obj/machinery/meter,
-/obj/machinery/light/small,
-/turf/open/floor/plating,
-/area/maintenance/department/engine)
-"bYt" = (
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 4;
- name = "Air Out";
- on = 1
- },
-/turf/open/floor/plating,
-/area/maintenance/department/engine)
-"bYu" = (
-/obj/machinery/door/airlock/atmos{
- name = "Atmospherics Maintenance";
- req_access_txt = "12;24"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/department/engine)
-"bYv" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 9
- },
-/turf/open/floor/plating,
-/area/maintenance/department/engine)
-"bYw" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/sign/poster/official/random{
- pixel_x = -32
- },
-/turf/open/floor/plasteel/yellow/corner{
- dir = 8
- },
-/area/hallway/primary/aft)
-"bYx" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 1
- },
-/turf/open/floor/plasteel/white,
-/area/science/research)
-"bYy" = (
-/obj/structure/chair/stool,
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/science/mixing)
-"bYz" = (
-/obj/docking_port/stationary{
- dwidth = 2;
- height = 6;
- id = "monastery_shuttle_asteroid";
- name = "monastery";
- width = 5
+ network = list("Telecomms")
},
/turf/open/space,
/area/space)
-"bYA" = (
-/obj/effect/decal/cleanable/cobweb,
-/turf/open/floor/plating,
-/area/maintenance/department/engine)
-"bYB" = (
-/obj/effect/decal/cleanable/vomit/old,
-/turf/open/floor/plating,
-/area/maintenance/department/engine)
-"bYC" = (
-/obj/structure/chair/office/light{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/freezer,
-/area/medical/surgery)
-"bYD" = (
-/turf/closed/wall/r_wall,
-/area/space)
-"bYE" = (
-/obj/structure/window/reinforced{
- dir = 4
- },
-/turf/open/space,
-/area/space)
-"bYF" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/chapel/dock)
-"bYG" = (
-/obj/machinery/door/airlock/external{
- name = "Pod Docking Bay"
- },
-/turf/open/floor/plating,
-/area/chapel/dock)
-"bYH" = (
-/obj/machinery/atmospherics/components/unary/outlet_injector/on{
- dir = 2
- },
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 8;
- layer = 2.9
- },
-/turf/open/floor/plating/airless,
-/area/space/nearstation)
-"bYI" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 9
- },
-/turf/open/floor/plasteel/black,
-/area/maintenance/department/engine)
-"bYJ" = (
-/turf/open/floor/plating,
-/area/chapel/dock)
-"bYK" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 6
- },
-/turf/open/floor/plating,
-/area/chapel/dock)
-"bYL" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 9
- },
-/turf/open/floor/plating,
-/area/chapel/dock)
-"bYM" = (
-/obj/structure/window/reinforced{
- dir = 8
- },
-/turf/open/space,
-/area/space)
-"bYN" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/floor/plasteel/black,
-/area/maintenance/department/engine)
-"bYO" = (
-/obj/structure/grille,
-/obj/structure/window/fulltile,
-/obj/structure/sign/deathsposal,
-/turf/open/floor/plating,
-/area/medical/virology)
-"bYP" = (
-/obj/machinery/portable_atmospherics/scrubber,
-/obj/machinery/atmospherics/pipe/simple/yellow/visible{
- dir = 6
- },
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"bYQ" = (
-/obj/structure/grille,
-/obj/machinery/atmospherics/pipe/simple/yellow/visible{
- dir = 4
- },
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/engine/atmos)
-"bYR" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/closed/wall,
-/area/chapel/dock)
-"bYS" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
- icon_state = "space";
- layer = 4;
- name = "EXTERNAL AIRLOCK"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plating,
-/area/chapel/dock)
-"bYT" = (
-/obj/machinery/computer/shuttle/monastery_shuttle,
-/turf/open/floor/plasteel/vault{
- dir = 8
- },
-/area/chapel/dock)
-"bYU" = (
-/obj/machinery/atmospherics/components/unary/tank/air{
- dir = 2
- },
-/turf/open/floor/plasteel/vault{
- dir = 8
- },
-/area/chapel/dock)
-"bYV" = (
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/lattice,
-/turf/open/space,
-/area/space)
-"bYW" = (
-/obj/effect/decal/cleanable/oil{
- icon_state = "floor6"
- },
-/obj/effect/decal/cleanable/robot_debris/old,
-/turf/open/floor/plating,
-/area/maintenance/department/engine)
-"bYX" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/turf/open/floor/plasteel/black,
-/area/maintenance/department/engine)
-"bYY" = (
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/window/reinforced,
-/turf/open/space,
-/area/space)
-"bYZ" = (
-/turf/closed/wall/r_wall,
-/area/chapel/dock)
-"bZa" = (
-/obj/machinery/airalarm{
- dir = 4;
- pixel_x = -22
- },
-/turf/open/floor/plasteel/black,
-/area/chapel/dock)
-"bZb" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/turf/open/floor/plasteel/black,
-/area/chapel/dock)
-"bZc" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/black,
-/area/chapel/dock)
-"bZd" = (
-/obj/machinery/power/apc{
- dir = 4;
- name = "Monastery Docking Bay APC";
- pixel_x = 24
- },
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/black,
-/area/chapel/dock)
-"bZe" = (
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/window/reinforced,
-/turf/open/space,
-/area/space)
-"bZf" = (
-/obj/effect/decal/cleanable/blood/old,
-/turf/open/floor/engine,
-/area/maintenance/department/engine)
-"bZg" = (
-/obj/effect/decal/cleanable/oil,
-/turf/open/floor/plating{
- icon_state = "panelscorched"
- },
-/area/maintenance/department/engine)
-"bZh" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/obj/structure/chair/office/light{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"bZi" = (
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/window/reinforced,
-/obj/structure/lattice,
-/turf/open/space,
-/area/space)
-"bZj" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/chapel/asteroid{
- name = "Monastery Asteroid"
- })
-"bZk" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 4
- },
-/obj/structure/extinguisher_cabinet{
- pixel_x = -24
- },
-/obj/machinery/light/small,
-/obj/machinery/camera{
- c_tag = "Monastery Dock";
- dir = 1;
- network = list("SS13","Monastery")
- },
-/turf/open/floor/plasteel/vault{
- dir = 4
- },
-/area/chapel/dock)
-"bZl" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 9
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/black,
-/area/chapel/dock)
-"bZm" = (
-/turf/open/floor/plasteel/black,
-/area/chapel/dock)
-"bZn" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 1
- },
-/obj/item/device/radio/intercom{
- dir = 0;
- name = "Station Intercom (General)";
- pixel_x = 27
- },
-/obj/machinery/light/small,
-/turf/open/floor/plasteel/vault{
- dir = 1
- },
-/area/chapel/dock)
-"bZo" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/visible{
- dir = 4
- },
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 1;
- name = "Pure to Mix";
- on = 0
- },
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"bZp" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/atmospherics/pipe/simple/cyan/visible{
- dir = 10
- },
-/turf/open/floor/plating,
-/area/engine/atmos)
-"bZq" = (
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/lattice,
-/turf/open/space,
-/area/space)
-"bZr" = (
-/turf/open/floor/plating/asteroid,
-/area/chapel/asteroid{
- name = "Monastery Asteroid"
- })
-"bZs" = (
-/turf/closed/wall,
-/area/chapel/dock)
-"bZt" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/vault,
-/area/chapel/dock)
-"bZu" = (
-/turf/open/floor/plasteel/vault,
-/area/chapel/dock)
-"bZv" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 10
- },
-/turf/open/floor/plasteel/black,
-/area/maintenance/department/engine)
-"bZw" = (
-/obj/structure/chair/comfy/black{
- dir = 1
- },
-/obj/effect/turf_decal/stripes/line,
-/turf/open/floor/plasteel/black,
-/area/maintenance/department/engine)
-"bZx" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 6
- },
-/turf/open/floor/plasteel/black,
-/area/maintenance/department/engine)
-"bZy" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/extinguisher_cabinet{
- pixel_x = -24
- },
-/turf/open/floor/plasteel/yellow/corner{
- dir = 8
- },
-/area/hallway/primary/aft)
-"bZz" = (
-/obj/machinery/atmospherics/pipe/manifold/general/visible{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"bZA" = (
-/obj/machinery/atmospherics/pipe/manifold4w/yellow/visible,
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"bZB" = (
-/obj/machinery/door/airlock/centcom{
- name = "Chapel";
- opacity = 1
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/vault{
- dir = 5
- },
-/area/chapel/dock)
-"bZC" = (
-/obj/machinery/door/airlock/centcom{
- name = "Chapel";
- opacity = 1
- },
-/turf/open/floor/plasteel/vault{
- dir = 5
- },
-/area/chapel/dock)
-"bZD" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/turf/open/floor/plating,
-/area/maintenance/department/engine)
-"bZE" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/holopad,
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"bZF" = (
-/turf/closed/wall,
-/area/engine/atmos)
-"bZG" = (
-/obj/machinery/camera{
- c_tag = "Monastery Asteroid Dock Port";
- dir = 4;
- network = list("SS13","Monastery")
- },
-/turf/open/floor/plating/asteroid,
-/area/chapel/asteroid{
- name = "Monastery Asteroid"
- })
-"bZH" = (
-/obj/structure/flora/ausbushes/leafybush,
-/obj/structure/flora/ausbushes/reedbush,
-/turf/open/floor/plating/asteroid,
-/area/chapel/asteroid{
- name = "Monastery Asteroid"
- })
-"bZI" = (
-/obj/item/device/flashlight/lantern{
- on = 1
- },
-/turf/open/floor/plating/asteroid,
-/area/chapel/asteroid{
- name = "Monastery Asteroid"
- })
-"bZJ" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/asteroid{
- icon_plating = "asteroid"
- },
-/area/chapel/asteroid{
- name = "Monastery Asteroid"
- })
-"bZK" = (
-/turf/open/floor/plasteel/asteroid{
- icon_plating = "asteroid"
- },
-/area/chapel/asteroid{
- name = "Monastery Asteroid"
- })
-"bZL" = (
-/obj/machinery/camera{
- c_tag = "Monastery Asteroid Dock Staboard";
- dir = 8;
- network = list("SS13","Monastery")
- },
-/turf/open/floor/plating/asteroid,
-/area/chapel/asteroid{
- name = "Monastery Asteroid"
- })
-"bZM" = (
-/obj/effect/turf_decal/stripes/corner,
-/turf/open/floor/plasteel/black,
-/area/engine/gravity_generator)
-"bZN" = (
-/obj/effect/turf_decal/stripes/line,
-/turf/open/floor/plasteel/black,
-/area/engine/gravity_generator)
-"bZO" = (
-/obj/structure/table,
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
- },
-/area/maintenance/department/engine)
-"bZP" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/turf/open/floor/plasteel/black,
-/area/engine/gravity_generator)
-"bZQ" = (
-/obj/structure/lattice,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/window/reinforced,
-/obj/structure/lattice,
-/turf/open/space,
-/area/space)
-"bZR" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/floor/plasteel/black,
-/area/engine/gravity_generator)
-"bZS" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/floor/plasteel/black,
-/area/storage/tech)
-"bZT" = (
-/obj/structure/flora/ausbushes,
-/turf/open/floor/plating/asteroid,
-/area/chapel/asteroid{
- name = "Monastery Asteroid"
- })
-"bZU" = (
-/obj/machinery/disposal/bin,
-/obj/structure/disposalpipe/trunk{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/department/engine)
-"bZV" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/department/engine)
-"bZW" = (
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/turf/open/floor/plating,
-/area/maintenance/department/engine)
-"bZX" = (
-/obj/item/device/radio/beacon,
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"bZY" = (
-/obj/structure/lattice,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/turf/open/space,
-/area/space)
-"bZZ" = (
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/obj/structure/lattice,
-/turf/open/space,
-/area/space/nearstation)
-"caa" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plating/airless,
-/area/space/nearstation)
-"cab" = (
-/obj/effect/turf_decal/stripes/corner{
- dir = 8
- },
-/turf/open/floor/plasteel/black,
-/area/engine/gravity_generator)
-"cac" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plasteel/black,
-/area/engine/gravity_generator)
-"cad" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/lattice,
-/turf/open/space,
-/area/space/nearstation)
-"cae" = (
-/obj/structure/sign/directions/engineering{
- icon_state = "direction_eng";
- dir = 4
- },
-/turf/closed/wall,
-/area/maintenance/department/engine)
-"caf" = (
-/turf/open/floor/plating{
- broken = 1;
- icon_state = "platingdmg3"
- },
-/area/maintenance/department/engine)
-"cag" = (
-/obj/item/clothing/head/welding,
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
- },
-/area/maintenance/department/engine)
-"cah" = (
-/obj/structure/flora/ausbushes/fernybush,
-/turf/open/floor/plating/asteroid,
-/area/chapel/asteroid{
- name = "Monastery Asteroid"
- })
-"cai" = (
-/obj/structure/lattice,
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/turf/open/space,
-/area/space)
-"caj" = (
-/obj/structure/lattice,
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/turf/open/space,
-/area/space/nearstation)
-"cak" = (
-/obj/machinery/light/small{
- brightness = 3;
- dir = 8
- },
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/open/floor/plating{
- broken = 1;
- icon_state = "platingdmg3"
- },
-/area/maintenance/department/engine)
-"cal" = (
-/turf/open/floor/plating{
- icon_state = "platingdmg1"
- },
-/area/maintenance/department/engine)
-"cam" = (
-/obj/structure/window/reinforced,
-/obj/structure/lattice,
-/turf/open/space,
-/area/space)
-"can" = (
-/obj/structure/disposaloutlet,
-/obj/structure/disposalpipe/trunk{
- dir = 1
- },
-/turf/open/floor/plating/airless,
-/area/space/nearstation)
-"cao" = (
-/obj/structure/grille/broken,
-/turf/open/floor/plating{
- icon_state = "panelscorched"
- },
-/area/maintenance/department/engine)
-"cap" = (
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/open/floor/plating{
- burnt = 1;
- icon_state = "panelscorched"
- },
-/area/maintenance/department/engine)
-"caq" = (
-/obj/item/weapon/cigbutt/cigarbutt,
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
- },
-/area/maintenance/department/engine)
-"car" = (
-/obj/effect/decal/cleanable/blood/old,
-/turf/open/floor/plating,
-/area/maintenance/department/engine)
-"cas" = (
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/turf/open/space,
-/area/space)
-"cat" = (
-/obj/structure/flora/ausbushes/leafybush,
-/obj/structure/flora/ausbushes/reedbush,
-/obj/machinery/camera{
- c_tag = "Monastery Asteroid Primary Entrance";
- dir = 1;
- network = list("SS13","Monastery")
- },
-/turf/open/floor/plating/asteroid,
-/area/chapel/asteroid{
- name = "Monastery Asteroid"
- })
-"cau" = (
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 1;
- name = "Air to Pure";
- on = 0
- },
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"cav" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/atmospherics/pipe/simple/green/visible{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/visible,
-/turf/open/floor/plating,
-/area/engine/atmos)
-"caw" = (
-/obj/structure/flora/ausbushes,
-/obj/machinery/camera{
- c_tag = "Monastery Asteroid Port Fore";
- dir = 1;
- network = list("SS13","Monastery")
- },
-/turf/open/floor/plating/asteroid,
-/area/chapel/asteroid{
- name = "Monastery Asteroid"
- })
-"cax" = (
-/turf/closed/wall,
-/area/chapel/main/monastery)
-"cay" = (
-/obj/machinery/door/airlock/centcom{
- name = "Chapel";
- opacity = 1
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/black,
-/area/chapel/main/monastery)
-"caz" = (
-/obj/machinery/door/airlock/centcom{
- name = "Chapel";
- opacity = 1
- },
-/turf/open/floor/plasteel/black,
-/area/chapel/main/monastery)
-"caA" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
- icon_state = "space";
- layer = 4;
- name = "EXTERNAL AIRLOCK"
- },
-/turf/open/floor/plating,
-/area/chapel/asteroid{
- name = "Monastery Asteroid"
- })
-"caB" = (
-/obj/structure/lattice,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/turf/open/space,
-/area/space/nearstation)
-"caC" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/requests_console{
- announcementConsole = 0;
- department = "Engineering";
- departmentType = 4;
- name = "Engineering RC";
- pixel_x = -32
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"caD" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/light/small{
- dir = 4
- },
-/turf/open/floor/plasteel/black,
-/area/chapel/main/monastery)
-"caE" = (
-/obj/machinery/atmospherics/pipe/simple/green/visible,
-/obj/machinery/atmospherics/pipe/simple/cyan/visible{
- dir = 4
- },
-/turf/open/floor/plasteel/yellow/side,
-/area/engine/atmos)
-"caF" = (
-/obj/machinery/atmospherics/components/trinary/mixer{
- node1_concentration = 0.8;
- node2_concentration = 0.2;
- on = 1
- },
-/turf/open/floor/plasteel/yellow/side,
-/area/engine/atmos)
-"caG" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 9
- },
-/turf/closed/wall/r_wall,
-/area/engine/atmos)
-"caH" = (
-/obj/machinery/light/small{
- dir = 1
- },
-/turf/open/floor/plasteel/black,
-/area/chapel/main/monastery)
-"caI" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/black,
-/area/chapel/main/monastery)
-"caJ" = (
-/turf/open/floor/plasteel/black,
-/area/chapel/main/monastery)
-"caK" = (
-/obj/item/device/radio/beacon,
-/obj/machinery/light/small{
- dir = 1
- },
-/turf/open/floor/plasteel/black,
-/area/chapel/main/monastery)
-"caL" = (
-/obj/machinery/door/airlock/external{
- cyclelinkeddir = 4
- },
-/turf/open/floor/plating,
-/area/chapel/asteroid{
- name = "Monastery Asteroid"
- })
-"caM" = (
-/obj/machinery/light/small{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/chapel/asteroid{
- name = "Monastery Asteroid"
- })
-"caN" = (
-/obj/machinery/door/airlock/external{
- cyclelinkeddir = 8
- },
-/turf/open/floor/plating,
-/area/chapel/asteroid{
- name = "Monastery Asteroid"
- })
-"caO" = (
-/obj/machinery/door/airlock/external{
- cyclelinkeddir = 4;
- req_access_txt = "13"
- },
-/turf/open/floor/plating,
-/area/maintenance/department/engine)
-"caP" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
- icon_state = "space";
- layer = 4;
- name = "EXTERNAL AIRLOCK";
- pixel_y = 32
- },
-/turf/open/floor/plating,
-/area/maintenance/department/engine)
-"caQ" = (
-/obj/machinery/door/airlock/external{
- cyclelinkeddir = 8;
- req_access_txt = "13"
- },
-/turf/open/floor/plating,
-/area/maintenance/department/engine)
-"caR" = (
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/open/floor/plating{
- broken = 1;
- icon_state = "platingdmg1"
- },
-/area/maintenance/department/engine)
-"caS" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/atmospherics/pipe/simple/green/visible{
- dir = 5
- },
-/turf/open/floor/plating,
-/area/engine/atmos)
-"caT" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/atmospherics/pipe/simple/green/visible{
- dir = 4;
-
- },
-/turf/open/floor/plating,
-/area/engine/atmos)
-"caU" = (
-/obj/machinery/atmospherics/pipe/simple/green/hidden{
- dir = 8
- },
-/turf/closed/wall/r_wall,
-/area/engine/atmos)
-"caV" = (
-/obj/machinery/atmospherics/pipe/simple/green/hidden{
- dir = 9
- },
-/turf/closed/wall/r_wall,
-/area/engine/atmos)
-"caW" = (
-/obj/machinery/light/small{
- dir = 1
- },
-/obj/effect/decal/cleanable/cobweb,
-/turf/open/floor/plasteel/black,
-/area/chapel/main/monastery)
-"caX" = (
-/obj/machinery/door/morgue{
- name = "Confession Booth"
- },
-/turf/open/floor/plasteel/black,
-/area/chapel/main/monastery)
-"caY" = (
-/obj/structure/chair,
-/turf/open/floor/plasteel/chapel{
- dir = 1
- },
-/area/chapel/main/monastery)
-"caZ" = (
-/obj/structure/chair,
-/turf/open/floor/plasteel/chapel{
- dir = 4
- },
-/area/chapel/main/monastery)
-"cba" = (
-/obj/structure/chair,
-/obj/item/device/radio/intercom{
- dir = 0;
- name = "Station Intercom (General)";
- pixel_x = 30
- },
-/turf/open/floor/plasteel/chapel{
- dir = 4
- },
-/area/chapel/main/monastery)
-"cbb" = (
-/obj/structure/lattice,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/window/reinforced,
-/turf/open/space,
-/area/space/nearstation)
-"cbc" = (
-/obj/structure/closet/emcloset{
- anchored = 1;
- desc = "It's a storage unit for emergency breath masks and O2 tanks, and is securely bolted in place.";
- name = "anchored emergency closet"
- },
-/turf/open/floor/plating,
-/area/maintenance/department/engine)
-"cbd" = (
-/obj/structure/chair,
-/turf/open/floor/plasteel/black,
-/area/chapel/main/monastery)
-"cbe" = (
-/obj/structure/chair,
-/obj/machinery/light/small{
- dir = 8
- },
-/turf/open/floor/plasteel/chapel{
- dir = 8
- },
-/area/chapel/main/monastery)
-"cbf" = (
-/obj/structure/chair,
-/turf/open/floor/plasteel/chapel,
-/area/chapel/main/monastery)
-"cbg" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/carpet,
-/area/chapel/main/monastery)
-"cbh" = (
-/turf/open/floor/carpet,
-/area/chapel/main/monastery)
-"cbi" = (
-/obj/structure/chair,
-/turf/open/floor/plasteel/chapel{
- dir = 8
- },
-/area/chapel/main/monastery)
-"cbj" = (
-/obj/structure/chair,
-/obj/machinery/light/small{
- dir = 4
- },
-/turf/open/floor/plasteel/chapel,
-/area/chapel/main/monastery)
-"cbk" = (
-/mob/living/simple_animal/butterfly,
-/turf/open/floor/grass,
-/area/hydroponics/garden/monastery)
-"cbl" = (
-/obj/machinery/camera{
- c_tag = "Monastery Asteroid Port";
- dir = 1;
- network = list("SS13","Monastery")
- },
-/turf/open/floor/plating/asteroid,
-/area/chapel/asteroid{
- name = "Monastery Asteroid"
- })
-"cbm" = (
-/obj/structure/flora/ausbushes/palebush,
-/turf/open/floor/plating/asteroid,
-/area/chapel/asteroid{
- name = "Monastery Asteroid"
- })
-"cbn" = (
-/turf/closed/wall,
-/area/chapel/office)
-"cbo" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/tinted/fulltile,
-/turf/open/floor/plasteel/black,
-/area/chapel/office)
-"cbp" = (
-/turf/closed/wall,
-/area/chapel/asteroid{
- name = "Monastery Asteroid"
- })
-"cbq" = (
-/obj/machinery/light/small{
- dir = 1
- },
-/turf/open/floor/plasteel/black,
-/area/chapel/office)
-"cbr" = (
-/obj/structure/chair{
- dir = 1
- },
-/turf/open/floor/plasteel/black,
-/area/chapel/office)
-"cbs" = (
-/obj/machinery/holopad,
-/obj/item/device/flashlight/lantern,
-/turf/open/floor/plasteel/chapel,
-/area/chapel/main/monastery)
-"cbt" = (
-/obj/item/device/flashlight/lantern,
-/turf/open/floor/plasteel/chapel{
- dir = 8
- },
-/area/chapel/main/monastery)
-"cbu" = (
-/obj/structure/chair,
-/obj/machinery/camera{
- c_tag = "Chapel";
- dir = 8;
- network = list("SS13","Monastery")
- },
-/turf/open/floor/plasteel/chapel,
-/area/chapel/main/monastery)
-"cbv" = (
-/obj/structure/flora/ausbushes/pointybush,
-/obj/machinery/camera{
- c_tag = "Monastery Asteroid Starboard";
- dir = 1;
- network = list("SS13","Monastery")
- },
-/turf/open/floor/plating/asteroid,
-/area/chapel/asteroid{
- name = "Monastery Asteroid"
- })
-"cbw" = (
-/obj/structure/flora/ausbushes/genericbush,
-/turf/open/floor/plating/asteroid,
-/area/chapel/asteroid{
- name = "Monastery Asteroid"
- })
-"cbx" = (
-/obj/structure/closet{
- name = "chaplain closet"
- },
-/obj/item/clothing/under/rank/chaplain,
-/obj/item/clothing/shoes/sneakers/black,
-/obj/item/weapon/storage/backpack/cultpack,
-/obj/item/weapon/storage/fancy/candle_box,
-/obj/item/weapon/storage/fancy/candle_box,
-/obj/item/clothing/suit/nun,
-/obj/item/clothing/head/nun_hood,
-/obj/item/clothing/suit/holidaypriest,
-/obj/item/device/radio/intercom{
- dir = 0;
- name = "Station Intercom (General)";
- pixel_y = 26
- },
-/obj/machinery/requests_console{
- department = "Chapel";
- departmentType = 2;
- pixel_x = -32
- },
-/turf/open/floor/carpet,
-/area/chapel/office)
-"cby" = (
-/obj/machinery/airalarm{
- frequency = 1439;
- locked = 0;
- pixel_y = 23
- },
-/turf/open/floor/carpet,
-/area/chapel/office)
-"cbz" = (
-/obj/structure/table/wood,
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-18";
- layer = 4.1;
- pixel_y = 8
- },
-/obj/machinery/camera{
- c_tag = "Chapel Office";
- dir = 2;
- network = list("SS13","Monastery")
- },
-/turf/open/floor/carpet,
-/area/chapel/office)
-"cbA" = (
-/obj/machinery/door/morgue{
- name = "Confession Booth"
- },
-/turf/open/floor/plasteel/black,
-/area/chapel/office)
-"cbB" = (
-/obj/machinery/light/small{
- dir = 8
- },
-/turf/open/floor/plasteel/chapel{
- dir = 1
- },
-/area/chapel/main/monastery)
-"cbC" = (
-/turf/open/floor/plasteel/chapel{
- dir = 4
- },
-/area/chapel/main/monastery)
-"cbD" = (
-/obj/structure/table/wood,
-/obj/item/weapon/storage/book/bible,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/carpet,
-/area/chapel/main/monastery)
-"cbE" = (
-/obj/structure/table/wood,
-/obj/item/weapon/reagent_containers/food/drinks/trophy{
- pixel_y = 8
- },
-/turf/open/floor/carpet,
-/area/chapel/main/monastery)
-"cbF" = (
-/turf/open/floor/plasteel/chapel{
- dir = 1
- },
-/area/chapel/main/monastery)
-"cbG" = (
-/obj/machinery/light/small{
- dir = 4
- },
-/turf/open/floor/plasteel/chapel{
- dir = 4
- },
-/area/chapel/main/monastery)
-"cbH" = (
-/obj/machinery/door/airlock/centcom{
- name = "Chapel Access";
- opacity = 1
- },
-/turf/open/floor/plasteel/black,
-/area/chapel/main/monastery)
-"cbI" = (
-/obj/structure/flora/ausbushes/pointybush,
-/turf/open/floor/plating/asteroid,
-/area/chapel/asteroid{
- name = "Monastery Asteroid"
- })
-"cbJ" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/chapel/office)
-"cbK" = (
-/obj/machinery/light/small{
- dir = 8
- },
-/turf/open/floor/carpet,
-/area/chapel/office)
-"cbL" = (
-/obj/structure/chair/comfy/black{
- dir = 4
- },
-/turf/open/floor/carpet,
-/area/chapel/office)
-"cbM" = (
-/obj/structure/table/wood,
-/obj/item/weapon/reagent_containers/food/drinks/bottle/holywater{
- name = "flask of holy water";
- pixel_x = -2;
- pixel_y = 2
- },
-/obj/item/weapon/nullrod,
-/turf/open/floor/carpet,
-/area/chapel/office)
-"cbN" = (
-/obj/structure/chair{
- dir = 8
- },
-/obj/machinery/light_switch{
- pixel_x = 26;
- pixel_y = -2
- },
-/turf/open/floor/plasteel/black,
-/area/chapel/office)
-"cbO" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on,
-/turf/open/floor/plasteel/black,
-/area/chapel/office)
-"cbP" = (
-/obj/machinery/light/small{
- dir = 1
- },
-/obj/item/device/radio/intercom{
- dir = 0;
- name = "Station Intercom (General)";
- pixel_y = 26
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/machinery/camera{
- c_tag = "Chapel Port Access";
- dir = 2;
- network = list("SS13","Monastery")
- },
-/turf/open/floor/plasteel/black,
-/area/chapel/office)
-"cbQ" = (
-/obj/machinery/door/airlock/centcom{
- name = "Chapel Access";
- opacity = 1
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/black,
-/area/chapel/main/monastery)
-"cbR" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/chapel{
- dir = 8
- },
-/area/chapel/main/monastery)
-"cbS" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/chapel,
-/area/chapel/main/monastery)
-"cbT" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 10
- },
-/turf/open/floor/carpet,
-/area/chapel/main/monastery)
-"cbU" = (
-/obj/effect/landmark/start/chaplain,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 6
- },
-/turf/open/floor/carpet,
-/area/chapel/main/monastery)
-"cbV" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 8
- },
-/turf/open/floor/plasteel/chapel{
- dir = 8
- },
-/area/chapel/main/monastery)
-"cbW" = (
-/turf/open/floor/plasteel/chapel,
-/area/chapel/main/monastery)
-"cbX" = (
-/obj/machinery/door/airlock/centcom{
- name = "Chape Access";
- opacity = 1
- },
-/turf/open/floor/plasteel/black,
-/area/chapel/main/monastery)
-"cbY" = (
-/obj/machinery/light/small{
- dir = 1
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
-/obj/machinery/airalarm{
- pixel_y = 22
- },
-/turf/open/floor/plasteel/black,
-/area/chapel/main/monastery)
-"cbZ" = (
-/obj/machinery/light/small{
- dir = 1
- },
-/obj/machinery/camera{
- c_tag = "Chapel Starboard Access";
- dir = 2;
- network = list("SS13","Monastery")
- },
-/turf/open/floor/plasteel/black,
-/area/chapel/main/monastery)
-"cca" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/chapel/main/monastery)
-"ccb" = (
-/obj/structure/chair,
-/turf/open/floor/plating/asteroid,
-/area/chapel/asteroid{
- name = "Monastery Asteroid"
- })
-"ccc" = (
-/obj/structure/closet/crate/bin,
-/obj/machinery/newscaster{
- pixel_x = -32
- },
-/turf/open/floor/carpet,
-/area/chapel/office)
-"ccd" = (
-/turf/open/floor/carpet,
-/area/chapel/office)
-"cce" = (
-/obj/structure/table/wood,
-/obj/item/weapon/paper_bin{
- layer = 2.9;
- pixel_x = -2;
- pixel_y = 4
- },
-/obj/item/weapon/pen,
-/turf/open/floor/carpet,
-/area/chapel/office)
-"ccf" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 6
- },
-/turf/open/floor/plasteel/black,
-/area/chapel/office)
-"ccg" = (
-/obj/machinery/door/airlock/centcom{
- name = "Chapel Office";
- opacity = 1;
- req_access_txt = "22"
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/black,
-/area/chapel/office)
-"cch" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/black,
-/area/chapel/office)
-"cci" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/black,
-/area/chapel/office)
-"ccj" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-08";
- layer = 4.1
- },
-/turf/open/floor/plasteel/chapel{
- dir = 1
- },
-/area/chapel/main/monastery)
-"cck" = (
-/obj/structure/table/wood/fancy,
-/obj/item/weapon/storage/box/matches{
- pixel_x = -3;
- pixel_y = 8
- },
-/obj/machinery/light/small,
-/turf/open/floor/plasteel/chapel{
- dir = 4
- },
-/area/chapel/main/monastery)
-"ccl" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/black,
-/area/chapel/main/monastery)
-"ccm" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/black,
-/area/chapel/main/monastery)
-"ccn" = (
-/obj/structure/table/wood/fancy,
-/obj/item/weapon/storage/fancy/candle_box,
-/obj/machinery/light/small,
-/turf/open/floor/plasteel/chapel{
- dir = 1
- },
-/area/chapel/main/monastery)
-"cco" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-08";
- layer = 4.1
- },
-/turf/open/floor/plasteel/chapel{
- dir = 4
- },
-/area/chapel/main/monastery)
-"ccp" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 6
- },
-/turf/open/floor/plasteel/black,
-/area/chapel/main/monastery)
-"ccq" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 8
- },
-/turf/open/floor/plasteel/black,
-/area/chapel/main/monastery)
-"ccr" = (
-/obj/structure/chair/wood/normal,
-/turf/open/floor/plasteel/black,
-/area/chapel/main/monastery)
-"ccs" = (
-/obj/structure/table,
-/obj/item/trash/plate,
-/obj/item/weapon/kitchen/fork,
-/turf/open/floor/plating/asteroid,
-/area/chapel/asteroid{
- name = "Monastery Asteroid"
- })
-"cct" = (
-/obj/machinery/field/generator,
-/obj/machinery/camera{
- c_tag = "Engineering Secure Storage";
- dir = 4;
- network = list("SS13")
- },
-/turf/open/floor/plating,
-/area/engine/engineering)
-"ccu" = (
-/obj/machinery/power/apc{
- dir = 8;
- name = "Chapel Office APC";
- pixel_x = -24
- },
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
-/turf/open/floor/plasteel/black,
-/area/chapel/office)
-"ccv" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/black,
-/area/chapel/office)
-"ccw" = (
-/obj/machinery/light/small{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 1
- },
-/turf/open/floor/plasteel/black,
-/area/chapel/office)
-"ccx" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/closed/wall,
-/area/chapel/office)
-"ccy" = (
-/obj/machinery/door/airlock/centcom{
- name = "Chapel Access";
- opacity = 1
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/black,
-/area/chapel/office)
-"ccz" = (
-/obj/machinery/door/airlock/centcom{
- name = "Chapel";
- opacity = 1
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/black,
-/area/chapel/main/monastery)
-"ccA" = (
-/obj/machinery/door/airlock/centcom{
- name = "Chapel";
- opacity = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/black,
-/area/chapel/main/monastery)
-"ccB" = (
-/obj/machinery/door/airlock/centcom{
- name = "Chapel Access";
- opacity = 1
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/black,
-/area/chapel/main/monastery)
-"ccC" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/closed/wall,
-/area/chapel/main/monastery)
-"ccD" = (
-/obj/structure/table/wood,
-/obj/item/weapon/storage/photo_album,
-/turf/open/floor/plasteel/black,
-/area/chapel/main/monastery)
-"ccE" = (
-/obj/structure/chair{
- dir = 1
- },
-/turf/open/floor/plating/asteroid,
-/area/chapel/asteroid{
- name = "Monastery Asteroid"
- })
-"ccF" = (
-/obj/structure/bodycontainer/crematorium{
- id = "foo"
- },
-/obj/effect/decal/cleanable/cobweb,
-/turf/open/floor/plasteel/black,
-/area/chapel/office)
-"ccG" = (
-/obj/machinery/light/small{
- dir = 1
- },
-/obj/machinery/camera{
- c_tag = "Chapel Crematorium";
- dir = 2;
- network = list("SS13","Monastery")
- },
-/turf/open/floor/plasteel/black,
-/area/chapel/office)
-"ccH" = (
-/obj/machinery/door/airlock/centcom{
- name = "Crematorium";
- opacity = 1;
- req_access = "27"
- },
-/turf/open/floor/plasteel/black,
-/area/chapel/office)
-"ccI" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/black,
-/area/chapel/office)
-"ccJ" = (
-/obj/structure/filingcabinet,
-/turf/open/floor/plasteel/black,
-/area/chapel/office)
-"ccK" = (
-/obj/machinery/suit_storage_unit/standard_unit,
-/turf/open/floor/plasteel/black,
-/area/chapel/office)
-"ccL" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel/black,
-/area/chapel/main/monastery)
-"ccM" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/black,
-/area/chapel/main/monastery)
-"ccN" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/black,
-/area/chapel/main/monastery)
-"ccO" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/power/apc{
- dir = 1;
- name = "Monastery APC";
- pixel_y = 24
- },
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/turf/open/floor/plasteel/black,
-/area/chapel/main/monastery)
-"ccP" = (
-/obj/machinery/light/small{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/black,
-/area/chapel/main/monastery)
-"ccQ" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/black,
-/area/chapel/main/monastery)
-"ccR" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
-/turf/open/floor/plasteel/black,
-/area/chapel/main/monastery)
-"ccS" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/airalarm{
- pixel_y = 22
- },
-/turf/open/floor/plasteel/black,
-/area/chapel/main/monastery)
-"ccT" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/black,
-/area/chapel/main/monastery)
-"ccU" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/black,
-/area/chapel/main/monastery)
-"ccV" = (
-/obj/effect/decal/cleanable/blood/old,
-/turf/open/floor/plasteel/black,
-/area/chapel/office)
-"ccW" = (
-/obj/machinery/button/crematorium{
- id = "foo";
- pixel_x = 25
- },
-/turf/open/floor/plasteel/black,
-/area/chapel/office)
-"ccX" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 5
- },
-/turf/closed/wall,
-/area/chapel/office)
-"ccY" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/closed/wall,
-/area/chapel/office)
-"ccZ" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/black,
-/area/chapel/main/monastery)
-"cda" = (
-/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,
-/turf/open/floor/plasteel/vault{
- dir = 5
- },
-/area/chapel/main/monastery)
-"cdb" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/vault{
- dir = 5
- },
-/area/chapel/main/monastery)
-"cdc" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
-/turf/open/floor/plasteel/vault{
- dir = 5
- },
-/area/chapel/main/monastery)
-"cdd" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/vault{
- dir = 5
- },
-/area/chapel/main/monastery)
-"cde" = (
-/obj/machinery/light/small{
- dir = 1
- },
-/obj/structure/closet/emcloset{
- anchored = 1;
- desc = "It's a storage unit for emergency breath masks and O2 tanks, and is securely bolted in place.";
- name = "anchored emergency closet"
- },
-/turf/open/floor/plating,
-/area/chapel/main/monastery)
-"cdf" = (
-/obj/machinery/chem_master/condimaster,
-/turf/open/floor/plasteel/hydrofloor,
-/area/chapel/main/monastery)
-"cdg" = (
-/obj/machinery/seed_extractor,
-/obj/machinery/light/small{
- dir = 1
- },
-/turf/open/floor/plasteel/hydrofloor,
-/area/chapel/main/monastery)
-"cdh" = (
-/obj/machinery/biogenerator,
-/turf/open/floor/plasteel/hydrofloor,
-/area/chapel/main/monastery)
-"cdi" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/black,
-/area/chapel/main/monastery)
-"cdj" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/vault{
- dir = 5
- },
-/area/chapel/main/monastery)
-"cdk" = (
-/turf/closed/wall,
-/area/hydroponics/garden/monastery)
-"cdl" = (
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/hydroponics/garden/monastery)
-"cdm" = (
-/obj/machinery/door/airlock/external{
- cyclelinkeddir = 4
- },
-/turf/open/floor/plating,
-/area/chapel/main/monastery)
-"cdn" = (
-/turf/open/floor/plating,
-/area/chapel/main/monastery)
-"cdo" = (
-/obj/machinery/door/airlock/external{
- cyclelinkeddir = 8
- },
-/turf/open/floor/plating,
-/area/chapel/main/monastery)
-"cdp" = (
-/turf/open/floor/plasteel/asteroid,
-/area/chapel/asteroid{
- name = "Monastery Asteroid"
- })
-"cdq" = (
-/obj/structure/flora/ausbushes/fernybush,
-/obj/machinery/camera{
- c_tag = "Monastery Asteroid Starboard Aft";
- dir = 1;
- network = list("SS13","Monastery")
- },
-/turf/open/floor/plasteel/asteroid,
-/area/chapel/asteroid{
- name = "Monastery Asteroid"
- })
-"cdr" = (
-/obj/structure/flora/ausbushes,
-/turf/open/floor/plasteel/asteroid,
-/area/chapel/asteroid{
- name = "Monastery Asteroid"
- })
-"cds" = (
-/turf/closed/mineral,
-/area/chapel/asteroid{
- name = "Monastery Asteroid"
- })
-"cdt" = (
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
- },
-/obj/machinery/power/apc{
- dir = 4;
- name = "Monastery External APC";
- pixel_x = 24
- },
-/turf/open/floor/plasteel/asteroid{
- icon_plating = "asteroid"
- },
-/area/chapel/asteroid{
- name = "Monastery Asteroid"
- })
-"cdu" = (
-/obj/machinery/airalarm{
- pixel_y = 22
- },
-/obj/item/weapon/storage/firstaid/regular,
-/turf/open/floor/plasteel/hydrofloor,
-/area/chapel/main/monastery)
-"cdv" = (
-/obj/item/seeds/wheat,
-/turf/open/floor/plasteel/hydrofloor,
-/area/chapel/main/monastery)
-"cdw" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 4
- },
-/turf/open/floor/plasteel/hydrofloor,
-/area/chapel/main/monastery)
-"cdx" = (
-/obj/item/weapon/storage/bag/plants,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/structure/extinguisher_cabinet{
- pixel_x = 24
- },
-/turf/open/floor/plasteel/hydrofloor,
-/area/chapel/main/monastery)
-"cdy" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/closed/wall,
-/area/chapel/main/monastery)
-"cdz" = (
-/obj/machinery/light/small{
- dir = 8
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/black,
-/area/chapel/main/monastery)
-"cdA" = (
-/obj/structure/flora/ausbushes/pointybush,
-/turf/open/floor/grass,
-/area/hydroponics/garden/monastery)
-"cdB" = (
-/obj/structure/flora/ausbushes/ywflowers,
-/obj/structure/flora/ausbushes/sparsegrass,
-/obj/machinery/light/small{
- dir = 1
- },
-/turf/open/floor/grass,
-/area/hydroponics/garden/monastery)
-"cdC" = (
-/obj/structure/flora/ausbushes/ywflowers,
-/obj/structure/flora/ausbushes/ppflowers,
-/obj/structure/flora/ausbushes/sparsegrass,
-/turf/open/floor/grass,
-/area/hydroponics/garden/monastery)
-"cdD" = (
-/obj/structure/flora/ausbushes/ywflowers,
-/obj/structure/flora/ausbushes/sparsegrass,
-/obj/machinery/camera{
- c_tag = "Monastery Garden";
- dir = 2;
- network = list("SS13","Monastery")
- },
-/turf/open/floor/grass,
-/area/hydroponics/garden/monastery)
-"cdE" = (
-/obj/machinery/hydroponics/soil,
-/obj/item/seeds/carrot,
-/obj/machinery/light/small{
- dir = 1
- },
-/turf/open/floor/grass,
-/area/hydroponics/garden/monastery)
-"cdF" = (
-/obj/machinery/hydroponics/soil,
-/obj/item/seeds/watermelon/holy,
-/turf/open/floor/grass,
-/area/hydroponics/garden/monastery)
-"cdG" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/turf/open/floor/plasteel/asteroid{
- icon_plating = "asteroid"
- },
-/area/chapel/asteroid{
- name = "Monastery Asteroid"
- })
-"cdH" = (
-/obj/machinery/door/airlock/external{
- cyclelinkeddir = 4
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plating,
-/area/chapel/main/monastery)
-"cdI" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plating,
-/area/chapel/main/monastery)
-"cdJ" = (
-/obj/machinery/door/airlock/external{
- cyclelinkeddir = 8
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plating,
-/area/chapel/main/monastery)
-"cdK" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/hydrofloor,
-/area/chapel/main/monastery)
-"cdL" = (
-/obj/machinery/vending/hydronutrients,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/hydrofloor,
-/area/chapel/main/monastery)
-"cdM" = (
-/obj/item/weapon/shovel/spade,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/hydrofloor,
-/area/chapel/main/monastery)
-"cdN" = (
-/obj/structure/sink{
- dir = 4;
- pixel_x = 11
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/turf/open/floor/plasteel/hydrofloor,
-/area/chapel/main/monastery)
-"cdO" = (
-/obj/structure/flora/ausbushes/genericbush,
-/obj/machinery/power/apc{
- dir = 8;
- name = "Garden APC";
- pixel_x = -24
- },
-/obj/structure/cable{
- icon_state = "0-2";
- pixel_y = 1;
- d2 = 2
- },
-/turf/open/floor/grass,
-/area/hydroponics/garden/monastery)
-"cdP" = (
-/turf/open/floor/grass,
-/area/hydroponics/garden/monastery)
-"cdQ" = (
-/obj/item/weapon/cultivator,
-/turf/open/floor/grass,
-/area/hydroponics/garden/monastery)
-"cdR" = (
-/obj/machinery/hydroponics/soil,
-/obj/item/seeds/sugarcane,
-/turf/open/floor/grass,
-/area/hydroponics/garden/monastery)
-"cdS" = (
-/obj/structure/closet/cabinet,
-/obj/item/clothing/suit/holidaypriest,
-/obj/item/clothing/suit/nun,
-/obj/item/clothing/head/nun_hood,
-/obj/machinery/button/door{
- id = "Cell1";
- name = "Cell Bolt Control";
- normaldoorcontrol = 1;
- pixel_x = -25;
- req_access_txt = "0";
- specialfunctions = 4
- },
-/turf/open/floor/plasteel/grimy,
-/area/chapel/main/monastery)
-"cdT" = (
-/obj/structure/dresser,
-/obj/structure/sign/securearea{
- desc = "Under the painting a plaque reads: 'While the meat grinder may not have spared you, fear not. Not one part of you has gone to waste... You were delicious.'";
- icon_state = "monkey_painting";
- name = "Mr. Deempisi portrait";
- pixel_y = 28
- },
-/turf/open/floor/plasteel/grimy,
-/area/chapel/main/monastery)
-"cdU" = (
-/obj/structure/table/wood,
-/obj/effect/decal/cleanable/cobweb{
- icon_state = "cobweb2"
- },
-/obj/machinery/light/small{
- dir = 4
- },
-/obj/item/device/flashlight/lantern,
-/turf/open/floor/plasteel/grimy,
-/area/chapel/main/monastery)
-"cdV" = (
-/obj/structure/toilet{
- pixel_y = 8
- },
-/obj/machinery/light/small{
- brightness = 3;
- dir = 8
- },
-/turf/open/floor/plasteel/showroomfloor,
-/area/chapel/main/monastery)
-"cdW" = (
-/obj/machinery/camera{
- c_tag = "Monastery Kitchen";
- dir = 4;
- network = list("SS13","Monastery")
- },
-/turf/open/floor/plasteel/hydrofloor,
-/area/chapel/main/monastery)
-"cdX" = (
-/obj/machinery/vending/dinnerware,
-/turf/open/floor/plasteel/hydrofloor,
-/area/chapel/main/monastery)
-"cdY" = (
-/obj/item/clothing/suit/apron/chef,
-/turf/open/floor/plasteel/hydrofloor,
-/area/chapel/main/monastery)
-"cdZ" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 6
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/turf/open/floor/plasteel/hydrofloor,
-/area/chapel/main/monastery)
-"cea" = (
-/obj/machinery/door/airlock{
- name = "Kitchen"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/black,
-/area/chapel/main/monastery)
-"ceb" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/turf/open/floor/plasteel/black,
-/area/chapel/main/monastery)
-"cec" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/vault{
- dir = 5
- },
-/area/chapel/main/monastery)
-"ced" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/door/airlock{
- name = "Garden"
- },
-/turf/open/floor/plasteel/vault{
- dir = 5
- },
-/area/hydroponics/garden/monastery)
-"cee" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/turf/open/floor/grass,
-/area/hydroponics/garden/monastery)
-"cef" = (
-/obj/structure/sink/puddle,
-/obj/item/weapon/reagent_containers/glass/bucket,
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/grass,
-/area/hydroponics/garden/monastery)
-"ceg" = (
-/obj/structure/flora/ausbushes/sunnybush,
-/turf/open/floor/grass,
-/area/hydroponics/garden/monastery)
-"ceh" = (
-/obj/machinery/door/airlock{
- name = "Garden"
- },
-/turf/open/floor/plasteel/vault{
- dir = 5
- },
-/area/hydroponics/garden/monastery)
-"cei" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel/vault{
- dir = 5
- },
-/area/chapel/main/monastery)
-"cej" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/black,
-/area/chapel/main/monastery)
-"cek" = (
-/obj/machinery/door/airlock{
- id_tag = "Cell1";
- name = "Cell 1"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/grimy,
-/area/chapel/main/monastery)
-"cel" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 8
- },
-/turf/open/floor/plasteel/grimy,
-/area/chapel/main/monastery)
-"cem" = (
-/turf/open/floor/plasteel/grimy,
-/area/chapel/main/monastery)
-"cen" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on,
-/turf/open/floor/plasteel/grimy,
-/area/chapel/main/monastery)
-"ceo" = (
-/obj/machinery/door/airlock{
- name = "Bathroom"
- },
-/turf/open/floor/plasteel/grimy,
-/area/chapel/main/monastery)
-"cep" = (
-/obj/structure/sink{
- dir = 4;
- pixel_x = 11
- },
-/turf/open/floor/plasteel/showroomfloor,
-/area/chapel/main/monastery)
-"ceq" = (
-/obj/item/chair/stool,
-/turf/open/floor/plating{
- broken = 1;
- icon_state = "platingdmg1"
- },
-/area/maintenance/department/engine)
-"cer" = (
-/obj/structure/reagent_dispensers/fueltank,
-/turf/open/floor/plating{
- broken = 1;
- icon_state = "platingdmg3"
- },
-/area/maintenance/department/engine)
-"ces" = (
-/obj/structure/flora/ausbushes/leafybush,
-/obj/machinery/camera{
- c_tag = "Monastery Asteroid Port Aft";
- dir = 8;
- network = list("SS13","Monastery")
- },
-/turf/open/floor/plating/asteroid,
-/area/chapel/asteroid{
- name = "Monastery Asteroid"
- })
-"cet" = (
-/obj/structure/table,
-/obj/machinery/microwave,
-/obj/machinery/light/small{
- dir = 1
- },
-/obj/effect/decal/cleanable/cobweb,
-/obj/item/device/radio/intercom{
- dir = 0;
- name = "Station Intercom (General)";
- pixel_y = 26
- },
-/turf/open/floor/plasteel/hydrofloor,
-/area/chapel/main/monastery)
-"ceu" = (
-/turf/open/floor/plasteel/hydrofloor,
-/area/chapel/main/monastery)
-"cev" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 4
- },
-/turf/open/floor/plasteel/hydrofloor,
-/area/chapel/main/monastery)
-"cew" = (
-/obj/item/weapon/reagent_containers/glass/bucket,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 9
- },
-/turf/open/floor/plasteel/hydrofloor,
-/area/chapel/main/monastery)
-"cex" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/black,
-/area/chapel/main/monastery)
-"cey" = (
-/obj/machinery/hydroponics/soil,
-/obj/item/seeds/wheat,
-/turf/open/floor/grass,
-/area/hydroponics/garden/monastery)
-"cez" = (
-/obj/structure/flora/ausbushes/genericbush,
-/turf/open/floor/grass,
-/area/hydroponics/garden/monastery)
-"ceA" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel/black,
-/area/chapel/main/monastery)
-"ceB" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/closed/wall,
-/area/chapel/main/monastery)
-"ceC" = (
-/obj/structure/table/wood,
-/obj/machinery/light/small{
- dir = 8
- },
-/obj/item/device/instrument/violin,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/grimy,
-/area/chapel/main/monastery)
-"ceD" = (
-/obj/structure/chair/wood/normal{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/grimy,
-/area/chapel/main/monastery)
-"ceE" = (
-/obj/structure/bed,
-/obj/item/weapon/bedsheet/green,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 9
- },
-/turf/open/floor/plasteel/grimy,
-/area/chapel/main/monastery)
-"ceF" = (
-/obj/machinery/shower{
- dir = 8;
- pixel_y = -4
- },
-/obj/item/weapon/soap/homemade,
-/turf/open/floor/plasteel/showroomfloor,
-/area/chapel/main/monastery)
-"ceG" = (
-/turf/closed/mineral{
- baseturf = /turf/open/floor/plating/asteroid
- },
-/area/chapel/asteroid{
- name = "Monastery Asteroid"
- })
-"ceH" = (
-/obj/structure/flora/ausbushes/leafybush,
-/obj/structure/flora/ausbushes/fernybush,
-/turf/open/floor/plating/asteroid,
-/area/chapel/asteroid{
- name = "Monastery Asteroid"
- })
-"ceI" = (
-/obj/item/weapon/phone,
-/turf/open/floor/plating,
-/area/chapel/main/monastery)
-"ceJ" = (
-/obj/structure/table,
-/obj/machinery/reagentgrinder,
-/turf/open/floor/plasteel/hydrofloor,
-/area/chapel/main/monastery)
-"ceK" = (
-/obj/structure/table,
-/obj/item/weapon/reagent_containers/food/condiment/saltshaker{
- pixel_x = 3;
- pixel_y = 4
- },
-/obj/item/weapon/reagent_containers/food/condiment/peppermill,
-/obj/item/weapon/storage/box/ingredients/wildcard{
- layer = 3.1
- },
-/turf/open/floor/plasteel/hydrofloor,
-/area/chapel/main/monastery)
-"ceL" = (
-/obj/structure/table,
-/obj/item/weapon/reagent_containers/food/condiment/flour,
-/obj/item/weapon/kitchen/rollingpin,
-/obj/item/weapon/kitchen/knife,
-/obj/machinery/light/small,
-/turf/open/floor/plasteel/hydrofloor,
-/area/chapel/main/monastery)
-"ceM" = (
-/obj/structure/closet/crate/bin,
-/turf/open/floor/plasteel/hydrofloor,
-/area/chapel/main/monastery)
-"ceN" = (
-/obj/structure/reagent_dispensers/watertank/high,
-/turf/open/floor/plasteel/hydrofloor,
-/area/chapel/main/monastery)
-"ceO" = (
-/obj/machinery/light/small{
- dir = 8
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/camera{
- c_tag = "Monastery Kitchen Entrance";
- dir = 4;
- network = list("SS13","Monastery")
- },
-/turf/open/floor/plasteel/black,
-/area/chapel/main/monastery)
-"ceP" = (
-/obj/machinery/hydroponics/soil,
-/obj/item/seeds/grass,
-/turf/open/floor/grass,
-/area/hydroponics/garden/monastery)
-"ceQ" = (
-/obj/machinery/hydroponics/soil,
-/obj/item/seeds/apple,
-/obj/machinery/light/small,
-/turf/open/floor/grass,
-/area/hydroponics/garden/monastery)
-"ceR" = (
-/obj/structure/flora/ausbushes/ywflowers,
-/obj/structure/flora/ausbushes/sparsegrass,
-/turf/open/floor/grass,
-/area/hydroponics/garden/monastery)
-"ceS" = (
-/obj/structure/flora/ausbushes/ywflowers,
-/obj/structure/flora/ausbushes/sparsegrass,
-/obj/machinery/light/small,
-/turf/open/floor/grass,
-/area/hydroponics/garden/monastery)
-"ceT" = (
-/obj/machinery/light/small{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/camera{
- c_tag = "Monastery Cells";
- dir = 8;
- network = list("SS13","Monastery")
- },
-/turf/open/floor/plasteel/black,
-/area/chapel/main/monastery)
-"ceU" = (
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/abandoned)
-"ceV" = (
-/obj/structure/shuttle/engine/propulsion/burst{
- dir = 1
- },
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/abandoned)
-"ceW" = (
-/obj/machinery/door/airlock/glass{
- name = "Shuttle Airlock"
- },
-/turf/open/floor/plasteel/black,
-/area/shuttle/abandoned)
-"ceX" = (
-/obj/structure/closet/cabinet,
-/obj/item/clothing/suit/holidaypriest,
-/obj/item/clothing/suit/nun,
-/obj/item/clothing/head/nun_hood,
-/obj/machinery/button/door{
- id = "Cell2";
- name = "Cell Bolt Control";
- normaldoorcontrol = 1;
- pixel_x = -25;
- req_access_txt = "0";
- specialfunctions = 4
- },
-/turf/open/floor/plasteel/grimy,
-/area/chapel/main/monastery)
-"ceY" = (
-/obj/machinery/light/small{
- dir = 4
- },
-/obj/structure/easel,
-/obj/item/weapon/canvas/twentythreeXnineteen,
-/turf/open/floor/plasteel/grimy,
-/area/chapel/main/monastery)
-"ceZ" = (
-/obj/structure/toilet{
- pixel_y = 8
- },
-/turf/open/floor/plasteel/showroomfloor,
-/area/chapel/main/monastery)
-"cfa" = (
-/turf/open/floor/plasteel/black,
-/area/shuttle/abandoned)
-"cfb" = (
-/turf/open/floor/plasteel,
-/area/shuttle/abandoned)
-"cfc" = (
-/obj/machinery/light/small{
- dir = 8
- },
-/obj/machinery/airalarm{
- pixel_y = 22
- },
-/turf/open/floor/plasteel/black,
-/area/chapel/main/monastery)
-"cfd" = (
-/obj/structure/closet/coffin,
-/turf/open/floor/plasteel/black,
-/area/chapel/main/monastery)
-"cfe" = (
-/obj/structure/closet/coffin,
-/obj/machinery/camera{
- c_tag = "Monastery Funeral Parlor";
- dir = 2;
- network = list("SS13","Monastery")
- },
-/turf/open/floor/plasteel/black,
-/area/chapel/main/monastery)
-"cff" = (
-/obj/structure/closet/coffin,
-/obj/machinery/light/small{
- dir = 4
- },
-/obj/effect/decal/cleanable/cobweb{
- icon_state = "cobweb2"
- },
-/turf/open/floor/plasteel/black,
-/area/chapel/main/monastery)
-"cfg" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 6
- },
-/turf/open/floor/plasteel/black,
-/area/chapel/main/monastery)
-"cfh" = (
-/obj/machinery/door/airlock/centcom{
- name = "Chapel Garden";
- opacity = 1
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/black,
-/area/chapel/main/monastery)
-"cfi" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 1;
-
- },
-/turf/open/floor/plasteel/vault{
- dir = 5
- },
-/area/chapel/main/monastery)
-"cfj" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 1
- },
-/turf/open/floor/plasteel/vault{
- dir = 5
- },
-/area/chapel/main/monastery)
-"cfk" = (
-/obj/machinery/door/airlock{
- id_tag = "Cell2";
- name = "Cell 2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/grimy,
-/area/chapel/main/monastery)
-"cfl" = (
-/obj/structure/closet/emcloset,
-/obj/effect/decal/cleanable/cobweb,
-/obj/effect/decal/cleanable/blood/old,
-/turf/open/floor/plasteel/black,
-/area/chapel/main/monastery)
-"cfm" = (
-/obj/structure/table,
-/obj/item/weapon/crowbar,
-/obj/item/clothing/mask/gas,
-/turf/open/floor/plasteel/black,
-/area/chapel/main/monastery)
-"cfn" = (
-/obj/machinery/door/window/eastleft{
- dir = 1;
- name = "Coffin Storage";
- req_one_access_txt = "22"
- },
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
- icon_state = "space";
- layer = 4;
- name = "EXTERNAL AIRLOCK";
- pixel_x = -32
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 6
- },
-/turf/open/floor/plasteel/black,
-/area/chapel/main/monastery)
-"cfo" = (
-/obj/structure/window/reinforced{
- dir = 1;
- layer = 2.9
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 1
- },
-/turf/open/floor/plasteel/black,
-/area/chapel/main/monastery)
-"cfp" = (
-/obj/structure/window/reinforced{
- dir = 1;
- layer = 2.9
- },
-/obj/structure/chair,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/carpet,
-/area/chapel/main/monastery)
-"cfq" = (
-/obj/structure/window/reinforced{
- dir = 1;
- layer = 2.9
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/black,
-/area/chapel/main/monastery)
-"cfr" = (
-/obj/machinery/light/small{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 9
- },
-/turf/open/floor/plasteel/black,
-/area/chapel/main/monastery)
-"cfs" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
-/turf/open/floor/plasteel/black,
-/area/chapel/main/monastery)
-"cft" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/black,
-/area/chapel/main/monastery)
-"cfu" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 1
- },
-/turf/open/floor/plasteel/black,
-/area/chapel/main/monastery)
-"cfv" = (
-/obj/machinery/light/small,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/black,
-/area/chapel/main/monastery)
-"cfw" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/black,
-/area/chapel/main/monastery)
-"cfx" = (
-/obj/machinery/light/small,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/black,
-/area/chapel/main/monastery)
-"cfy" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 1
- },
-/turf/open/floor/plasteel/black,
-/area/chapel/main/monastery)
-"cfz" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/black,
-/area/chapel/main/monastery)
-"cfA" = (
-/obj/structure/closet/firecloset,
-/obj/effect/decal/cleanable/cobweb,
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
- },
-/area/maintenance/department/crew_quarters/dorms)
-"cfB" = (
-/obj/structure/grille/broken,
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
- },
-/area/maintenance/department/crew_quarters/dorms)
-"cfC" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/turf/open/floor/plasteel/showroomfloor,
-/area/security/warden)
-"cfD" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/turf/open/floor/plasteel,
-/area/security/brig)
-"cfE" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/security/brig)
-"cfF" = (
-/obj/machinery/holopad,
-/turf/open/floor/plasteel,
-/area/quartermaster/miningdock)
-"cfG" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/sign/map{
- icon_state = "map-pubby";
- pixel_y = 32
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"cfH" = (
-/obj/item/weapon/storage/toolbox/mechanical,
-/turf/open/floor/plating,
-/area/maintenance/department/engine)
-"cfI" = (
-/turf/open/space,
-/obj/machinery/porta_turret/syndicate{
- dir = 9
- },
-/turf/closed/wall/mineral/plastitanium{
- dir = 8;
- icon_state = "diagonalWall3"
- },
-/area/shuttle/syndicate)
-"cfJ" = (
-/turf/closed/wall/mineral/plastitanium,
-/area/shuttle/syndicate)
-"cfK" = (
-/obj/structure/grille,
-/obj/machinery/door/poddoor/shutters{
- id = "syndieshutters";
- name = "blast shutters"
- },
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/shuttle/syndicate)
-"cfL" = (
-/turf/open/space,
-/obj/machinery/porta_turret/syndicate{
- dir = 5
- },
-/turf/closed/wall/mineral/plastitanium{
- dir = 1;
- icon_state = "diagonalWall3"
- },
-/area/shuttle/syndicate)
-"cfM" = (
-/obj/machinery/computer/med_data/syndie,
-/turf/open/floor/plasteel/vault{
- dir = 8
- },
-/area/shuttle/syndicate)
-"cfN" = (
-/obj/machinery/computer/crew/syndie,
-/turf/open/floor/plasteel/vault{
- dir = 8
- },
-/area/shuttle/syndicate)
-"cfO" = (
-/obj/structure/table/reinforced,
-/obj/item/weapon/folder/red,
-/turf/open/floor/plasteel/vault{
- dir = 8
- },
-/area/shuttle/syndicate)
-"cfP" = (
-/obj/machinery/computer/shuttle/syndicate,
-/turf/open/floor/plasteel/vault{
- dir = 8
- },
-/area/shuttle/syndicate)
-"cfQ" = (
-/obj/structure/table/reinforced,
-/turf/open/floor/plasteel/vault{
- dir = 8
- },
-/area/shuttle/syndicate)
-"cfR" = (
-/obj/machinery/computer/camera_advanced/syndie,
-/turf/open/floor/plasteel/vault{
- dir = 8
- },
-/area/shuttle/syndicate)
-"cfS" = (
-/obj/structure/table/reinforced,
-/obj/machinery/status_display{
- pixel_x = -32
- },
-/obj/item/weapon/clipboard,
-/obj/item/toy/figure/syndie,
-/obj/machinery/light{
- dir = 8
- },
-/turf/open/floor/plasteel/vault{
- dir = 8
- },
-/area/shuttle/syndicate)
-"cfT" = (
-/obj/structure/chair/office/dark{
- dir = 1;
- name = "tactical swivel chair"
- },
-/obj/machinery/button/door{
- id = "syndieshutters";
- name = "Cockpit View Control";
- pixel_x = 32;
- pixel_y = 32;
- req_access_txt = "150"
- },
-/turf/open/floor/plasteel/black,
-/area/shuttle/syndicate)
-"cfU" = (
-/turf/open/floor/plasteel/vault,
-/area/shuttle/syndicate)
-"cfV" = (
-/obj/item/device/radio/intercom{
- desc = "Talk through this. Evilly";
- freerange = 1;
- frequency = 1213;
- name = "Syndicate Intercom";
- pixel_y = -32;
- subspace_transmission = 1;
- syndie = 1
- },
-/turf/open/floor/mineral/plastitanium,
-/area/shuttle/syndicate)
-"cfW" = (
-/obj/structure/closet/syndicate/personal,
-/turf/open/floor/mineral/plastitanium,
-/area/shuttle/syndicate)
-"cfX" = (
-/turf/open/space,
-/turf/closed/wall/mineral/plastitanium{
- icon_state = "diagonalWall3"
- },
-/area/shuttle/syndicate)
-"cfY" = (
-/obj/machinery/door/airlock/hatch{
- name = "Cockpit";
- req_access_txt = "150"
- },
-/turf/open/floor/plasteel/vault{
- dir = 8
- },
-/area/shuttle/syndicate)
-"cfZ" = (
-/turf/open/space,
-/turf/closed/wall/mineral/plastitanium{
- dir = 4;
- icon_state = "diagonalWall3"
- },
-/area/shuttle/syndicate)
-"cga" = (
-/obj/structure/table/reinforced,
-/obj/item/stack/cable_coil/white,
-/obj/item/stack/cable_coil/white,
-/obj/item/weapon/crowbar/red,
-/turf/open/floor/plasteel/vault{
- dir = 5
- },
-/area/shuttle/syndicate)
-"cgb" = (
-/obj/structure/table/reinforced,
-/obj/item/weapon/storage/box/handcuffs{
- pixel_x = 3;
- pixel_y = 3
- },
-/obj/item/weapon/storage/box/zipties,
-/turf/open/floor/plasteel/vault{
- dir = 5
- },
-/area/shuttle/syndicate)
-"cgc" = (
-/obj/structure/chair{
- dir = 8;
- name = "tactical chair"
- },
-/turf/open/floor/plasteel/vault{
- dir = 5
- },
-/area/shuttle/syndicate)
-"cgd" = (
-/obj/machinery/porta_turret/syndicate{
- dir = 4
- },
-/turf/closed/wall/mineral/plastitanium,
-/area/shuttle/syndicate)
-"cge" = (
-/obj/machinery/suit_storage_unit/syndicate,
-/turf/open/floor/plasteel/podhatch{
- dir = 5
- },
-/area/shuttle/syndicate)
-"cgf" = (
-/obj/machinery/portable_atmospherics/canister/oxygen,
-/turf/open/floor/plasteel/vault{
- dir = 8
- },
-/area/shuttle/syndicate)
-"cgg" = (
-/turf/open/floor/plasteel/vault{
- dir = 5
- },
-/area/shuttle/syndicate)
-"cgh" = (
-/obj/structure/tank_dispenser/oxygen,
-/turf/open/floor/plasteel/vault{
- dir = 8
- },
-/area/shuttle/syndicate)
-"cgi" = (
-/obj/machinery/door/poddoor{
- id = "smindicate";
- name = "outer blast door"
- },
-/obj/machinery/button/door{
- id = "smindicate";
- name = "external door control";
- pixel_x = -26;
- req_access_txt = "150"
- },
-/obj/docking_port/mobile{
- dheight = 9;
- dir = 2;
- dwidth = 5;
- height = 24;
- id = "syndicate";
- name = "syndicate infiltrator";
- port_angle = 0;
- roundstart_move = "syndicate_away";
- width = 18
- },
+"cnA" = (
/obj/docking_port/stationary{
dheight = 9;
dir = 2;
dwidth = 5;
height = 24;
- id = "syndicate_nw";
- name = "northwest of station";
+ id = "syndicate_s";
+ name = "south of station";
turf_type = /turf/open/space;
width = 18
},
-/obj/structure/fans/tiny,
-/turf/open/floor/plasteel/podhatch{
- dir = 1
- },
-/area/shuttle/syndicate)
-"cgj" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
- icon_state = "space";
- layer = 4;
- name = "EXTERNAL AIRLOCK"
- },
-/turf/closed/wall/mineral/plastitanium,
-/area/shuttle/syndicate)
-"cgk" = (
-/obj/machinery/portable_atmospherics/canister/oxygen,
-/obj/machinery/light{
- dir = 4
- },
-/turf/open/floor/plasteel/vault{
- dir = 8
- },
-/area/shuttle/syndicate)
-"cgl" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/shuttle/syndicate)
-"cgm" = (
-/obj/machinery/door/airlock/external{
- name = "Ready Room";
- req_access_txt = "150"
- },
-/turf/open/floor/plasteel/vault{
- dir = 8
- },
-/area/shuttle/syndicate)
-"cgn" = (
-/obj/machinery/door/airlock/external{
- name = "E.V.A. Gear Storage";
- req_access_txt = "150"
- },
-/turf/open/floor/plasteel/vault{
- dir = 8
- },
-/area/shuttle/syndicate)
-"cgo" = (
-/obj/machinery/door/airlock/external{
- req_access_txt = "150"
- },
-/turf/open/floor/mineral/plastitanium,
-/area/shuttle/syndicate)
-"cgp" = (
-/obj/machinery/door/window{
- base_state = "right";
- dir = 4;
- icon_state = "right";
- name = "EVA Storage";
- req_access_txt = "150"
- },
-/turf/open/floor/mineral/plastitanium,
-/area/shuttle/syndicate)
-"cgq" = (
/turf/open/space,
-/turf/closed/wall/mineral/plastitanium{
- dir = 1;
- icon_state = "diagonalWall3"
- },
-/area/shuttle/syndicate)
-"cgr" = (
-/obj/item/device/radio/intercom{
- desc = "Talk through this. Evilly";
- freerange = 1;
- frequency = 1213;
- name = "Syndicate Intercom";
- pixel_x = -32;
- subspace_transmission = 1;
- syndie = 1
- },
-/turf/open/floor/mineral/plastitanium,
-/area/shuttle/syndicate)
-"cgs" = (
-/obj/machinery/sleeper/syndie{
+/area/space)
+"cnB" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 4
},
-/turf/open/floor/plasteel/vault{
- dir = 8
- },
-/area/shuttle/syndicate)
-"cgt" = (
-/turf/open/floor/plasteel/vault{
- dir = 8
- },
-/area/shuttle/syndicate)
-"cgu" = (
-/obj/machinery/light{
- dir = 1
- },
-/turf/open/floor/plasteel/vault{
- dir = 8
- },
-/area/shuttle/syndicate)
-"cgv" = (
-/obj/item/weapon/reagent_containers/glass/bottle/epinephrine{
- pixel_x = 6
- },
-/obj/item/weapon/reagent_containers/glass/bottle/charcoal{
- pixel_x = -3
- },
-/obj/item/weapon/reagent_containers/glass/bottle/epinephrine{
- pixel_x = -3;
- pixel_y = 8
- },
-/obj/item/weapon/reagent_containers/glass/bottle/charcoal{
- pixel_x = 6;
- pixel_y = 8
- },
-/obj/item/weapon/reagent_containers/syringe/epinephrine{
- pixel_x = 3;
- pixel_y = -2
- },
-/obj/item/weapon/reagent_containers/syringe/epinephrine{
- pixel_x = 4;
- pixel_y = 1
- },
-/obj/item/weapon/reagent_containers/syringe/epinephrine{
- pixel_x = -2;
- pixel_y = 5
- },
-/obj/item/weapon/reagent_containers/syringe/epinephrine{
- pixel_x = 2;
- pixel_y = 8
- },
-/obj/structure/table/reinforced,
-/turf/open/floor/plasteel/vault{
- dir = 8
- },
-/area/shuttle/syndicate)
-"cgw" = (
-/obj/structure/table/reinforced,
-/obj/item/stack/medical/gauze,
-/obj/item/stack/medical/bruise_pack,
-/obj/item/stack/medical/ointment,
-/turf/open/floor/plasteel/vault{
- dir = 8
- },
-/area/shuttle/syndicate)
-"cgx" = (
-/obj/item/weapon/stock_parts/cell/high{
- pixel_x = -3;
- pixel_y = 3
- },
-/obj/item/weapon/stock_parts/cell/high,
-/obj/structure/table/reinforced,
-/turf/open/floor/plasteel/vault{
- dir = 8
- },
-/area/shuttle/syndicate)
-"cgy" = (
-/obj/item/weapon/screwdriver{
- pixel_y = 9
- },
-/obj/item/device/assembly/voice{
- pixel_y = 3
- },
-/obj/structure/table/reinforced,
-/turf/open/floor/plasteel/vault{
- dir = 8
- },
-/area/shuttle/syndicate)
-"cgz" = (
-/obj/item/weapon/wrench,
-/obj/item/device/assembly/infra,
-/obj/structure/table/reinforced,
-/obj/machinery/light{
- dir = 1
- },
-/turf/open/floor/plasteel/vault{
- dir = 8
- },
-/area/shuttle/syndicate)
-"cgA" = (
-/obj/item/device/assembly/signaler,
-/obj/item/device/assembly/signaler,
-/obj/item/device/assembly/prox_sensor{
- pixel_x = -8;
- pixel_y = 4
- },
-/obj/item/device/assembly/prox_sensor{
- pixel_x = -8;
- pixel_y = 4
- },
-/obj/structure/table/reinforced,
-/turf/open/floor/plasteel/vault{
- dir = 8
- },
-/area/shuttle/syndicate)
-"cgB" = (
-/obj/item/weapon/weldingtool/largetank{
- pixel_y = 3
- },
-/obj/item/device/multitool,
-/obj/structure/table/reinforced,
-/turf/open/floor/plasteel/vault{
- dir = 8
- },
-/area/shuttle/syndicate)
-"cgC" = (
-/obj/structure/bed/roller,
-/obj/machinery/iv_drip,
-/turf/open/floor/plasteel/vault{
- dir = 8
- },
-/area/shuttle/syndicate)
-"cgD" = (
-/obj/structure/sign/bluecross_2,
-/turf/closed/wall/mineral/plastitanium,
-/area/shuttle/syndicate)
-"cgE" = (
-/obj/structure/table,
-/obj/item/weapon/storage/toolbox/syndicate,
-/obj/item/weapon/crowbar/red,
-/turf/open/floor/mineral/plastitanium,
-/area/shuttle/syndicate)
-"cgF" = (
-/obj/machinery/door/airlock/hatch{
- req_access_txt = "150"
- },
-/turf/open/floor/plasteel/vault{
- dir = 8
- },
-/area/shuttle/syndicate)
-"cgG" = (
-/obj/machinery/door/window/westright{
- name = "Tool Storage";
- req_access_txt = "150"
- },
-/turf/open/floor/mineral/plastitanium,
-/area/shuttle/syndicate)
-"cgH" = (
-/obj/machinery/door/window{
- base_state = "right";
- dir = 4;
- icon_state = "right";
- name = "Infirmary";
- req_access_txt = "150"
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/syndicate)
-"cgI" = (
-/obj/machinery/door/window{
- dir = 8;
- name = "Tool Storage";
- req_access_txt = "150"
- },
-/turf/open/floor/mineral/plastitanium,
-/area/shuttle/syndicate)
-"cgJ" = (
-/obj/structure/closet/syndicate/nuclear,
-/turf/open/floor/plasteel/vault{
- dir = 8
- },
-/area/shuttle/syndicate)
-"cgK" = (
-/obj/machinery/porta_turret/syndicate{
- dir = 5
- },
-/turf/closed/wall/mineral/plastitanium,
-/area/shuttle/syndicate)
-"cgL" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/item/bodypart/r_arm/robot,
-/obj/item/bodypart/l_arm/robot,
-/obj/structure/table/reinforced,
-/turf/open/floor/plasteel/vault,
-/area/shuttle/syndicate)
-"cgM" = (
-/obj/machinery/door/window{
- dir = 1;
- name = "Surgery";
- req_access_txt = "150"
- },
-/turf/open/floor/plasteel/vault,
-/area/shuttle/syndicate)
-"cgN" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/turf/open/floor/plasteel/vault,
-/area/shuttle/syndicate)
-"cgO" = (
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/item/weapon/storage/firstaid/regular{
- pixel_x = 3;
- pixel_y = 3
- },
-/obj/item/weapon/storage/firstaid/brute,
-/obj/item/weapon/storage/firstaid/regular{
- pixel_x = -3;
- pixel_y = -3
- },
-/obj/structure/table/reinforced,
-/turf/open/floor/plasteel/vault,
-/area/shuttle/syndicate)
-"cgP" = (
-/obj/item/weapon/storage/firstaid/regular{
- pixel_x = 3;
- pixel_y = 3
- },
-/obj/item/weapon/storage/firstaid/fire,
-/obj/item/weapon/storage/firstaid/regular{
- pixel_x = -3;
- pixel_y = -3
- },
-/obj/structure/table/reinforced,
-/turf/open/floor/plasteel/vault,
-/area/shuttle/syndicate)
-"cgQ" = (
-/obj/item/device/sbeacondrop/bomb{
- pixel_y = 5
- },
-/obj/item/device/sbeacondrop/bomb,
-/obj/structure/table/reinforced,
-/turf/open/floor/plasteel/vault{
- dir = 8
- },
-/area/shuttle/syndicate)
-"cgR" = (
-/obj/item/weapon/grenade/syndieminibomb{
- pixel_x = 4;
- pixel_y = 2
- },
-/obj/item/weapon/grenade/syndieminibomb{
- pixel_x = -1
- },
-/obj/structure/table/reinforced,
-/obj/structure/window/reinforced{
+/turf/open/floor/plasteel/purple/side{
dir = 4
},
-/obj/item/weapon/grenade/plastic/c4,
-/obj/item/weapon/grenade/plastic/c4,
-/obj/item/weapon/grenade/plastic/c4,
-/obj/item/weapon/grenade/plastic/c4,
-/obj/item/weapon/grenade/plastic/c4,
-/turf/open/floor/plasteel/vault{
- dir = 8
- },
-/area/shuttle/syndicate)
-"cgS" = (
-/obj/item/weapon/surgicaldrill,
-/obj/item/weapon/circular_saw,
-/obj/structure/table/reinforced,
-/obj/machinery/light{
- dir = 8
- },
-/turf/open/floor/plasteel/vault{
- dir = 8
- },
-/area/shuttle/syndicate)
-"cgT" = (
-/obj/structure/sink{
- dir = 4;
- pixel_x = 11
- },
-/obj/structure/mirror{
- pixel_x = 30
- },
-/turf/open/floor/plasteel/vault{
- dir = 5
- },
-/area/shuttle/syndicate)
-"cgU" = (
-/obj/machinery/nuclearbomb/syndicate,
-/obj/machinery/door/window{
- dir = 1;
- name = "Theatre Stage";
- req_access_txt = "0"
- },
-/turf/open/floor/circuit/red,
-/area/shuttle/syndicate)
-"cgV" = (
-/obj/machinery/telecomms/allinone{
- intercept = 1
- },
-/turf/open/floor/mineral/plastitanium,
-/area/shuttle/syndicate)
-"cgW" = (
-/obj/item/weapon/cautery,
-/obj/item/weapon/scalpel,
-/obj/structure/table/reinforced,
-/turf/open/floor/plasteel/vault{
- dir = 8
- },
-/area/shuttle/syndicate)
-"cgX" = (
-/obj/structure/table/optable,
-/obj/item/weapon/surgical_drapes,
-/turf/open/floor/plasteel/vault{
- dir = 8
- },
-/area/shuttle/syndicate)
-"cgY" = (
-/obj/item/weapon/retractor,
-/obj/item/weapon/hemostat,
-/obj/structure/table/reinforced,
-/turf/open/floor/plasteel/vault{
- dir = 8
- },
-/area/shuttle/syndicate)
-"cgZ" = (
-/obj/structure/shuttle/engine/heater,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/effect/turf_decal/stripes/line,
-/turf/open/floor/plating/airless,
-/area/shuttle/syndicate)
-"cha" = (
-/obj/machinery/recharge_station,
-/turf/open/floor/circuit/red,
-/area/shuttle/syndicate)
-"chb" = (
-/obj/machinery/telecomms/allinone{
- intercept = 1
- },
-/turf/open/floor/circuit/red,
-/area/shuttle/syndicate)
-"chc" = (
-/obj/structure/rack,
-/obj/item/clothing/suit/space/syndicate/black/red,
-/obj/item/clothing/head/helmet/space/syndicate/black/red,
-/turf/open/floor/mineral/plastitanium,
-/area/shuttle/syndicate)
-"chd" = (
-/obj/structure/shuttle/engine/propulsion/left,
-/obj/effect/turf_decal/stripes/line,
-/turf/open/floor/plating/airless,
-/area/shuttle/syndicate)
-"che" = (
-/obj/structure/shuttle/engine/propulsion,
-/obj/effect/turf_decal/stripes/line,
-/turf/open/floor/plating/airless,
-/area/shuttle/syndicate)
-"chf" = (
-/obj/structure/shuttle/engine/propulsion/right,
-/obj/effect/turf_decal/stripes/line,
-/turf/open/floor/plating/airless,
-/area/shuttle/syndicate)
-"chg" = (
-/turf/open/space,
-/obj/machinery/porta_turret/syndicate{
- dir = 6
- },
-/turf/closed/wall/mineral/plastitanium{
- dir = 4;
- icon_state = "diagonalWall3"
- },
-/area/shuttle/syndicate)
-"chh" = (
-/turf/open/space,
-/obj/machinery/porta_turret/syndicate{
- dir = 10
- },
-/turf/closed/wall/mineral/plastitanium{
- icon_state = "diagonalWall3"
- },
-/area/shuttle/syndicate)
-"chi" = (
-/obj/structure/lattice,
-/obj/structure/grille,
-/turf/open/space,
-/area/solar/port)
-"chj" = (
-/obj/structure/lattice,
-/turf/open/space,
-/area/solar/port)
-"chk" = (
-/obj/structure/lattice,
-/obj/structure/grille/broken,
-/turf/open/space,
-/area/solar/port)
-"chl" = (
-/obj/structure/lattice/catwalk,
-/obj/item/stack/cable_coil,
-/turf/open/space,
-/area/solar/port)
-"chm" = (
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/obj/structure/lattice/catwalk,
-/turf/open/space,
-/area/solar/port)
-"chn" = (
-/turf/open/space,
-/area/shuttle/escape)
-"cho" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating,
-/area/hallway/secondary/exit/departure_lounge)
-"chp" = (
-/obj/item/weapon/twohanded/required/kirbyplants,
-/turf/open/floor/plasteel/escape{
- dir = 9
- },
-/area/hallway/secondary/exit/departure_lounge)
-"chq" = (
-/turf/open/floor/plasteel/escape{
- dir = 1
- },
-/area/hallway/secondary/exit/departure_lounge)
-"chr" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 5
- },
-/turf/open/floor/plasteel/escape{
- dir = 1
- },
-/area/hallway/secondary/exit/departure_lounge)
-"chs" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/escape{
- dir = 1
- },
-/area/hallway/secondary/exit/departure_lounge)
-"cht" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 1
- },
-/turf/open/floor/plasteel/escape{
- dir = 1
- },
-/area/hallway/secondary/exit/departure_lounge)
-"chu" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/escape{
- dir = 1
- },
-/area/hallway/secondary/exit/departure_lounge)
-"chv" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 10
- },
-/turf/open/floor/plasteel/escape{
- dir = 1
- },
-/area/hallway/secondary/exit/departure_lounge)
-"chw" = (
-/obj/structure/table,
-/obj/item/weapon/storage/firstaid/regular,
-/turf/open/floor/plasteel/escape{
- dir = 1
- },
-/area/hallway/secondary/exit/departure_lounge)
-"chx" = (
-/turf/open/floor/plasteel/escape{
- dir = 8
- },
-/area/hallway/secondary/exit/departure_lounge)
-"chy" = (
-/obj/structure/chair{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit/departure_lounge)
-"chz" = (
-/obj/structure/chair{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 5
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit/departure_lounge)
-"chA" = (
-/obj/structure/table,
-/obj/item/toy/cards/deck,
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit/departure_lounge)
-"chB" = (
-/obj/structure/chair{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 10
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit/departure_lounge)
-"chC" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 5
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit/departure_lounge)
-"chD" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit/departure_lounge)
-"chE" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
- icon_state = "space";
- layer = 4;
- name = "EXTERNAL AIRLOCK";
- pixel_x = -32
- },
-/turf/open/floor/plasteel/escape{
- dir = 8
- },
-/area/hallway/secondary/exit/departure_lounge)
-"chF" = (
-/obj/machinery/status_display,
-/turf/closed/wall,
-/area/hallway/secondary/exit/departure_lounge)
-"chG" = (
-/obj/structure/flora/ausbushes/leafybush,
-/obj/structure/flora/ausbushes/ppflowers,
-/obj/structure/flora/ausbushes/ywflowers,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/grass,
-/area/hallway/secondary/exit/departure_lounge)
-"chH" = (
-/obj/machinery/status_display,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/closed/wall,
-/area/hallway/secondary/exit/departure_lounge)
-"chI" = (
-/obj/structure/table,
-/obj/item/weapon/paper_bin,
-/obj/item/weapon/pen,
-/obj/machinery/light{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit/departure_lounge)
-"chJ" = (
-/obj/structure/chair,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit/departure_lounge)
-"chK" = (
-/obj/structure/flora/ausbushes/ywflowers,
-/obj/structure/flora/ausbushes/lavendergrass,
-/obj/structure/flora/ausbushes/ppflowers,
-/obj/structure/flora/ausbushes/brflowers,
-/obj/structure/flora/ausbushes/palebush,
-/obj/structure/window/reinforced{
- dir = 1;
- pixel_y = 1
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/turf/open/floor/grass,
-/area/hallway/secondary/exit/departure_lounge)
-"chL" = (
-/obj/structure/flora/ausbushes/ywflowers,
-/obj/structure/flora/ausbushes/lavendergrass,
-/obj/structure/flora/ausbushes/ppflowers,
-/obj/structure/flora/ausbushes/brflowers,
-/obj/structure/flora/ausbushes/palebush,
-/obj/structure/window/reinforced{
- dir = 1;
- pixel_y = 1
- },
-/turf/open/floor/grass,
-/area/hallway/secondary/exit/departure_lounge)
-"chM" = (
-/obj/structure/flora/ausbushes/ywflowers,
-/obj/structure/flora/ausbushes/lavendergrass,
-/obj/structure/flora/ausbushes/ppflowers,
-/obj/structure/flora/ausbushes/brflowers,
-/obj/structure/flora/ausbushes/palebush,
-/obj/structure/window/reinforced{
- dir = 1;
- pixel_y = 1
- },
-/obj/structure/window/reinforced{
- dir = 4;
- layer = 2.9
- },
-/turf/open/floor/grass,
-/area/hallway/secondary/exit/departure_lounge)
-"chN" = (
-/obj/machinery/camera{
- c_tag = "Departures - Port";
- dir = 4;
- name = "security camera";
- pixel_y = -7
- },
-/turf/open/floor/plasteel/escape{
- dir = 8
- },
-/area/hallway/secondary/exit/departure_lounge)
-"chO" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit/departure_lounge)
-"chP" = (
-/obj/item/device/radio/beacon,
-/obj/effect/landmark/event_spawn,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit/departure_lounge)
-"chQ" = (
-/obj/item/weapon/statuebust{
- anchored = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/grass,
-/area/hallway/secondary/exit/departure_lounge)
-"chR" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit/departure_lounge)
-"chS" = (
-/obj/structure/table,
-/obj/item/weapon/folder,
-/obj/item/weapon/pen,
-/obj/machinery/light,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit/departure_lounge)
-"chT" = (
-/obj/structure/flora/ausbushes/ywflowers,
-/obj/structure/flora/ausbushes/lavendergrass,
-/obj/structure/flora/ausbushes/ppflowers,
-/obj/structure/flora/ausbushes/brflowers,
-/obj/structure/flora/ausbushes/palebush,
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/turf/open/floor/grass,
-/area/hallway/secondary/exit/departure_lounge)
-"chU" = (
-/obj/structure/flora/ausbushes/ywflowers,
-/obj/structure/flora/ausbushes/lavendergrass,
-/obj/structure/flora/ausbushes/ppflowers,
-/obj/structure/flora/ausbushes/brflowers,
-/obj/structure/flora/ausbushes/palebush,
-/obj/structure/window/reinforced,
-/turf/open/floor/grass,
-/area/hallway/secondary/exit/departure_lounge)
-"chV" = (
-/obj/structure/flora/ausbushes/ywflowers,
-/obj/structure/flora/ausbushes/lavendergrass,
-/obj/structure/flora/ausbushes/ppflowers,
-/obj/structure/flora/ausbushes/brflowers,
-/obj/structure/flora/ausbushes/palebush,
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 4;
- layer = 2.9
- },
-/turf/open/floor/grass,
-/area/hallway/secondary/exit/departure_lounge)
-"chW" = (
-/obj/structure/table,
-/obj/item/weapon/storage/pill_bottle/dice,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit/departure_lounge)
-"chX" = (
-/obj/structure/table,
-/obj/item/weapon/storage/firstaid/regular,
-/turf/open/floor/plasteel/escape,
-/area/hallway/secondary/exit/departure_lounge)
-"chY" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1;
- pixel_y = 3
- },
-/turf/open/floor/plasteel/escape{
- dir = 10
- },
-/area/hallway/secondary/exit/departure_lounge)
-"chZ" = (
-/obj/machinery/camera{
- c_tag = "Departures - Port";
- dir = 1
- },
-/turf/open/floor/plasteel/escape,
-/area/hallway/secondary/exit/departure_lounge)
-"cia" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-10";
- layer = 4.1
- },
-/turf/open/floor/plasteel/escape{
- dir = 6
- },
-/area/hallway/secondary/exit/departure_lounge)
-"cib" = (
-/obj/machinery/door/airlock/external,
-/turf/open/floor/pod/light,
-/area/shuttle/transport)
-"cic" = (
-/turf/open/floor/pod/light,
-/area/shuttle/transport)
-"cid" = (
-/obj/machinery/door/airlock/titanium,
-/turf/open/floor/pod/light,
-/area/shuttle/transport)
-"cie" = (
-/obj/machinery/computer/shuttle/ferry/request,
-/turf/open/floor/pod/dark,
-/area/shuttle/transport)
-"cif" = (
-/obj/structure/shuttle/engine/heater{
- dir = 8
- },
-/obj/structure/window/reinforced{
- dir = 1;
- pixel_y = 1
- },
-/turf/open/floor/plating/airless,
-/area/shuttle/transport)
-"cig" = (
-/obj/machinery/door/airlock/external,
-/turf/open/floor/pod/light,
-/area/shuttle/transport)
-"cih" = (
-/obj/machinery/door/airlock/external,
-/turf/open/floor/pod/dark,
-/area/shuttle/transport)
-"cii" = (
-/obj/structure/sign/poster/official/random,
-/turf/open/floor/plating,
-/area/quartermaster/storage)
-"cij" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/effect/landmark/observer_start,
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"cik" = (
-/obj/machinery/door/airlock/external{
- cyclelinkeddir = 1;
- name = "Port Docking Bay 1"
- },
-/turf/open/floor/plating,
-/area/hallway/secondary/entry)
-"cil" = (
-/obj/machinery/door/airlock/external{
- cyclelinkeddir = 1;
- name = "Port Docking Bay 1"
- },
-/turf/open/floor/plating,
-/area/hallway/secondary/entry)
-"cim" = (
-/obj/structure/shuttle/engine/propulsion{
- dir = 4
- },
-/obj/docking_port/mobile/arrivals{
- height = 13;
- name = "pubby arrivals shuttle";
- width = 6
- },
-/obj/docking_port/stationary{
- dir = 8;
- dwidth = 3;
- height = 13;
- id = "arrivals_stationary";
- name = "pubby arrivals";
- width = 6
- },
-/turf/open/floor/plating/airless,
-/area/shuttle/arrival)
-"cin" = (
-/obj/machinery/door/airlock/external{
- cyclelinkeddir = 1;
- name = "Port Docking Bay 1"
- },
-/turf/open/floor/plating,
-/area/hallway/secondary/entry)
-"cio" = (
-/obj/machinery/door/airlock/external{
- cyclelinkeddir = 1;
- name = "Port Docking Bay 1"
- },
-/turf/open/floor/plating,
-/area/hallway/secondary/entry)
-"cip" = (
-/obj/machinery/computer/secure_data/syndie,
-/turf/open/floor/plasteel/vault{
- dir = 8
- },
-/area/shuttle/syndicate)
-"ciq" = (
-/obj/structure/chair/office/dark{
- dir = 8;
- name = "tactical swivel chair"
- },
-/turf/open/floor/plasteel/black,
-/area/shuttle/syndicate)
-"cir" = (
-/turf/open/floor/plasteel/black,
-/area/shuttle/syndicate)
-"cis" = (
-/turf/open/floor/plasteel/black,
-/area/shuttle/syndicate)
-"cit" = (
-/obj/structure/chair/office/dark{
- dir = 4;
- name = "tactical swivel chair"
- },
-/turf/open/floor/plasteel/black,
-/area/shuttle/syndicate)
-"ciu" = (
-/obj/structure/table/reinforced,
-/obj/machinery/ai_status_display{
- pixel_x = 32
- },
-/obj/item/weapon/storage/fancy/donut_box,
-/obj/machinery/light{
- dir = 4
- },
-/turf/open/floor/plasteel/vault{
- dir = 8
- },
-/area/shuttle/syndicate)
-"civ" = (
-/obj/machinery/status_display,
-/turf/closed/wall/mineral/plastitanium,
-/area/shuttle/syndicate)
-"ciw" = (
-/turf/open/floor/plasteel/vault{
- dir = 5
- },
-/area/shuttle/syndicate)
-"cix" = (
-/obj/structure/chair{
- dir = 4;
- name = "tactical chair"
- },
-/turf/open/floor/plasteel/vault{
- dir = 5
- },
-/area/shuttle/syndicate)
-"ciy" = (
-/turf/open/floor/plasteel/black,
-/area/shuttle/syndicate)
-"ciz" = (
-/obj/structure/chair{
- dir = 4;
- name = "tactical chair"
- },
-/obj/machinery/light{
- dir = 8
- },
-/turf/open/floor/plasteel/vault{
- dir = 5
- },
-/area/shuttle/syndicate)
-"ciA" = (
-/turf/open/floor/plasteel/black,
-/area/shuttle/syndicate)
-"ciB" = (
-/obj/structure/chair{
- dir = 8;
- name = "tactical chair"
- },
-/obj/machinery/light{
- dir = 4
- },
-/turf/open/floor/plasteel/vault{
- dir = 5
- },
-/area/shuttle/syndicate)
-"ciC" = (
-/turf/open/floor/plasteel/vault{
- dir = 5
- },
-/area/shuttle/syndicate)
-"ciD" = (
-/turf/open/floor/plasteel/vault{
- dir = 5
- },
-/area/shuttle/syndicate)
-"ciE" = (
-/obj/structure/chair{
- dir = 4;
- name = "tactical chair"
- },
-/turf/open/floor/plasteel/vault{
- dir = 5
- },
-/area/shuttle/syndicate)
-"ciF" = (
-/turf/open/floor/plasteel/black,
-/area/shuttle/syndicate)
-"ciG" = (
-/obj/machinery/suit_storage_unit/syndicate,
-/turf/open/floor/plasteel/podhatch{
- dir = 4
- },
-/area/shuttle/syndicate)
-"ciH" = (
-/turf/open/floor/plasteel/vault{
- dir = 5
- },
-/area/shuttle/syndicate)
-"ciI" = (
-/obj/structure/chair{
- dir = 4;
- name = "tactical chair"
- },
-/turf/open/floor/plasteel/vault{
- dir = 5
- },
-/area/shuttle/syndicate)
-"ciJ" = (
-/obj/machinery/suit_storage_unit/syndicate,
-/turf/open/floor/plasteel/podhatch{
- dir = 4
- },
-/area/shuttle/syndicate)
-"ciK" = (
-/obj/item/weapon/storage/toolbox/syndicate,
-/obj/item/weapon/crowbar/red,
-/obj/structure/table/reinforced,
-/obj/machinery/light{
- dir = 8
- },
-/turf/open/floor/plasteel/podhatch{
- dir = 10
- },
-/area/shuttle/syndicate)
-"ciL" = (
-/turf/open/floor/plasteel/podhatch,
-/area/shuttle/syndicate)
-"ciM" = (
-/obj/structure/chair{
- name = "tactical chair"
- },
-/turf/open/floor/plasteel/podhatch{
- dir = 6
- },
-/area/shuttle/syndicate)
-"ciN" = (
-/obj/machinery/suit_storage_unit/syndicate,
-/turf/open/floor/plasteel/podhatch{
- dir = 4
- },
-/area/shuttle/syndicate)
-"ciO" = (
-/turf/open/floor/plasteel/vault{
- dir = 8
- },
-/area/shuttle/syndicate)
-"ciP" = (
-/obj/machinery/suit_storage_unit/syndicate,
-/turf/open/floor/plasteel/podhatch{
- dir = 6
- },
-/area/shuttle/syndicate)
-"ciQ" = (
-/obj/structure/reagent_dispensers/fueltank,
-/turf/open/floor/plasteel/vault{
- dir = 8
- },
-/area/shuttle/syndicate)
-"ciR" = (
-/turf/open/floor/plasteel/black,
-/area/shuttle/syndicate)
-"ciS" = (
-/obj/structure/chair{
- dir = 1;
- name = "tactical chair"
- },
-/turf/open/floor/plasteel/vault{
- dir = 8
- },
-/area/shuttle/syndicate)
-"ciT" = (
-/obj/structure/chair{
- dir = 1;
- name = "tactical chair"
- },
-/turf/open/floor/plasteel/vault{
- dir = 8
- },
-/area/shuttle/syndicate)
-"ciU" = (
-/obj/structure/rack,
-/obj/item/clothing/suit/space/syndicate/black/red,
-/obj/item/clothing/head/helmet/space/syndicate/black/red,
-/turf/open/floor/plasteel/vault{
- dir = 8
- },
-/area/shuttle/syndicate)
-"ciV" = (
-/obj/machinery/ai_status_display,
-/turf/closed/wall/mineral/plastitanium,
-/area/shuttle/syndicate)
-"ciW" = (
-/turf/open/floor/plasteel/black,
-/area/shuttle/syndicate)
-"ciX" = (
-/obj/machinery/status_display,
-/turf/closed/wall/mineral/plastitanium,
-/area/shuttle/syndicate)
-"ciY" = (
-/turf/open/floor/plasteel/black,
-/area/shuttle/syndicate)
-"ciZ" = (
-/obj/machinery/light{
- dir = 8
- },
-/turf/open/floor/plasteel/vault{
- dir = 5
- },
-/area/shuttle/syndicate)
-"cja" = (
-/turf/open/floor/plasteel/black,
-/area/shuttle/syndicate)
-"cjb" = (
-/obj/machinery/light{
- dir = 4
- },
-/turf/open/floor/plasteel/vault{
- dir = 5
- },
-/area/shuttle/syndicate)
-"cjc" = (
-/turf/open/floor/plasteel/podhatch{
- dir = 9
- },
-/area/shuttle/syndicate)
-"cjd" = (
-/turf/open/floor/plasteel/podhatch{
- dir = 1
- },
-/area/shuttle/syndicate)
-"cje" = (
-/turf/open/floor/plasteel/podhatch{
- dir = 1
- },
-/area/shuttle/syndicate)
-"cjf" = (
-/turf/open/floor/plasteel/podhatch{
- dir = 1
- },
-/area/shuttle/syndicate)
-"cjg" = (
-/turf/open/floor/plasteel/podhatch{
- dir = 1
- },
-/area/shuttle/syndicate)
-"cjh" = (
-/turf/open/floor/plasteel/podhatch{
- dir = 1
- },
-/area/shuttle/syndicate)
-"cji" = (
-/turf/open/floor/plasteel/podhatch{
- dir = 1
- },
-/area/shuttle/syndicate)
-"cjj" = (
-/turf/open/floor/plasteel/podhatch{
- dir = 1
- },
-/area/shuttle/syndicate)
-"cjk" = (
-/turf/open/floor/plasteel/podhatch{
- dir = 5
- },
-/area/shuttle/syndicate)
-"cjl" = (
-/obj/structure/closet/syndicate/personal,
-/turf/open/floor/plasteel/vault{
- dir = 8
- },
-/area/shuttle/syndicate)
-"cjm" = (
-/obj/structure/table/reinforced,
-/obj/item/weapon/reagent_containers/glass/beaker/large,
-/obj/item/weapon/reagent_containers/glass/beaker,
-/obj/item/weapon/reagent_containers/dropper,
-/turf/open/floor/plasteel/vault{
- dir = 8
- },
-/area/shuttle/syndicate)
-"cjn" = (
-/turf/open/floor/plasteel/podhatch{
- dir = 10
- },
-/area/shuttle/syndicate)
-"cjo" = (
-/turf/open/floor/plasteel/podhatch,
-/area/shuttle/syndicate)
-"cjp" = (
-/turf/open/floor/plasteel/podhatch,
-/area/shuttle/syndicate)
-"cjq" = (
-/turf/open/floor/plasteel/podhatch,
-/area/shuttle/syndicate)
-"cjr" = (
-/turf/open/floor/plasteel/podhatch,
-/area/shuttle/syndicate)
-"cjs" = (
-/turf/open/floor/plasteel/podhatch,
-/area/shuttle/syndicate)
-"cjt" = (
-/turf/open/floor/plasteel/podhatch,
-/area/shuttle/syndicate)
-"cju" = (
-/turf/open/floor/plasteel/podhatch,
-/area/shuttle/syndicate)
-"cjv" = (
-/turf/open/floor/plasteel/podhatch{
- dir = 6
- },
-/area/shuttle/syndicate)
-"cjw" = (
-/obj/machinery/door/window{
- dir = 1;
- name = "Technological Storage";
- req_access_txt = "150"
- },
-/turf/open/floor/plasteel/vault,
-/area/shuttle/syndicate)
-"cjx" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/table/reinforced,
-/obj/item/device/aicard,
-/turf/open/floor/plasteel/vault,
-/area/shuttle/syndicate)
-"cjy" = (
-/obj/machinery/light{
- dir = 4
- },
-/turf/open/floor/plasteel/vault{
- dir = 5
- },
-/area/shuttle/syndicate)
-"cjz" = (
-/obj/machinery/light{
- dir = 1
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/labor)
-"cjA" = (
-/obj/machinery/light{
- dir = 8
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/escape)
-"cjB" = (
-/obj/machinery/light{
- dir = 4
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/escape)
-"cjC" = (
-/obj/machinery/light{
- dir = 1
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/escape)
-"cjD" = (
-/obj/machinery/light{
- dir = 1
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/escape)
-"cjE" = (
-/obj/machinery/light,
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/escape)
-"cjF" = (
-/obj/machinery/light,
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/escape)
-"cjG" = (
-/obj/machinery/light{
- dir = 8
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/escape)
-"cjH" = (
-/obj/machinery/light{
- dir = 4
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/supply)
-"cjI" = (
-/obj/machinery/light,
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/supply)
-"cjJ" = (
-/obj/structure/table,
-/obj/machinery/light/small{
- dir = 4
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/labor)
-"cjK" = (
-/obj/machinery/light{
- dir = 1
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/arrival)
-"cjL" = (
-/obj/structure/closet/crate,
-/obj/machinery/light/small{
- dir = 8
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/labor)
-"cjM" = (
-/obj/machinery/light/small,
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/arrival)
-"cjN" = (
-/obj/machinery/light{
- dir = 1
- },
-/turf/open/floor/pod/light,
-/area/shuttle/transport)
-"cjO" = (
-/obj/machinery/light/small,
-/turf/open/floor/pod/light,
-/area/shuttle/transport)
-"cjP" = (
-/obj/machinery/light,
-/turf/open/floor/pod/light,
-/area/shuttle/transport)
-"cjQ" = (
-/obj/effect/turf_decal/stripes/line,
-/obj/machinery/power/apc{
- cell_type = 15000;
- dir = 2;
- name = "Engineering APC";
- pixel_y = -24
- },
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"cjR" = (
-/turf/closed/wall/mineral/titanium/nodiagonal,
-/area/shuttle/escape)
-"cjS" = (
-/turf/closed/wall/mineral/titanium/nodiagonal,
-/area/shuttle/escape)
-"cjT" = (
-/turf/closed/wall/mineral/titanium/nodiagonal,
-/area/shuttle/escape)
-"cjU" = (
-/turf/closed/wall/mineral/titanium/nodiagonal,
-/area/shuttle/escape)
-"cjV" = (
-/turf/closed/wall/mineral/titanium/nodiagonal,
-/area/shuttle/escape)
-"cjW" = (
-/turf/closed/wall/mineral/titanium/nodiagonal,
-/area/shuttle/escape)
+/area/science/research/lobby)
(1,1,1) = {"
aaa
@@ -57940,16 +59882,16 @@ aaa
aaa
aaa
aaa
-cfI
-cfJ
-cfJ
-cfJ
-cfJ
-cfJ
-cfJ
-cfJ
-cfJ
-cfX
+aab
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aat
aaa
aaa
aaa
@@ -57997,11 +59939,11 @@ aaa
aaa
aaa
aaa
-chi
-chi
-chi
-chi
-chi
+aoH
+aoH
+aoH
+aoH
+aoH
aaa
aaa
aaa
@@ -58191,22 +60133,22 @@ aaa
aaa
aaa
aaa
-cfI
-cfJ
-cfJ
-cfJ
-cfJ
-cfJ
-cfJ
-cgs
-cgC
-cgs
-cjm
-cgL
-cgS
-cgW
-cgZ
-chd
+aab
+aac
+aac
+aac
+aac
+aac
+aac
+abd
+abm
+abd
+abu
+abz
+abK
+abP
+abS
+abZ
aaa
aaa
aaa
@@ -58254,11 +60196,11 @@ aaa
aaa
aaa
aaa
-chi
+aoH
aaa
-chj
+aoI
aaa
-chi
+aoH
aaa
aaa
aaa
@@ -58448,22 +60390,22 @@ aaa
aaa
aaa
aaa
-cfJ
-cge
-ciG
-ciG
-ciG
-ciP
-cfJ
-ciO
-cfU
-ciw
-ciw
-cgM
-ciw
-cgX
-cgZ
-che
+aac
+aaH
+aaJ
+aaJ
+aaJ
+aaX
+aac
+aaU
+aas
+aaz
+aaz
+abA
+aaz
+abQ
+abS
+aca
aaa
aaa
aaa
@@ -58511,11 +60453,11 @@ aaa
aaa
aaa
aaa
-chj
-chj
-awf
-chj
-chj
+aoI
+aoI
+azG
+aoI
+aoI
aaa
aaa
aaa
@@ -58705,22 +60647,22 @@ aaa
aaa
aaa
aaa
-cfJ
-ciw
-ciw
-ciw
-ciw
-ciw
-ciV
-cgu
-cfU
-cjc
-cjn
-cgN
-cgT
-cgY
-cgZ
-chf
+aac
+aaz
+aaz
+aaz
+aaz
+aaz
+abc
+abe
+aas
+abp
+abv
+abB
+abL
+abR
+abS
+acb
aaa
aaa
aaa
@@ -58759,29 +60701,29 @@ aaa
aaa
aaa
aaa
-chi
-chi
-chi
-chi
-chi
-chi
-chi
-chi
-chi
-chi
+aoH
+aoH
+aoH
+aoH
+aoH
+aoH
+aoH
+aoH
+aoH
+aoH
aaa
-awg
+azH
aaa
-chi
-chi
-chi
-chi
-chi
-chi
-chi
-chi
-chi
-chi
+aoH
+aoH
+aoH
+aoH
+aoH
+aoH
+aoH
+aoH
+aoH
+aoH
aaa
aaa
aaa
@@ -58955,29 +60897,29 @@ aaa
aaa
aaa
aaa
-cfI
-cfJ
-cfJ
-cfJ
-cfX
+aab
+aac
+aac
+aac
+aat
aaa
aaa
-cfJ
-ciw
-ciw
-ciw
-ciw
-ciw
-cfJ
-cgv
-cfU
-cjd
-ciL
-cgO
-cfJ
-cfJ
-cfJ
-chg
+aac
+aaz
+aaz
+aaz
+aaz
+aaz
+aac
+abf
+aas
+abq
+aaR
+abC
+aac
+aac
+aac
+aaB
aaa
aaa
aaa
@@ -59016,7 +60958,7 @@ aaa
aaa
aaa
aaa
-chj
+aoI
aaa
aaa
aaa
@@ -59027,7 +60969,7 @@ aaa
aaa
aaa
aaa
-awg
+azH
aaa
aaa
aaa
@@ -59038,7 +60980,7 @@ aaa
aaa
aaa
aaa
-chj
+aoI
aaa
aaa
aaa
@@ -59212,26 +61154,26 @@ aaa
aaa
aaa
aaa
-cfJ
-cfM
-cfS
-cfU
-cfJ
-chh
+aac
+aaf
+aam
+aas
+aac
+aax
aaa
-cfJ
-cgf
-cgh
-cgk
-ciO
-ciQ
-cfJ
-cgw
-cfU
-cjd
-ciL
-cgP
-cfJ
+aac
+aaI
+aaK
+aaN
+aaU
+aaY
+aac
+abg
+aas
+abq
+aaR
+abD
+aac
aaa
aaa
aaa
@@ -59273,29 +61215,29 @@ aaa
aaa
aaa
aaa
-chi
+aoH
aaa
-ans
-ans
-ans
-ans
-ans
-ans
-ans
-ans
+aqa
+aqa
+aqa
+aqa
+aqa
+aqa
+aqa
+aqa
aaa
-awh
+azI
aaa
-ans
-ans
-ans
-ans
-ans
-ans
-ans
-ans
+aqa
+aqa
+aqa
+aqa
+aqa
+aqa
+aqa
+aqa
aaa
-chi
+aoH
aaa
aaa
aaa
@@ -59469,28 +61411,28 @@ aaa
aaa
aaa
aaa
-cfK
-cfN
-ciq
-cfU
-cfJ
-cfJ
-cfJ
-cfJ
-cfJ
-cfJ
-cfJ
-cgn
-cgl
-cfJ
-cfJ
-cfJ
-cgF
-cgl
-cfJ
-cfJ
-cfJ
-cfX
+aad
+aag
+aan
+aas
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aaV
+aaO
+aac
+aac
+aac
+abr
+aaO
+aac
+aac
+aac
+aat
aaa
aaa
aaa
@@ -59530,29 +61472,29 @@ aaa
aaa
aaa
aaa
-chi
-chj
-anv
-aoj
-aoj
-aoj
-aoj
-aoj
-aoj
-aoj
-auT
-chl
-axv
-ayv
-ayv
-ayv
-ayv
-ayv
-ayv
-ayv
-aEn
-chj
-chi
+aoH
+aoI
+aqb
+ara
+ara
+ara
+ara
+ara
+ara
+ara
+ayy
+azJ
+aAV
+aCa
+aCa
+aCa
+aCa
+aCa
+aCa
+aCa
+aIr
+aoI
+aoH
aaa
aaa
aaa
@@ -59726,28 +61668,28 @@ aaa
aaa
aaa
aaa
-cfK
-cfO
-cir
-cfU
-civ
-cga
-cix
-ciz
-cix
-cix
-cgl
-ciw
-ciw
-ciw
-ciw
-ciZ
-cjd
-ciL
-cfU
-cgl
-cgZ
-chd
+aad
+aah
+aao
+aas
+aau
+aay
+aaC
+aaE
+aaC
+aaC
+aaO
+aaz
+aaz
+aaz
+aaz
+abn
+abq
+aaR
+aas
+aaO
+abS
+abZ
aaa
aaa
aaa
@@ -59787,29 +61729,29 @@ aaa
aaa
aaa
aaa
-chi
+aoH
aaa
-anu
-anu
-anu
-anu
-anu
-anu
-anu
-anu
+aqc
+aqc
+aqc
+aqc
+aqc
+aqc
+aqc
+aqc
aaa
-awj
+azK
aaa
-anw
-anw
-anw
-anw
-anw
-anw
-anw
-anu
+aqd
+aqd
+aqd
+aqd
+aqd
+aqd
+aqd
+aqc
aaa
-chi
+aoH
aaa
aaa
aaa
@@ -59983,28 +61925,28 @@ aaa
aaa
aaa
aaa
-cfK
-cfP
-cfT
-cfU
-cfY
-ciw
-cir
-cir
-cir
-ciw
-cgm
-ciw
-cir
-cir
-cir
-cir
-cjd
-ciL
-cfU
-cgU
-cgZ
-che
+aad
+aai
+aap
+aas
+aav
+aaz
+aao
+aao
+aao
+aaz
+aaP
+aaz
+aao
+aao
+aao
+aao
+abq
+aaR
+aas
+abM
+abS
+aca
aaa
aaa
aaa
@@ -60044,7 +61986,7 @@ aaa
aaa
aaa
aaa
-chk
+aoJ
aaa
aaa
aaa
@@ -60055,7 +61997,7 @@ aaa
aaa
aaa
aaa
-awj
+azK
aaa
aaa
aaa
@@ -60066,7 +62008,7 @@ aaa
aaa
aaa
aaa
-chi
+aoH
aaa
aaa
aaa
@@ -60240,28 +62182,28 @@ aaa
aaa
aaa
aaa
-cfK
-cfQ
-cir
-cfU
-cfJ
-cgb
-cgc
-ciB
-cgc
-cgc
-cgl
-ciw
-ciw
-ciw
-ciw
-cjb
-cjd
-ciL
-cfU
-cgl
-cgZ
-chf
+aad
+aaj
+aao
+aas
+aac
+aaA
+aaD
+aaF
+aaD
+aaD
+aaO
+aaz
+aaz
+aaz
+aaz
+abo
+abq
+aaR
+aas
+aaO
+abS
+acb
aaa
aaa
aaa
@@ -60301,29 +62243,29 @@ aaa
aaa
aaa
aaa
-chi
+aoH
aaa
-ans
-ans
-ans
-ans
-ans
-ans
-ans
-ans
+aqa
+aqa
+aqa
+aqa
+aqa
+aqa
+aqa
+aqa
aaa
-awj
+azK
aaa
-ans
-ans
-ans
-ans
-ans
-ans
-ans
-ans
+aqa
+aqa
+aqa
+aqa
+aqa
+aqa
+aqa
+aqa
aaa
-chi
+aoH
aaa
aaa
aaa
@@ -60497,28 +62439,28 @@ aaa
aaa
aaa
aaa
-cfK
-cfR
-cit
-cfU
-cfJ
-cfJ
-cfJ
-cgd
-cfJ
-cfJ
-cfJ
-cgo
-cgl
-cfJ
-cfJ
-cfJ
-cgF
-cgl
-cfJ
-cfJ
-cfJ
-cfZ
+aad
+aak
+aaq
+aas
+aac
+aac
+aac
+aaG
+aac
+aac
+aac
+aaW
+aaO
+aac
+aac
+aac
+abr
+aaO
+aac
+aac
+aac
+aaw
aaa
aaa
aaa
@@ -60558,29 +62500,29 @@ aaa
aaa
aaa
aaa
-chi
-chj
-anv
-aoj
-aoj
-aoj
-aoj
-aoj
-aoj
-aoj
-auT
-awj
-axv
-ayv
-ayv
-ayv
-ayv
-ayv
-ayv
-ayv
-aEn
-chj
-chi
+aoH
+aoI
+aqb
+ara
+ara
+ara
+ara
+ara
+ara
+ara
+ayy
+azK
+aAV
+aCa
+aCa
+aCa
+aCa
+aCa
+aCa
+aCa
+aIr
+aoI
+aoH
aaa
aaa
aaa
@@ -60754,26 +62696,26 @@ aaa
aaa
aaa
aaa
-cfJ
-cip
-ciu
-cfU
-cfJ
-chg
+aac
+aal
+aar
+aas
+aac
+aaB
aaa
aaa
aaa
-cfJ
-ciK
-ciw
-ciS
-cfJ
-cgx
-cfU
-cjd
-ciL
-cgQ
-cfJ
+aac
+aaQ
+aaz
+aaZ
+aac
+abh
+aas
+abq
+aaR
+abE
+aac
aaa
aaa
aaa
@@ -60815,29 +62757,29 @@ aaa
aaa
aaa
aaa
-chi
+aoH
aaa
-anu
-anu
-anu
-anu
-anu
-anu
-anu
-anu
+aqc
+aqc
+aqc
+aqc
+aqc
+aqc
+aqc
+aqc
aaa
-awj
+azK
aaa
-anw
-anw
-anw
-anw
-anw
-anw
-anw
-anu
+aqd
+aqd
+aqd
+aqd
+aqd
+aqd
+aqd
+aqc
aaa
-chi
+aoH
aaa
aaa
aaa
@@ -61011,29 +62953,29 @@ aaa
aaa
aaa
aaa
-cfL
-cfJ
-cfJ
-cfJ
-cfZ
+aae
+aac
+aac
+aac
+aaw
aaa
aaa
aaa
aaa
-cgi
-ciL
-ciw
-ciS
-cfJ
-cgy
-cfU
-cjd
-ciL
-cgR
-cfJ
-cfJ
-cfJ
-chh
+aaL
+aaR
+aaz
+aaZ
+aac
+abi
+aas
+abq
+aaR
+abF
+aac
+aac
+aac
+aax
aaa
aaa
aaa
@@ -61072,7 +63014,7 @@ aaa
aaa
aaa
aaa
-chi
+aoH
aaa
aaa
aaa
@@ -61083,7 +63025,7 @@ aaa
aaa
aaa
aaa
-awj
+azK
aaa
aaa
aaa
@@ -61094,7 +63036,7 @@ aaa
aaa
aaa
aaa
-chi
+aoH
aaa
aaa
aaa
@@ -61175,11 +63117,11 @@ aaa
aaa
aaa
aaa
-ceU
-aaE
-ceW
-aaE
-ceU
+cil
+cja
+cin
+cja
+cil
aaa
aaa
aaa
@@ -61277,167 +63219,167 @@ aaa
aaa
aaa
aaa
-cgj
-ciM
+aaM
+aaS
+aaz
+aba
+aau
+abj
+aas
+abs
+abw
+abB
+aaz
+abT
+abS
+abZ
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aoH
+aaa
+aqa
+aqa
+aqa
+aqa
+aqa
+aqa
+aqa
+aqa
+aaa
+azK
+aaa
+aqa
+aqa
+aqa
+aqa
+aqa
+aqa
+aqa
+aqa
+aaa
+aoH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+cil
+cil
ciw
-ciU
-civ
-cgz
-cfU
-cjk
-cjv
-cgN
+cix
ciw
-cha
-cgZ
-chd
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-chi
-aaa
-ans
-ans
-ans
-ans
-ans
-ans
-ans
-ans
-aaa
-awj
-aaa
-ans
-ans
-ans
-ans
-ans
-ans
-ans
-ans
-aaa
-chi
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-ceU
-ceU
-cfa
-cfb
-cfa
-ceU
-ceU
+cil
+cil
aaa
aaa
aaa
@@ -61534,168 +63476,168 @@ aaa
aaa
aaa
aaa
-cfL
-cfJ
-cfJ
-cfJ
-cfJ
-cgA
-cfU
+aae
+aac
+aac
+aac
+aac
+abk
+aas
+aaz
+aaz
+abG
+aaz
+abU
+abS
+aca
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aoH
+aoI
+aqb
+ara
+ara
+ara
+ara
+ara
+ara
+ara
+ayy
+azK
+aAV
+aCa
+aCa
+aCa
+aCa
+aCa
+aCa
+aCa
+aIr
+aoI
+aoH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+cil
+cil
ciw
ciw
-cjw
+cix
ciw
-chb
-cgZ
-che
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-chi
-chj
-anv
-aoj
-aoj
-aoj
-aoj
-aoj
-aoj
-aoj
-auT
-awj
-axv
-ayv
-ayv
-ayv
-ayv
-ayv
-ayv
-ayv
-aEn
-chj
-chi
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-ceU
-ceU
-cfa
-cfa
-cfb
-cfa
-cfa
-ceU
-ceU
+ciw
+cil
+cil
aaa
aaa
aaa
@@ -61794,165 +63736,165 @@ aaa
aaa
aaa
aaa
-cgq
-cfJ
-cgB
-cfU
-cjl
-cgJ
-cjx
+abb
+aac
+abl
+aas
+abt
+abx
+abH
+abo
+abT
+abS
+acb
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aoH
+aaa
+aqd
+aqd
+aqd
+aqd
+aqd
+aqd
+aqd
+aqc
+aaa
+azK
+aaa
+aqd
+aqd
+aqd
+aqd
+aqd
+aqd
+aqd
+aqc
+aaa
+aoH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+cim
+ciw
+ciw
cjb
-cha
-cgZ
-chf
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-chi
-aaa
-anw
-anw
-anw
-anw
-anw
-anw
-anw
-anu
-aaa
-awj
-aaa
-anw
-anw
-anw
-anw
-anw
-anw
-anw
-anu
-aaa
-chi
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-ceV
-cfa
-cfa
-aic
-aFH
-aXo
-cfa
-cfa
-bCg
+cjy
+cjW
+ciw
+ciw
+ckY
aaa
aaa
aaa
@@ -62052,16 +63994,16 @@ aaa
aaa
aaa
aaa
-cfL
-cfJ
-cfJ
-cfJ
-cfJ
-cfJ
-cfJ
-cfJ
-cfJ
-cfZ
+aae
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aaw
aaa
aaa
aaa
@@ -62100,7 +64042,7 @@ aaa
aaa
aaa
aaa
-chi
+aoH
aaa
aaa
aaa
@@ -62111,7 +64053,7 @@ aaa
aaa
aaa
aaa
-awj
+azK
aaa
aaa
aaa
@@ -62122,7 +64064,7 @@ aaa
aaa
aaa
aaa
-chk
+aoJ
aaa
aaa
aaa
@@ -62201,15 +64143,15 @@ aaa
aaa
aaa
aaa
-ceW
-cfb
-cfb
-aiS
-aFM
-aXt
-cfb
-cfb
-ceW
+cin
+cix
+cix
+cjc
+cjz
+cjX
+cix
+cix
+cin
aaa
aaa
aaa
@@ -62357,29 +64299,29 @@ aaa
aaa
aaa
aaa
-chi
+aoH
aaa
-ans
-ans
-ans
-ans
-ans
-ans
-ans
-ans
+aqa
+aqa
+aqa
+aqa
+aqa
+aqa
+aqa
+aqa
aaa
-awj
+azK
aaa
-ans
-ans
-ans
-ans
-ans
-ans
-ans
-ans
+aqa
+aqa
+aqa
+aqa
+aqa
+aqa
+aqa
+aqa
aaa
-chi
+aoH
aaa
aaa
aaa
@@ -62415,7 +64357,7 @@ aaa
aaa
aaa
aaa
-aab
+abN
aaa
aaa
aaa
@@ -62458,15 +64400,15 @@ aaa
aaa
aaa
aaa
-ceV
-cfa
-cfa
-aiV
-aGe
-aXu
-cfa
-cfa
-bCg
+cim
+ciw
+ciw
+cjd
+cjA
+cjY
+ciw
+ciw
+ckY
aaa
aaa
aaa
@@ -62614,29 +64556,29 @@ aaa
aaa
aaa
aaa
-chi
-chj
-anv
-aoj
-aoj
-aoj
-aoj
-aoj
-aoj
-aoj
-auT
-awj
-axv
-ayv
-ayv
-ayv
-ayv
-ayv
-ayv
-ayv
-aEn
-chj
-chi
+aoH
+aoI
+aqb
+ara
+ara
+ara
+ara
+ara
+ara
+ara
+ayy
+azK
+aAV
+aCa
+aCa
+aCa
+aCa
+aCa
+aCa
+aCa
+aIr
+aoI
+aoH
aaa
aaa
aaa
@@ -62715,15 +64657,15 @@ aaa
aaa
aaa
aaa
-ceU
-ceU
-cfa
-cfa
-cfb
-cfa
-cfa
-ceU
-ceU
+cil
+cil
+ciw
+ciw
+cix
+ciw
+ciw
+cil
+cil
aaa
aaa
aaa
@@ -62871,29 +64813,29 @@ aaa
aaa
aaa
aaa
-chi
+aoH
aaa
-anw
-anw
-anw
-anw
-anw
-anw
-anw
-anu
+aqd
+aqd
+aqd
+aqd
+aqd
+aqd
+aqd
+aqc
aaa
-awj
+azK
aaa
-anw
-anw
-anw
-anw
-anw
-anw
-anw
-anu
+aqd
+aqd
+aqd
+aqd
+aqd
+aqd
+aqd
+aqc
aaa
-chi
+aoH
aaa
aaa
aaa
@@ -62973,13 +64915,13 @@ aaa
aaa
aaa
aaa
-ceU
-ceU
-cfa
-cfb
-cfa
-ceU
-ceU
+cil
+cil
+ciw
+cix
+ciw
+cil
+cil
aaa
aaa
aaa
@@ -63128,29 +65070,29 @@ aaa
aaa
aaa
aaa
-chi
+aoH
aaa
aaa
aaa
-chj
+aoI
aaa
aaa
aaa
aaa
aaa
aaa
-awj
+azK
aaa
aaa
aaa
aaa
aaa
aaa
-chj
+aoI
aaa
aaa
aaa
-chj
+aoI
aaa
aaa
aaa
@@ -63231,11 +65173,11 @@ aaa
aaa
aaa
aaa
-ceU
-akO
-aGf
-akO
-ceU
+cil
+cje
+cjB
+cje
+cil
aaa
aaa
aaa
@@ -63385,29 +65327,29 @@ aaa
aaa
aaa
aaa
-chi
-chj
-chi
-chi
-chi
+aoH
+aoI
+aoH
+aoH
+aoH
aaa
aaa
aaa
aaa
aaa
aaa
-chm
+azL
aaa
aaa
aaa
aaa
aaa
aaa
-chi
-chj
-chi
-chi
-chi
+aoH
+aoI
+aoH
+aoH
+aoH
aaa
aaa
aaa
@@ -63475,24 +65417,24 @@ aaa
aaa
aaa
aaa
-aac
-aac
-aac
-acl
-aac
-aac
-aac
-aac
-aac
+aby
+aby
+aby
+aed
+aby
+aby
+aby
+aby
+aby
aaa
aaa
aaa
aaa
-cds
-cca
-cdm
-cca
-cds
+cfN
+ccL
+cfH
+ccL
+cfN
aaa
aaa
aaa
@@ -63653,7 +65595,7 @@ aaa
aaa
aaa
aaa
-awg
+azH
aaa
aaa
aaa
@@ -63724,34 +65666,34 @@ aaa
aaa
aaa
aaa
-aac
-aad
-aac
-aac
-aac
-aac
-aac
+aby
+abI
+aby
+aby
+aby
+aby
+aby
aaa
-bYE
-bZq
-bYE
-bYE
-bYE
-bZq
-bYE
-bZq
-bYE
-bYE
-bYE
-cds
-cds
-cds
-cca
-cdn
-cca
-cds
-cds
-cds
+bGD
+bOv
+bGD
+bGD
+bGD
+bOv
+bGD
+bOv
+bGD
+bGD
+bGD
+cfN
+cfN
+cfN
+ccL
+cfI
+ccL
+cfN
+cfN
+cfN
aaa
aaa
aaa
@@ -63910,7 +65852,7 @@ aaa
aaa
aaa
aaa
-awg
+azH
aaa
aaa
aaa
@@ -63981,35 +65923,35 @@ aaa
aaa
aaa
aaa
-aac
+aby
aaa
aaa
-aad
+abI
aaa
-bZq
-bYE
-bYY
-bZj
-bZj
-bZj
-bZj
-bZj
-bZj
-bZj
-bZj
-bZj
-bZj
-bZj
-cds
-cds
-cds
-cca
-aGs
-cca
-cds
-cds
-cds
-cds
+bOv
+bGD
+bQQ
+bNs
+bNs
+bNs
+bNs
+bNs
+bNs
+bNs
+bNs
+bNs
+bNs
+bNs
+cfN
+cfN
+cfN
+ccL
+cjC
+ccL
+cfN
+cfN
+cfN
+cfN
aaa
aaa
aaa
@@ -64167,7 +66109,7 @@ aaa
aaa
aaa
aaa
-awg
+azH
aaa
aaa
aaa
@@ -64238,35 +66180,35 @@ aaa
aaa
aaa
aaa
-aac
+aby
aaa
-bYE
-bZq
-bYY
-bZj
-bZj
-bZj
-bZj
-bZr
-bZr
-bZr
-cah
-bZr
-bZr
-cbw
-bZr
-bZr
-ceG
-ceG
-cax
-cax
-cca
-cdo
-cca
-cax
-cds
-cds
-cds
+bGD
+bOv
+bQQ
+bNs
+bNs
+bNs
+bNs
+bOw
+bOw
+bOw
+bUC
+bOw
+bOw
+cbG
+bOw
+bOw
+cfN
+cfN
+bWV
+bWV
+ccL
+cfJ
+ccL
+bWV
+cfN
+cfN
+cfN
aaa
aaa
aaa
@@ -64424,7 +66366,7 @@ aaa
aaa
aaa
aaa
-awg
+azH
aaa
aaa
aaa
@@ -64493,37 +66435,37 @@ aaa
aaa
aaa
aaa
-aac
-aad
-aac
-cam
-bZj
-bZj
-bZj
-bZj
-bZr
-bZr
-bZr
-bZr
-bZr
-bZr
-bZr
-bZr
-bZr
-bZI
-bZr
-bZr
-cah
-ceG
-cax
-cfl
-ami
-caJ
-aXA
-cax
-cds
-cds
-cds
+aby
+abI
+aby
+bVp
+bNs
+bNs
+bNs
+bNs
+bOw
+bOw
+bOw
+bOw
+bOw
+bOw
+bOw
+bOw
+bOw
+bQe
+bOw
+bOw
+bUC
+cfN
+bWV
+ciJ
+cjf
+bXJ
+cjZ
+bWV
+cfN
+cfN
+cfN
aaa
aaa
aaa
@@ -64681,7 +66623,7 @@ aaa
aaa
aaa
aaa
-awg
+azH
aaa
aaa
aaa
@@ -64696,7 +66638,7 @@ aaa
aaa
aaa
aaa
-aab
+abN
aaa
aaa
aaa
@@ -64750,36 +66692,36 @@ aaa
aaa
aaa
aaa
-aac
+aby
aaa
-bYE
-bYY
-bZj
-bZr
-bZr
-bZr
-bZr
-bZI
-bZr
-bZr
-bZr
-bZr
-bZr
-bZr
-bZr
-bZr
-bZr
-ces
-ceH
-ceG
-cax
-cfm
-amD
-aGP
-aXD
-cax
-cax
-cax
+bGD
+bQQ
+bNs
+bOw
+bOw
+bOw
+bOw
+bQe
+bOw
+bOw
+bOw
+bOw
+bOw
+bOw
+bOw
+bOw
+bOw
+chB
+chT
+cfN
+bWV
+ciK
+cjg
+cjD
+cka
+bWV
+bWV
+bWV
aaa
aaa
aaa
@@ -64938,7 +66880,7 @@ aaa
aaa
aaa
aaa
-awg
+azH
aaa
aaa
aaa
@@ -65007,36 +66949,36 @@ aaa
aaa
aaa
aaa
-acl
-cam
-bZj
-bZj
-bZj
-bZr
-bZr
-bZr
-bZr
-bZr
-bZr
-bZr
-bZH
-bZr
-bZr
-bZr
-cdt
-cdG
-bZK
-cax
-cax
-cax
-cax
-cax
-aom
-ceB
-cax
-cax
-cax
-bCj
+aed
+bVp
+bNs
+bNs
+bNs
+bOw
+bOw
+bOw
+bOw
+bOw
+bOw
+bOw
+bQd
+bOw
+bOw
+bOw
+cga
+cgy
+bQg
+bWV
+bWV
+bWV
+bWV
+bWV
+cjh
+chJ
+bWV
+bWV
+bWV
+ckZ
aaa
aaa
aaa
@@ -65195,7 +67137,7 @@ aaa
aaa
aaa
aaa
-awg
+azH
aaa
aaa
aaa
@@ -65264,36 +67206,36 @@ aaa
aaa
aaa
aaa
-aac
-aqA
-bZj
-bZr
-bZr
-bZr
-bZT
-cbl
-cbp
-bZj
-cbp
-bZj
-cbn
-cbn
-cbn
-cbn
-cax
-cdH
-cax
-cax
-ceI
-cax
-cfc
-cfn
-apZ
-aGQ
-aXG
-bgh
-cca
-bCJ
+aby
+bGH
+bNs
+bOw
+bOw
+bOw
+bSm
+bZW
+caS
+bNs
+caS
+bNs
+bZY
+bZY
+bZY
+bZY
+bWV
+cgz
+bWV
+bWV
+chU
+bWV
+ciy
+ciL
+cji
+cjE
+ckb
+cku
+ccL
+cla
aaa
aaa
aaa
@@ -65452,7 +67394,7 @@ aaa
aaa
aaa
aaa
-awg
+azH
aaa
aaa
aaa
@@ -65521,36 +67463,36 @@ aaa
aaa
aaa
aaa
-aac
-cam
-bZj
-bZr
-bZr
-bZr
-bZr
-cbm
-cbp
-cbw
-cbI
-cbw
-cbn
-ccF
-ccV
-cbn
-cde
-cdI
-cax
-cax
-cax
-cax
-cfd
-cfo
-arK
-ccT
-caJ
-caJ
-cca
-cca
+aby
+bVp
+bNs
+bOw
+bOw
+bOw
+bOw
+bZX
+caS
+cbG
+cct
+cbG
+bZY
+ceB
+cfh
+bZY
+cfq
+cgA
+bWV
+bWV
+bWV
+bWV
+ciz
+ciM
+cjj
+ceP
+bXJ
+bXJ
+ccL
+ccL
aaa
aaa
aaa
@@ -65709,7 +67651,7 @@ aaa
aaa
aaa
aaa
-awg
+azH
aaa
aaa
aaa
@@ -65717,21 +67659,21 @@ aaa
aaa
aaa
aaa
-aCh
-aCi
-aCi
-aMQ
-aCh
-aCh
-aCi
-aCi
-aCh
-aMQ
-aCh
-aMQ
-aCh
-aCh
-aCh
+aFS
+aFT
+aFT
+aKs
+aFS
+aFS
+aFT
+aFT
+aFS
+aKs
+aFS
+aKs
+aFS
+aFS
+aFS
aaa
aaa
aaa
@@ -65779,35 +67721,35 @@ aaa
aaa
aaa
aaa
-aqA
-bZj
-cah
-bZr
-bZr
-bZr
-bZr
-cbn
-cbn
-cbJ
-cbn
-cbn
-ccG
-ccW
-cbn
-cax
-cdJ
-cax
-cet
-ceJ
-cax
-cfd
-cfp
-cbh
-aKR
-aXJ
-bgH
-bqb
-bCK
+bGH
+bNs
+bUC
+bOw
+bOw
+bOw
+bOw
+bZY
+bZY
+ccu
+bZY
+bZY
+ceC
+cfi
+bZY
+bWV
+cgB
+bWV
+chC
+chV
+bWV
+ciz
+ciN
+bZo
+cjF
+ckc
+ckv
+ckM
+clb
aaa
aaa
aaa
@@ -65966,7 +67908,7 @@ aaa
aaa
aaa
aaa
-awg
+azH
aaa
aaa
aaa
@@ -65974,21 +67916,21 @@ aaa
aaa
aaa
aaa
-aCh
-aEp
-aFl
-aFl
-aCi
-aIy
-aJJ
-aJJ
-aJJ
-aIy
-aJJ
-aIy
-aJJ
-aQF
-aRA
+aFS
+aIs
+aJx
+aJx
+aFT
+aMI
+aNZ
+aNZ
+aNZ
+aMI
+aNZ
+aMI
+aNZ
+aVJ
+aWD
aaa
aaa
aaa
@@ -66031,40 +67973,40 @@ aaa
aaa
aaa
aaa
-aac
-aac
-aac
-aac
-aac
-cam
-bZj
-bZj
-bZr
-bZr
-bZr
-bZr
-cbn
-cbx
-cbK
-ccc
-cbn
-ccH
-cbn
-cbn
-cdu
-cdK
-cdW
-ceu
-ceK
-cax
-cfe
-cfp
-cbh
-aKR
-aXJ
-bgK
-bqc
-bCK
+aby
+aby
+aby
+aby
+aby
+bVp
+bNs
+bNs
+bOw
+bOw
+bOw
+bOw
+bZY
+cbH
+ccv
+cdn
+bZY
+ceD
+bZY
+bZY
+cgb
+cgC
+chb
+chD
+chW
+bWV
+ciA
+ciN
+bZo
+cjF
+ckc
+ckw
+ckN
+clb
aaa
aaa
aaa
@@ -66223,7 +68165,7 @@ aaa
aaa
aaa
aaa
-awg
+azH
aaa
aaa
aaa
@@ -66231,21 +68173,21 @@ aaa
aaa
aaa
aaa
-aCh
-bVv
-aFl
-aFl
-bVD
-aDz
-aDz
-aDz
-aDz
-aDz
-aDz
-aDz
-aDz
-aQF
-aRA
+aFS
+aIt
+aJx
+aJx
+aLp
+aIx
+aIx
+aIx
+aIx
+aIx
+aIx
+aIx
+aIx
+aVJ
+aWD
aaa
aaa
aaa
@@ -66288,40 +68230,40 @@ aaa
aaa
aaa
aaa
-aac
+aby
aaa
aaa
-bZq
-bYE
-bYE
-cas
-bZj
-bZr
-bZr
-bZI
-bZr
-cbn
-cby
-cbL
-ccd
-ccu
-ccI
-ccX
-cdf
-cdv
-cdL
-cdX
-ceu
-ceL
-cax
-cff
-cfq
-arL
-aQE
-caJ
-caJ
-cca
-cca
+bOv
+bGD
+bGD
+bWh
+bNs
+bOw
+bOw
+bQe
+bOw
+bZY
+cbI
+ccw
+cdo
+cee
+ceE
+cfj
+cfA
+cgc
+cgD
+chc
+chD
+chX
+bWV
+ciB
+ciO
+cjk
+cjG
+bXJ
+bXJ
+ccL
+ccL
aaa
aaa
aaa
@@ -66480,7 +68422,7 @@ aaa
aaa
aaa
aaa
-awg
+azH
aaa
aaa
aaa
@@ -66488,21 +68430,21 @@ aaa
aaa
aaa
aaa
-aCh
-aEq
-bVz
-aGg
-aCi
-aDz
-aJK
-aJK
-aJK
-aDz
-aDz
-aJO
-aJO
-aQF
-aRA
+aFS
+aIu
+aJy
+aKt
+aFT
+aIx
+aOa
+aOa
+aOa
+aIx
+aIx
+aOe
+aOe
+aVJ
+aWD
aaa
aaa
aaa
@@ -66545,40 +68487,40 @@ aaa
aaa
aaa
aaa
-aad
-bYE
-bYY
-bZj
-bZj
-bZj
-bZj
-bZj
-bZr
-bZr
-bZr
-bZr
-cbn
-cbz
-cbM
-cce
-ccv
-ccJ
-ccY
-cdg
-cdw
-cdM
-cdY
-cev
-ceM
-cax
-cax
-cdy
-awD
-ceB
-aYi
-bhC
-cca
-bCN
+abI
+bGD
+bQQ
+bNs
+bNs
+bNs
+bNs
+bNs
+bOw
+bOw
+bOw
+bOw
+bZY
+cbJ
+ccx
+cdp
+cef
+ceF
+cfk
+cfB
+cgd
+cgE
+chd
+chE
+chY
+bWV
+bWV
+cgf
+cjl
+chJ
+ckd
+ckx
+ccL
+clc
aaa
aaa
aaa
@@ -66737,7 +68679,7 @@ aaa
aaa
aaa
aaa
-awg
+azH
aaa
aaa
aaa
@@ -66745,22 +68687,22 @@ aaa
aaa
aaa
aaa
-aCh
-aCh
-aCh
-aCh
-cjT
-cjC
-aJL
-aJL
-aJL
-cjE
-cjV
-aCh
-aCh
-aCh
-aCh
-aCh
+aFS
+aFS
+aFS
+aFS
+aHv
+aMJ
+aOb
+aOb
+aOb
+aRA
+aHv
+aFS
+aFS
+aFS
+aFS
+aFS
aaa
aaa
aaa
@@ -66795,47 +68737,47 @@ aaa
aaa
aaa
aaa
-aac
-aad
-aac
-aac
-aac
-aac
+aby
+abI
+aby
+aby
+aby
+aby
aaa
-bZi
-bZj
-bZj
-bZj
-cah
-bZr
-bZr
-bZr
-bZr
-bZr
-bZr
-bZT
-cbn
-cbn
-cbN
-ccf
-ccw
-ccK
-ccY
-cdh
-cdx
-cdN
-cdZ
-cew
-ceN
-cax
-cfg
-cfr
-ccU
-aQJ
-cax
-cax
-cax
-bCj
+bNr
+bNs
+bNs
+bNs
+bUC
+bOw
+bOw
+bOw
+bOw
+bOw
+bOw
+bSm
+bZY
+bZY
+ccy
+cdq
+ceg
+ceG
+cfk
+cfC
+cge
+cgF
+che
+chF
+chZ
+bWV
+ciC
+ciP
+ceQ
+cjH
+bWV
+bWV
+bWV
+ckZ
aaa
aaa
aaa
@@ -66994,30 +68936,30 @@ aaa
aaa
aaa
aaa
-awg
+azH
aaa
aaa
aaa
aaa
aaa
-aCh
-aCh
-cjR
-aEr
-aFm
-aGh
-aHe
-aDz
-aDz
-aDz
-aDz
-aDz
-aCh
-aOK
-cjG
-aOK
-aQF
-aRA
+aFS
+aFS
+aHv
+aIv
+aJz
+aKu
+aLq
+aIx
+aIx
+aIx
+aIx
+aIx
+aFS
+aTF
+aUE
+aTF
+aVJ
+aWD
aaa
aaa
aaa
@@ -67052,48 +68994,48 @@ aaa
aaa
aaa
aaa
-aac
+aby
aaa
aaa
-bZq
-bYE
-bZq
-bYY
-bZj
-bZj
-bZr
-bZr
-bZr
-bZr
-bZr
-bZr
-bZr
-bZr
-bZr
-cbn
-cbn
-cbn
-cbn
-ccg
-cbn
-cbn
-ccY
-cax
-cdy
-cax
-cea
-cax
-cax
-cax
-cfh
-ceB
-aAK
-aRz
-aYI
-bhE
-aAK
-bDC
-bJD
+bOv
+bGD
+bOv
+bQQ
+bNs
+bNs
+bOw
+bOw
+bOw
+bOw
+bOw
+bOw
+bOw
+bOw
+bOw
+bZY
+bZY
+bZY
+bZY
+cdr
+bZY
+bZY
+cfk
+bWV
+cgf
+bWV
+chf
+bWV
+bWV
+bWV
+ciD
+chJ
+cjm
+cjI
+cke
+cky
+cjm
+cld
+bZK
aaa
aaa
aaa
@@ -67198,7 +69140,7 @@ aaa
aaa
aaa
aaa
-aab
+abN
aaa
aaa
aaa
@@ -67238,45 +69180,43 @@ aaa
aaa
aaa
aaa
-aad
-aad
-agv
-agu
-agu
-agu
-aad
-aad
-aad
aaa
aaa
+aiu
+ait
+ait
+ait
+aiu
+abI
+abI
aaa
aaa
-awg
aaa
aaa
+azH
aaa
aaa
aaa
-aCi
-aCW
-cjA
-aEs
-aEs
-aCi
-aDz
-aDz
-aJM
-aKK
-aJM
-aDz
-aCi
-aIy
-aIy
-aIy
-aQF
-aRA
aaa
aaa
+aFT
+aGQ
+aHw
+aIw
+aIw
+aFT
+aIx
+aIx
+aOc
+aPj
+aOc
+aIx
+aFT
+aMI
+aMI
+aMI
+aVJ
+aWD
aaa
aaa
aaa
@@ -67309,49 +69249,51 @@ aaa
aaa
aaa
aaa
-acl
-aad
-bZi
-bZj
-bZj
-bZj
-bZj
-bZj
-bZT
-bZr
-bZr
-bZr
-bZr
-bZr
-caw
-cax
-cax
-cax
-cbn
-cbq
-cbA
-cbO
-cch
-ccx
-ccL
-ccZ
-cdi
-cdz
-cdi
-ceb
-cdi
-ceO
-cdi
-ccZ
-cfs
-aAK
-aSw
-aZr
-aZr
-bqM
-bDD
-cds
+aaa
+aaa
+aed
+abI
+bNr
+bNs
+bNs
+bNs
+bNs
+bNs
+bSm
+bOw
+bOw
+bOw
+bOw
+bOw
+bWU
+bWV
+bWV
+bWV
+bZY
+caT
+cbK
+ccz
cds
+ceh
+ceH
+cfl
+cfD
+cgg
+cfD
+chg
+cfD
+cia
+cfD
+cfl
+ciQ
+cjm
+cjJ
+ckf
+ckf
+ckO
+cle
+cfN
+cfN
aaa
aaa
aaa
@@ -67495,43 +69437,43 @@ aaa
aaa
aaa
aaa
-agv
-agv
-agv
-amW
-anx
-agu
-agv
-aad
-aad
-aad
+aht
+aht
+aiu
+apz
+aqe
+arb
+aiu
+abI
+abI
+abI
aaa
aaa
-atS
-awk
-atS
+axB
+azM
+axB
aaa
aaa
aaa
aaa
-aCi
-aCX
-aDA
-aDz
-aDz
-aGi
-aDz
-aDz
-aJN
-aKL
-aLL
-aDz
-aNC
-aIy
-aIy
-aIy
-aQF
-aRA
+aFT
+aGR
+aHx
+aIx
+aIx
+aKv
+aIx
+aIx
+aOd
+aPk
+aQq
+aIx
+aSp
+aMI
+aMI
+aMI
+aVJ
+aWD
aaa
aaa
aaa
@@ -67563,53 +69505,53 @@ aaa
aaa
aaa
aaa
-aaa
-aaa
-aaa
-aac
-aqA
-bZj
-bZj
-bZr
-bZG
-bZr
-bZr
-bZr
-bZr
-bZr
-bZr
-bZr
-bZr
-bZr
-cax
-caW
-cbd
-cbo
-cbr
-cbn
-cbP
-cci
-ccy
-ccM
-cda
-cdj
-cdd
-cdj
-cec
-cdj
-cdj
-cdj
-cdc
-cft
-aAK
-aSC
-aZt
-biD
-btg
-bDD
-cds
-cds
-cds
+bHI
+aby
+aby
+aby
+bGH
+bNs
+bNs
+bOw
+bQc
+bOw
+bOw
+bOw
+bOw
+bOw
+bOw
+bOw
+bOw
+bOw
+bWV
+bYy
+bZk
+bZZ
+caU
+bZY
+ccA
+cdt
+cei
+ceI
+cfm
+cfE
+cfp
+cfE
+chh
+cfE
+cfE
+cfE
+cfo
+ciR
+cjm
+cjK
+ckg
+ckz
+ckP
+cle
+cfN
+cfN
+cfN
aaa
aaa
aaa
@@ -67745,50 +69687,50 @@ aaa
aaa
aaa
aaa
-agu
-agu
-agu
-agv
-agv
+ait
+ait
+ait
+aiu
+aiu
aaa
aaa
-agv
-alL
-amn
-amX
-any
-aok
-agv
-agu
-agu
-agv
+aiu
+aiu
+aiu
+apA
+aqf
+ajD
+aiu
+ait
+ait
+aiu
aaa
aaa
-auU
-awl
-atS
+ayz
+azN
+axB
aaa
aaa
aaa
aaa
-aCi
-aCY
-cjB
-aEt
-aEt
-aCi
-aDz
-aDz
-aJM
-aKM
-aJM
-aDz
-aCi
+aFT
+aGS
+aHy
aIy
-aJJ
-aJJ
-aQF
-aRA
+aIy
+aFT
+aIx
+aIx
+aOc
+aPl
+aOc
+aIx
+aFT
+aMI
+aNZ
+aNZ
+aVJ
+aWD
aaa
aaa
aaa
@@ -67819,54 +69761,54 @@ aaa
aaa
aaa
aaa
-aaa
-aaa
-bYE
-bYE
-bYE
-bYY
-bZj
-bZr
-bZr
-bZr
-bZr
-bZr
-bZr
-bZr
-bZr
-bZr
-bZr
-bZr
-bZr
-cax
-caX
-cax
-cax
-cax
-cax
-cbQ
-cax
-cax
-ccN
-cdb
-cdk
-cdl
-cdk
-ced
-cdk
-cdl
-cdk
-cdb
-cft
-aAK
-aTt
-aZu
-biE
-btg
-bDD
-cds
-bKv
-bLc
+bGD
+bGD
+bIT
+bJZ
+bIT
+bMr
+bNs
+bOw
+bOw
+bOw
+bOw
+bOw
+bOw
+bOw
+bOw
+bOw
+bOw
+bOw
+bOw
+bWV
+bYz
+bWV
+bWV
+bWV
+bWV
+ccB
+bWV
+bWV
+ceJ
+cfn
+cfF
+cfG
+cfF
+chi
+cfF
+cfG
+cfF
+cfn
+ciR
+cjm
+cjL
+ckh
+ckA
+ckP
+cle
+cfN
+clo
+clr
aaa
aaa
aaa
@@ -68002,50 +69944,50 @@ aaa
aaa
aaa
aaa
-agu
-agV
-ahw
-aie
-agv
-agu
-agu
-agv
-ahy
-agv
-amY
-ahy
-ahy
-amn
-ahy
-ahy
-agv
+ait
+aiV
+ajB
+akr
+aiu
+ait
+ait
+aiu
+aod
+aoK
+aoK
+aoK
+ajD
+aoK
+ajD
+ajD
+aiu
aaa
-atS
-atS
-awm
-atS
-atS
+axB
+axB
+azO
+axB
+axB
aaa
aaa
aaa
-aCh
-aCh
-cjS
-aEu
-aFn
-aGh
-aHe
-aDz
-aDz
-aDz
-aDz
-aDz
-aCh
-aOL
-aPC
-aQG
-aQF
-aRA
+aFS
+aFS
+aHv
+aIz
+aJA
+aKu
+aLq
+aIx
+aIx
+aIx
+aIx
+aIx
+aFS
+aTG
+aUF
+aVK
+aVJ
+aWD
aaa
aaa
aaa
@@ -68076,56 +70018,56 @@ aaa
aaa
aaa
aaa
-aaa
-aaa
-bYF
-bYF
-bYR
-bYZ
-bYZ
-bZs
-bZr
-bZH
-bZr
-bZH
-bZr
-bZH
-bZr
-bZH
-bZr
-bZH
-cax
-cax
-caY
-cbe
-caY
-cbi
-cbB
-cbR
-ccj
-cax
-ccO
-cdb
-cdl
-cdA
-cdO
-cee
-cey
-ceP
-cdl
-cdb
-cfu
-aAY
-aTu
-aZT
-biF
-btg
-bDD
-cds
-cds
-cds
-cds
-cds
+bGE
+bGE
+bIU
+bHM
+bHM
+bHM
+bHM
+bNw
+bOw
+bQd
+bOw
+bQd
+bOw
+bQd
+bOw
+bQd
+bOw
+bQd
+bWV
+bWV
+bYA
+bZl
+bYA
+bZp
+cbL
+ccC
+cdu
+bWV
+ceK
+cfn
+cfG
+cgh
+cgG
+chj
+chG
+cib
+cfG
+cfn
+ciS
+cjn
+cjM
+cki
+ckB
+ckP
+cle
+cfN
+cfN
+cfN
+cfN
+cfN
aaa
aaa
aaa
@@ -68259,50 +70201,50 @@ aaa
aaa
aaa
aaa
-agu
-agW
-ahx
-ahy
-aiX
-ahy
-ahy
-alb
-ahy
-agv
-agv
-agv
-agv
-agv
-agv
-ahy
-agv
-agv
-atT
-auV
-awn
-axw
-atT
+ait
+aiW
+ajC
+ajD
+ali
+ajD
+ajD
+anq
+ajD
+ajD
+apB
+aiu
+aiu
+aiu
+aiu
+ajD
+aiu
+aiu
+axC
+ayA
+azP
+aAW
+axC
aaa
aaa
aaa
aaa
aaa
-aCh
-aCh
-aCh
-aCh
-cjU
-cjC
-aJK
-aJK
-aJK
-cjE
-cjW
-aCh
-aCh
-aCh
-aCh
-aCh
+aFS
+aFS
+aFS
+aFS
+aHv
+aMJ
+aOa
+aOa
+aOa
+aRA
+aHv
+aFS
+aFS
+aFS
+aFS
+aFS
aaa
aaa
aaa
@@ -68332,58 +70274,58 @@ aaa
aaa
aaa
aaa
-aaa
-aaa
-bYz
-bYG
-bYJ
-bYG
-bZa
-bZk
-bZs
-bZs
-bZI
-bZr
-bZr
-bZr
-bZI
-bZr
-bZr
-bZr
-bZI
-cax
-caH
-caZ
-cbf
-caZ
-cbs
-cbC
-cbS
-cck
-cax
-ccP
-cdb
-cdk
-cdB
-cdP
-cdP
-cdP
-ceQ
-cdk
-cfj
-cfv
-aBW
-aTP
-baq
-baq
-btE
-bDF
-cds
-cds
-cds
-cds
-cds
-cds
+bFE
+bGF
+bHJ
+bGF
+bKa
+bLn
+bLn
+bNt
+bNw
+bNw
+bQe
+bOw
+bOw
+bOw
+bQe
+bOw
+bOw
+bOw
+bQe
+bWV
+bXH
+bYB
+bZm
+bYB
+caV
+cbM
+ccD
+cdv
+bWV
+ceL
+cfn
+cfF
+cgi
+cgH
+cgH
+cgH
+cic
+cfF
+ciE
+ciT
+cjo
+cjN
+ckj
+ckj
+ckQ
+clf
+cfN
+cfN
+cfN
+cfN
+cfN
+cfN
aaa
aaa
aaa
@@ -68516,49 +70458,49 @@ aaa
aaa
aaa
aaa
-agv
-agX
-ahy
-aif
-agv
-agu
-agu
-agv
-alc
-amo
-amo
-amo
-amo
-aph
-amo
-amo
-amo
-asZ
-atT
-auW
-awo
-axx
-atT
+aiu
+aiX
+ajD
+aks
+aiu
+ait
+ait
+aiu
+anr
+aoL
+aoL
+aoL
+aoL
+aso
+aoL
+aoL
+aoL
+awE
+axC
+ayB
+azQ
+aAX
+axC
aaa
aaa
aaa
aaa
aaa
-aCh
-aEv
-aFo
-aGj
-aCi
-aDz
-aJL
-aJL
-aJL
-aDz
-aDz
-aJJ
-aJJ
-aQF
-aRA
+aFS
+aIA
+aJB
+aKw
+aFT
+aIx
+aOb
+aOb
+aOb
+aIx
+aIx
+aNZ
+aNZ
+aVJ
+aWD
aaa
aaa
aaa
@@ -68590,57 +70532,57 @@ aaa
aaa
aaa
aaa
-aaa
-aaa
-bYF
-bYK
-bYS
-bZb
-bZl
-bZt
-bZB
-bZJ
-bZJ
-bZJ
-bZJ
-bZJ
-bZJ
-bZJ
-bZJ
-bZJ
-cay
-caI
-caI
-cbg
-cbg
-cbg
-cbD
-cbT
-ccl
-ccz
-ccQ
-cdc
-cdl
-cdC
-cdP
-cef
-cdP
-ceR
-cdl
-cdb
-cft
-aAK
-aTQ
-bby
-biG
-bxZ
-aAK
-cds
-cds
-cds
-cds
-cds
-cds
+bGE
+bHK
+bIV
+bKb
+bLo
+bMs
+bNu
+bOx
+bPn
+bQf
+bQf
+bQf
+bQf
+bQf
+bQf
+bQf
+bQf
+bQf
+bWW
+bXI
+bXI
+bZn
+bZn
+bZn
+cbN
+ccE
+cdw
+cej
+ceM
+cfo
+cfG
+cgj
+cgH
+chk
+cgH
+cid
+cfG
+cfn
+ciR
+cjm
+cjO
+ckk
+ckC
+ckR
+cjm
+cfN
+cfN
+cfN
+cfN
+cfN
+cfN
aaa
aaa
aaa
@@ -68773,49 +70715,49 @@ aaa
aaa
aaa
aaa
-agu
-agY
-ahz
-aig
-agv
+ait
+aiY
+ajE
+akt
+aiu
aaa
aaa
-agv
-alM
-ahy
-agv
-agv
-agu
-api
-agv
-agu
-agv
-alM
-atT
-auX
-awp
-axy
-atT
+aiu
+aoe
+ajD
+aiu
+aiu
+ait
+asp
+aiu
+ait
+aiu
+aoe
+axC
+ayC
+azR
+aAY
+axC
aaa
aaa
aaa
aaa
aaa
-aCh
-aEv
-aFp
-aFp
-aHd
-aDz
-aDz
-aDz
-aDz
-aDz
-aDz
-aDz
-aDz
-aQF
-aRA
+aFS
+aIA
+aJC
+aJC
+aLr
+aIx
+aIx
+aIx
+aIx
+aIx
+aIx
+aIx
+aIx
+aVJ
+aWD
aaa
aaa
aaa
@@ -68847,57 +70789,57 @@ aaa
aaa
aaa
aaa
-aaa
-aaa
-bYH
-bYL
-bYT
-bZc
-bZm
-bZu
-bZC
-bZK
-bZK
-bZK
-bZK
-bZK
-bZK
-bZK
-bZK
-bZK
-caz
-caJ
-caJ
-cbh
-cbh
-cbh
-cbE
-cbU
-ccm
-ccA
-ccR
-cdb
-cdl
-cdD
-cbk
-ceg
-cdP
-cdC
-cdl
-cdb
-cft
-aDy
-aDy
-aDy
-aDy
-aDy
-aDy
-aDy
-aDy
-cds
-cds
-cds
-cds
+bGG
+bHL
+bIW
+bKc
+bLn
+bMt
+bLn
+bOy
+bPo
+bQg
+bQg
+bQg
+bQg
+bQg
+bQg
+bQg
+bQg
+bQg
+bWX
+bXJ
+bXJ
+bZo
+bZo
+bZo
+cbO
+ccF
+cdx
+cek
+ceN
+cfn
+cfG
+cgk
+cgI
+chl
+cgH
+cgj
+cfG
+cfn
+ciR
+cjp
+cjp
+cjp
+cjp
+cjp
+cjp
+cjp
+cjp
+cfN
+cfN
+cfN
+cfN
aaa
aaa
aaa
@@ -69030,49 +70972,49 @@ aaa
aaa
aaa
aaa
-agv
-agv
-agv
-agv
-agv
-agv
-agv
-agv
-alM
-ahy
-agv
-anz
-aol
-apj
-aqf
-aqW
-agv
-alM
-atT
-atT
-awq
-atT
-atT
-agv
+aiu
+aiu
+aiu
+aiu
+aiu
+aiu
+aiu
+aiu
+aoe
+ajD
+aiu
+aqg
+arc
+asq
+atp
+aus
+aiu
+aoe
+axC
+axC
+azS
+axC
+axC
+aiu
aaa
aaa
aaa
aaa
-aCh
-aEv
-aFp
-aFp
-aCi
-aIy
-aJO
-aJO
-aJO
-aIy
-aJO
-aIy
-aJO
-aQF
-aRA
+aFS
+aIA
+aJC
+aJC
+aFT
+aMI
+aOe
+aOe
+aOe
+aMI
+aOe
+aMI
+aOe
+aVJ
+aWD
aaa
aaa
aaa
@@ -69094,7 +71036,7 @@ aaa
aaa
aaa
aaa
-bjY
+bsg
aaa
aaa
aaa
@@ -69104,57 +71046,57 @@ aaa
aaa
aaa
aaa
-aaa
-aaa
-aqA
-bYF
-bYU
-bZd
-bZn
-bZs
-bZs
-bZI
-bZr
-bZr
-bZr
-bZI
-bZr
-bZr
-bZr
-bZI
-cax
-caK
-caY
-cbi
-caY
-cbt
-cbF
-cbV
-ccn
-cax
-ccP
-cdb
-cdk
-cdE
-cdQ
-cdP
-cdP
-ceS
-cdk
-cdb
-cfx
-aDy
-aTR
-bet
-biJ
-byR
-bEs
-bJE
-aDy
-aDy
-cds
-cds
-cds
+bGH
+bGE
+bIX
+bKd
+bLp
+bMu
+bNv
+bNw
+bNw
+bQe
+bOw
+bOw
+bOw
+bQe
+bOw
+bOw
+bOw
+bQe
+bWV
+bXK
+bYA
+bZp
+bYA
+caW
+cbP
+ccG
+cdy
+bWV
+ceL
+cfn
+cfF
+cgl
+cgJ
+cgH
+cgH
+cie
+cfF
+cfn
+ciU
+cjp
+cjP
+ckl
+ckD
+ckS
+clg
+clk
+cjp
+cjp
+cfN
+cfN
+cfN
aaa
aaa
aaa
@@ -69288,48 +71230,48 @@ aaa
aaa
aaa
aaa
-agv
-ahA
-aih
-aiY
-ajM
-agv
-alc
-alN
-amn
-agu
-anA
-ahy
-alM
-aqg
-aqX
-agv
-apl
-amo
-amo
-awr
-amn
-ayw
-agv
+aiu
+ajF
+aku
+alj
+alT
+aiu
+anr
+aof
+aoK
+ait
+aqh
+ajD
+aoe
+atq
+aut
+aiu
+asr
+aoL
+aoL
+azT
+aoK
+aCb
+aiu
aaa
aaa
aaa
aaa
-aCh
-aCi
-aCi
-aGk
-aCh
-aCh
-aCi
-aCi
-aCh
-aMQ
-aCh
-aOM
-aCh
-aCh
-aCh
+aFS
+aFT
+aFT
+aKx
+aFS
+aFS
+aFT
+aFT
+aFS
+aKs
+aFS
+aTH
+aFS
+aFS
+aFS
aaa
aaa
aaa
@@ -69350,9 +71292,9 @@ aaa
aaa
aaa
aaa
-bjY
-bmM
-bjY
+bsg
+btG
+bsg
aaa
aaa
aaa
@@ -69361,58 +71303,58 @@ aaa
aaa
aaa
aaa
-aaa
-aaa
-aqA
-bYF
-bYF
-bYZ
-bYZ
-bZs
-bZr
-bZH
-bZr
-bZH
-bZr
-bZH
-bZr
-bZH
-bZr
-cat
-cax
-cax
-cba
-cbj
-caZ
-cbu
-cbG
-cbW
-cco
-cax
-ccS
-cdb
-cdl
-cdF
-cdR
-cdP
-cez
-cdA
-cdl
-cdb
-cfy
-aEo
-aUT
-aUT
-bkd
-bzf
-bzf
-bJF
-bKw
-aDy
-cds
-cds
-cds
-cds
+bGI
+bHM
+bHM
+bHM
+bLq
+bMv
+bNw
+bNw
+bOw
+bQd
+bOw
+bQd
+bOw
+bQd
+bOw
+bQd
+bOw
+bWi
+bWV
+bWV
+bYC
+bZq
+bYB
+caX
+cbQ
+ccH
+cdz
+bWV
+ceO
+cfn
+cfG
+cgm
+cgK
+cgH
+chH
+cgh
+cfG
+cfn
+ciV
+cjq
+cjQ
+cjQ
+ckE
+ckT
+ckT
+cll
+clp
+cjp
+cfN
+cfN
+cfN
+cfN
aaa
aaa
aaa
@@ -69541,50 +71483,50 @@ aaa
aaa
aaa
aaa
-aea
-afz
-bUq
-aea
-aea
-ahB
-aii
-aiZ
-ajN
+afU
+ahu
+ahS
+afU
+afU
+ajG
akv
-ald
-agv
-amp
-agv
-anB
-aon
-apl
-aqf
-aqY
-agv
-atb
-ahy
-ahy
-alM
-ahy
-ayx
-agv
+alk
+alU
+amH
+ans
+aiu
+aoM
+aiu
+aqi
+ard
+asr
+atp
+auu
+aiu
+awF
+apB
+apB
+aoe
+ajD
+aCc
+aiu
aaa
aaa
aaa
aaa
aaa
aaa
-aHf
-aGl
-aHf
+aHA
+aKy
+aHA
aaa
aaa
aaa
-aHf
-aGl
-aHf
-aGl
-aHf
+aHA
+aKy
+aHA
+aKy
+aHA
aaa
aaa
aaa
@@ -69595,10 +71537,10 @@ aaa
aaa
aaa
aaa
-aYW
-bXb
-bXb
-aYW
+beV
+bgP
+bgP
+beV
aaa
aaa
aaa
@@ -69607,9 +71549,9 @@ aaa
aaa
aaa
aaa
-bls
-blt
-cif
+bsh
+bsk
+buX
aaa
aaa
aaa
@@ -69619,57 +71561,57 @@ aaa
aaa
aaa
aaa
-aaa
-aaa
-bYM
-bYV
-bZe
-bZj
-bZr
-bZr
-bZr
-bZr
-bZr
-bZr
-bZr
-bZr
-bZr
-bZr
-bZr
-bZr
-cax
-cax
-cax
-cax
-cax
-cax
-cbX
-cax
-cax
-ccT
-cdb
-cdk
-cdl
-cdk
-ceh
-cdk
-cdl
-cdk
-cfj
-cfz
-aFB
-aVM
-bfE
-bke
-bfE
-bEz
-bzf
-bKx
-aDy
-cds
-cds
-cds
-cds
+bHN
+bGE
+bKe
+bLr
+bMw
+bNx
+bNw
+bOw
+bOw
+bOw
+bOw
+bOw
+bOw
+bOw
+bOw
+bOw
+bOw
+bOw
+bWV
+bWV
+bWV
+bWV
+bWV
+bWV
+ccI
+bWV
+bWV
+ceP
+cfn
+cfF
+cfG
+cfF
+chm
+cfF
+cfG
+cfF
+ciE
+ciW
+cjr
+cjR
+ckm
+ckF
+ckm
+clh
+ckT
+clq
+cjp
+cfN
+cfN
+cfN
+cfN
aaa
aaa
aaa
@@ -69798,50 +71740,50 @@ aaa
aaa
aaa
aaa
-aea
-afA
-afW
-agw
-aea
-ahB
-aij
-aja
-ajO
-agv
-ale
-agv
-amq
-agv
-agv
-agu
-agu
-agv
-agu
-agv
-agv
-agv
-auY
-bUR
-bUU
-ahy
-agu
+afU
+ahv
+ahT
+aiv
+afU
+ajG
+akw
+all
+alV
+aiu
+ant
+aiu
+aoN
+aiu
+aiu
+ait
+ait
+aiu
+ait
+aiu
+aiu
+aiu
+ayD
+azU
+aAZ
+ajD
+ait
aaa
aaa
aaa
aaa
aaa
aaa
-aHf
-aGm
-aHf
+aHA
+aKz
+aHA
aaa
aaa
aaa
-aHf
-aGm
-aHf
-aGm
-aHf
+aHA
+aKz
+aHA
+aKz
+aHA
aaa
aaa
aaa
@@ -69852,10 +71794,10 @@ aaa
aaa
aaa
aaa
-aYW
-aZS
-cjM
-aYW
+beV
+bfR
+bhC
+beV
aaa
aaa
aaa
@@ -69864,9 +71806,9 @@ aaa
aaa
aaa
aaa
-bjZ
-cjO
-bjZ
+bqP
+btH
+bqP
aaa
aaa
aaa
@@ -69876,57 +71818,57 @@ aaa
aaa
aaa
aaa
-aaa
-aaa
-aaa
-aac
-aqA
-bZj
-bZj
-bZr
-bZL
-bZr
-bZr
-bZr
-bZT
-bZr
-bZr
-bZr
-bZr
-bZr
-bZr
-bZr
-cah
-bZr
-bZI
-cax
-cbY
-ccl
-ccB
-ccQ
-cdd
-cdj
-cdj
-cdj
-cei
-cdj
-cdj
-cdj
-cdc
-ccT
-aDy
-aWB
-bfF
-bkf
-bAI
-bGA
-bJG
-aDy
-aDy
-cds
-cds
-cds
-cds
+bGI
+bGE
+bKf
+bLn
+bMw
+bNy
+bNw
+bOw
+bQh
+bOw
+bOw
+bOw
+bSm
+bOw
+bOw
+bOw
+bOw
+bOw
+bOw
+bOw
+bUC
+bOw
+bQe
+bWV
+ccJ
+cdw
+cel
+ceM
+cfp
+cfE
+cfE
+cfE
+chn
+cfE
+cfE
+cfE
+cfo
+ceP
+cjp
+cjS
+ckn
+ckG
+ckU
+cli
+clm
+cjp
+cjp
+cfN
+cfN
+cfN
+cfN
aaa
aaa
aaa
@@ -70050,25 +71992,25 @@ aaa
aaa
aaa
aaa
-aea
-aeo
-aeo
-aeo
-aea
-aea
-afB
-afX
-agx
-aea
-ahC
-ahC
-ahC
-ahC
-ahC
-ale
-agv
-agv
-agv
+afU
+agi
+agi
+agi
+afU
+afU
+ahw
+ahU
+aiw
+afU
+ajH
+ajH
+ajH
+ajH
+ajH
+ant
+aiu
+aiu
+aiu
aaa
aaa
aaa
@@ -70076,55 +72018,55 @@ aaa
aaa
aaa
aaa
-agv
-agv
-bUS
-bUV
-bUY
-agu
+aiu
+aiu
+azV
+aBa
+aCd
+ait
aaa
aaa
aaa
aaa
aaa
aaa
-aHf
-aMR
-aHf
-aad
-aad
-aad
-aHf
-aMR
-aHf
-aON
-aHf
-aad
-aad
-aad
-aTs
-aTr
-aTr
-aTr
+aHA
+aKA
+aHA
+aaa
+abI
+abI
+aHA
+aKA
+aHA
+aTI
+aHA
+abI
+abI
+abI
+aYG
+aZx
+aZx
+aZx
aaa
aaa
-aYW
-aYW
-bXc
-bXc
-aYW
-aYW
+beV
+beV
+bgQ
+bgQ
+beV
+beV
aaa
aaa
-aTr
-aTr
-aTr
-aTr
-bjZ
-bjZ
-cid
-bjZ
-bjZ
+aZx
+aZx
+aZx
+aZx
+bqP
+bqP
+btI
+bqP
+bqP
aaa
aaa
aaa
@@ -70133,57 +72075,57 @@ aaa
aaa
aaa
aaa
-aaa
-aaa
-aaa
-aac
-aaa
-bYV
-bZj
-bZj
-bZj
-bZj
-bZj
-bZr
-bZr
-bZr
-bZr
-bZr
-bZr
-bZr
-bZr
-bZr
-bZr
-bZr
-bZK
-cbH
-caJ
-ccp
-ccC
-ccU
-ccm
-ccm
-caD
-ccm
-cej
-ceA
-ceT
-ccm
-cej
-ccR
-aDy
-aDy
-bfG
-blK
-bBg
-blK
-bJM
-aDy
-cds
-cds
-cds
-cds
-cds
+bGI
+bGE
+bKg
+bLn
+bMx
+bNz
+bHM
+bNs
+bNs
+bNs
+bNs
+bOw
+bOw
+bOw
+bOw
+bOw
+bOw
+bOw
+bOw
+bOw
+bOw
+bOw
+bQg
+cbR
+bXJ
+cdA
+cem
+ceQ
+cdx
+cdx
+cgn
+cdx
+cho
+chI
+cif
+cdx
+cho
+ceN
+cjp
+cjp
+cko
+ckH
+ckV
+ckH
+cln
+cjp
+cfN
+cfN
+cfN
+cfN
+cfN
aaa
aaa
aaa
@@ -70307,81 +72249,81 @@ aaa
aaa
aaa
aaa
-aeb
-aep
-aeB
-aeL
-afa
-afq
-afC
-afY
-agy
-agZ
-ahC
-aik
-ajb
-ajP
-akw
-alf
-alO
+afV
+agj
agv
-amZ
-amZ
-ana
-amZ
-amZ
-ana
-amZ
-amZ
-amZ
-agv
-awt
-bUV
-ahy
-agu
+agF
+agT
+ahj
+ahx
+ahV
+aix
+aiZ
+ajH
+akx
+alm
+alW
+amI
+anu
+aog
+aiu
+apC
+apC
+apD
+apC
+apC
+apD
+apC
+apC
+apC
+aiu
+azW
+aBa
+ajD
+ait
aaa
aaa
aaa
aaa
aaa
aaa
-aHf
-aGm
-aHf
-aHf
-aHf
-aHf
-aHf
-aGn
-aHf
-aGn
-aHf
-aHf
-aHf
-aHf
-aTs
-aUh
-aVl
-aTr
-aXi
-aTr
-aYW
-aZR
-aZS
-aZS
-bbP
-aYW
-aTr
-aTr
-aTr
-aVl
-bhz
-aTr
-bkb
-blv
-blt
-boa
-bkb
+aHA
+aKz
+aHA
+aHA
+aHA
+aHA
+aHA
+aKB
+aHA
+aKB
+aHA
+aHA
+aHA
+aHA
+aYG
+aZy
+baJ
+aZx
+bcW
+aZx
+beV
+bfQ
+bfR
+bfR
+bhX
+beV
+aZx
+aZx
+aZx
+baJ
+bon
+aZx
+bqQ
+bsi
+bsk
+buY
+bqQ
aaa
aaa
aaa
@@ -70390,57 +72332,57 @@ aaa
aaa
aaa
aaa
-aaa
-aaa
-aaa
-aac
-aaa
-aad
-bYM
-bYM
-bYV
-bZe
-bZj
-bZj
-bZr
-bZr
-bZr
-bZr
-bZr
-bZK
-bZK
-bZK
-bZr
-bZr
-bZK
-cbH
-caJ
-ccq
-cax
-cax
-cax
-cdm
-cax
-cax
-cek
-ceB
-cax
-cax
-cfk
-ceB
-cax
-aDy
-bfG
-blK
-bBA
-blK
-bJM
-aDy
-cds
-cds
-cds
-cds
-cds
+bGI
+bHM
+bGE
+bGE
+bHM
+bNA
+bHM
+abI
+bQi
+bQR
+bNs
+bNs
+bOw
+bOw
+bOw
+bOw
+bOw
+bQg
+bQg
+bQg
+bOw
+bOw
+bQg
+cbR
+bXJ
+cdB
+bWV
+bWV
+bWV
+cfH
+bWV
+bWV
+chp
+chJ
+bWV
+bWV
+ciF
+chJ
+bWV
+cjp
+cko
+ckH
+ckW
+ckH
+cln
+cjp
+cfN
+cfN
+cfN
+cfN
+cfN
aaa
aaa
aaa
@@ -70564,81 +72506,81 @@ aaa
aaa
aaa
aaa
-aec
-aeq
-aeC
-aeM
-afb
-afr
-afD
-afZ
-agz
-aha
-ahD
-ail
-ajc
-bUD
-bUE
-alg
-alP
-agv
-ana
-anC
-aoo
-apm
-aqh
-aqZ
-arQ
-atc
-atU
-agv
-awu
-axz
-asZ
-agv
+afW
+agk
+agw
+agG
+agU
+ahk
+ahy
+ahW
+aiy
+aja
+ajI
+aky
+aln
+alX
+amJ
+anv
+aoh
+aiu
+apD
+aqj
+are
+ass
+atr
+auv
+avo
+awG
+axD
+aiu
+azX
+aBb
+awE
+aiu
aaa
aaa
aaa
aaa
-aaa
-aEz
-aEz
-aGn
-aEz
-aEz
-chp
-chx
-chE
-chx
-chN
-chx
-chE
-chx
-chx
-chY
-aTs
-aUh
-aVm
-aWl
-aXj
-cik
-aYX
-aZS
-baE
-baE
-aZS
-aYX
-aWl
-aXj
-cik
-aVm
-bhz
-aTr
-bjZ
-blv
-blt
-boa
-bjZ
+aHz
+aHz
+aHz
+aKB
+aHz
+aMK
+aOf
+aOf
+aQr
+aOf
+aSq
+aOf
+aQr
+aOf
+aOf
+aXD
+aYG
+aZy
+baK
+bbQ
+bcX
+bdV
+beW
+bfR
+bgR
+bgR
+bfR
+beW
+bbQ
+bcX
+bdV
+baK
+bon
+aZx
+bqP
+bsi
+bsk
+buY
+bqP
aaa
aaa
aaa
@@ -70648,56 +72590,56 @@ aaa
aaa
aaa
aaa
-aaa
-aaa
-aac
-aac
-acl
-aac
-aad
-aac
-aad
-bZQ
-bZj
-bZj
-bZj
-bZj
-cah
-bZr
-caA
-caL
-bZj
-bZr
-bZr
-bZr
-cax
-cbZ
-ccr
-ccD
-cax
-cde
-cdn
-cax
-cdS
-cel
-ceC
-cax
-ceX
-cel
-aas
-cax
-aDy
-bfH
-bnh
-bBD
-bnh
-bJM
-aDy
-cds
-cds
-cds
-cds
-cds
+bIY
+bIY
+bLs
+bMy
+bNB
+bMy
+abI
+aby
+abI
+bRC
+bNs
+bNs
+bNs
+bNs
+bUC
+bOw
+bWY
+bXL
+bNs
+bOw
+bOw
+bOw
+bWV
+ccK
+cdC
+cen
+bWV
+cfq
+cfI
+bWV
+cgL
+chq
+chK
+bWV
+cio
+chq
+ciX
+bWV
+cjp
+ckp
+ckI
+ckX
+ckI
+cln
+cjp
+cfN
+cfN
+cfN
+cfN
+cfN
aaa
aaa
aaa
@@ -70814,88 +72756,88 @@ aaa
aaa
aaa
aaa
-acl
-abZ
-aad
-aad
-aad
-aad
-aad
aed
-aer
-aeD
-aeN
-afc
-afs
-afE
-aga
-agA
-ahb
-ahC
-aim
-ajd
-ajQ
-akx
-alh
-alP
-agv
-ana
-anD
-aop
-amZ
-cjz
-aqh
-aqh
-atc
-atU
-agv
-awv
-agv
-alM
-agv
+adR
+abI
+abI
+abI
+abI
+abI
+afX
+agl
+agx
+agH
+agV
+ahl
+ahz
+ahX
+aiz
+ajb
+ajH
+akz
+alo
+alY
+amK
+anw
+aoh
+aiu
+apD
+aqk
+arf
+apC
+ats
+atr
+atr
+awG
+axD
+aiu
+azY
+aiu
+aoe
+aiu
aaa
aaa
aaa
aaa
-aaa
-aEz
-aFq
-aGo
-aHg
-aHf
-chq
-aGp
-aGp
-aGp
-aGp
-aGp
-aGp
-aGp
-aGp
-aRE
-aTs
-aUi
-aVm
-aTr
-aTr
-aTr
-aYW
-cjK
-aZS
-aZS
-bXj
-aYW
-aTr
-aTr
-aTr
-aVm
-bhz
-aTr
-bjZ
-cjN
-blt
-blt
-bjZ
+aHA
+aIB
+aJD
+aKC
+aHA
+aML
+aOg
+aPm
+aQs
+aPm
+aSr
+aPm
+aQs
+aVL
+aWE
+aWK
+aYG
+aZz
+baK
+aZx
+aZx
+aZx
+beV
+bfS
+bfR
+bfR
+bhY
+beV
+aZx
+aZx
+aZx
+baK
+bon
+aZx
+bqP
+bsj
+bsk
+bsk
+bqP
aaa
aaa
aaa
@@ -70905,56 +72847,56 @@ aaa
aaa
aaa
aaa
+aby
+aby
aaa
aaa
+bNC
aaa
-aaa
-aaa
-aaa
-aaa
-aac
-aac
-aad
-bYM
-bZY
-bZe
-bZj
-bZj
-bZj
-bZj
-caM
-bZj
-bZr
-bZr
-cbv
-cax
-cca
-cax
-cax
-cax
-cax
-cdo
-cax
-cdT
-cem
-ceD
-cax
-cdT
-cem
-ceD
-cax
-aDy
-aDy
-aDy
-aDy
-aDy
-aDy
-aDy
-aDy
-cds
-cds
-cds
-cds
+aht
+aby
+aby
+abI
+bSn
+bSZ
+bQR
+bNs
+bNs
+bNs
+bNs
+bXM
+bNs
+bOw
+bOw
+caY
+bWV
+ccL
+bWV
+bWV
+bWV
+bWV
+cfJ
+bWV
+cgM
+chr
+chL
+bWV
+cgM
+chr
+chL
+bWV
+cjp
+cjp
+cjp
+cjp
+cjp
+cjp
+cjp
+cjp
+cfN
+cfN
+cfN
+cfN
aaa
aaa
aaa
@@ -71070,89 +73012,89 @@ aaa
aaa
aaa
aaa
-abZ
+adR
aaa
-aad
+abI
aaa
-act
-act
-act
-act
-aee
-aes
-aes
-aes
-aes
-aes
-afF
-agb
-agB
-agB
-agB
-ain
-aje
-ain
-ain
-ain
-alQ
-agv
-ana
-anE
-aoq
-apn
-aqi
-ara
-aqh
-atc
-atU
-agv
-aww
-agv
-alM
-agv
+aem
+aem
+aem
+aem
+afY
+agm
+agm
+agm
+agm
+agm
+ahA
+ahY
+aiA
+aiA
+aiA
+akA
+alp
+akA
+akA
+akA
+aoi
+aiu
+apD
+aql
+arg
+ast
+att
+auw
+atr
+awG
+axD
+aiu
+azZ
+aiu
+aoe
+aiu
aaa
aaa
aaa
aaa
-aaa
-aEz
-aFr
-aGp
-aHh
-aHf
-chq
-chy
-chF
-aMT
-aGp
-chy
-chF
-aMT
-aGp
-aRE
-aTs
-aUj
-aVm
-aWm
-aXk
-aTr
-aYY
-aZU
-baE
-baE
-aZS
-aYY
-aTr
-beq
-aWm
-aVm
-bhz
-aTr
-cih
-blt
-cie
-blt
-cig
+aHz
+aIC
+aJE
+aKD
+aHA
+aML
+aOh
+aPn
+aQt
+aRB
+aSs
+aPn
+aQt
+aVM
+aWE
+aWK
+aYG
+aZA
+baK
+bbR
+bcY
+aZx
+beX
+bfT
+bgR
+bgR
+bfR
+beX
+aZx
+bkQ
+bbR
+baK
+bon
+aZx
+bqR
+bsk
+btJ
+bsk
+bwp
aaa
aaa
aaa
@@ -71166,51 +73108,51 @@ aaa
aaa
aaa
aaa
+bND
+aht
+aht
aaa
aaa
-aaa
-aaa
-aaa
-aad
-aad
-aad
-aad
-bZY
-bZY
-bZe
-bZj
-caN
-bZj
-bZr
-bZr
-bZr
-bZr
-ccb
-ccs
-ccE
-bZr
-bZr
-cdp
-cax
-cdU
-cen
-ceE
-cax
-ceY
-cen
-aaw
-cax
-cds
-cds
-cds
-cds
-cds
-cds
-cds
-cds
-cds
-cds
-cds
+abI
+abI
+abI
+abI
+bSZ
+bSZ
+bQR
+bNs
+bXN
+bNs
+bOw
+bOw
+bOw
+bOw
+ccM
+cdD
+ceo
+bOw
+bOw
+cfK
+bWV
+cgN
+chs
+chM
+bWV
+cip
+chs
+ciY
+bWV
+cfN
+cfN
+cfN
+cfN
+cfN
+cfN
+cfN
+cfN
+cfN
+cfN
+cfN
aaa
aaa
aaa
@@ -71327,89 +73269,89 @@ aaa
aaa
aaa
aaa
-abZ
+adR
aaa
-act
-act
-act
-ada
-adu
-act
-aef
-aet
-aeE
-aeE
-aeE
-aeE
-afG
-agc
-agC
-ahc
-aeE
-aio
-ajf
-ajR
-aky
-ali
-alR
-agv
-amZ
-amZ
-aor
-amZ
-amZ
-amZ
-arR
-amZ
-amZ
-agv
-awx
-agv
-aws
-agv
+aem
+aem
+aem
+aeT
+afn
+aem
+afZ
+agn
+agy
+agy
+agy
+agy
+ahB
+ahZ
+aiB
+ajc
+agy
+akB
+alq
+alZ
+amL
+anx
+aoj
+aiu
+apC
+apC
+arh
+apC
+apC
+apC
+avp
+apC
+apC
+aiu
+aAa
+aiu
+aCe
+aiu
aaa
aaa
aaa
aaa
-aaa
-aEz
-aFs
-aGp
-aHi
-aIz
-chr
-chy
-chG
-aMT
-aGp
-chy
-chG
-aMT
-aGp
-aRE
-aTs
-aUj
-aVn
-aVm
-aXl
-aTr
-aYY
-aZV
-aZS
-aZS
-aZS
-aYY
-aTr
-ber
-aVm
-aVn
-bhz
-aTr
-bjZ
-blt
-blt
-cjP
-bjZ
+aHA
+aID
+aJE
+aKE
+aLs
+aMM
+aOi
+aPn
+aQu
+aRB
+aJE
+aPn
+aQu
+aVM
+aWE
+aWK
+aYG
+aZA
+baL
+baK
+bcZ
+aZx
+beX
+bfU
+bfR
+bfR
+bfR
+beX
+aZx
+bkR
+baK
+baL
+bon
+aZx
+bqP
+bsk
+bsk
+buZ
+bqP
aaa
aaa
aaa
@@ -71423,51 +73365,51 @@ aaa
aaa
aaa
aaa
+bNC
+aaa
+aht
aaa
aaa
aaa
aaa
+abI
aaa
aaa
-aaa
-aad
-aaa
-aaa
-aad
-aqA
-bZj
-bRv
-bZj
-bZT
-bZr
-bZr
-bZr
-bZr
-bZI
-bZr
-bZr
-bZr
-cdq
-cax
-cax
-ceo
-cax
-cax
-cax
-ceo
-cax
-cax
-cds
-cds
-cds
-cds
-cds
-cds
-cds
-cds
-cds
-cds
-cds
+abI
+bGH
+bNs
+bPm
+bNs
+bSm
+bOw
+bOw
+bOw
+bOw
+bQe
+bOw
+bOw
+bOw
+cfL
+bWV
+bWV
+cht
+bWV
+bWV
+bWV
+cht
+bWV
+bWV
+cfN
+cfN
+cfN
+cfN
+cfN
+cfN
+cfN
+cfN
+cfN
+cfN
+cfN
aaa
aaa
aaa
@@ -71584,89 +73526,89 @@ aaa
aaa
aaa
aaa
-abZ
-aad
-act
-acv
-acJ
-adb
-adb
-adJ
-adb
-adb
-aeE
-aeO
-afd
-aeG
-afH
-agd
-agD
-ahc
-aeE
-aip
-ajg
-ajS
-akz
-ain
-ain
-ain
-anb
-anb
-aos
-anb
-aqj
-anb
-arS
-anb
-ahH
-agv
-agv
-agv
-alM
-agv
+adR
+abI
+aem
+aeo
+aeC
+aeU
+aeU
+afC
+aeU
+aeU
+agy
+agI
+agW
+agA
+ahC
+aia
+aiC
+ajc
+agy
+akC
+alr
+ama
+amM
+akA
+akA
+akA
+apE
+apE
+ari
+apE
+atu
+apE
+avq
+apE
+ajM
+aiu
+aiu
+aiu
+aoe
+aiu
aaa
aaa
aaa
aaa
-aaa
-aEz
-aFt
-aGq
-aHj
-cho
-chs
-chz
-chF
-aMT
-aGp
-chy
-chF
-aMT
-aGp
-aRE
-aTs
-aUj
-aVm
-aWn
-aXm
-aTr
-aYY
-aZS
-baE
-baE
-aZS
-aYY
-aTr
-bes
-aWn
-aVm
-bhz
-aTr
-bjZ
-blv
-blt
-boa
-bjZ
+aHz
+aIE
+aJE
+aKF
+aLt
+aMN
+aOj
+aPo
+aQt
+aRB
+aJE
+aPn
+aQt
+aVM
+aWE
+aWK
+aYG
+aZA
+baK
+bbS
+bda
+aZx
+beX
+bfR
+bgR
+bgR
+bfR
+beX
+aZx
+bkS
+bbS
+baK
+bon
+aZx
+bqP
+bsi
+bsk
+buY
+bqP
aaa
aaa
aaa
@@ -71680,50 +73622,50 @@ aaa
aaa
aaa
aaa
+bND
+aht
+aht
aaa
aaa
aaa
aaa
-aaa
-aaa
-aaa
-aad
-aad
-aad
-aad
-aad
-caB
-bRv
-bZj
-bZj
-bZr
-bZr
-cah
-bZr
-bZr
-bZr
-bZr
-cah
-cdr
-cax
-cdV
-cep
-ceF
-cax
-ceZ
-cep
-aaA
-cax
-cds
-cds
-cds
-cds
-cds
-cds
-cds
-cds
-cds
-cds
+abI
+abI
+abI
+abI
+abI
+bSZ
+bPm
+bNs
+bNs
+bOw
+bOw
+bUC
+bOw
+bOw
+bOw
+bOw
+bUC
+cfM
+bWV
+cgO
+chu
+chN
+bWV
+ciq
+chu
+ciZ
+bWV
+cfN
+cfN
+cfN
+cfN
+cfN
+cfN
+cfN
+cfN
+cfN
+cfN
aaa
aaa
aaa
@@ -71841,89 +73783,89 @@ aaa
aaa
aaa
aaa
-abZ
+adR
aaa
-acu
-acw
-acK
-adb
-adv
-adK
-aeg
-aeg
-aeF
-aeP
-afe
-aft
-afI
-age
-agE
-ahc
-aeE
-aiq
-ajh
-ajT
-akA
-ahH
-alS
-amr
-anc
-anb
-anU
-anb
-aqj
-ahH
-arT
-atd
-atV
-auZ
-awy
-agv
-alM
-agv
+aen
+aep
+aeD
+aeU
+afo
+afD
+aga
+aga
+agz
+agJ
+agX
+ahm
+ahD
+aib
+aiD
+ajc
+agy
+akD
+als
+amb
+amN
+ajM
+aok
+aoO
+apF
+apE
+aqC
+apE
+atu
+ajM
+avr
+awH
+axE
+ayE
+aAb
+aiu
+aoe
+aiu
aaa
aaa
aaa
aaa
-aaa
-aEz
-aEz
-aEz
-aEz
-aEz
-chu
-chA
-chG
-chI
-aPD
-chS
-chG
-chW
-aGp
-chZ
-aTs
-aUk
-aVo
-aTr
-aTr
-aTr
-aYW
-aZW
-baE
-baE
-bbQ
-aYW
-aTr
-aTr
-aTr
-bgE
-bhA
-aTr
-bkb
-blv
-blt
-boa
-bkb
+aHA
+aIF
+aJF
+aKG
+aHA
+aML
+aOk
+aPp
+aQu
+aRC
+aJE
+aTJ
+aQu
+aVN
+aWE
+aXE
+aYG
+aZB
+baM
+aZx
+aZx
+aZx
+beV
+bfV
+bgR
+bgR
+bhZ
+beV
+aZx
+aZx
+aZx
+bno
+boo
+aZx
+bqQ
+bsi
+bsk
+buY
+bqQ
aaa
aaa
aaa
@@ -71937,6 +73879,9 @@ aaa
aaa
aaa
aaa
+bNE
+aaa
+aht
aaa
aaa
aaa
@@ -71944,43 +73889,40 @@ aaa
aaa
aaa
aaa
+abI
aaa
-aaa
-aaa
-aad
-aaa
-aad
-bRv
-cbb
-bZj
-bZj
-bZj
-bZj
-bZj
-bZj
-bZj
-bZj
-bZj
-bZj
-cax
-cax
-cax
-cax
-cax
-cax
-cax
-cax
-cax
-cds
-cds
-cds
-cds
-cds
-cds
-cds
-cds
-cds
-cds
+abI
+bPm
+bYD
+bNs
+bNs
+bNs
+bNs
+bNs
+bNs
+bNs
+bNs
+bNs
+bNs
+bWV
+bWV
+bWV
+bWV
+bWV
+bWV
+bWV
+bWV
+bWV
+cfN
+cfN
+cfN
+cfN
+cfN
+cfN
+cfN
+cfN
+cfN
+cfN
aaa
aaa
aaa
@@ -72098,96 +74040,105 @@ aaa
aaa
aaa
aaa
-abZ
-aad
-act
-acx
-acL
-adb
-adw
-adL
-adb
-adb
+adR
+abI
+aem
+aeq
aeE
-aeQ
-aff
-aeE
-afJ
-agf
-agF
-aeE
-aeE
-air
-aji
-ajU
-akB
-ahH
-alT
-ams
-and
-ahH
-aot
-ahH
-ahH
-ain
-ain
-ain
-ahH
-ava
-awz
-agv
-alM
-agv
-agv
-agv
-agv
-agv
-agv
-agv
-agv
+aeU
+afp
+afE
+aeU
+aeU
+agy
+agK
+agY
+agy
+ahE
+aic
+aiE
+agy
+agy
+akE
+alt
+amc
+amO
+ajM
+aol
+aoP
+apG
+ajM
+arj
+ajM
+ajM
+akA
+akA
+akA
+ajM
+ayF
+aAc
+aiu
+aoe
+aiu
+aiu
+aiu
+aiu
+aiu
+aiu
+aiu
+aiu
+aHz
+aHz
+aML
+aOk
+aPq
+aQt
+aRB
+aJE
+aPn
+aQt
+aVM
+aWE
+aWK
+aYG
+aZA
+baN
+bbQ
+bcX
+bdV
+beW
+bfR
+bfR
+bfR
+bfR
+beW
+bbQ
+bcX
+bdV
+bnp
+bon
+aZx
+bqP
+bqQ
+btK
+bqQ
+bqP
aaa
aaa
-aEz
-chu
-chB
-chH
-chJ
-aNF
-chy
-chF
-aMT
-aGp
-aRE
-aTs
-aUj
-aVp
-aWl
-aXj
-cik
-aYX
-aZS
-aZS
-aZS
-aZS
-aYX
-aWl
-aXj
-cik
-aXs
-bhz
-aTr
-bjZ
-bkb
-bmN
-bkb
-bjZ
+aaa
+bBV
+bDf
+bEi
+bDf
+bGJ
+bHO
+bGJ
+bHO
+bGJ
+bMz
aaa
aaa
-aaY
-abZ
-abZ
-bYq
-abZ
+aht
aaa
aaa
aaa
@@ -72195,46 +74146,37 @@ aaa
aaa
aaa
aaa
+abI
aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aad
-aaa
-aad
-bRv
-bMX
-bZY
-bZY
-bZY
-bZY
-bZY
-bYM
-bYM
-bZY
-bZY
-cds
-cds
-cds
-cds
-cds
-cds
-cds
-cds
-cds
-cds
-cds
-cds
-cds
-cds
-cds
-cds
-cds
+abI
+bPm
+abI
+bSZ
+bSZ
+bSZ
+bSZ
+bSZ
+bSn
+bSn
+bSZ
+bSZ
+cfN
+cfN
+cfN
+cfN
+cfN
+cfN
+cfN
+cfN
+cfN
+cfN
+cfN
+cfN
+cfN
+cfN
+cfN
+cfN
+cfN
aaa
aaa
aaa
@@ -72355,141 +74297,141 @@ aaa
aaa
aaa
aaa
-abZ
+adR
aaa
-acu
-acy
-acM
-adc
-adx
-adM
-aeh
-aeh
-aeG
-aeG
-aeG
-afu
-afK
-agf
-agG
-ahd
-ahE
-ais
-ajj
-ajV
-akC
-alj
-alU
-alU
-ais
-alU
-aou
-apo
-aqk
-arb
-arU
-ate
-atW
-atX
-awA
-agv
-ayy
-aCZ
-aCZ
-aCZ
-aCZ
-aCZ
-aDB
-aEw
-agv
+aen
+aer
+aeF
+aeV
+afq
+afF
+agb
+agb
+agA
+agA
+agA
+ahn
+ahF
+aic
+aiF
+ajd
+ajJ
+akF
+alu
+amd
+amP
+any
+aom
+aom
+akF
+aom
+ark
+asu
+atv
+aux
+avs
+awI
+axF
+axG
+aAd
+aiu
+aCf
+aDm
+aDm
+aDm
+aDm
+aDm
+aHB
+aIG
+ait
aaa
-aaa
-aHf
-chu
-chy
-chG
-aMT
-aQH
-chy
-chG
-aMT
-aGp
-aRE
-aTs
-aUj
-aVp
-aTr
-aXi
-aTr
-aYW
-aZX
-aZX
-aZX
-aZX
-aYW
-aTr
-aTr
-aTr
-aXs
-bhz
-aTr
-aTr
-blw
-bmO
-aTr
+aHA
+aML
+aOk
+aPq
+aQu
+aRB
+aJE
+aPn
+aQu
+aVM
+aWE
+aWK
+aYG
+aZA
+baN
+aZx
+bcW
+aZx
+beV
+bfW
+bfW
+bfW
+bfW
+beV
+aZx
+aZx
+aZx
+bnp
+bon
+aZx
+aZx
+bsl
+btL
+aZx
aaa
aaa
aaa
+bAI
+bBW
+abI
aaa
-aad
-aad
-aad
-aad
+abI
aaa
-boc
-buK
-buK
-boc
-boc
-buK
-buK
-boc
-aad
+bva
+bIZ
+bIZ
+bva
+bva
+bIZ
+bIZ
+bva
+abI
aaa
aaa
aaa
aaa
aaa
aaa
-aad
-aad
-bMX
-bRv
-aad
+abI
+abI
+abI
+bPm
+abI
aaa
aaa
aaa
-aad
-aad
-aad
-aad
-aad
aaa
aaa
-cds
-cds
-cds
-cds
-cds
-cds
-cds
-cds
-cds
-cds
-cds
-cds
-cds
-cds
+aaa
+aaa
+abI
+aaa
+aaa
+cfN
+cfN
+cfN
+cfN
+cfN
+cfN
+cfN
+cfN
+cfN
+cfN
+cfN
+cfN
+cfN
+cfN
aaa
aaa
aaa
@@ -72612,140 +74554,140 @@ aaa
aaa
aaa
aaa
-abZ
-aad
-act
-acz
-acN
-adb
-adv
-adN
-adb
-adb
-aeE
-aeR
-afg
-afv
-afL
-agg
-agH
-ahe
-ahF
-ait
-aow
-ajW
-akD
-alk
-alV
-alV
-ane
-anF
-alV
-app
-aql
-arc
-arV
-atf
-atX
-avb
-awz
-agv
-ayz
-azG
-axB
-axB
-axB
-axB
-aDC
-aEx
-agv
+adR
+abI
+aem
+aes
+aeG
+aeU
+afo
+afG
+aeU
+aeU
+agy
+agL
+agZ
+aho
+ahG
+aid
+aiG
+aje
+ajK
+akG
+alv
+ame
+amQ
+anz
+aon
+aon
+apH
+aqm
+aon
+asv
+atw
+auy
+avt
+awJ
+axG
+ayG
+aAc
+aiu
+aCg
+aDn
+aBd
+aBd
+aBd
+aBd
+aHC
+aIH
+aiu
aaa
-aaa
-aHf
-chu
-chy
-chF
-aMT
-chP
-chy
-chF
-aMT
-aGp
-aRE
-aTs
-aUj
-aVp
-aWm
-aWm
-aTs
-aYW
-aYZ
-cim
-baG
+aHz
+aMO
+aOl
+aPr
+aQt
+aRB
+aSt
+aPn
+aQt
+aVM
+aWE
+aWK
+aYG
+aZA
+baN
bbR
-aYW
-aTs
-aWm
-aWm
-aXs
-aVm
-aWm
-aWm
-aTr
-aXj
-aTr
-aaa
-aaa
-aaa
-aaa
-bNA
-bNA
-bNA
-bNA
-boc
-boc
-bxb
-btF
-bYW
-btF
-bDN
-btF
-boc
-boc
+bbR
+aYG
+beV
+bfX
+bgS
+bhD
+bia
+beV
+aYG
+bbR
+bbR
+bnp
+baK
+bbR
+bbR
+aZx
+bcX
+aZx
+aYG
+aZx
+aYG
+bAJ
+bBX
+bBX
+bBX
+bBX
+bva
+bva
+bJa
+bHQ
+bLt
+bHQ
+bNF
+bHQ
+bva
+bva
aaa
aaa
aaa
aaa
aaa
-bMW
-aad
+bBW
+abI
aaa
-bMX
-bRv
-aad
+abI
+bPm
+abI
+aaa
+bva
+bva
+bIZ
+bIZ
+bIZ
+aaa
+aht
aaa
aaa
-aaa
-aad
-aaa
-aaa
-aad
-aaa
-aaa
-aaa
-aad
-cds
-cds
-cds
-cds
-cds
-cds
-cds
-cds
-cds
-cds
-cds
-cds
+abI
+cfN
+cfN
+cfN
+cfN
+cfN
+cfN
+cfN
+cfN
+cfN
+cfN
+cfN
+cfN
aaa
aaa
aaa
@@ -72869,139 +74811,139 @@ aaa
aaa
aaa
aaa
-abZ
+adR
aaa
-acu
-acA
-acO
-acO
-acO
-adO
-acO
-acO
+aen
+aet
aeH
-aeS
-afh
-afw
-afM
-agh
-agI
-ahf
-ahG
-aiu
-ajl
-ajX
-akE
-all
-alW
-alW
-alW
-anG
-aov
-apq
-aqm
-ard
-arW
-atf
-atX
-avc
-awB
-axA
-ayA
-amn
-axB
-aBz
-aCj
-axB
-ayz
-aEy
-agv
+aeH
+aeH
+afH
+aeH
+aeH
+agB
+agM
+aha
+ahp
+ahH
+aie
+aiH
+ajf
+ajL
+akH
+alw
+amf
+amR
+anA
+aoo
+aoo
+aoo
+aqn
+arl
+asw
+atx
+auz
+avu
+awJ
+axG
+ayH
+aAe
+aBc
+aCh
+aoK
+aBd
+aFk
+aFU
+aBd
+aCg
+aII
+ait
aaa
-aaa
-aEz
-chv
-chC
-aGp
-aGp
-aQH
-aGp
-aGp
-aGp
-aGp
-cia
-aTs
-aUl
-aVp
-aVm
-aVm
-aTs
-aTs
-aTr
-baH
-baH
-aTr
-aTs
-aTs
-aVm
-aVm
-bgF
-aVo
-aVm
-aVm
-blw
-bmP
-aTr
-aTr
-aaa
-aaa
-aaa
-bNA
-bYo
-bYr
-bIA
-boc
-bYA
-bYI
-bYN
-bYN
-bYN
-bYN
-bZv
-bFh
-boc
+aHA
+aMP
+aOm
+aPs
+aQv
+aQv
+aSu
+aJE
+aJE
+aVO
+aWF
+aXF
+aYG
+aZC
+baN
+baK
+baK
+aYG
+aYG
+aZx
+bgT
+bgT
+aZx
+aYG
+aYG
+baK
+baK
+bnq
+baM
+baK
+baK
+bsl
+btM
+aZx
+aYG
+bxY
+bzz
+bAK
+bBX
+bDg
+bEj
+bFF
+bva
+bHP
+bJb
+bJb
+bJb
+bJb
+bJb
+bJb
+bPp
+bva
aaa
aaa
aaa
aaa
aaa
aaa
-bbN
-aad
-bMX
-bRv
-bMX
-aad
-aad
-aad
-aad
+bVq
+abI
+abI
+bPm
+abI
aaa
+bIZ
+caZ
+cbS
+ccN
+bIZ
aaa
-aad
+aht
aaa
-aaa
-aad
-aad
+abI
+abI
aaa
aaa
aaa
-cds
-cds
-cds
-cds
-cds
-cds
-cds
-cds
+cfN
+cfN
+cfN
+cfN
+cfN
+cfN
+cfN
+cfN
aaa
aaa
aaa
@@ -73126,127 +75068,127 @@ aaa
aaa
aaa
aaa
-abZ
-aad
-act
-acB
-acP
-adb
-adb
-adP
-adb
-adb
-aeE
-aeT
-aff
-aeE
-afN
-agi
-agJ
-aeE
-ahH
-aiv
-ajm
-ajY
-ajY
-alm
-akN
-amt
-anf
-anH
-aow
-apr
-aqn
-ahH
-ahH
-aqq
-bUP
-avd
-awC
-axB
-axB
-axB
-axB
-aBA
-aCk
-axB
-ayz
-agv
-agv
-aaa
-aaa
-aHf
-aJP
-aKO
-aGp
-aGp
-aQH
-aGp
-aGp
-aGp
-aRC
-bVP
-aTs
-bWb
-aVq
-aWo
-aWo
-aWo
-aZa
-aWo
-aWo
-aWo
-aWo
-aWo
-aWo
-aWo
-aWo
-aXr
-bhB
-aVm
-aVm
-aVm
-aVm
-aVm
-aTr
-aaa
-aaa
-aaa
-bNA
-bYo
-bYs
-boc
-boc
-btF
-bzO
-bAT
-bBT
-bBT
-bDO
-bZw
-btF
-buK
+adR
+abI
+aem
+aeu
+aeI
+aeU
+aeU
+afI
+aeU
+aeU
+agy
+agN
+agY
+agy
+ahI
+aif
+aiI
+agy
+ajM
+akI
+alx
+amg
+amg
+anB
+ana
+aoQ
+apI
+aqo
+alv
+asx
+aty
+ajM
+ajM
+atB
+axH
+ayI
+aAf
+aBd
+aBd
+aBd
+aBd
+aFl
+aFV
+aBd
+aCg
+aiu
+aiu
+aht
+aHz
+aHz
+aOn
+aPt
+aJE
+aJE
+aJE
+aJE
+aJE
+aVO
+aWG
+aXG
+aYG
+aZD
+baO
+bbT
+bbT
+bbT
+beY
+bbT
+bbT
+bbT
+bbT
+bbT
+bbT
+bbT
+bbT
+bnr
+bop
+bbT
+bbT
+bbT
+bbT
+bbT
+bwq
+bxZ
+bzA
+bAK
+bBX
+bDg
+bEk
+bva
+bva
+bHQ
+bJc
+bKh
+bLu
+bLu
+bNG
+bOz
+bHQ
+bIZ
aaa
aaa
aaa
aaa
aaa
-cai
-can
+bUD
+bVr
aaa
-bMX
-bRv
-bMX
+abI
+bPm
+abI
aaa
+bIZ
+cba
+cbT
+bDi
+bIZ
aaa
-aaa
-aad
-aad
-aad
-aad
-aad
-aad
-aad
+abI
+abI
+abI
aaa
aaa
aaa
@@ -73383,125 +75325,125 @@ aaa
aaa
aaa
aaa
-abZ
+adR
aaa
-act
-act
-act
-add
-ady
-act
-aei
-aeu
-aeE
-aeE
-aeE
-aeE
-afO
-agj
-agK
-aeE
-ahI
-aiw
-ajn
-ajY
-akF
-aln
-alX
-amu
-ang
-anI
-alV
-aps
-aqo
-arb
-arX
-ath
-atX
-atX
-atX
-axB
-ayB
-azH
-axB
-axB
-aCl
-axB
-ayz
-agv
+aem
+aem
+aem
+aeW
+afr
+aem
+agc
+ago
+agy
+agy
+agy
+agy
+ahJ
+aig
+aiJ
+agy
+ajN
+akJ
+aly
+amg
+amS
+anC
+aop
+aoR
+apJ
+aqp
+aon
+asy
+atz
+aux
+avv
+awK
+axG
+axG
+axG
+aBd
+aCi
+aDo
+aBd
+aBd
+aFW
+aBd
+aCg
+aiu
aaa
aaa
aaa
-aHf
-aJP
-aKO
-aGp
-chK
-aND
-chT
-aGp
-aGp
-aRB
-bVP
-aTs
-aUm
-aVr
-aWp
-aXn
-aYc
-aZb
-aZY
-aZY
-bbu
-bXk
-bcu
-aZY
-aZY
-aZY
-bgG
-aZY
-aZY
-bkc
-blx
-bmQ
-bob
-aTr
-aad
-aad
+aHA
+aOn
+aPt
+aJE
+aRD
+aSv
+aTK
+aJE
+aVO
+aWH
+aXG
+aYG
+aZE
+baP
+bbU
+bdb
+bdW
+beZ
+bfY
+bfY
+bhE
+bfY
+biI
+bfY
+bkT
+bfY
+bns
+bfY
+bfY
+bqS
+bsm
+btN
+bfY
+bwr
+bya
+bzB
+bAL
+bBX
+bDh
+bEl
+bva
+bGK
+bHQ
+bJd
+bKi
+bLv
+bMA
+bNH
+bOz
+bHQ
+bIZ
+bBW
+bBW
+bBW
+bTa
+bTW
+bUE
+bva
+abI
+bva
+bXO
+bva
aaa
-bNA
-bYp
-bYt
-boc
-byc
-btF
-bzP
-bAU
-bBU
-bDa
-bDP
-bZw
-btF
-buK
-bMW
-bMW
-bMW
-bZZ
-cad
-caj
-bbN
-aad
-boc
-caO
-boc
+bIZ
+cbb
+bDi
+ccO
+bIZ
aaa
-aaa
-aaa
-aaa
-aad
-aaa
-aaa
-aad
+abI
aaa
aaa
aaa
@@ -73640,125 +75582,125 @@ aaa
aaa
aaa
aaa
-abZ
+adR
aaa
-aad
+abI
aaa
-act
-ade
-adz
-act
-aej
-aev
-aeI
-aeU
-afi
-aeE
-afP
-agk
-agL
-aeE
-ahJ
-aix
-ajo
-ajY
-akG
-alo
+aem
+aeX
+afs
+aem
+agd
+agp
+agC
+agO
+ahb
+agy
+ahK
+aih
+aiK
+agy
+ajO
akK
-amv
-ang
-anJ
-alV
-app
-aqp
-are
-arY
-atf
-atX
-atX
-atX
-axB
-ayC
-azI
-aAE
-aBB
-aBC
-axB
-ayz
-agu
+alz
+amg
+amT
+anD
+amX
+aoS
+apJ
+aqq
+aon
+asv
+atA
+auA
+avw
+awJ
+axG
+axG
+axG
+aBd
+aCj
+aDp
+aEm
+aFm
+aFn
+aBd
+aCg
+ait
aaa
aaa
aaa
-aEz
-chw
-aKO
-aGp
-chL
-chQ
-chU
-aGp
-aGp
-chX
-bVQ
-bVQ
-bVQ
-bVQ
-bVQ
-aYd
-bWD
-aZc
-aZZ
-baa
-aZZ
-aZZ
-bcv
-aZZ
-beu
-beu
-beu
-bhD
-beu
-beu
-beu
-bmR
-boc
-boc
-boc
-buK
-buK
-boc
-boc
-bYu
-boc
-byd
-btF
-bzQ
-bAV
-bBV
-bZf
-bDQ
-bZw
-btF
-buK
-bMX
-bMX
-bMW
-caa
-bMX
-boc
-boc
-boc
-boc
-caP
-buK
-aad
-aad
-aad
-aad
-aad
+aHz
+aOo
+aPt
+aJE
+aRE
+aSw
+aTL
+aJE
+aVO
+aWI
+aXH
+aXH
+aXH
+aXH
+aXH
+bdc
+bdX
+bfa
+bfZ
+bga
+bfZ
+bfZ
+biJ
+bfZ
+aYG
+bmc
+bnt
+bnt
+bpt
+aYG
+aYG
+btO
+aYG
+aYG
+aYG
+aYG
+aYG
+bBX
+bva
+bEm
+bva
+bGL
+bHQ
+bJe
+bKj
+bLw
+bMB
+bNI
+bOz
+bHQ
+bIZ
+abI
+abI
+bBW
+bTb
+abI
+bva
+bva
+bva
+bva
+bXP
+bIZ
aaa
+bva
+bva
+bNK
+bva
+bva
aaa
-aad
+aht
aaa
aaa
aaa
@@ -73898,124 +75840,124 @@ aaa
aaa
aaa
aaa
-acl
-abZ
-aad
-act
-act
-act
-act
-act
-act
-act
-act
-act
-act
-afQ
-afQ
-afQ
-afQ
-afQ
-afQ
-afQ
-ajY
-akH
-alp
-akK
-amw
-anh
-anK
-aov
-apq
-aqm
-ard
-arZ
-atf
-atX
-ave
-awE
-axC
-ayD
-azJ
-aAF
-aBC
-aCm
-axB
-ayz
-agu
+aed
+adR
+abI
+aem
+aem
+aem
+aem
+aem
+aem
+aem
+aem
+aem
+aem
+ahL
+ahL
+ahL
+ahL
+ahL
+ahL
+ahL
+amg
+amU
+anE
+amX
+aoT
+apK
+aqr
+arl
+asw
+atx
+auz
+avx
+awJ
+axG
+ayJ
+aAg
+aBe
+aCk
+aDq
+aEn
+aFn
+aFX
+aBd
+aCg
+ait
aaa
aaa
aaa
-aHf
-aJP
-aKO
-aGp
-chM
-aNE
-chV
-aGp
-aGp
-aRD
-bVQ
-aTv
-aUn
-aVs
-bVQ
-aXp
-aYe
-aZd
-aZZ
-baI
-bbv
-bbS
-bcw
-aZZ
-beu
-bfD
-bfD
-bfD
-bfD
-bfD
-beu
-bXX
-bXZ
-bvM
-bqz
-brN
-brN
-buL
-btF
-bxd
-boc
-bye
-bYB
-bzR
-bAW
-bBW
-bBW
-bDR
-bZw
-btF
-buK
-bMX
-buK
-buK
-bHN
-buK
-boc
-bJK
-bKD
-boc
-caQ
-boc
-boc
-aad
+aHz
+aOn
+aPt
+aJE
+aRF
+aSx
+aTM
+aJE
+aVO
+aWJ
+aXH
+aYH
+aZF
+baQ
+aXH
+bdd
+bdY
+bfb
+bfZ
+bgU
+bhF
+bib
+biK
+bfZ
+bfZ
+aYG
+aYG
+aYG
+aYG
+aYG
+bsn
+btP
+bva
+bws
+byb
+bzC
+bzC
+bBY
+bDi
+bEn
+bva
+bGM
+bHR
+bJf
+bKk
+bLx
+bLx
+bNJ
+bOz
+bHQ
+bIZ
+abI
+bIZ
+bIZ
+bTc
+bIZ
+bva
+bVs
+bVC
+bva
+bXQ
+bva
+abI
aaa
-boc
-boc
-buK
-buK
-buK
+bIZ
+bNX
+bIZ
+aaa
+aaa
+aht
aaa
aaa
aaa
@@ -74165,114 +76107,114 @@ aaa
aaa
aaa
aaa
-aac
-aad
-aad
-afQ
-agl
-agM
-ahg
-ahK
-aiy
-ajp
-ajZ
-akI
-alq
-akJ
-amx
-ani
-anL
-alV
-apt
-aqq
-ahH
-ahH
-aqq
-atY
-avf
-awF
-axD
-ayE
-azK
-aAG
-aBD
-aCn
-axB
-ayz
-agv
+aby
+abI
+abI
+ahL
+aii
+aiL
+ajg
+ajP
+akL
+alA
+amh
+amV
+anF
+amW
+aoU
+apL
+aqs
+aon
+asz
+atB
+ajM
+ajM
+atB
+axI
+ayK
+aAh
+aBf
+aCl
+aDr
+aEo
+aFo
+aFY
+aBd
+aCg
+aiu
aaa
aaa
aaa
-aHf
-aJQ
-aKN
-aLN
-aLN
-aNF
-aGp
-aGp
-aGp
-aRC
-aSA
-aTw
-aUo
-aVt
-aSA
-aXq
-aVm
-aVp
-baa
-baJ
-bbw
-bbw
-bcx
-bdk
-beu
-bfD
-bgI
-bhF
-biH
-bfD
-beu
-bmT
-btF
-bpo
-bpn
-brO
-bpn
-btF
-buM
-bxd
-boc
-boc
-bod
-bzS
-bAX
-bYX
-bDb
-bYX
-bZx
-bFi
-boc
-boc
-buK
-bZU
-bHO
-bIx
-boc
-bJL
-boc
-boc
-btF
-cbc
-boc
-aaa
-aaa
-buK
-bPh
-bEA
-bPT
-buK
+aHA
+aOn
+aPt
+aJE
+aJE
+aJE
+aJE
+aJE
+aVO
+aWG
+aXI
+aYI
+aZG
+baR
+aXI
+bde
+baK
+baN
+bga
+bgV
+bhG
+bhG
+biL
+bjI
+bgd
+bmd
+bnu
+boq
+bpu
+boq
+boq
+btQ
+bvb
+bwt
+byc
+bzD
+bAM
+bvb
+bDj
+bEo
+bva
+bva
+bHQ
+bJg
+bKl
+bJb
+bMC
+bJb
+bJb
+bPq
+bva
+bva
+bIZ
+bSo
+bSq
+bTX
+bUF
+bNK
+bva
+bva
+bXR
+bva
+bva
+bva
+bva
+bDi
+bva
+bIZ
+bIZ
+aht
aaa
aaa
aaa
@@ -74385,7 +76327,7 @@ aaa
aaa
aaa
aaa
-aar
+aaT
aaa
aaa
aaa
@@ -74422,114 +76364,114 @@ aaa
aaa
aaa
aaa
-aac
-aad
-aad
-afQ
-agm
-agN
-agN
+aby
+abI
+abI
ahL
-aiz
-aiz
-aka
-akJ
-alr
-akK
-amy
-ang
-anM
-aox
-aps
-aqo
-arb
-asa
-ath
-atX
-avg
-awG
-axC
-ayF
-azL
-aAH
-aBC
-aBC
-axB
-aDC
-agv
-agv
-agv
-agv
-aEz
-aJR
-chD
-aLM
-aGp
-chR
-aGp
-aGp
-aGp
-aRE
-aSB
-aTw
-aUp
-aVu
-aWq
-aWo
-aYf
-aZe
-bab
-baK
-bbx
+aij
+aiM
+aiM
+ajQ
+akM
+akM
+ami
+amW
+anG
+amX
+aoV
+apJ
+aqt
+arm
+asy
+atz
+aux
+avy
+awK
+axG
+ayL
+aAi
+aBe
+aCm
+aDs
+aEp
+aFn
+aFn
+aBd
+aHC
+aiu
+aiu
+aiu
+aiu
+aHz
+aOp
+aPt
+aQw
+aJE
+aJE
+aJE
+aUG
+aVP
+aWK
+aXJ
+aYI
+aZH
+baS
+bbV
bbT
-bcy
-bdl
-beu
-bfD
-bgJ
-bhG
-biI
-bfD
-beu
-bmU
-bof
-byf
-byf
-brP
-byf
-bof
-byf
-bYv
-bxb
-boc
-byT
-bzT
-bAY
-btF
-bZg
-bAY
-bEB
-bFj
-boc
-bZO
-btF
-bHM
-bHP
-bIy
-boc
-bPk
-bod
-bPk
-caR
-buN
-buK
-aaa
-aaa
-buK
-bPi
-bPz
-btF
-buK
+bdZ
+bfc
+bgb
+bgW
+bhH
+bic
+biM
+bjJ
+bgd
+bme
+bnv
+bnv
+bnv
+bnv
+bnv
+bnv
+bnv
+bnv
+bnv
+bnv
+bnv
+bnv
+bDi
+bmf
+bsn
+bva
+bHS
+bJh
+bKm
+bHQ
+bMD
+bKm
+bOA
+bPr
+bva
+bQS
+bDi
+bSp
+bTd
+bPC
+bDi
+bDi
+bDi
+bWZ
+bDi
+bDi
+bZr
+caa
+bSw
+bDi
+bDi
+cdE
+bIZ
+aht
aaa
aaa
aaa
@@ -74556,7 +76498,7 @@ aaa
aaa
aaa
aaa
-bJJ
+clt
aaa
aaa
aaa
@@ -74679,118 +76621,118 @@ aaa
aaa
aaa
aaa
-aac
-aad
-aad
-afQ
-agn
-agN
-ahh
-ahM
-aiA
-agN
-akb
-akK
-als
-alY
-cfC
-anj
-anN
-cfD
-apu
-aqr
-are
-asb
-atf
-atX
-avg
-awG
-axB
-ayG
-azM
-aAI
-aBE
-aCo
-aDa
-aDF
-aEA
-aEA
-aEA
-aEA
-aIA
-aJS
-aKP
-aLO
-aMS
-aMS
-aMS
-aPE
-aGp
-aRE
-aSA
-aTx
-aUq
-aVv
-aSA
-aVm
-aYg
-aZf
-bac
-baL
-bbw
-bXl
-baJ
-bdm
-beu
-bfD
-bfD
-bhH
-bfD
-bfD
-beu
-bmS
-bog
-boi
-boi
-boi
-boi
-boi
-buN
-bmS
-btF
-boc
-boc
-boc
-boc
-bBX
-bBX
-boc
-boc
-boc
-boc
-bHX
-btF
-bZV
-btF
-caf
-cak
-cao
-boc
-caf
-btF
-bKD
-buK
-aaa
-aaa
-buK
-bPj
-btF
-bPU
-buK
-aaa
-aaa
-aaa
-aaa
+aby
+abI
+abI
+ahL
+aik
+aiM
+ajh
+ajR
+akN
+aiM
+amj
+amX
+anH
+aoq
+aoW
+apM
+aqu
+arn
+asA
+atC
+auA
+avz
+awJ
+axG
+ayL
+aAi
+aBd
+aCn
+aDt
+aEq
+aFp
+aFZ
+aGT
+aHD
+aIJ
+aIJ
+aIJ
+aIJ
+aMQ
+aOq
+aPu
+aQx
+aRG
+aRG
+aRG
+aUH
+aVO
+aWK
+aXI
+aYJ
+aZI
+baT
+aXI
+baK
+bea
+bfd
+bgc
+bgX
+bhG
+bid
+bgV
+bjK
+bgd
+bmf
+bnv
+bor
+bpv
+bqT
+bso
+btR
+bnv
+bnv
+byd
+bzE
+bAN
+bnv
+bDi
+bEp
+bsn
+bva
+bva
+bva
+bva
+bLy
+bLy
+bva
+bva
+bva
+bva
+bQT
+bDi
+bSq
+bDi
+bTY
+bTY
+bva
+bva
+bDi
+bva
+bva
+bva
+bva
+bva
+bva
+bva
+bva
+bva
+bIZ
+bIZ
+bIZ
+bva
+bva
aaa
aaa
aaa
@@ -74936,118 +76878,118 @@ aaa
aaa
aaa
aaa
-aac
-aad
-aad
-afQ
-ago
-agO
-ahi
-ahN
-aiB
-aiB
-akc
-akL
-alt
-alZ
-amz
-ang
-anM
-cfE
-apq
-aqs
-ard
-asc
-atf
-atX
-avg
-awG
-axB
-ayH
-ayD
-aAJ
-aBF
-aCp
-axB
-ayx
-aEB
-agv
-agv
-agv
-aEz
-aJT
-aKO
-aLP
-aMT
-aNG
-aOO
-aPF
-aGp
-aRF
-aSz
-aTy
-aUr
-aVw
-aSz
-aYh
-aYh
-aZg
-bWQ
-baM
-bbz
-bbU
-bXu
-bWQ
-beu
-beu
-beu
-beu
-beu
-beu
-beu
-bmS
-boh
-boi
-bqA
-brQ
-bsH
-boi
-buO
-bmS
-btF
-boc
-boe
-bzU
-boc
-bBY
-bBY
-boc
-bzU
-boe
-bGB
-bog
-btF
-bZV
-boc
-boc
-boc
-boc
-boc
-btF
-btF
-boc
-boc
-boc
-aad
-boc
-boc
-bDS
-boc
-boc
-aaa
-aaa
-aaa
-aaa
+aby
+abI
+abI
+ahL
+ail
+aiN
+aji
+ajS
+akO
+akO
+amk
+amY
+anI
+aor
+aoX
+apJ
+aqt
+aro
+asw
+atD
+auz
+avA
+awJ
+axG
+ayL
+aAi
+aBd
+aCo
+aCk
+aEr
+aFq
+aGa
+aBd
+aCc
+aIK
+aiu
+aiu
+aiu
+aHz
+aOr
+aJE
+aQy
+aRB
+aSy
+aTN
+aUI
+aVO
+aWL
+aXK
+aYK
+aZJ
+baU
+aXK
+bdf
+bdf
+bfe
+bgd
+bgY
+bhI
+bie
+biN
+bgd
+bgd
+bmf
+bnv
+bos
+bpw
+bqU
+bsp
+btS
+btS
+bwu
+btS
+bwu
+bAO
+bnv
+bDk
+bmf
+bva
+bva
+bHT
+bJi
+bva
+bsn
+bME
+bva
+bJi
+bHT
+bQj
+bPA
+bDi
+bSq
+bva
+bTl
+bva
+bva
+bWj
+bWZ
+bXS
+bva
+bZs
+cab
+cab
+cab
+cab
+cab
+cab
+cab
+cab
+cab
+cgo
+bva
aaa
aaa
aaa
@@ -75193,118 +77135,118 @@ aaa
aaa
aaa
aaa
-aac
-aad
-aad
-afQ
-agp
-agP
-ahj
-ahO
-aiC
-ajp
-akb
-akM
-alu
-akK
-amA
-ank
-anI
-aoz
-apv
-aqq
-ahH
-ahH
-aqq
-atX
-avg
-awG
-axB
-axB
-axB
-axB
-axB
-axB
-axB
-agv
-agv
-agv
-bcB
-aGr
-aEz
-aEz
-aKQ
-aLQ
-aMU
-aMU
-aMU
-aPG
-aQI
-aEz
-aSz
-aSA
-aUs
-aSA
-aSz
-aDc
-aDc
-aZh
-bWQ
-baa
-bWQ
-bWQ
-baa
-bWQ
-bev
-bfI
-bgL
-bgL
-biK
-bgL
-bgL
-bmV
-boi
-boi
-bqB
-brR
-bsI
-boi
-boi
-bvO
-bxc
-byf
-byf
-byf
-byf
-byf
-byf
-byf
-byf
-bFk
-boc
-boc
-btF
-bZV
-boc
-cag
-cal
-cap
-boc
-boc
-btF
-bMU
-bNy
-boc
-aad
-aad
-buK
-btF
-buK
-aad
-aaa
-aaa
-aaa
-aaa
+aby
+abI
+abI
+ahL
+aim
+aiO
+ajj
+ajT
+akP
+alA
+amj
+amZ
+anJ
+amX
+aoY
+apN
+aqp
+arp
+asB
+atB
+ajM
+ajM
+atB
+axJ
+ayL
+aAi
+aBd
+aBd
+aBd
+aBd
+aBd
+aBd
+aBd
+aiu
+aiu
+aiu
+aKH
+aLu
+aHz
+aOs
+aPv
+aQz
+aRH
+aRH
+aRH
+aUJ
+aVQ
+aOs
+aXK
+aXI
+aZK
+aXI
+aXK
+aGV
+aGV
+bff
+bgd
+bga
+bgd
+bgd
+bga
+bgd
+bkW
+bmf
+bnv
+bot
+bpx
+bqV
+bsq
+btT
+bnv
+bnv
+bye
+bzF
+bAP
+bnv
+bnv
+bEq
+bFG
+bGN
+bGN
+bGN
+bGN
+bGN
+bGN
+bGN
+bGN
+bPs
+bva
+bva
+bDi
+bSq
+bsn
+bva
+bva
+bVt
+bWk
+bXa
+bXT
+bIZ
+bZt
+cac
+cac
+cac
+cac
+cac
+cac
+cac
+cac
+cac
+cgp
+bIZ
aaa
aaa
aaa
@@ -75448,120 +77390,120 @@ aaa
aaa
aaa
aaa
-aac
-aad
-aeW
-aeX
-aeX
-afQ
-afQ
-afQ
-afQ
-afQ
-afQ
-afQ
-akd
-akN
-alv
-ama
-amB
-anl
-anO
-cfE
-apq
-aqt
-arf
-asd
-ati
-atZ
-avh
-awH
-bUW
-ayI
-azN
-axE
-aBG
-aCq
-aDb
-aDG
-aye
-aye
-aye
-aye
-aIB
-aye
-azs
-aLR
-aye
-aye
-aye
-aPH
-aye
-aye
-aDb
-aye
-aUt
-aye
-aye
-aye
-aye
-aZi
-aye
-aye
-bbA
-bbV
-bcz
-bdn
-bdn
-bfJ
-bdn
-bdn
-bdn
-bdn
-bdn
-bdn
-boi
-bpp
-bqC
-brS
-bsJ
-btG
-boi
-btF
-bxd
-btF
-btF
-bzV
-btF
-btF
-btF
-bDS
-bEC
-bZD
-bFO
-bFO
-bFO
-bZW
-btF
-btF
-btF
-caq
-bLl
-btF
-btF
-btF
-bFh
-boc
-aad
-aad
-buK
-bxb
-buK
-aad
-aaa
-aaa
-aaa
-aaa
+aby
+abI
+agP
+agQ
+agQ
+ahL
+ahL
+ahL
+ahL
+ahL
+ahL
+ahL
+aml
+ana
+anK
+aos
+aoZ
+apO
+aqv
+aro
+asw
+atE
+auB
+avB
+awL
+axK
+ayM
+aAj
+aBg
+aCp
+aDu
+aEs
+aFr
+aGb
+aGU
+aHE
+aAL
+aAL
+aAL
+aAL
+aMR
+aAL
+aAL
+aQA
+aAL
+aAL
+aTO
+aUK
+aCZ
+aAL
+aGU
+aAL
+aZL
+aAL
+aAL
+aAL
+aAL
+bfg
+aAL
+aAL
+bhJ
+bif
+biO
+bjL
+bjL
+bmg
+bnv
+bou
+bnv
+bou
+bnv
+bou
+bvc
+bwv
+byf
+bzG
+bAQ
+bBZ
+bvc
+bDi
+bEn
+bDi
+bDi
+bJj
+bDi
+bDi
+bDi
+bNK
+bOB
+bPt
+boq
+bQU
+bRD
+bSr
+bTe
+bTZ
+bRD
+bRD
+bWl
+bDi
+bSw
+bYF
+bZt
+cac
+cac
+cac
+cac
+cac
+cac
+cac
+cac
+cac
+cgp
+bIZ
aaa
aaa
aaa
@@ -75705,120 +77647,120 @@ aaa
aaa
aaa
aaa
-aac
+aby
aaa
-aeW
-afj
-afx
-afR
-agq
-agQ
-ahk
-ahP
-aiD
-bUC
-ake
-ajq
-alw
-amb
-amC
-aeW
-anP
-aoz
-apw
-aqu
-aow
-aow
-atj
-atX
-avi
-awI
-atX
-ayJ
-atX
-atX
-atX
-aCr
-aDc
-aDH
-aEC
-aAs
-aAs
-aAs
-aIC
-aAs
-aAs
-aLS
-aLm
-aLm
-aLm
-aPI
-aAt
-aAt
-aDp
-aAt
-aUu
-aVx
-aAt
-aAt
-aAt
-aZj
-aAt
-baN
-bbB
+agP
+ahc
+ahq
+ahM
+ain
+aiP
+ajk
+ajU
+akQ
+alB
+amm
+anb
+anL
+aot
+apa
+agP
+aqw
+arp
+asC
+atF
+alv
+alv
+awM
+axG
+ayN
+aAk
+axG
+aCq
+axG
+axG
+axG
+aGc
+aGV
+aHF
+aIL
+aDZ
+aDZ
+aDZ
+aMS
+aDZ
+aDZ
+aQB
+aPR
+aPR
+aPR
+aUL
aEa
-bcA
-bdo
-bew
-bfK
-bdn
-bhI
-biL
-bkg
-bly
-bmW
-bgM
-bpq
-bqD
-biM
-bsK
-btH
-boi
-bvP
-bxe
-bvP
-bvP
-bvP
-bvP
-bvP
-bvP
-bvP
-bvP
-bFo
-bFP
-boc
-boc
-bHQ
-boc
-boc
-bJN
-bKE
-bLm
-boc
-bxb
-btF
-btF
-boc
-boc
-boc
-boc
-btF
-boc
-boc
-buK
-buK
-aaa
-aaa
+aEa
+aHm
+aEa
+aZM
+baV
+aEa
+aEa
+aEa
+bfh
+aEa
+bgZ
+bhK
+aIe
+biP
+bjM
+bkX
+bmh
+bjL
+bov
+bpy
+bqW
+bsr
+btU
+bou
+bww
+byg
+bzH
+bAR
+bCa
+bvc
+bEr
+bFH
+bEr
+bEr
+bEr
+bEr
+bEr
+bEr
+bEr
+bEr
+bPu
+bva
+bOG
+bva
+bva
+bTf
+bva
+bva
+bVu
+bNX
+bDi
+bDi
+bIZ
+bZt
+cac
+cac
+cac
+cac
+cac
+cac
+cac
+cac
+cac
+cgp
+bIZ
aaa
aaa
aaa
@@ -75962,120 +77904,120 @@ aaa
aaa
aaa
aaa
-aac
-aaa
-aeX
-afk
-afx
-afS
-bUr
-aeW
-ahl
-ahQ
-ahQ
-ajr
-akf
-ajr
-ajt
-amc
-amE
-aeW
-bUJ
-aoy
-apx
-aqv
-arg
-arg
-atk
-aua
-avj
-awJ
-axF
-axF
-bUZ
-axF
-axF
-aCs
-aDd
-aDI
-aED
-aFu
-aGt
-aHk
-aID
-aGt
-bVF
-aLT
-aGt
-aGt
-aOP
-aPJ
-aQK
-aGt
-aSD
-aTz
-aUv
-bWi
-aGt
-aGt
-aTz
-aGt
-bad
-baO
-bbC
-aDJ
-bXv
-bdn
-bex
-bfL
-bgM
-bhJ
-bXQ
-bXQ
-blz
-bmX
-bgM
-bpr
-bqE
-brT
-blC
-btI
-boi
-boi
-bxf
-byg
-byU
-bzW
-bAZ
-bBZ
-bDc
-bDT
-bxk
-bFm
-bFQ
-boc
-bHe
-bHR
-bIz
-boc
-boc
-boc
-boc
-boc
-bGB
-boc
-btF
-boe
-bOq
-bOO
-bpo
-bod
-btF
-bIE
-bQA
-buK
-aaa
+aby
aaa
+agQ
+ahd
+ahq
+ahN
+aio
+agP
+ajl
+ajV
+ajV
+alC
+amn
+alC
+alE
+aou
+apb
+agP
+aqx
+arq
+asD
+atG
+auC
+auC
+awN
+axL
+ayO
+aAl
+aBh
+aBh
+aDv
+aBh
+aBh
+aGd
+aGW
+aHG
+aIM
+aJG
+aKI
+aLv
+aMT
+aKI
+aPw
+aQC
+aKI
+aKI
+aTP
+aUM
+aVR
+aKI
+aXL
+aYL
+aZN
+baW
+aKI
+aKI
+beb
+aKI
+bge
+bha
+bhL
+aHN
+biQ
+bjN
+bkY
+bmi
+bjN
+bow
+bpz
+bpz
+bss
+btV
+bou
+bwx
+byh
+bzI
+bAS
+bCb
+bvc
+bvc
+bFI
+bGO
+bHU
+bJk
+bKn
+bLz
+bMF
+bNL
+bOC
+bPv
+bIZ
+bOG
+bva
+bSs
+bTg
+bUa
+bva
+bVv
+bSw
+bDi
+bXU
+bva
+bZt
+cac
+cac
+cac
+cac
+cdF
+cac
+cac
+cac
+cac
+cgp
+bva
aaa
aaa
aaa
@@ -76219,120 +78161,120 @@ aaa
aaa
aaa
aaa
-aac
+aby
aaa
-aeX
-afk
-afx
-afx
-afk
-aeW
-ahm
-ahR
-ahQ
-ajs
-akg
-akP
-alx
-amc
-amE
-aeX
-anI
-aoz
-apy
-ahH
-arh
-ase
-ahH
-atX
-atX
-awK
+agQ
+ahd
+ahq
+ahq
+ahd
+agP
+ajm
+ajW
+ajV
+alD
+amo
+anc
+anM
+aou
+apb
+agQ
+aqp
+arp
+asE
+ajM
+auD
+avC
+ajM
+axJ
axG
-axG
-axG
-axG
-axG
-axG
-axG
-bVn
-aAs
-aFv
-aGu
-aHl
-aIE
-aGv
-aGu
-aLU
-aMV
-aCI
-aGE
-aPK
-aQL
-aQL
-aSE
-aQL
-aQL
-aSE
-bWn
-bWn
-aQL
-aQL
-bWR
-baP
-aAs
-bbX
-axm
-bdn
-bey
-bfM
-bgN
-bhK
-biN
-bkh
-blA
-bmY
-boj
-bps
-bqF
-brU
-bsL
-btJ
-buP
-boi
-bxg
-byh
-byV
-bzX
-bBa
-bCa
-bDd
-bDU
-bvP
-bFn
-bFR
-bGC
-bHf
-bHS
-bIA
-boc
-bJO
-bKF
-boc
-btF
-btF
-bMV
-btF
-btF
-btF
-btF
-bod
-bPk
-bod
-bQf
-bQB
-buK
-aaa
-aaa
+aAm
+aBi
+aBi
+aBi
+aBi
+aBi
+aBi
+aBi
+aHH
+aDZ
+aJH
+aKJ
+aLw
+aMU
+aKK
+aKJ
+aQD
+aRI
+aGz
+aKT
+aUN
+aVS
+aVS
+aXM
+aVS
+aVS
+aXM
+bbW
+bbW
+aVS
+aVS
+bgf
+bhb
+aDZ
+aHN
+biR
+bjL
+bkZ
+bmj
+bnw
+box
+bpA
+bqX
+bst
+btW
+bvd
+bwy
+byi
+bzJ
+bAT
+bCc
+bDl
+bvc
+bFJ
+bGP
+bHV
+bJl
+bKo
+bLA
+bMG
+bNM
+bOD
+bPw
+bQk
+bQV
+bRE
+bSt
+bTh
+bFF
+bva
+bVw
+bDi
+bDi
+bXV
+bIZ
+bZu
+cac
+cac
+cac
+ccP
+cdG
+cep
+cac
+cac
+cac
+cgp
+bva
aaa
aaa
aaa
@@ -76474,122 +78416,122 @@ aaa
aaa
aaa
aaa
+afJ
aaa
+aby
aaa
-aac
-aaa
-aeX
-afk
-afx
-afx
-afk
-aeW
-ahn
-ahR
-ahQ
-ajt
-akh
-bUF
-bUF
-amd
-amF
-anm
-anQ
-aoA
-apw
-ahH
-ari
-asf
-atl
-atX
-atX
-awK
+agQ
+ahd
+ahq
+ahq
+ahd
+agP
+ajn
+ajW
+ajV
+alE
+amp
+and
+and
+aov
+apc
+apP
+aqy
+arr
+asC
+ajM
+auE
+avD
+awO
axG
-ayK
-azO
+axG
+aAm
+aBi
+aCr
+aDw
+aEt
+aFs
+aGe
+aGX
+aHH
+aDZ
+aJI
+aKK
+aLx
+aMV
+aOt
+aKJ
+aKT
+aKT
+aKT
+aKT
+aUO
+aVS
+aWM
+aXN
+aVS
+aZO
+baX
+bbX
+bdg
+bec
+bfi
+bgg
+bhc
aAL
-aBH
-aCt
-aDe
-bVn
-aAs
-aFw
-aGv
-aHm
-aIF
-aJU
-aGu
-aGE
-aGE
-aGE
-aGE
-aPL
-aQL
-aRG
-aSF
-aQL
-aUw
-aVy
-aWr
-aXv
-aYj
-aZk
-bae
-baQ
-aye
-aDN
-bXw
-bdn
-bez
-bfN
-bgM
-bhL
-biO
-bki
-blB
-bmZ
-bok
-bpt
-bqG
-brV
-bsM
-btK
-buQ
-boi
-bxh
-byi
-byW
-bzY
-bAZ
-bAZ
-bAZ
-bAZ
-bvP
-bFo
-boc
-boc
-boc
-boc
-boc
-boc
-bJP
-car
-boc
-btF
-boc
-boc
-buK
-boc
-buK
-boc
-buK
-boc
-boc
-bQg
-boc
-boc
-aaa
-aaa
+big
+biS
+bjN
+bla
+bmk
+bjN
+boy
+bpB
+bqY
+bsu
+btX
+bve
+bwz
+byj
+bzK
+bAU
+bCd
+bDm
+bvc
+bFK
+bGQ
+bHW
+bGW
+bKn
+bKn
+bKn
+bKn
+bEr
+bPx
+bva
+bOG
+bva
+bva
+bva
+bva
+bva
+bVx
+bPC
+bXb
+bDi
+bva
+bZt
+cac
+cac
+cac
+cac
+cdH
+cac
+cac
+cac
+cac
+cgp
+bva
aaa
aaa
aaa
@@ -76733,120 +78675,120 @@ aaa
aaa
aaa
aaa
-aac
-aad
-aeW
-afl
-afx
-afx
-afk
-aeW
-aho
-bUw
-ahQ
-ajr
-akf
-ajr
-ajt
-ame
-amG
-aeX
-anR
-aoB
-aps
-aqw
-arj
-asg
-atm
-atX
-avk
-awL
+aby
+abI
+agP
+ahe
+ahq
+ahq
+ahd
+agP
+ajo
+ajX
+ajV
+alC
+amn
+alC
+alE
+aow
+apd
+agQ
+aqz
+ars
+asy
+atH
+auF
+avE
+awP
axG
-ayL
-azP
-aAM
-aBI
-aBI
-aDf
-aDK
-aEE
-aFx
-aGw
-aHn
-aIG
-aJV
-aGu
-aLV
+ayP
+aAn
+aBi
+aCs
+aDx
+aEu
+aFt
+aFt
+aGY
+aHI
+aIN
+aJJ
+aKL
+aLy
aMW
-aNH
-aNH
-aPM
-aQM
-aRH
-aSG
-aTA
-aUx
-aVz
-aUx
-aXw
-aYk
-aQL
-baf
-baR
-aAs
-aDJ
-bXw
-bdn
-bdn
-bdn
-bdn
-bhM
-biO
-bkj
-bXV
-bna
-boi
-bpu
-bqH
-brW
-bsN
-btL
-buR
-boi
-bxi
-byj
-byX
-bzX
-bBb
-bCa
-bDd
-bDV
-bvP
-bFo
-bFS
-boc
-bHg
-bHT
-bIB
-boc
-bod
-btF
-boc
-bLT
-boc
-bMW
-bMW
-bMW
-bMX
-bMW
-bMW
-bMW
-buK
-btF
-buK
-aaa
-aaa
-aaa
+aOu
+aKJ
+aQE
+aRJ
+aSz
+aSz
+aUP
+aVT
+aWN
+aXO
+aYM
+aZP
+baY
+aZP
+bdh
+bed
+aVS
+bgh
+aJI
+aDZ
+aHN
+biT
+bjL
+bjN
+bjN
+bjL
+boz
+bpB
+bqZ
+bsv
+btY
+bvc
+bwA
+byk
+bzL
+bAV
+bCe
+bDn
+bvc
+bFL
+bGR
+bHX
+bJl
+bKp
+bLA
+bMG
+bNN
+bOD
+bPx
+bIZ
+bOG
+bva
+bSu
+bTi
+bUb
+bva
+bVy
+bDi
+bXc
+bDi
+bIZ
+bZt
+cac
+cac
+cac
+cac
+cac
+cac
+cac
+cac
+cac
+cgp
+bIZ
aaa
aaa
aaa
@@ -76990,120 +78932,120 @@ aaa
aaa
aaa
aaa
-aac
+aby
aaa
-aeX
-afk
-afx
-afx
-bUs
-aeW
-ahp
-bUx
-ahQ
-aju
-aki
-akQ
-aly
-amf
-amH
-aeW
-anS
-aoC
-apz
-ahH
-ark
-ash
-atn
-atX
-avl
-atX
+agQ
+ahd
+ahq
+ahq
+aip
+agP
+ajp
+ajY
+ajV
+alF
+amq
+ane
+anN
+aox
+ape
+agP
+aqA
+art
+asF
+ajM
+auG
+avF
+awQ
axG
-ayM
-azQ
-azR
-azR
-aCu
-aDe
-bVn
-aEF
-aFw
-aGv
-aHo
-aIH
-aJW
-aGu
-aLW
+ayQ
+axG
+aBi
+aCt
+aDy
+aDA
+aDA
+aGf
+aGX
+aHH
+aIO
+aJI
+aKK
+aLz
aMX
-aMY
-aMY
-aPN
-aQN
-aRI
-aSH
-aQL
-aUy
-aVA
-aWs
-aXx
-aYl
-aQL
-bag
-baR
-aAs
-aDJ
-bXx
-bcC
-beA
-bfO
-bdn
-bdn
-biP
-bkk
-blD
-bdn
-boi
-boi
-boi
-boi
-boi
-boi
-boi
-boi
-bsO
-bsO
-byY
-bzY
-bAZ
-bCb
-bDc
-bDW
-bxk
-bFp
-bFS
-bFS
-btF
-bEB
-btF
-boh
-btF
-btF
-boc
-bDS
-boc
-bMX
-bMX
-bMX
-bOr
-bMW
-bMW
-bMW
-buK
-bQh
-buK
-aaa
-aaa
-aaa
+aOv
+aKJ
+aQF
+aRK
+aRL
+aRL
+aUQ
+aVU
+aWO
+aXP
+aVS
+aZQ
+baZ
+bbY
+bdi
+bee
+aVS
+bgi
+aJI
+aDZ
+aHN
+biU
+bjO
+blb
+bml
+bnv
+bnv
+bpC
+bra
+bsw
+bnv
+bvc
+bvc
+bvc
+bvc
+bvc
+bvc
+bvc
+bvc
+bAW
+bAW
+bHY
+bGW
+bKn
+bLB
+bMF
+bNO
+bOC
+bPv
+bIZ
+bOG
+bRF
+bDi
+bPC
+bDi
+bva
+bPA
+bSw
+bSw
+bDi
+bYF
+bZt
+cac
+cac
+cac
+cac
+cac
+cac
+cac
+cac
+cac
+cgp
+bIZ
aaa
aaa
aaa
@@ -77247,120 +79189,120 @@ aaa
aaa
aaa
aaa
-aac
+aby
aaa
-aeX
-afm
-afx
-afT
-agr
-agR
+agQ
+ahf
ahq
-ahS
-aiE
-ajv
-akj
+ahO
+aiq
+aiQ
+ajq
+ajZ
akR
-alz
-amg
-amI
-ahH
-ahH
-aoD
-apA
-ahH
-arl
-asi
-arl
-aub
-avm
-awM
-axG
-ayN
-bVa
-azR
-azR
-aCv
-axG
-bVo
-aEF
-aFw
-aGu
-aGu
-aGu
-aGu
-aGu
-aLX
-aMY
-aMY
-aMY
-aPO
-aQL
-aQL
-aQL
-aQL
-aQL
-aQL
-aQL
-aQL
-aQL
-aQL
-aMY
-baR
-aAs
-bXm
-bcC
-bcC
-beB
-bfP
-bgO
-bhN
-biQ
-bkl
-blE
-bnb
-bol
-bpv
-bqI
-brX
-bsO
-btM
-buS
-bvQ
-bvP
-byk
-byZ
-bzZ
-bYO
-bAZ
-bAZ
-bAZ
-bvP
-bFo
-btF
-bDS
-bHh
-bHU
-btF
-boc
-btF
-btF
-boc
-bDS
-boc
-bMW
-bMW
-bMW
-bOs
-bMX
-bMX
-bMX
-buK
-btF
-buK
-aaa
-aaa
-aaa
+alG
+amr
+anf
+anO
+aoy
+apf
+ajM
+ajM
+aru
+asG
+ajM
+auH
+avG
+auH
+axM
+ayR
+aAo
+aBi
+aCu
+aDz
+aDA
+aDA
+aGg
+aBi
+aHJ
+aIO
+aJI
+aKJ
+aKJ
+aKJ
+aKJ
+aKJ
+aQG
+aRL
+aRL
+aRL
+aUR
+aVS
+aVS
+aVS
+aVS
+aVS
+aVS
+aVS
+aVS
+aVS
+aVS
+aRL
+aJI
+aDZ
+bih
+biV
+bjP
+bjP
+bmm
+bnx
+boA
+bpD
+brb
+bsx
+btZ
+bvf
+bwB
+byl
+bzM
+bAW
+bCf
+bDo
+bEs
+bEr
+bGS
+bHZ
+bJm
+bKq
+bKn
+bKn
+bKn
+bEr
+bPx
+bva
+bOG
+bNK
+bSv
+bTj
+bDi
+bva
+bVz
+bWm
+bSw
+bNX
+bIZ
+bZt
+cac
+cac
+cac
+cac
+cac
+cac
+cac
+cac
+cac
+cgp
+bIZ
aaa
aaa
aaa
@@ -77504,120 +79446,120 @@ aaa
aaa
aaa
aaa
-aac
+aby
aaa
-aeX
-afn
-afx
-afU
-ags
-aeW
-aeW
-aeW
-aiF
-ajw
-akk
-ajw
-alA
-aeW
-amJ
-ahH
-anT
-aoE
-apB
-aqx
-arm
-asj
-ato
-ato
-ato
-ato
-axH
-ayO
-bVa
-azR
-azR
-aCw
-axG
-aDL
-aEF
-aFw
-aGx
-aHp
-aII
-aGA
-aIW
-aLX
+agQ
+ahg
+ahq
+ahP
+air
+agP
+agP
+agP
+akS
+alH
+ams
+alH
+anP
+agP
+apg
+ajM
+aqB
+arv
+asH
+atI
+auI
+avH
+awR
+awR
+awR
+awR
+aBj
+aCv
+aDz
+aDA
+aDA
+aGh
+aBi
+aHK
+aIO
+aJI
+aKM
+aLA
aMY
-aNI
-bVJ
-aPP
-aMY
-aRJ
-aYm
-aSI
-aUz
-aSI
-aSI
-aSI
-bWE
-aZl
-aXy
-baS
-ayd
-bbY
-bcD
-bdp
-beC
-bfQ
-bgO
-bhO
-biR
-bkm
-blF
-blF
-bom
-bpw
-bqJ
-brY
-bsP
-btN
-buT
-bvR
-bxj
-byl
-bza
-bzY
-bBc
-bCc
-bDe
-bDX
-bED
-bFq
-boh
-boc
-bEd
-bEB
-bIC
-boc
-bJQ
-bKG
-boc
-bLU
-boc
-bMW
-bMW
-bMW
-bMX
-bMW
-bMW
-bMW
-buK
-btF
-buK
-aaa
-aaa
-aaa
+aKP
+aNm
+aQG
+aRL
+aSA
+aTQ
+aUS
+aRL
+aWP
+aXQ
+aYN
+aZR
+aYN
+aYN
+aYN
+aXQ
+bfj
+bdm
+aJI
+aDZ
+aHN
+biW
+bjQ
+bjQ
+bmn
+bjQ
+bjQ
+bpE
+brc
+bsy
+bsy
+bvg
+bwC
+bym
+bzN
+bAX
+bCg
+bDp
+bEt
+bFM
+bGT
+bIa
+bGW
+bKr
+bLC
+bMH
+bNP
+bOE
+bPy
+bQl
+bQW
+bva
+bSw
+bPC
+bUc
+bva
+bva
+bva
+bDi
+bDi
+bva
+bZv
+cad
+cad
+cad
+cad
+cad
+cad
+cad
+cad
+cad
+cgq
+bva
aaa
aaa
aaa
@@ -77761,120 +79703,120 @@ aaa
aaa
aaa
aaa
-aac
+aby
aaa
-aeW
-afn
-afx
-afV
-agt
-aeW
-ahr
-agS
-aiG
-agS
-akl
-agS
-alB
-agS
-amK
-ahH
-anU
-aoF
-apC
-anU
-arl
-ask
-arl
-auc
-avn
-awN
-axH
-ayP
-azR
-azQ
-azR
-aCx
-aDe
-bVp
-aEG
-aFy
-aGy
-aHq
-aIJ
-aGA
-aKS
-aLY
+agP
+ahg
+ahq
+ahQ
+ais
+agP
+ajr
+aiR
+akT
+aiR
+amt
+aiR
+anQ
+aiR
+aph
+ajM
+aqC
+arw
+asI
+aqC
+auH
+avI
+auH
+axN
+ayS
+aAp
+aBj
+aCw
+aDA
+aDy
+aDA
+aGi
+aGX
+aHL
+aIP
+aJK
+aKN
+aLB
aMZ
-aNJ
-aOR
-aPQ
-aMY
-aRK
-bVR
-aSJ
-aSJ
-bWj
-aSJ
-aSJ
-aSJ
-bWK
-aXy
-aFw
-aAs
-bXm
-bcC
-bdq
-bcC
-bfR
-bgO
-bhP
-biS
-bkn
-blG
-bnc
-bon
-bpx
-bqK
-brZ
-bsQ
-btO
-buU
-bvS
-bxk
-bym
-bzb
-bAa
-bBd
-bCd
-bZh
-bDY
-bxk
-bFr
-bFT
-boc
-bHi
-bHV
-bID
-boc
-boc
-boc
-boc
-btF
-boc
-boc
-buK
-boc
-buK
-boc
-buK
-boc
-boc
-bQi
-boc
-boc
-boc
-boc
+aKP
+aPx
+aQH
+aRM
+aSB
+aTR
+aUT
+aRL
+aWQ
+aXR
+aXS
+aZS
+bba
+aZS
+aXS
+bef
+bfk
+bdm
+bhd
+aBI
+bii
+biX
+bjR
+blc
+bmo
+bny
+boB
+bpF
+brd
+bsz
+bjQ
+bvh
+bwD
+byn
+bzO
+bAY
+bCh
+bDq
+bEu
+bFN
+bGU
+bIb
+bJn
+bKs
+bLD
+bMI
+bNQ
+bOC
+bPz
+bIZ
+bmf
+bva
+bSx
+bTk
+bUd
+bva
+bDi
+bDi
+bNK
+bva
+bva
+bva
+bva
+bva
+bva
+bva
+bva
+bva
+bIZ
+bIZ
+bIZ
+bva
+bva
aaa
aaa
aaa
@@ -77992,7 +79934,7 @@ aaa
aaa
aaa
aaa
-aab
+abN
aaa
aaa
aaa
@@ -78018,120 +79960,120 @@ aaa
aaa
aaa
aaa
-aac
-aad
-aeW
-aeX
-aeX
-aeW
-aeW
-aeW
-bUu
-agS
-aiH
-ajx
-akm
-akS
-alC
-agS
-amK
-ahH
-anV
-aoG
-apD
-anU
-arl
-asl
-atp
-aud
-avo
-awO
-axH
-ayL
-azR
-aAN
-aBJ
-aBJ
-aDg
-bVq
-aEH
-aFz
-aGz
-aHr
-aIK
-aGA
-aKT
-aLZ
-aMY
-aNK
-aOS
-aPR
-aMY
-aRK
-aSJ
-bVV
-bWc
-bWc
-bWc
-aVC
-aYn
-aZm
-aXy
-aFw
-aAs
-bbZ
-bcE
-bdr
-bcE
-bcE
-bcE
-bcE
-biT
-bcE
-blH
-bnd
-boo
-bYb
-blH
-bcI
-bcI
-bcI
-bcI
-bcI
-bcI
-bvP
-bzc
-bzY
-bBe
-bzY
-bDf
-bDZ
-bvP
-bvO
-bvN
-boc
-boc
-boc
-boc
-boc
-bJR
-boh
-boc
-btF
-boc
-bMY
-btF
-btF
-btF
-bOP
-bPk
-bod
-btF
-btF
-btF
-bxb
-btF
-buK
+aby
+abI
+agP
+agQ
+agQ
+agP
+agP
+agP
+ajs
+aiR
+akU
+alI
+amu
+ang
+anR
+aiR
+aph
+ajM
+aqD
+arx
+asJ
+aqC
+auH
+avJ
+awS
+axO
+ayT
+aAq
+aBj
+aCs
+aDA
+aEv
+aFu
+aFu
+aGZ
+aHM
+aIQ
+aJL
+aKO
+aLC
+aNa
+aKP
+aPy
+aQI
+aRL
+aSC
+aTS
+aUU
+aRL
+aWQ
+aXS
+aYO
+aZT
+aZT
+aZT
+bdj
+beg
+bfl
+bdm
+aJI
+aDZ
+bij
+biY
+biY
+biY
+biY
+biY
+biY
+bpG
+biY
+bsA
+bua
+bvi
+bwE
+bsA
+bsA
+bsA
+bsA
+bsA
+bjc
+bFO
+bFO
+bFO
+bFO
+bKt
+bGW
+bGW
+bNR
+bAW
+bva
+bva
+bmf
+bva
+bva
+bva
+bva
+bva
+bDi
+bva
+bva
+bva
+bYG
+bZw
+bDi
+bDi
+cbU
+bva
+aaa
+aht
+aaa
+aht
+aaa
+aht
+aaa
aaa
aaa
aaa
@@ -78277,120 +80219,120 @@ aaa
aaa
aaa
aaa
-aad
-aad
-aad
-aad
-aad
-aad
-bUu
-ahT
-bUB
-ajy
-akn
-akT
-alD
-agS
-amL
-ahH
-anU
-aoH
-apE
-anU
-arl
-asm
-arl
-aue
-avp
-awP
-axH
-ayQ
-azS
-aAO
-aBK
-aCy
-aDe
-bVn
-aEF
-aFw
-aGA
-aHs
-aIL
-aGA
-aKU
-aMa
-aMY
-aNL
-aOT
-aOQ
-aMY
-aRM
-aSJ
-bVV
-aUA
-aVB
-aWt
-bWw
-aYo
-aZm
-aXy
-aFw
-aAs
-bXm
-bcE
-bds
-beD
-bfS
-beD
-beD
-biU
-bcE
-blI
-bne
-bop
-bpz
-bqL
-bcJ
-bsR
-btP
-buV
-bvT
-bcI
-bvP
-bzd
-bAb
-bBf
-bCe
-bDg
-bvP
-bvP
-boh
-bFU
-bBr
-bBr
-bHW
-bBr
-bBr
-bBr
-bBr
-bBr
-bBr
-bMx
-bmS
-bNz
-bDS
-bNA
-bNA
-bNA
-bNA
-bNA
-bNA
-bNA
-btF
-boc
-boc
-boc
-boc
+abI
+abI
+abI
+abI
+abI
+abI
+ajs
+aka
+akV
+alJ
+amv
+anh
+anS
+aiR
+api
+ajM
+aqC
+ary
+asK
+aqC
+auH
+avK
+auH
+axP
+ayU
+aAr
+aBj
+aCx
+aDB
+aEw
+aFv
+aGj
+aGX
+aHH
+aIO
+aJI
+aKP
+aLD
+aNb
+aKP
+aPz
+aQJ
+aRL
+aSD
+aTT
+aTV
+aRL
+aWR
+aXT
+aYO
+aZU
+bbb
+bbZ
+bdk
+beh
+bfl
+bdm
+aJI
+aDZ
+bik
+biY
+bjS
+bld
+bmp
+bld
+bld
+bpH
+biY
+bsB
+bub
+bvj
+bwF
+byo
+bzP
+bAZ
+bCi
+bDr
+bEv
+bFP
+bGV
+bIc
+bFO
+bKu
+bLE
+bMJ
+bEr
+bEr
+bPA
+bNX
+bQX
+bKH
+bKH
+bKH
+bKH
+bKH
+bKH
+bKH
+bKH
+bXW
+bmf
+bRF
+bNK
+bXk
+bXk
+bXk
+bXk
+bXk
+bXk
+bXk
+aaa
+aby
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -78539,115 +80481,112 @@ aaa
aaa
aaa
aaa
-aad
-bUu
-ahU
-aiJ
-ajz
-ako
-akU
-alE
-agS
-amK
-ahH
-anU
-aoI
-apF
-aqy
-arl
-arl
-arl
-auf
-avq
-awQ
-axH
-axH
-axH
-axH
-axH
-axH
-axG
-aDJ
-aEF
-aFw
-aGB
-aGB
-aGB
-aGB
-aHA
-aMb
-aMY
-aNM
-aOU
-aPS
-aQO
-aRN
-aSK
-bVW
-aUB
-bWk
-bWk
-bWx
-aYp
-aZn
-bah
-baT
+abI
+ajs
+akb
+akW
+alK
+amw
+ani
+anT
+aiR
+aph
+ajM
+aqC
+arz
+asL
+atJ
+auH
+auH
+auH
+axQ
+ayV
aAs
-bXm
-bcE
-bdt
-beE
-bds
-bds
-bhQ
-biV
-bcE
-blJ
-bnf
-bop
-bpA
-bqO
-bcI
-bsS
-bdG
-bdG
-bvU
-bcI
-bsO
-bvP
-bvP
-bvP
-bvP
-bvP
-bvP
-bEE
-bBr
-bFV
-btF
-cfH
-bHX
-bIE
-bJn
-bxb
+aBj
+aBj
+aBj
+aBj
+aBj
+aBj
+aBi
+aHN
+aIO
+aJI
+aKQ
+aKQ
+aKQ
+aKQ
+aLL
+aQK
+aRL
+aSE
+aTU
+aUV
+aVV
+aWS
+aXU
+aYP
+aZV
+bbc
+bbc
+bdl
+bei
+bfm
+bgj
+bhe
+aDZ
+bil
+biY
+bjT
+ble
+bmq
+bmq
+boC
+bpI
+biY
+bsC
+buc
+bvj
+bwG
+byp
+bzQ
+bBa
+bCj
+bsA
+bEw
+bkh
+bkh
+bId
+bFO
+bEr
+bEr
+bEr
+bEr
+bOF
bKH
-boc
-boe
-bMy
-bMZ
-cae
-bDS
-bMb
-bOQ
-bPl
-cct
-bPl
-bQj
-bNA
-btF
-caf
-btF
-ceq
-boc
+bKH
+bQY
+bDi
+bDi
+bTl
+bUe
+bNX
+bVA
+bRF
+bHT
+bXX
+bYH
+bZx
+bDi
+bXk
+cbV
+ccQ
+cdI
+ccQ
+ccQ
+bXk
+aht
+aby
aaa
aaa
aaa
@@ -78674,22 +80613,25 @@ aaa
aaa
aaa
aaa
-aad
+aaa
+aaa
+aaa
+abI
aaa
aaa
aaa
aaa
-aad
+abI
aaa
aaa
aaa
aaa
-aad
+abI
aaa
aaa
aaa
aaa
-aad
+abI
aaa
aaa
aaa
@@ -78793,118 +80735,115 @@ aaa
aaa
aaa
aaa
+afJ
aaa
aaa
+abI
+ajs
+akc
+akX
+alL
+amx
+anj
+anU
+aiR
+apj
+ajM
+ajM
+ajM
+ajM
+ajM
+ajM
+avL
+auH
+auH
+ayW
+auH
+awR
+awR
+awR
+awR
+awR
+awR
+aHa
+aHN
+aIO
+aJM
+aKQ
+aLE
+aNc
+aKQ
+aLL
+aQL
+aRL
+aSF
+aTV
+aTV
+aRL
+aWT
+aXV
+aXS
+aZW
+aXS
+bca
+aXS
+bej
+bfn
+bdm
+aJI
+aDZ
+bik
+biY
+bjU
+bld
+bld
+bld
+bld
+bpJ
+biY
+bsC
+bud
+bvk
+bwH
+byo
+bzR
+bBb
+bCk
+bDr
+bEx
+bkh
+bGX
+bIe
+bjc
+bKv
+bLF
+bjc
+bNS
+bOG
+bPB
+bPB
+bPB
+bPB
+bPB
+bPB
+bPB
+bOB
+bva
+bva
+bXd
+bDi
+bOG
+bQj
+bDi
+bXk
+cbW
+ccR
+cdJ
+ceq
+ceq
+bXk
aaa
-aad
-bUu
-ahV
-aiI
-ajA
-akp
-akV
-alF
-agS
-amM
-ahH
-ahH
-ahH
-ahH
-ahH
-ahH
-asn
-arl
-arl
-avr
-arl
-ato
-ato
-ato
-ato
-ato
-ato
-aDh
-aDJ
-aEF
-aFA
-aGB
-aHt
-aIM
-aGB
-aHA
-aMc
-aMY
-aNN
-aOQ
-aPT
-aMY
-aRO
-aSJ
-aSJ
-aUC
-aSJ
-aWu
-aSJ
-aYq
-aZo
-aXy
-aFw
-aAs
-bXm
-bcE
-bdu
-beD
-beD
-beD
-beD
-biW
-bcE
-blJ
-bng
-boq
-bpA
-bqN
-bcJ
-bsT
-bdG
-buW
-bvV
-bcI
-byn
-bze
-bcI
-byn
-bze
-bcI
-bEa
-bEF
-bFs
-bFs
-bFs
-bFs
-bFs
-bFs
-bFs
-bEC
-boc
-boc
-bLV
-btF
-bEF
-bGB
-btF
-bMb
-bOR
-bPm
-bPA
-bPV
-bQk
-bNA
-btF
-boc
-bPk
-cer
-boc
+aby
aaa
aaa
aaa
@@ -78929,28 +80868,31 @@ aaa
aaa
aaa
aaa
-abZ
-abZ
-bSB
-abZ
-abZ
-abZ
-abZ
-bSB
-abZ
-abZ
-abZ
-abZ
-bSB
-abZ
-abZ
-abZ
-abZ
-bSB
-abZ
-abZ
aaa
-abZ
+aaa
+aaa
+adR
+adR
+clO
+adR
+adR
+adR
+adR
+clO
+adR
+adR
+adR
+adR
+clO
+adR
+adR
+adR
+adR
+clO
+adR
+adR
+aaa
+adR
aaa
aaa
aaa
@@ -79053,115 +80995,112 @@ aaa
aaa
aaa
aaa
-aad
-bUu
-ahW
-aiI
-ajy
-akq
-ajy
-alG
-agS
-amN
-ann
-anW
-anW
-anW
-aqz
-arn
-anW
-atq
-aug
-avs
+abI
+ajs
+akd
+akX
+alJ
+amy
+alJ
+anV
+aiR
+apk
+apQ
+aqE
+aqE
+aqE
+atK
+auJ
+aqE
+awT
+axR
+ayX
+aAt
+aBk
+aCy
+aDC
+aEx
+aFw
awR
-axI
-ayR
-azT
-aAP
-aBL
-ato
-aDi
-aDJ
-aEH
-aFz
-aGC
-aHu
-aIN
-aGB
-aHA
-aMd
-aMY
-aNO
-aOV
-aPU
-aMY
-aMY
-aSL
-aSJ
-aUD
-aVC
-aMY
-aXy
-aYr
-aXy
-aMY
-baX
-bbD
-bXn
-bcF
-bdv
-beF
-beF
-beF
-beF
-biX
-bcE
-blL
-bnf
-bop
-bpA
-bqO
-bcI
-bsU
-btQ
-bnl
-bvW
-bcI
-byo
-bCf
-bcI
-byo
-bCf
-bcI
-bEb
-bEF
-bFs
-bZM
-bZP
-bZP
-bZP
-cab
-bFs
-bJS
-bKI
-bGB
+aHb
+aHN
+aIQ
+aJL
+aKR
+aLF
+aNd
+aKQ
+aLL
+aQM
+aRL
+aSG
+aTW
+aUW
+aRL
+aRL
+aXW
+aXS
+aZX
+bbd
+aRL
+bdm
+bek
+bdm
+aRL
+bhd
+bhM
+bim
+biZ
+bjV
+blf
+blf
+blf
+blf
+bpK
+biY
+bsD
+buc
+bvj
+bwI
+byq
+bzS
+bBb
+bCl
+bsA
+bEy
bFQ
-bod
-bEF
-bDS
-btF
-bMb
-bOS
-bOS
-bOS
-bPV
-bQk
-bNA
-bxb
-boc
-buK
-boc
-boc
+buh
+bIf
+bjc
+bKw
+bLG
+bjc
+bNT
+bOG
+bPB
+bQm
+bQZ
+bQZ
+bQZ
+bTm
+bPB
+bUG
+bVB
+bQj
+bXe
+bSw
+bOG
+bNK
+bDi
+bXk
+cbX
+cbX
+cbX
+ceq
+ceq
+bXk
+aaa
+aht
aaa
aaa
aaa
@@ -79188,26 +81127,29 @@ aaa
aaa
aaa
aaa
-aad
+aaa
+aaa
+aaa
+abI
aaa
aaa
aaa
aaa
-bMs
+cmt
aaa
aaa
aaa
aaa
-aad
+abI
aaa
aaa
aaa
aaa
-aad
+abI
aaa
aaa
aaa
-abZ
+adR
aaa
aaa
aaa
@@ -79310,162 +81252,162 @@ aaa
aaa
aaa
aaa
-aad
-bUu
-ahX
-aiK
-ajB
-akr
-akW
-alE
-bUu
-amO
-amh
-amh
-amh
-amh
-amh
-arl
-aso
-ato
-auh
-avt
-awS
-axJ
-ayS
-azU
-avv
-avv
-ato
-axh
-aDO
-aEG
-aFy
-aGD
-aHv
-aIO
-aGB
-aKV
-aMe
-aNa
-aNa
-aNa
-aNa
-aNa
-aNa
-aSM
-aSJ
-aSJ
-aVD
-aWv
-aXz
-aYs
-aXz
-aXz
-aFw
-aAs
-bXm
-bcE
-bXA
-beG
-bfU
-bgP
-bfT
+abI
+ajs
+ake
+akY
+alM
+amz
+ank
+anT
+ajs
+apl
+aoz
+aqF
+arA
+arA
+arA
+arA
+avM
+awR
+axS
+ayY
+aAu
+aBl
+aCz
+aDD
+aza
+aza
+awR
+aHc
+aHO
+aIP
+aJK
+aKS
+aLG
+aNe
+aKQ
+aPA
+aQN
+aRN
+aRN
+aRN
+aRN
+aRN
+aRN
+aXX
+aXS
+aXS
+bbe
+bcb
+bdn
+bel
+bdn
+bdn
+aJI
+aDZ
+bik
biY
-bcE
-blM
-bni
-bop
-bpB
-bqP
-bcJ
-bsV
-bgV
-bnl
-bvX
-bcI
-byp
-bzg
-bcI
-bBh
-bzg
-bcI
-bEc
-bEF
-bFs
-bZN
-bGD
-bGE
-bGF
-cac
-bFs
-btF
-bKD
-bGB
-bog
-btF
-bEF
-boc
-btF
-bMb
-bOS
-bOS
+bjW
+blg
+bmr
+bnz
+boD
+bpH
+biY
+bsE
+bue
+bvj
+bwI
+byo
+bzT
+bBc
+bCm
+bDr
+bEz
+bnF
+buh
+bIg
+bjc
+bKx
+bLH
+bjc
+bNU
+bOG
bPB
-bMb
-bMb
-bMb
-bMb
-bMb
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-bSj
-bSt
-bSt
-bSt
-bSj
-bSj
-bSj
-bSj
-bSj
-bTl
-bTl
-bTl
-bTl
-bTl
-bTl
-bTl
-bTl
-bTl
-bTl
-bTl
-bQL
-bSB
-aad
+bQn
+bRa
+bRa
+bRa
+bTn
+bPB
+bDi
+bVC
+bQj
+bPA
+bDi
+bOG
+bva
+bDi
+bXk
+cbX
+cbX
+cdK
+bXk
+bXk
+bXk
+bXk
+bXk
+abI
+abI
+abI
+abI
+abI
+abI
+abI
+abI
+abI
+abI
+abI
+abI
+abI
+abI
+abI
+abI
+abI
+abI
+abI
+abI
+abI
+abI
+abI
+abI
+abI
+abI
+abI
+clw
+clG
+clG
+clG
+clw
+clw
+clw
+clw
+clw
+cmB
+cmB
+cmB
+cmB
+cmB
+cmB
+cmB
+cmB
+cmB
+cmB
+cmB
+cny
+clO
+abI
aaa
aaa
aaa
@@ -79567,161 +81509,161 @@ aaa
aaa
aaa
aaa
-bbN
-bUu
-bUu
-aiL
-ajC
-ajC
-ajC
-alH
-bUu
-amP
-ano
-aaa
-aaa
-aaa
-aqA
-aro
-asp
-ato
-aui
-avu
-awT
-axK
-ayT
-azV
-aAQ
-aBM
-ato
-ato
-aDP
-aEF
-bVA
-aGB
-aGB
-aGB
-aGB
-aHA
-aMe
-aNa
-aNa
-aOW
-aPV
-aQP
-aNa
-aSN
-aSJ
-aUE
-aVD
-aWw
-aAs
-bWF
-aAs
-aAs
-aFw
-aAs
-bXm
-bcE
-bcE
-bcE
-bcE
-bcE
-bcE
-biZ
-bcE
-blH
-bnd
-boo
-bpy
-blH
-bcI
-bcJ
-btR
-buX
-bcJ
-bcI
-byq
-bzh
-bcI
-bBi
-bCh
-bcI
-bcI
-bEF
-bFs
-bFX
-bGE
-bFW
-bHY
-bIF
-bFs
-bJT
-bJT
-bJT
-bJT
-bJT
-bEF
-bIV
-bNR
-bMb
-bOS
-bOS
+aiR
+ajs
+ajs
+akZ
+alN
+alN
+alN
+anW
+ajs
+apm
+apR
+aqG
+arB
+asM
+atL
+auK
+avN
+awU
+axT
+ayZ
+aAv
+aBm
+aCA
+aDE
+aEy
+aFx
+awR
+awR
+aHP
+aIO
+aJN
+aKQ
+aKQ
+aKQ
+aKQ
+aLL
+aQN
+aRN
+aRN
+aTX
+aUX
+aVW
+aRN
+aXY
+aXS
+aZY
+bbe
+bcc
+aDZ
+bem
+aDZ
+aDZ
+aJI
+aDZ
+bik
+biY
+biY
+biY
+biY
+biY
+biY
+bpM
+biY
+bsA
+bua
+bvi
+bwJ
+bsA
+bzU
+bBd
+byo
+bsA
+bkb
+bFR
+bGY
+bkb
+bjc
+bKy
+bLI
+bjc
+bjc
+bOG
bPB
-bMb
-bQl
-bQC
-bQN
-bQZ
-aeZ
-aeZ
-aeZ
-afy
-aeZ
-aeZ
-aeZ
-aeZ
-afy
-aeZ
-aeZ
-aeZ
-aeZ
-afy
-aeZ
-aeZ
-aeZ
-aeZ
-afy
-aeZ
-aeZ
-aeZ
-aeZ
-afy
-aeZ
-aeZ
-aeZ
-bSp
-bSu
-bSC
-bSJ
-bSj
-bSR
-bSY
-bTf
-bSt
-bTm
-bTs
-bTv
-bTC
-bTH
-bTM
-bTR
-bTV
-bTu
-bUb
-bTl
+bQo
+bRa
+bRa
+bSy
+bTo
+bPB
+bUH
+bUH
+bUH
+bUH
+bUH
+bOG
+bTE
+cae
+bXk
+cbX
+cbX
+cdK
+bXk
+ceT
+cfr
+cfO
+cgr
+cgP
+cgP
+cgP
+cig
+cgP
+cgP
+cgP
+cgP
+cig
+cgP
+cgP
+cgP
+cgP
+cig
+cgP
+cgP
+cgP
+cgP
+cig
+cgP
+cgP
+cgP
+cgP
+cig
+cgP
+cgP
+cgP
+clC
+clH
+clP
+clW
+clw
+cmf
+cmm
+cmu
+clG
+cmC
+cmI
+cmL
+cmR
+cmV
+cna
+cnf
+cnj
+cmK
+cnr
+cmB
aaa
-abZ
+adR
aaa
aaa
aaa
@@ -79826,159 +81768,159 @@ aaa
aaa
aaa
aaa
-bbN
-aad
-aad
-aad
-aad
-aad
-bUH
-amQ
-amh
-aaa
-aaa
-aaa
-aqA
-aro
-asq
-ato
-auj
-avv
-awU
-axL
-ayU
-azV
-aAR
-aBM
-aCz
-ato
-aDQ
-aEF
-aFC
-aGE
-aHw
-aIP
-aGE
-aHA
-aMf
-aNb
-aNP
-aOX
-aPW
-aQQ
-aNa
-aRL
-aTB
-aSJ
-aVD
-bWo
-bao
-aYt
-aZp
-aZp
-aFN
-aye
-bca
-bcG
-bdw
-beH
-bfV
-bgQ
-bhR
+aiR
+abI
+abI
+abI
+abI
+abI
+aoz
+apn
+aoz
+aqG
+arC
+asN
+atM
+auL
+avO
+awV
+axU
+aza
+aAw
+aBn
+aCB
+aDE
+aEz
+aFx
+aGk
+awR
+aHQ
+aIO
+aJO
+aKT
+aLH
+aNf
+aKT
+aLL
+aQO
+aRO
+aSH
+aTY
+aUY
+aVX
+aRN
+aXZ
+aYQ
+aXS
+bbe
+bcd
+bdo
+ben
+bfo
+bfo
+aJZ
+aAL
+bin
bja
-bko
-blN
-bdG
-bor
-bpC
-bqQ
-bsa
-bsW
-btS
-buY
-bvY
-bxl
-buY
-btS
-bAc
-buY
-bCi
-bDh
-bcI
-bEF
-bFs
-bFY
-bGF
-bGE
-bGD
-bIG
-bFs
-bJU
-bKJ
-bLn
-bLW
-bJT
-bNa
-bMb
-bNS
-bMb
-bOT
-bOT
-bMb
-bMb
-bQm
-bNt
-bQO
-bMb
-bMb
-bMb
-bMb
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-bSj
-bSj
-bSj
-bSj
-bSv
-bSD
-bMm
-bSj
-bSS
-bSZ
-bTg
-bSt
-bTn
-bTt
-bTw
-bTD
-bTI
-bTN
-bTS
-bTW
-bTu
-bUc
-bTl
+bjX
+blh
+bms
+bnA
+boE
+bpN
+bre
+bsF
+bkh
+bvl
+bwK
+byr
+bzV
+bBe
+bCn
+bDs
+bEA
+bFS
+bGZ
+bCn
+bJo
+bGZ
+bLJ
+bMK
+bjc
+bOG
+bPB
+bQp
+bRa
+bRa
+bRa
+bTp
+bPB
+bUI
+bVD
+bWn
+bXf
+bUH
+bYI
+bXk
+caf
+bXk
+cbY
+cbY
+bXk
+bXk
+ceU
+cam
+cfP
+bXk
+bXk
+bXk
+bXk
+abI
+abI
+abI
+abI
+abI
+abI
+abI
+abI
+abI
+abI
+abI
+abI
+abI
+abI
+abI
+abI
+abI
+abI
+abI
+abI
+abI
+clw
+clw
+clw
+clw
+clI
+clQ
+clX
+clw
+cmg
+cmn
+cmv
+clG
+cmD
+cmJ
+cmM
+cmS
+cmW
+cnb
+cng
+cnk
+cmK
+cns
+cmB
aaa
-abZ
+adR
aaa
aaa
aaa
@@ -80089,116 +82031,115 @@ aaa
aaa
aaa
aaa
-afp
-afp
-afp
aaa
-aaa
-aaa
-aqA
-aro
-asr
-ato
-auk
-avw
-awV
-axM
-ayU
-azW
-aAS
-aBN
-aCA
-ato
-aDR
-aEI
-aFD
-aGE
-aHx
-aIQ
-aGE
-aKW
-aMg
-aNa
-aNa
-aOY
-aPX
-aNS
-aNa
-aNa
-aNa
-aUF
-aVE
-aNa
-aNa
-aYu
-aNa
-aNa
-aFw
-aAs
-bXn
-bcH
-bdx
-beI
-bfW
-bgR
-bhS
+ahi
+ahi
+aqG
+arD
+asO
+atN
+auK
+avP
+awW
+axV
+azb
+aAx
+aBo
+aCB
+aDF
+aEA
+aFy
+aGl
+awR
+aHR
+aIR
+aJP
+aKT
+aLI
+aNg
+aKT
+aPB
+aQP
+aRN
+aRN
+aTZ
+aUZ
+aSK
+aRN
+aRN
+aRN
+aZZ
+bbf
+aRN
+aRN
+beo
+aRN
+aRN
+aJI
+aDZ
+bim
bjb
-bkp
-bdF
-bnj
-bos
-bpD
-bqR
-bqR
-bsX
-btT
-bnl
-bdG
-bxm
-bnl
-byr
-bdG
-bBj
-bgX
-bDi
-bcI
-bEF
-bFs
-bFZ
-bGG
-bZR
-bHZ
-bIH
-bFs
-bJV
-bKK
-bLo
-bLX
-bMz
-bNb
-caC
-bNT
-bOt
-bOU
-bOU
-bPC
-bPW
-bQn
-bQD
-bND
-bRa
-bRh
-bRq
-bRv
-aad
-aad
-aad
+bjY
+bli
+bmt
+bnB
+boF
+bpO
+brf
+bkg
+buf
+bvm
+bwL
+bys
+bzW
+bBf
+bCo
+bkh
+bEB
+bkh
+buh
+bIh
+bkh
+bKz
+bnH
+bML
+bjc
+bOG
+bPB
+bQq
+bRb
+bRG
+bSz
+bTq
+bPB
+bUJ
+bVE
+bWo
+bXg
+bXY
+bYJ
+bZy
+cag
+cbc
+cbZ
+cbZ
+cdL
+cer
+ceV
+cfs
+bZA
+cgs
+cgQ
+chv
+bPm
+abI
+abI
+abI
aaa
aaa
aaa
aaa
-aaa
-aad
+abI
aaa
aaa
aaa
@@ -80211,31 +82152,32 @@ aaa
aaa
aaa
aaa
-afp
-bSm
-bSn
-bSq
-bSw
-bSE
-bSK
-bSP
-bST
-bTa
-bSt
-bSt
-bTo
-bTu
-bTx
-bTu
-bTu
-bTu
-bTu
-bTX
-bTu
-bUd
-bTl
aaa
-abZ
+ahi
+clz
+clA
+clD
+clJ
+clR
+clY
+cmd
+cmh
+cmo
+clG
+clG
+cmE
+cmK
+cmN
+cmK
+cmK
+cmK
+cmK
+cnl
+cmK
+cnt
+cmB
+aaa
+adR
aaa
aaa
aaa
@@ -80349,113 +82291,112 @@ aaa
aaa
aaa
aaa
-aaa
-aaa
-aaa
-aqA
-aro
-ass
-ato
-aul
-avx
+aqG
+arE
+arA
+atO
+auM
+avQ
awW
-axN
-ayV
-azX
-axK
-aBO
-aCB
-ato
-aDQ
-aEF
-aFC
-aGE
-aHy
-aHA
-aJX
-aHA
-aMg
-aNa
-aNQ
-aNS
-aNS
-aNS
-aRP
-aNa
-aTC
-aTD
-aTD
-aWx
-aWx
-aYv
-aZq
-bai
-aFw
-aAs
-bXm
-bcG
-bdy
-beJ
-bfX
-bgQ
-bhT
+axW
+azc
+aAy
+aBp
+aCC
+aDG
+aBm
+aFz
+aGm
+awR
+aHQ
+aIO
+aJO
+aKT
+aLJ
+aLL
+aOw
+aLL
+aQP
+aRN
+aSI
+aSK
+aSK
+aSK
+aWU
+aRN
+aYR
+aYS
+aYS
+bce
+bce
+bep
+bfp
+bgk
+aJI
+aDZ
+bik
+bja
+bjZ
+blj
+bmu
+bnA
+boG
+bpP
+brg
+bsG
+brf
+bvn
+bwM
+byt
+bzX
+bpP
+bCp
+bpP
+bEC
+bFT
+bHa
+bIi
+bJp
+bKA
+bLK
+bMM
bjc
-bkq
-blO
-bkp
-bot
-bpE
-bqS
-bsb
-bjc
-btU
-buZ
-bvZ
-bxn
-bys
-bjc
-bAd
-bBk
-bCk
-bDj
-bcI
-bEF
-bFs
-bFs
-bGH
-bHj
-bIa
-bFs
-bFs
-bJW
-bKL
-bLp
-bLY
-bMA
-bNc
-bNC
-bNs
-bNY
-bNt
-bNt
-bPD
-bMb
-bMb
-bMb
-bQP
-bMb
-bMb
-bMb
-bMb
-bMb
-bMb
-bOz
-bMb
-bMb
-bMb
-bMb
-bMb
-bMb
+bOG
+bPB
+bPB
+bRc
+bRH
+bSA
+bPB
+bPB
+bUK
+bVF
+bWp
+bXh
+bXZ
+bYK
+bZz
+cah
+cbd
+cam
+cam
+cdM
+bXk
+bXk
+bXk
+cfQ
+bXk
+bXk
+bXk
+bXk
+bXk
+cbj
+bXk
+bXk
+bXk
+bXk
+bXk
+bXk
aaa
aaa
aaa
@@ -80467,33 +82408,34 @@ aaa
aaa
aaa
aaa
-bLN
-bSj
-bSj
-bSo
-bSj
-bSx
-bSF
-bSL
-bSQ
-bSU
-bTb
-bTh
-bTk
-bTp
-bTu
-bTu
-bTu
-bTJ
-bTO
-bTu
-bTu
-bTu
-bUe
-bTl
-aad
-bSB
-aad
+aaa
+clu
+clw
+clw
+clB
+clw
+clK
+clS
+clZ
+cme
+cmi
+cmp
+cmw
+cmA
+cmF
+cmK
+cmK
+cmK
+cmX
+cnc
+cmK
+cmK
+cmK
+cnu
+cmB
+abI
+clO
+abI
aaa
aaa
aaa
@@ -80588,7 +82530,7 @@ aaa
aaa
aaa
aaa
-aab
+abN
aaa
aaa
aaa
@@ -80604,115 +82546,114 @@ aaa
aaa
aaa
aaa
-aaa
-aaa
-aaa
-aaa
-apG
-apG
-apG
-apG
-ato
-ato
-ato
-ato
-ato
-ayW
-azY
-ato
-ato
-ato
-ato
-aDS
-aEJ
-aFC
-aGE
-aHz
-aIR
-aGE
-aKX
-aMg
-aNa
-aNR
-aNS
-aPY
-aQS
-aRQ
-aSO
-aTD
-aTD
-aVF
-aWy
-aWy
-aYw
-aWy
-baj
-baT
-aAs
-bXm
-bcG
-bdz
-beK
-bfY
-bcG
-bcI
-bjd
-bcI
-bcI
-bnk
-bou
-bpF
-bqT
-bsc
-bqU
-btV
-bqU
-bsc
-bxo
-bxo
-bzi
-bAe
-bzi
-bxo
-bxo
-bcI
-bEF
-bEB
-bFs
-bGI
-bHk
-bIb
-bII
-bFs
-bJX
-bKM
-bLq
-bLZ
-bMB
-bNd
-bND
-bNU
-bOu
-bNW
-bNt
-bPE
-bMb
-bQo
-bMb
-bQQ
-bRb
-bRi
-bRb
-bRw
-bMb
-bMb
-bMb
-bRy
-bRb
-bRW
-bRY
-bRY
-bMb
+aht
+apS
+ala
+arF
+arA
+atP
+auN
+avR
+awX
+awU
+awR
+awR
+awR
+aCD
+aDH
+awR
+awR
+awR
+awR
+aHS
+aIS
+aJO
+aKT
+aLK
+aNh
+aKT
+aPC
+aQP
+aRN
+aSJ
+aSK
+aVa
+aVY
+aWV
+aYa
+aYS
+aYS
+bbg
+bcf
+bcf
+beq
+bcf
+bgl
+bhe
+aDZ
+bik
+bja
+bka
+blk
+bmv
+bja
+bjc
+bpQ
+bjc
+bjc
+bug
+bvo
+bwN
+byu
+bzY
+byv
+bCq
+byv
+bzY
+bFU
+bFU
+bIj
+bJq
+bIj
+bFU
+bFU
+bjc
+bOG
+bPC
+bPB
+bRd
+bRI
+bSB
+bTr
+bPB
+bUL
+bVG
+bWq
+bXi
+bYa
+bYL
+bZA
+cai
+cbe
+cca
+cam
+cdN
+bXk
+ceW
+bXk
+cfR
+cgt
+cgR
+cgt
+chO
+bXk
+bXk
+bXk
+chR
+cgt
+cjT
+ckq
+bXk
aaa
aaa
aaa
@@ -80725,31 +82666,32 @@ aaa
aaa
aaa
aaa
-bSk
-bSj
-bSj
-bSj
-bSy
-bSG
-bSM
-bSj
-bSV
-bTc
-bSt
-bSt
-bSt
-bTu
-bTy
-bTu
-bTu
-bTu
-bTu
-bTY
-bTu
-bUf
-bTl
aaa
-abZ
+clx
+clw
+clw
+clw
+clL
+clT
+cma
+clw
+cmj
+cmq
+clG
+clG
+clG
+cmK
+cmO
+cmK
+cmK
+cmK
+cmK
+cnm
+cmK
+cnv
+cmB
+aaa
+adR
aaa
aaa
aaa
@@ -80860,116 +82802,115 @@ aaa
aaa
aaa
aaa
-aaa
-aaa
-aad
-anX
-aoJ
-apH
-aqB
-arp
-ast
-atr
-aum
-avy
-awX
-axO
-ayX
-azZ
-aAT
-aAT
-aAT
-aDj
-aDT
-aEK
-aFE
-aGE
-aGE
-aGE
-aGE
-aKY
-aMh
-aNa
-aNS
-bVK
-aPZ
-aQT
-aRR
-aNa
-aTE
-aTD
-aVG
-aWz
-aXB
-aYx
-aTD
-bai
-aFw
-aAs
-bXm
-bcI
-bdA
-bdA
-bdA
-bcI
-bhU
-bdG
-bkr
-bdA
-bnl
-bor
-bYc
-bqU
-bsd
-bsY
-btW
-bva
-bwa
-bxo
-byt
-bzj
-bAf
-bBl
-bBl
-bxo
-btF
-bEF
-bFt
-bFs
-bGJ
-bHl
-bIc
-bIJ
-bFs
-bJY
-bKN
-bLr
-bMa
-bMz
-bNe
-bNE
+aht
+apo
+abI
+aqH
+arG
+asP
+atQ
+auO
+avS
+awY
+axX
+azd
+aAz
+aBq
+aCE
+aDI
+aEB
+aEB
+aEB
+aHd
+aHT
+aIT
+aJQ
+aKT
+aKT
+aKT
+aKT
+aPD
+aQQ
+aRN
+aSK
+aUa
+aVb
+aVZ
+aWW
+aRN
+aYT
+aYS
+bbh
+bcg
+bdp
+ber
+aYS
+bgk
+aJI
+aDZ
+bik
+bjc
+bkb
+bkb
+bkb
+bjc
+boH
+bkh
+brh
+bjd
+buh
+bvl
+bwO
+byv
+bzZ
+bBg
+bCr
+bDt
+bED
+bFU
+bHb
+bIk
+bJr
+bKB
+bKB
+bFU
bNV
-bOv
-bNV
-bPn
-bPF
-bPX
-bQp
-bQE
-bQR
-bQU
-bRj
-bQU
-bRx
-bRF
-bRK
-bRF
-bRz
-bQU
-bRj
-bQU
-bQU
-bMb
+bOG
+bPD
+bPB
+bRe
+bRJ
+bSC
+bTs
+bPB
+bUM
+bVH
+bWr
+bXj
+bXY
+bYM
+bZB
+caj
+cbf
+ccb
+ccS
+cdO
+ces
+ceX
+cft
+cfS
+cfV
+cgS
+cfV
+chP
+cih
+cir
+cih
+chS
+cfV
+cgS
+cfV
+bXk
aaa
aaa
aaa
@@ -80982,31 +82923,32 @@ aaa
aaa
aaa
aaa
-bSl
-aaX
-aaX
-bSr
-bSz
-bSH
-bSN
-bSj
-bSW
-bTd
-bTi
-bSt
-bTq
-bTu
-bTz
-bTE
-bTK
-bTP
-bTT
-bTZ
-bTu
-bUg
-bTl
aaa
-abZ
+cly
+acN
+acN
+clE
+clM
+clU
+cmb
+clw
+cmk
+cmr
+cmx
+clG
+cmG
+cmK
+cmP
+cmS
+cmY
+cnd
+cnh
+cnn
+cmK
+cnw
+cmB
+aaa
+adR
aaa
aaa
aaa
@@ -81117,116 +83059,115 @@ aaa
aaa
aaa
aaa
+alO
aaa
aaa
-aaa
-anY
-aoK
-apI
-aqC
-arq
-aqC
-ats
-aun
-avz
-awY
-axP
-ayY
-aAa
-aAU
-aAa
-awY
-aDk
-aDU
-aEL
-bVB
-aGE
-aHA
-aIS
-aIW
-aHA
-aMg
-aNa
-aNT
-aNa
-aNa
-aQU
-aNa
-aNa
-aTF
-aTD
-aVH
-aWA
-aXC
-aYy
-aTD
-bai
-aFw
-aAs
-bXm
-bcI
-bdB
-bXD
-bXK
-bgS
-bhV
-bje
-bks
-bdA
-bnl
-bor
-bYd
-bqT
-bse
-bsZ
-btX
-bvb
-bwb
-bxo
+aqI
+arH
+asQ
+atR
+auP
+avT
+awZ
+axY
+aze
+aAA
+aBr
+aCF
+aDJ
+aEC
+aDJ
+aAA
+aHe
+aHU
+aIU
+aJR
+aKT
+aLL
+aNi
+aNm
+aLL
+aQP
+aRN
+aSL
+aRN
+aRN
+aWa
+aRN
+aRN
+aYU
+aYS
+bbi
+bch
+bdq
+bes
+aYS
+bgm
+aJI
+aDZ
+bik
+bjc
+bkc
+bll
+bmw
+bnC
+boI
+bpR
+bri
+bjd
+buh
+bvl
+bwP
byu
-bYC
-bAg
-bBm
-bCl
-bxo
-bEd
-bEG
-bFu
-bGa
-bGK
-bHm
-bId
-bGa
-bGa
-bJT
-bJT
-bJT
-bJT
-bMC
-bNf
-bND
+bAa
+bBh
+bCs
+bDu
+bEE
+bFU
+bHc
+bIl
+bJs
+bKC
+bLL
+bFU
bNW
-bOw
-bNW
-bNt
-bPG
-bMb
-bIV
-bMb
-bQS
-bQU
-bRk
-bQU
-bQU
-bQU
-bQU
-bQU
-bQU
-bQU
-bRk
-bQU
-bSa
-bIV
+bOH
+bPE
+bQr
+bRf
+bRK
+bSD
+bQr
+bQr
+bUH
+bUH
+bUH
+bUH
+bYb
+bYN
+bZA
+cak
+cbg
+cca
+cam
+cdP
+bXk
+bTE
+bXk
+cfT
+cfV
+cgT
+cfV
+cfV
+cfV
+cfV
+cfV
+cfV
+cfV
+cgT
+ckr
+bXk
aaa
aaa
aaa
@@ -81239,31 +83180,32 @@ aaa
aaa
aaa
aaa
-aad
-aad
-aad
-bSj
-bSA
-bSI
-bSO
-bSj
-bSX
-bTe
-bTj
-bSt
-bTr
-bTu
-bTA
-bTF
-bTL
-bTQ
-bTU
-bUa
-bTu
-bUh
-bTl
aaa
-abZ
+abI
+abI
+abI
+clw
+clN
+clV
+cmc
+clw
+cml
+cms
+cmy
+clG
+cmH
+cmK
+cmQ
+cmU
+cmZ
+cne
+cni
+cno
+cmK
+cnx
+cmB
+aaa
+adR
aaa
aaa
aaa
@@ -81373,117 +83315,116 @@ aaa
aaa
aaa
aaa
+anl
+aht
aaa
aaa
-aaa
-aaa
-anY
-aoL
-apJ
-aqD
-arr
-asu
-att
-auo
-avA
-awZ
-awZ
-awZ
-awZ
-awZ
-awZ
-apG
-apG
-aDV
-aEM
-aFG
-aGF
-aHB
-aIT
-aJY
-aIT
-aMi
-aNc
-aNU
-aOZ
-aQa
-bVN
-aRS
-aSP
-aTG
-aUG
-aUG
-aUG
-aUG
-aYz
-aTD
-bai
-aFw
-aAs
-bXm
-bcJ
-bdC
-bdG
-bdG
-bgT
-bhW
-bjf
-bdA
-bcI
-bnl
-bor
-bYd
-bqU
-bsf
-bta
-btY
-bvc
-bwc
-bxo
+aqI
+arI
+asR
+atS
+auQ
+avU
+axa
+axZ
+azf
+aAB
+aAB
+aAB
+aAB
+aAB
+aAB
+arA
+arA
+aHV
+aIV
+aJS
+aKU
+aLM
+aNj
+aOx
+aNj
+aQR
+aRP
+aSM
+aUb
+aVc
+aWb
+aWX
+aYb
+aYV
+baa
+baa
+baa
+baa
+bet
+aYS
+bgk
+aJI
+aDZ
+bik
+bjd
+bkd
+bkh
+bkh
+bnD
+boJ
+bpS
+bjd
+bjc
+buh
+bvl
+bwP
byv
-bzk
-bAf
-bBn
-bBn
-bxo
-bxb
+bAb
+bBi
+bCt
+bDv
bEF
-bFu
-bGb
-bGL
-bZS
-bIe
-bIK
-bJo
-bJZ
-bKO
-bLs
-bMb
-bMD
-bNg
-bNF
-bNB
-bOx
-bNt
-bNZ
-bPH
-bPY
-bQq
+bFU
+bHd
+bIm
+bJr
+bKD
+bKD
+bFU
+bNX
+bOG
+bPE
bQs
-bQT
-bRc
-bRl
-bRr
-bRl
-bRl
-bRr
-bRl
-bRl
-bRr
-bRl
-bRl
-bSb
-bIV
+bRg
+bRL
+bSE
+bTt
+bUf
+bQr
+bVI
+bWs
+bXk
+bYc
+bYO
+bZC
+cal
+cbh
+cam
+ccT
+cdQ
+cet
+ceY
+cfa
+cfU
+cgu
+cgU
+chw
+cgU
+chw
+cgU
+chw
+cgU
+cjs
+cfV
+cfV
+bTE
aaa
aaa
aaa
@@ -81496,32 +83437,33 @@ aaa
aaa
aaa
aaa
-aad
-aad
-aad
-bSj
-bSj
-bSj
-bSj
-bSj
-bSj
-bSj
-bSj
-bSj
-bTl
-bTl
-bTl
-bTl
-bTl
-bTl
-bTl
-bTl
-bTl
-bTl
-bTl
-bQM
-bSB
-aad
+aaa
+abI
+abI
+abI
+clw
+clw
+clw
+clw
+clw
+clw
+clw
+clw
+clw
+cmB
+cmB
+cmB
+cmB
+cmB
+cmB
+cmB
+cmB
+cmB
+cmB
+cmB
+cnz
+clO
+abI
aaa
aaa
aaa
@@ -81629,119 +83571,118 @@ aaa
aaa
aaa
aaa
+anl
+aaa
+aht
aaa
aaa
-aaa
-aaa
-aaa
-anY
-aoM
-apJ
-apK
-apK
-apK
-apK
-aup
-avB
-awZ
-bUX
-ayZ
-aAb
-aAV
-awZ
-aCC
-avO
-bVr
-aEF
-aFC
-aGE
-aHC
-aHA
-aJZ
-aKZ
-aKZ
-aKZ
-aKZ
-aKZ
-aKZ
-aQW
-aRT
-aNa
-aNa
-aUH
-aVI
-bWp
-bWy
-aNa
-aNa
-aNa
-aFw
-aAs
-bcb
-bcK
-bdD
-beL
-bdF
-bdF
-bdF
-bjg
-bkt
-blP
-beN
-bor
-bgV
-bqT
-bsg
-btb
-btZ
-bvd
-bwd
-bxo
-bxo
-bzl
-bAh
-bxo
-bxo
-bxo
-bxo
-bEH
-bFv
-bGc
-bGM
-bHn
-bIf
-bIL
-bJp
-bIL
-bKP
-bLt
-bMb
-bME
-bNh
-bND
-bNt
-bNt
-bNt
-bPp
-bPH
-bPY
-bQr
-bQs
-bQU
-bRd
-bQU
-bRs
-bQU
-bQU
-bRs
-bQU
-bQU
-bRs
-bQU
-bQU
-bRd
-bIV
-aad
+aqI
+arJ
+asR
+asS
+asS
+asS
+asS
+aya
+azg
+aAB
+aBs
+aCG
+aDK
+aED
+aAB
+aGn
+axi
+aHW
+aIO
+aJO
+aKT
+aLN
+aLL
+aOy
+aPE
+aPE
+aPE
+aPE
+aPE
+aPE
+aWc
+aWY
+aRN
+aRN
+bab
+bbj
+bci
+bdr
+aRN
+aRN
+aRN
+aJI
+aDZ
+bij
+bje
+bke
+blm
+bkg
+bkg
+bkg
+bpT
+bpT
+bsH
+blo
+bvl
+bnF
+byu
+bAc
+bBj
+bCu
+bDw
+bEG
+bFU
+bFU
+bIn
+bJt
+bFU
+bFU
+bFU
+bFU
+bOI
+bPF
+bQt
+bRh
+bRM
+bSF
+bTu
+bUg
+bUN
+bVJ
+bWt
+bXk
+bYd
+bYP
+bZA
+cam
+cam
+cam
+ccU
+cdQ
+cet
+ceZ
+cfa
+cfV
+cgv
+cfV
+chx
+chQ
+chx
+cfV
+chx
+chQ
+chx
+cfV
+cfV
+bTE
+abI
aaa
aaa
aaa
@@ -81758,26 +83699,27 @@ aaa
aaa
aaa
aaa
-aad
+aaa
+abI
aaa
aaa
aaa
aaa
-bMv
+cmz
aaa
aaa
aaa
aaa
-aad
+abI
aaa
aaa
aaa
aaa
-aad
+abI
aaa
aaa
aaa
-abZ
+adR
aaa
aaa
aaa
@@ -81884,128 +83826,128 @@ aaa
aaa
aaa
aaa
+aht
+amA
+aht
+aht
+aht
+aht
+abI
+aqJ
+arK
+asS
+atT
+auR
+avV
+axb
+ayb
+azh
+aAB
+aBt
+aCH
+aCK
+aEE
+aAB
+aGo
+aHf
+aHX
+aIW
+aJO
+aKT
+aKT
+aNk
+aOy
+aPE
+aQS
+aRQ
+aSN
+aUc
+aPE
+aWd
+aWZ
+aPE
+aYW
+bac
+bbk
+bcj
+bcj
+beu
+bfq
+bgn
+bhe
+aDZ
+aHN
+bjd
+bkf
+bln
+bmx
+bnE
+boK
+bpU
+bpU
+bsI
+bui
+bvp
+bwQ
+byv
+bAd
+bBk
+bCv
+bDx
+bEH
+bFU
+bFU
+bIo
+bJu
+bKE
+bLM
+bMN
+bFU
+bCz
+bPE
+bQu
+bRi
+bRN
+bSG
+bTv
+bUh
+bUO
+bVK
+bWu
+bXk
+bYe
+bYQ
+bZA
+can
+cbi
+ccc
+ccV
+cdR
+cet
+ceZ
+cfa
+cfU
+cgv
+cgV
+cgW
+cgW
+cgX
+cgV
+cgX
+cgW
+cgW
+cgV
+cfV
+bTE
+abI
+abI
aaa
aaa
aaa
aaa
aaa
aaa
-aad
-anZ
-aoN
-apK
-aqE
-ars
-asv
-atu
-auq
-avC
-awZ
-axQ
-aza
-aAc
-aAW
-awZ
-aad
-aDl
-aDW
-aEN
-aFC
-aGE
-aGE
-aIU
-aJZ
-aKZ
-aMj
-aNd
-aNV
-aPa
-aKZ
-aQX
-aRU
-aKZ
-aTH
-aUI
-bWl
-aWC
-aWC
-bWG
-bWL
-bak
-baT
-aAs
-aDJ
-bcJ
-bdE
-beM
-bfZ
-bgU
-bhX
-bjh
-bku
-bjh
-bnm
-bov
-bpG
-bqU
-bsh
-btc
-bua
-bve
-bwe
-bxo
-bxo
-bzm
-bAi
-bBo
-bCm
-bDk
-bxo
-buc
-bFu
-bGd
-bGN
-bHo
-bIg
-bIM
-bJq
-bKa
-bKQ
-bLu
-bMb
-bMF
-bNi
-bND
-bNt
-bOy
-bOV
-bPp
-bPI
-bPY
-bQr
-bQs
-bQT
-bRd
-bRm
-bMW
-bMW
-bMX
-bMW
-bRm
-bMW
-bMW
-bRm
-bQU
-bRd
-bIV
-aad
-aad
-aaa
-aaa
-aaa
-aaa
-aaa
-aab
+abN
aaa
aaa
aaa
@@ -82013,28 +83955,28 @@ aaa
aaa
aaa
aaa
-abZ
-abZ
-bSB
-abZ
-abZ
-abZ
-abZ
-bSB
-abZ
-abZ
-abZ
-abZ
-bSB
-abZ
-abZ
-abZ
-abZ
-bSB
-abZ
-abZ
+adR
+adR
+clO
+adR
+adR
+adR
+adR
+clO
+adR
+adR
+adR
+adR
+clO
+adR
+adR
+adR
+adR
+clO
+adR
+adR
aaa
-abZ
+adR
aaa
aaa
aaa
@@ -82124,14 +84066,137 @@ aaa
aaa
aaa
aaa
-aaY
-aac
-aac
-aac
-aac
-aac
+acO
+aby
+aby
+aby
+aby
+aby
aaa
-aac
+aby
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aht
+amB
+aht
+aaa
+aaa
+aaa
+aaa
+aqI
+arL
+asR
+atT
+auR
+avW
+axb
+ayb
+azi
+aAB
+aBu
+aCI
+aDL
+aEF
+aAB
+aGp
+aHf
+aHX
+aIW
+aJO
+aKV
+aKT
+aNl
+aOy
+aPE
+aQT
+aRR
+aSO
+aUd
+aVd
+aWe
+aXa
+aYc
+aYX
+bad
+bbl
+bck
+bds
+bev
+aPE
+bgo
+bhd
+aBI
+aHG
+bjf
+bkg
+blo
+bkh
+bnF
+boL
+bpV
+bpV
+bpY
+bpY
+bvq
+bwR
+bpY
+bpY
+bpY
+bCw
+bDy
+bDy
+bDy
+bFU
+bIp
+bJv
+bJx
+bLN
+bMO
+bFU
+bCz
+bPE
+bQv
+bRj
+bRO
+bSH
+bTw
+bQr
+bQr
+bQr
+bQr
+bXk
+bTE
+bYR
+bZA
+cao
+cbj
+bXk
+ccW
+bXk
+bXk
+cfa
+cfa
+cfa
+cgv
+cgW
+cgW
+cgW
+cgX
+chy
+cgX
+cgW
+cgW
+cgW
+cfV
+bTE
+abI
aaa
aaa
aaa
@@ -82148,146 +84213,23 @@ aaa
aaa
aaa
aaa
-anY
-aoO
-apJ
-aqE
-ars
-asw
-atu
-auq
-avD
-awZ
-axR
-azb
-aAd
-aAX
-awZ
-aad
-aDl
-aDW
-aEN
-aFC
-aGG
-aGE
-aIV
-aJZ
-aKZ
-aMk
-aNe
-aNW
-aPb
-aQb
-aQY
-aRV
-aSQ
-aTI
-bWd
-aVJ
-aWD
-aXE
-bWH
-aKZ
-bWS
-baX
-axi
-aDI
-bcL
-bdF
-beN
-bdG
-bgV
-bhY
-bji
-bji
-bjl
-bjl
-bow
-bjk
-bjl
-bjl
-bjl
-bub
-bvf
-bvf
-bvf
-bxo
-bzn
-bAj
-bAl
-bCn
-bDl
-bxo
-buc
-bFu
-bGe
-bGN
-bHp
-bIh
-bIN
-bGa
-bGa
-bGa
-bGa
-bMb
-bIV
-bNj
-bND
-bNX
-bOz
-bMb
-bPq
-bMb
-bMb
-bQs
-bQs
-bQs
-bRd
-bMW
-bMW
-bMW
-bMX
-bMW
-bMX
-bMW
-bMW
-bMW
-bRZ
-bSc
-bIV
-aad
+aaa
+abI
aaa
aaa
aaa
aaa
+abI
aaa
aaa
aaa
aaa
+abI
aaa
aaa
aaa
aaa
-aaa
-aaa
-aaa
-aaa
-aad
-aaa
-aaa
-aaa
-aaa
-aad
-aaa
-aaa
-aaa
-aaa
-aad
-aaa
-aaa
-aaa
-aaa
-aad
+abI
aaa
aaa
aaa
@@ -82373,22 +84315,22 @@ aaa
aaa
aaa
aaa
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
+aby
+aby
+aby
+aby
+aby
+aby
+aby
+aby
aaa
-aad
+abI
aaa
aaa
aaa
-aad
+abI
aaa
-aac
+aby
aaa
aaa
aaa
@@ -82398,123 +84340,123 @@ aaa
aaa
aaa
aaa
+aht
+amC
+aht
aaa
aaa
aaa
aaa
+aqI
+arM
+asR
+atU
+auR
+avX
+axb
+ayb
+azj
+aAC
+aBv
+aCJ
+aDM
+aEG
+aAB
+aGq
+aHf
+aHY
+aIX
+aJO
+aKW
+aKT
+aNm
+aOy
+aPE
+aQU
+aRS
+aSP
+aUe
+aPE
+aWf
+aXb
+aPE
+aYY
+bae
+bbm
+bcl
+bdt
+bew
+bbu
+bgp
+aJI
+aDZ
+aHN
+bjg
+bkh
+bkh
+bmy
+bnF
+boM
+bpV
+brj
+bsJ
+buj
+bvr
+bwS
+byw
+bAe
+bpY
+bCx
+bDy
+bEI
+bFV
+bFU
+bIq
+bJw
+bKF
+bLO
+bMP
+bFU
+bCz
+bPE
+bQw
+bRj
+bRP
+bSH
+bTx
+bQr
+bUP
+bVL
+bWv
+bXl
+bYf
+bYS
+bZD
+cap
+bXk
+ccd
+ccX
+cdS
+ceu
+cfb
+cfu
+cfa
+cgv
+cgW
+cgW
+cgX
+cgX
+chy
+cgX
+cgX
+cgW
+cgW
+cfV
+bTE
+abI
aaa
aaa
aaa
-anY
-aoP
-apJ
-aqF
-ars
-asx
-atu
-auq
-avE
-axa
-axS
-azc
-aAe
-awZ
-awZ
-aad
-aDl
-aDW
-cij
-aFC
-aGH
-aGE
-aIW
-aJZ
-aKZ
-aMl
-aNf
-aNX
-aPc
-aKZ
-aQZ
-aRW
-aKZ
-aTJ
-bWe
-aVK
-aWE
-aXF
-aXK
-aWL
-bal
-aFw
-aAs
-aDJ
-bcM
-bdG
-bdG
-bga
-bgV
-bhZ
-bji
-bkv
-blQ
-bnn
-box
-bpH
-bqV
-bsi
-bjl
-buc
-bvf
-bwf
-bxp
-bxo
-bzo
-bAk
-bBp
-bCo
-bDm
-bxo
-buc
-bFu
-bGf
-bGN
-bHq
-bIh
-bIO
-bGa
-bKb
-bKR
-bLv
-bMc
-bMG
-bNi
-bNG
-bNY
-bMb
-bOW
-bPr
-bPJ
-bPZ
-bQt
-bQF
-bQs
-bRd
-bMW
-bMW
-bMX
-bMX
-bMX
-bMX
-bMX
-bMW
-bMW
-bQU
-bRd
-bIV
-aad
-aaa
-aaa
aaa
aaa
aaa
@@ -82616,36 +84558,36 @@ aaa
aaa
aaa
aaa
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
+aby
+aby
+aby
+aby
+aby
+aby
+aby
+aby
+aby
+aby
+aby
+aby
+aby
aaa
aaa
-aad
+abI
aaa
aaa
aaa
aaa
-aad
+abI
aaa
aaa
-aaZ
-aaZ
-aaZ
-aaZ
-aaZ
-aad
-aac
+acP
+acP
+acP
+acP
+acP
+abI
+aby
aaa
aaa
aaa
@@ -82655,121 +84597,121 @@ aaa
aaa
aaa
aaa
+aht
+amC
+aht
aaa
aaa
aaa
aaa
-aaa
-aaa
-aaa
-anY
-aoQ
-apJ
-aqE
-ars
-asy
-atu
-auq
-avF
-awZ
-axR
-azd
-aAf
-aAZ
-awZ
-aad
-aDl
-aDW
-aEN
-aFC
-aGI
-aGE
-aHA
-aJZ
-aKZ
-aMm
-aNg
-aNY
-aKZ
-aKZ
-aRa
-aRX
-aKZ
-aKZ
-aUJ
-aVL
-aWF
-bWz
-aYA
-aZs
-bam
-aFw
-aAs
-bce
-bcN
-bXB
-beO
-bdH
-bgW
-bia
-bjj
-bkw
-blR
-bno
-boy
-bpI
-bqW
-bsj
-btd
-bud
-bvf
-bwg
-bxq
-byw
-bzp
-bAl
-bAl
-bCp
-bDn
-bxo
-buc
-bFu
-bGg
-bGN
-bHr
-bIh
-bIP
-bGa
-bKc
-bKS
-bLw
-bMd
-bMH
-bNk
-bND
-bNZ
-bOA
-bOX
-bPs
-bPK
-bQa
-bQu
-bQG
-bQs
-bRd
-bRm
-bMX
-bMX
-bRG
-bRL
+aqI
+arN
+asR
+atT
+auR
+avY
+axb
+ayb
+azk
+aAB
+aBw
+aCK
+aDL
+aEH
+aAB
+aGr
+aHf
+aHX
+aIW
+aJO
+aKX
+aKT
+aLL
+aOy
+aPE
+aQV
+aRT
+aSQ
+aPE
+aPE
+aWg
+aXc
+aPE
+aPE
+baf
+bbn
+bcm
+bdu
+bex
+bfr
+bgq
+aJI
+aDZ
+bih
+bjh
+bki
+blp
+bmz
+bnG
+boN
+bpW
+brk
+bsK
+buk
+bvs
+bwT
+byx
+bAf
+bBl
+bCy
+bDy
+bEJ
+bFW
+bHe
+bIr
+bJx
+bJx
+bLP
+bMQ
+bFU
+bCz
+bPE
+bQx
+bRj
bRQ
-bMX
-bMX
-bMX
-bQU
-bRd
-bIV
-aad
+bSH
+bTy
+bQr
+bUQ
+bVM
+bWw
+bXm
+bYg
+bYT
+bZA
+caq
+cbk
+cce
+ccY
+cdT
+cev
+cfc
+cfv
+cfa
+cgv
+cgX
+cgX
+cgX
+cii
+cis
+ciG
+cgX
+cgX
+cgX
+cfV
+bTE
+abI
+aaa
aaa
aaa
aaa
@@ -82875,34 +84817,34 @@ aaa
aaa
aaa
aaa
-aad
+abI
aaa
aaa
aaa
aaa
-aad
-bUi
+abI
+acm
aaa
aaa
aaa
-aad
+abI
aaa
-aaZ
-aaZ
-aaZ
-aaZ
-abO
-aca
-aca
-aca
-aca
-acQ
-adf
-adA
-adQ
-aaZ
+acP
+acP
+acP
+acP
+adG
+adS
+adS
+adS
+adS
+aeJ
+aeY
+aft
+afK
+acP
aaa
-aac
+aby
aaa
aaa
aaa
@@ -82912,121 +84854,121 @@ aaa
aaa
aaa
aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aad
-anZ
-aoR
-apK
-aqE
-ars
-asz
-atu
-auq
-avG
-awZ
-axT
-aze
-azd
-aBa
-awZ
-aad
-aDl
-aDW
-aEO
-aFC
-aGE
-aGE
-aIX
-aJZ
-aKZ
-aKZ
-aNh
-aKZ
-aKZ
-aQc
-aRb
-aRY
-aSR
-aTK
-aUK
-aUL
-aUK
-aQV
-aUK
-aKZ
-bWT
-aFw
-aAs
-aDJ
-bcJ
-bcI
-bdD
-bdG
-bgX
-bia
-bXR
-bkx
-blS
-bnp
-blR
-bYe
-blR
-bsk
-bjl
-buc
-bvf
-bwh
-bxr
-bxo
-bzq
-bAm
-bBq
-bCq
-bDo
-bxo
-buc
-bFu
-bGh
-bGN
-bHs
-bIh
-bIQ
-bGa
-bKd
-bKS
-bLx
-bMe
-bMI
-bNl
-bNH
-bOa
-bMb
-bOY
-bPt
-bPL
-bQb
-bQv
-bQH
-bQV
-bRe
-bMW
-bMW
-bMX
-bRH
-bRM
+aht
+amC
+aht
+aht
+aht
+aht
+abI
+aqJ
+arO
+asS
+atT
+auR
+avZ
+axb
+ayb
+azh
+aAB
+aBx
+aCL
+aCK
+aEE
+aAB
+aGs
+aHf
+aHX
+aIY
+aJO
+aKT
+aKT
+aNn
+aOy
+aPE
+aPE
+aRU
+aPE
+aPE
+aVe
+aWh
+aXd
+aYd
+aYZ
+bag
+bah
+bag
+bdv
+bag
+aPE
+bgr
+aJI
+aDZ
+aHN
+bjd
+bjc
+bke
+bkh
+bnH
+boN
+bpX
+brl
+bsL
+bul
+bsK
+bwU
+bsK
+bAg
+bpY
+bCz
+bDy
+bEK
+bFX
+bFU
+bIs
+bJy
+bKG
+bLQ
+bMR
+bFU
+bCz
+bPE
+bQy
+bRk
bRR
-bMX
-bMW
-bMW
-bRZ
-bSd
-bIV
-aad
+bSI
+bTz
+bQr
+bUR
+bVM
+bWx
+bXn
+bYh
+bYU
+bZE
+car
+bXk
+ccf
+ccZ
+cdU
+cew
+cfd
+cfw
+cfW
+cgw
+cgV
+chy
+chy
+cij
+cit
+ciH
+chy
+chy
+cgV
+cfV
+bTE
+abI
+aaa
aaa
aaa
aaa
@@ -83130,36 +85072,36 @@ aaa
aaa
aaa
aaa
-aac
+aby
aaa
-aaf
-aaf
-aaf
-aaf
-aaf
-aaf
-aaf
-aaf
-aaf
-aaf
-aaf
-aaf
-aaZ
-abh
-abp
-abA
-abP
-acb
-bUo
-bUo
-acC
-abD
-adg
-adB
-adR
-aaZ
-aad
-aac
+abO
+abO
+abO
+abO
+abO
+abO
+abO
+abO
+abO
+abO
+abO
+abO
+acP
+acW
+adh
+ads
+adH
+adT
+aee
+aee
+aev
+adv
+aeZ
+afu
+afL
+acP
+abI
+aby
aaa
aaa
aaa
@@ -83169,120 +85111,120 @@ aaa
aaa
aaa
aaa
+aht
+amB
+aht
aaa
aaa
aaa
aaa
-aaa
-aaa
-aaa
-anY
-aoS
-apJ
-apK
-apK
-apK
-apK
-aup
-avH
-awZ
-bUX
-azf
-aAg
-aBb
-awZ
-aCC
-avO
-bVs
-aAs
-aFC
-aGE
-aHD
-aHA
-aKa
-aLa
-aMn
-aNi
-aNZ
-aPd
-aPd
-aPd
-aPd
-aPd
-aTL
-aUL
-aUK
-aUL
-aXH
-bWI
-aWL
-bWU
-aFw
-aAs
-aDJ
-bcO
-bcJ
-beQ
-bdG
-bdG
-bia
-bjj
-bkw
-blT
-bnq
-boz
-bpJ
-bqX
-bsl
-bjl
-bue
-bvf
-bwi
-bvf
-bxo
-bxo
-bAn
-bxo
-bxo
-bxo
-bxo
-buc
-bFu
-bGi
-bGN
-bHt
-bIi
-bIR
-bGa
-bKe
-bKS
-bLy
-bMf
-bMJ
-bNm
-bND
-bOb
-bOA
-bOX
-bPu
-bPM
-bQc
-bQw
-bQI
-bQs
-bRd
-bMX
-bMX
-bMX
-bRI
-bRN
+aqI
+arP
+asR
+asS
+asS
+asS
+asS
+aya
+azl
+aAB
+aBs
+aCM
+aDN
+aEI
+aAB
+aGn
+axi
+aHZ
+aDZ
+aJO
+aKT
+aLO
+aLL
+aOz
+aPF
+aQW
+aRV
+aSR
+aUf
+aUf
+aUf
+aUf
+aUf
+aZa
+bah
+bag
+bcn
+bdw
+bey
+bbu
+bgs
+aJI
+aDZ
+aHN
+bji
+bjd
+blq
+bkh
+bkh
+boN
+bpW
+brk
+bsM
+bum
+bvt
+bwV
+byy
+bAh
+bpY
+bCA
+bDy
+bEL
+bDy
+bFU
+bFU
+bJz
+bFU
+bFU
+bFU
+bFU
+bCz
+bPE
+bQz
+bRl
bRS
-bMX
-bMX
-bRm
-bQU
-bRd
-bIV
+bSJ
+bTA
+bQr
+bUS
+bVM
+bWy
+bXo
+bYi
+bYV
+bZA
+cas
+cbk
+cce
+cda
+cdV
+cex
+cfe
+cfx
+cfa
+cgv
+cgX
+cgX
+cgX
+cik
+ciu
+ciI
+cgX
+cgX
+cgX
+cfV
+bTE
+aaa
aaa
aaa
aaa
@@ -83387,34 +85329,34 @@ aaa
aaa
aaa
aaa
-aac
-aad
-aaf
-aag
-aak
-aap
-aaj
-aah
-aax
-aaG
-aaj
-aag
-aak
-aaQ
-aba
-abi
-abq
-abB
-abQ
+aby
+abI
+abO
+abV
acc
-acm
-acm
-acD
-acR
-adh
-adC
-adS
-aaZ
+ach
+abY
+abW
+acn
+acw
+abY
+abV
+acc
+acG
+acQ
+acX
+adi
+adt
+adI
+adU
+aef
+aef
+aew
+aeK
+afa
+afv
+afM
+acP
aaa
aaa
aaa
@@ -83426,122 +85368,122 @@ aaa
aaa
aaa
aaa
+aht
+amC
+aht
aaa
aaa
aaa
aaa
+aqI
+arQ
+asR
+atV
+auS
+awa
+axc
+ayc
+azm
+aAB
+aAB
+aCN
+aAB
+aAB
+aAB
+arA
+arA
+aHV
+aDZ
+aJO
+aKT
+aLP
+aNo
+aOA
+aPG
+aQX
+aRW
+aSS
+aUg
+aVf
+aWi
+aXe
+aYe
+aZb
+bag
+bah
+bag
+bdv
+bez
+bbu
+bgp
+bhf
+bhN
+big
+bjj
+bjd
+blr
+bkh
+bkh
+boO
+bpV
+brm
+bsN
+bun
+bpY
+bpV
+byz
+bpV
+bpY
+bCB
+bDz
+bEM
+bFY
+bDz
+bDz
+bJA
+bKH
+bKH
+bKH
+bNY
+bOJ
+bPE
+bQA
+bRm
+bRT
+bSK
+bTB
+bQr
+bUT
+bVN
+bWz
+bVN
+bYf
+bYW
+bZF
+cat
+bXk
+ccg
+cdb
+cdW
+cey
+cey
+cfy
+cfa
+cgv
+cgW
+cgW
+cgX
+cgX
+chy
+cgX
+cgX
+cgW
+cgW
+cfV
+bTE
aaa
aaa
aaa
-anY
-aoT
-apJ
-aqG
-art
-asA
-atv
-aur
-avI
-awZ
-awZ
-azg
-awZ
-awZ
-awZ
-apG
-apG
-aDV
-aAs
-aFC
-aGE
-aHE
-aIY
-aKb
-aLb
-aMo
-aNj
-aOa
-aPe
-aQd
-aRc
-aRZ
-bVS
-bVX
-aUK
-aUL
-aUK
-aQV
-aYB
-aWL
-bal
-baV
-bbE
-aDN
-bXy
-bcJ
-beR
-bdG
-bdG
-bib
-bji
-bky
-blU
-bnr
-bjl
-bji
-bqY
-bji
-bjl
-buf
-bvg
-bwj
-bxs
-bvg
-bvg
-bAo
-bBr
-bBr
-bBr
-bEe
-bEI
-bFu
-bGj
-bGO
-bHu
-bIj
-bIS
-bGa
-bKf
-bKT
-bLz
-bKT
-bMG
-bNg
-bNI
-bOc
-bMb
-bOZ
-bPv
-bPN
-bQd
-bQd
-bQJ
-bQs
-bRd
-bMW
-bMW
-bMX
-bMX
-bMX
-bMX
-bMX
-bMW
-bMW
-bQU
-bRd
-bIV
-aaa
-aaa
aaa
aaa
aaa
@@ -83644,36 +85586,36 @@ aaa
aaa
aaa
aaa
-aac
+aby
aaa
-aaf
-aah
-aal
-aam
-aam
-aam
-aay
-aaH
-aaH
-aaK
-aal
-aaR
-aaZ
-abj
-abr
-abC
-abR
+abO
+abW
acd
+ace
+ace
+ace
+aco
+acx
+acx
+acz
acd
-acd
-acd
-acS
-adi
-aaZ
-aaZ
-aaZ
-aew
-acf
+acH
+acP
+acY
+adj
+adu
+adJ
+adV
+adV
+adV
+adV
+aeL
+afb
+acP
+acP
+acP
+agq
+adX
aaa
aaa
aaa
@@ -83683,122 +85625,122 @@ aaa
aaa
aaa
aaa
+aht
+amC
+aht
aaa
aaa
aaa
aaa
+aqI
+arR
+asT
+atW
+atW
+atW
+axd
+axY
+azn
+aAD
+aBr
+axZ
+aDO
+aEJ
+aDO
+aAA
+aHe
+aHU
+aIZ
+aJT
+aKY
+aKY
+aKY
+aKY
+aKY
+aKY
+aKY
+aOy
+aUf
+aVg
+aWj
+aXf
+aYf
+aZc
+bai
+bbo
+bco
+bdw
+beA
+aPE
+aPE
+aJI
+aDZ
+aHN
+bjk
+bje
+bjd
+bmA
+bmA
+bjd
+bpY
+bpY
+bpY
+bpY
+bpY
+bwW
+byA
+bAi
+bva
+bva
+bva
+bva
+bva
+bva
+bva
+bva
+bva
+bva
+bva
+bNZ
+bva
+bPE
+bPE
+bPE
+bRU
+bPE
+bPE
+bQr
+bUU
+bUU
+bUU
+bUU
+bUT
+bYX
+bZA
+cau
+cbj
+bXk
+ccW
+bXk
+bXk
+cfa
+cfa
+cfa
+cgv
+cgW
+cgW
+cgX
+cgX
+chy
+cgX
+cgX
+cgW
+cgW
+cfV
+bTE
aaa
aaa
aaa
-anY
-aoU
-apL
-aqH
-aqH
-aqH
-ats
-aun
-avJ
-axb
-axP
-auo
-aAh
-aBc
-aAh
-awY
-aDk
-aDU
-aEP
-aFF
-aGJ
-aGJ
-aGJ
-aGJ
-aGJ
-aGJ
-aGJ
-aJZ
-aPd
-aQe
-aRd
-aSa
-aSS
-bVY
-aUM
-aVN
-bWq
-aXH
-aYC
-aKZ
-aKZ
-aFw
-aAs
-aDJ
-bcP
-bcK
-bcJ
-bgb
-bgb
-bcJ
-bjl
-bjl
-bjl
-bjl
-bjl
-bpK
-bqZ
-bYm
-boc
-boc
-boc
-boc
-boc
-boc
-boc
-boc
-boc
-boc
-boc
-bEf
-boc
-bFu
-bFu
-bFu
-bHv
-bFu
-bFu
-bGa
-bKg
-bKg
-bKg
-bKg
-bKf
-bNo
-bND
-bOd
-bOz
-bMb
-bPq
-bMb
-bMb
-bQs
-bQs
-bQs
-bRd
-bMW
-bMW
-bMW
-bMX
-bMW
-bMX
-bMW
-bMW
-bMW
-bRZ
-bSc
-bIV
-aaa
-aaa
aaa
aaa
aaa
@@ -83901,36 +85843,36 @@ aaa
aaa
aaa
aaa
-aac
+aby
aaa
-aaf
-aai
-aam
-aam
-aaf
-aaf
-aaz
-aaf
-aaf
-aaL
-aaH
-aaS
-aaZ
-aaZ
-aaZ
-abD
-abS
+abO
+abX
ace
-acn
-acn
-acE
-acT
-adj
-aaZ
-adT
-aek
+ace
+abO
+abO
+acp
+abO
+abO
+acA
+acx
+acI
+acP
+acP
+acP
+adv
+adK
+adW
+aeg
+aeg
aex
-acf
+aeM
+afc
+acP
+afN
+age
+agr
+adX
aaa
aaa
aaa
@@ -83940,121 +85882,121 @@ aaa
aaa
aaa
aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aad
-aoa
-aoJ
-apM
-aqI
-aru
-asB
-bUO
-aus
-avK
-axc
-axO
-azh
-aAi
-aBd
-aBd
-aBd
-aDm
-aDX
-aEQ
-aFE
-aGK
-aHF
-aIZ
-aKc
-aLc
-aMp
-aGJ
-aJZ
-aPd
-aQf
-aQe
-aSa
-aSS
-bVX
-aUN
-aVO
-bWq
-aQV
-aUK
-aUL
+aht
+amC
+aht
+aht
+aht
+aht
+abI
+aqK
+arG
+asU
+atX
+auT
+awb
+axe
+ayd
+azo
+aAE
+aBy
+aCO
+aDP
+aEK
+aEK
+aEK
+aHg
+aIa
+aJa
+aJQ
+aKZ
+aLQ
+aNp
+aOB
+aPH
+aQY
+aKY
+aOy
+aUf
+aVh
+aVg
+aXg
+aYf
+aZb
+baj
+bbp
+bco
+bdv
+bag
+bfs
+bgt
+bhd
+aBI
+aHG
+aBI
+bkj
+bls
+bmB
+bmB
+bmB
+bpZ
+brn
+bsO
+brn
+bvu
+bwX
+byB
+bAj
+bBm
+bBm
+bBm
+bEN
+bBm
+bHf
+bBm
+bEN
+bKI
+bBm
+bHf
+bOa
+bOK
+bPG
+bQB
+bBm
+bRV
+bSL
+bTC
+bUi
+bUV
+bVO
bWA
-baX
-axi
-aDI
-axi
-bdI
-bXE
-beS
-beS
-beS
-bXS
-bXU
-blV
-bXU
-boA
-bYf
-bra
-bsm
-bAp
-bAp
-bAp
-bYw
-bAp
-bAp
-bzr
-bYw
-bBs
-bAp
-bzr
-bEg
-bZy
-bFw
-bGk
-bAp
-bHw
-bIk
-bIT
-bJr
-bKh
-bKU
-bLA
-bIT
-bMK
-bNi
-bND
-bNt
-bOB
-bPa
-bPw
-bPO
-bPY
-bQr
-bQs
-bQT
-bRd
-bRm
-bMW
-bMW
-bRm
-bMW
-bMX
-bMW
-bMW
-bRm
-bQU
-bRd
-bIV
-aad
+bTC
+bYj
+bYQ
+bZA
+cav
+cbl
+cch
+cdc
+cdX
+cet
+ceZ
+cfa
+cfU
+cgv
+cgV
+cgW
+cgX
+cgX
+cgV
+cgX
+cgW
+cgW
+cgV
+cfV
+bTE
+abI
+aaa
aaa
aaa
aaa
@@ -84158,38 +86100,38 @@ aaa
aaa
aaa
aaa
-aac
+aby
aaa
-aaf
-aaj
-aam
-aaf
-aaf
-aaf
-aaz
-aaf
-aaf
-aaf
-aaM
-aaT
-aaf
-abb
-abs
-abE
-abT
-acd
-acd
-acd
-acd
-acU
+abO
+abY
+ace
+abO
+abO
+abO
+acp
+abO
+abO
+abO
+acB
+acJ
+abO
+acZ
adk
-adD
-adU
-ael
-aey
-acf
-acf
-acf
+adw
+adL
+adV
+adV
+adV
+adV
+aeN
+afd
+afw
+afO
+agf
+ags
+adX
+adX
+adX
aaa
aaa
aaa
@@ -84197,124 +86139,124 @@ aaa
aaa
aaa
aaa
+aht
+amC
+aht
aaa
aaa
aaa
aaa
aaa
aaa
-aaa
-aaa
-aaa
-apG
-apG
-apG
-apG
-apG
-aut
-apG
-axd
-axg
-axg
-aAj
-axg
-axg
-avO
-avO
-aDY
-aER
-aFI
-aGL
-aHG
-aJa
-aJa
-aLd
-aMq
-aGJ
+arA
+arA
+arA
+arA
+arA
+aye
+arA
+aAF
+aAH
+aAH
+aDQ
+aAH
+aAH
+axi
+axi
+aIb
+aJb
+aJU
+aLa
+aLR
+aNq
+aNq
+aPI
+aQZ
+aKY
+aOy
+aUf
+aVi
+aWk
+aXh
+aYg
+aZd
+bak
+bbq
+bcp
+bdx
+beB
+bft
+bgu
aJZ
-aPd
-aQg
-aRe
-aSb
-aST
-aTM
-aUO
-aVP
-aWG
-aXI
-aYD
-bWM
-ban
-aFN
-bbF
-bcd
-aAs
-bdJ
-bXF
-beT
-beT
-beT
-beT
-beT
-blW
-beT
-beT
-bpL
-brb
-bsn
-brb
-brb
-brb
-bwk
-brb
-brb
-bzs
-bAq
-bBt
-bAq
-bDp
-bEh
-bAq
-bZE
-bGl
-bAq
-bHx
-bIl
-bIT
-bJs
-bKi
-bKV
-bLB
-bIT
-bML
-bNi
-bND
-bNt
-bNt
-bNt
-bPw
+bhO
+bio
+aDZ
+bkk
+blt
+bmC
+bmC
+bmC
+bmC
+bmC
+bsP
+bmC
+bmC
+bwY
+byC
+bAk
+byC
+byC
+byC
+bEO
+byC
+bAk
+bIt
+bJB
+bKJ
+bJB
+bMS
+bOb
+bJB
bPH
-bPY
-bQr
-bQs
-bQU
-bRd
-bQU
-bRt
-bQU
-bQU
-bRt
-bQU
-bQU
-bRt
-bQU
-bQU
-bRd
-bIV
-aad
-aad
-aad
-aad
+bQC
+bJB
+bRW
+bSM
+bTC
+bUj
+bUW
+bVP
+bWB
+bTC
+bYk
+bYQ
+bZA
+cam
+cam
+cam
+cdd
+cdQ
+cet
+ceZ
+cfa
+cfV
+cgv
+cfV
+chz
+chQ
+chz
+cfV
+chz
+chQ
+chz
+cfV
+cfV
+bTE
+abI
+abI
+abI
+abI
+aaa
aaa
aaa
aaa
@@ -84415,38 +86357,38 @@ aaa
aaa
aaa
aaa
-aac
+aby
aaa
-aaf
-aaj
-aam
-aaf
-aaf
-aat
-aaB
-aaf
-aaf
-aaf
-aaN
-aaU
-abc
-abk
-abt
-abF
-abT
-acf
-aco
-aco
-acf
-acU
+abO
+abY
+ace
+abO
+abO
+acj
+acq
+abO
+abO
+abO
+acC
+acK
+acR
+ada
adl
-adE
-adE
-adE
-acf
-acf
-acf
-afo
+adx
+adL
+adX
+aeh
+aeh
+adX
+aeN
+afe
+afx
+afx
+afx
+adX
+adX
+adX
+ahh
aaa
aaa
aaa
@@ -84454,123 +86396,122 @@ aaa
aaa
aaa
aaa
+aht
+amB
+aht
aaa
aaa
aaa
aaa
aaa
aaa
-aaa
-aaa
-aaa
-afp
-apN
-arv
-apN
-atw
-auu
-atw
-axd
-axU
-azi
-aAk
-aBe
-axg
-aCD
-axm
-aDV
-aAs
-aFC
-aGK
-aHH
-aJb
-aKd
-aLe
-aMr
-aNk
-aOb
-aPd
-aQf
-aQe
-aQe
-aSS
-aRW
-aUP
-aVQ
-bWq
-aUL
-aUK
-aUL
-bWA
-aFw
-aAs
-bce
-aye
-bdK
-bXG
-beU
-beU
-beU
-bXT
-bXT
-bXT
-bXT
-bXT
-bpM
-beU
-bso
-bCr
-bug
-bCr
-bwl
-bxt
-bCr
-bzt
-bAr
-bBu
-bCr
-bDq
-bEi
-beU
-bFx
-beU
-bGP
-bHy
-bIl
-bIT
-bJt
-bKj
-bKW
-bLC
-bIT
-bMM
-bNg
-bNF
-bNB
+ahi
+atY
+auU
+atY
+axf
+ayf
+axf
+aAF
+aBz
+aCP
+aDR
+aEL
+aAH
+aGt
+aAN
+aHV
+aDZ
+aJO
+aKZ
+aLS
+aNr
+aOC
+aPJ
+aRa
+aRX
+aST
+aUf
+aVh
+aVg
+aXi
+aYf
+aXb
+bal
+bbr
+bco
+bah
+bag
+bfs
+bgt
+aJI
+aDZ
+bih
+aAL
+bkl
+blu
+bmD
+bmD
+bmD
+bqa
+bro
+bro
+bro
+bro
+bwZ
+bmD
+bAl
+bBn
+bCC
+bCC
+bEP
+bFZ
+bAl
+bIu
+bJC
+bKK
+bCC
+bMT
bOc
-bNt
-bOb
-bPH
-bPY
-bQr
-bQs
-bQT
-bRf
-bRl
-bRu
-bRl
-bRl
-bRu
-bRl
-bRl
-bRu
-bRl
-bRl
-bSe
-bIV
-aad
+bmD
+bPI
+bmD
+bRn
+bRX
+bSM
+bTC
+bUk
+bUX
+bVQ
+bWC
+bTC
+bYl
+bYO
+bZC
+cal
+cbm
+cci
+cde
+cdQ
+cet
+ceZ
+cfa
+cfU
+cgx
+cgU
+chA
+cgU
+chA
+cgU
+chA
+cgU
+cjt
+cfV
+cfV
+bTE
+abI
aaa
-aad
+abI
aaa
aaa
aaa
@@ -84585,7 +86526,8 @@ aaa
aaa
aaa
aaa
-aab
+aaa
+abN
aaa
aaa
aaa
@@ -84672,38 +86614,38 @@ aaa
aaa
aaa
aaa
-aac
-aae
-aaf
-aaj
-aan
-aaf
-aaf
-aau
-aaC
-aaI
-aaf
-aaf
-aaO
-aaV
-abd
-abl
-abu
-abG
-abU
-acg
-acp
-acp
-acF
-acV
+aby
+abJ
+abO
+abY
+acf
+abO
+abO
+ack
+acr
+acy
+abO
+abO
+acD
+acL
+acS
+adb
adm
-adF
-adV
-ael
-aez
-aeJ
-aeY
-afp
+ady
+adM
+adY
+aei
+aei
+aey
+aeO
+aff
+afy
+afP
+agf
+agt
+agD
+agR
+ahi
aaa
aaa
aaa
@@ -84711,121 +86653,121 @@ aaa
aaa
aaa
aaa
+aht
+amC
+aht
aaa
aaa
aaa
aaa
aaa
aaa
-aaa
-aaa
-aaa
-afp
-aqJ
-arw
-asC
-atx
-auv
-avL
-axe
-axV
-azj
-aAl
-azl
+ahi
+atZ
+auV
+awc
axg
-aCE
-aDn
-aDV
-aAs
-aFJ
-aGM
-aHI
-aJc
-aJc
-aLf
-aMs
-aGJ
-aMg
-aPd
-aQe
-aRf
-aQe
-aSU
-aTN
-aUP
-bWm
-bWr
-aUK
-aYE
-aKZ
-aKZ
-cfG
-aAs
-aDJ
-bcQ
-bcV
-bcR
-bgc
-bgc
-bcR
-bcZ
-bcZ
-bcZ
-bcZ
-bcZ
-bpN
-brc
-bsp
-bte
-bte
-bte
-bte
-bte
-bte
-bzu
-bAs
-bBv
-bCs
-bDr
-beT
-bEJ
-bFy
-bEJ
-bGQ
-bHy
-bIm
-bIU
-bIT
-bKk
-bKX
-bLD
-bLD
-bIV
-bNp
-bND
-bOe
-bOC
-bPb
-bNt
-bPP
-bMb
-bMb
-bMb
-bQW
-bQU
-bRn
-bQU
-bQU
-bQU
-bQU
-bQU
-bQU
-bQU
-bRn
-bQU
-bSf
-bMb
-aad
+ayg
+azp
+aAG
+aBA
+aCQ
+aDS
+aCS
+aAH
+aGu
+aHh
+aHV
+aDZ
+aJV
+aLb
+aLT
+aNs
+aNs
+aPK
+aRb
+aKY
+aQP
+aUf
+aVg
+aWl
+aVg
+aYh
+aZe
+bal
+bbs
+bcq
+bag
+beC
+aPE
+aPE
+bhg
+aDZ
+aHN
+bjl
+bjs
+bjo
+bmE
+bjq
+bjo
+bjw
+bjw
+bjw
+bjw
+bjw
+bxa
+byD
+bAm
+bBo
+bCD
+bDA
+bEQ
+bGa
+bHg
+bIv
+bJD
+bGa
+bBo
+bMU
+bmC
+bOL
+bPJ
+bOL
+bRo
+bRX
+bSN
+bTD
+bTC
+bUY
+bVR
+bWD
+bWD
+bTE
+bYY
+bZA
+caw
+cbn
+ccj
+cam
+cdY
+bXk
+bXk
+bXk
+cfX
+cfV
+cgY
+cfV
+cfV
+cfV
+cfV
+cfV
+cfV
+cfV
+cgY
+cks
+bXk
+abI
+aaa
aaa
aaa
aaa
@@ -84929,38 +86871,38 @@ aaa
aaa
aaa
aaa
-aac
+aby
aaa
-aaf
-aaj
-aam
-aaf
-aaf
-aav
-aaD
-aaf
-aaf
-aaf
-bUl
-aaj
-bUm
-bUn
-abv
-abH
-abT
-acf
-aco
-aco
-acf
-acU
+abO
+abY
+ace
+abO
+abO
+acl
+acs
+abO
+abO
+abO
+acE
+abY
+acT
+adc
adn
-adG
-adG
-aem
-acf
-acf
-acf
-afo
+adz
+adL
+adX
+aeh
+aeh
+adX
+aeN
+afg
+afz
+afz
+agg
+adX
+adX
+adX
+ahh
aaa
aaa
aaa
@@ -84968,125 +86910,125 @@ aaa
aaa
aaa
aaa
+aht
+amD
+aht
aaa
aaa
aaa
aaa
aaa
aaa
+ahi
+atY
+atY
+atY
+axh
+axh
+axh
+aAH
+aBB
+aCR
+aDT
+aEM
+aFA
+aGv
+aHi
+aHV
+aDZ
+aJO
+aKZ
+aLU
+aNt
+aOD
+aPL
+aRc
+aKY
+aSU
+aUh
+aVj
+aWm
+aXj
+aYi
+aXb
+bam
+bah
+bag
+bah
+beD
+bbu
+bgv
+aJI
+aDZ
+aHN
+bjm
+bjo
+blv
+bmF
+bkn
+boP
+bjw
+brp
+bsQ
+buo
+bjw
+bxb
+byE
+bAn
+bBp
+bBp
+bBp
+bBp
+bBp
+bvD
+bIw
+byK
+bKM
+bLR
+bMV
+bOd
+bOL
+bPK
+bOL
+bRp
+bRY
+bSM
+bTE
+bUl
+bUZ
+bVS
+bWE
+bXk
+bYm
+bYZ
+bZG
+cax
+cbo
+cck
+cdf
+cdZ
+cez
+cff
+cfz
+cfY
+cfV
+cgZ
+cfV
+chR
+cih
+civ
+cih
+chO
+cfV
+cgZ
+cfV
+bXk
+abI
+abI
+abI
aaa
aaa
aaa
-afp
-apN
-arx
-apN
-apN
-auw
-apN
-axd
-axW
-azk
-aAm
-aBf
-aBP
-bVh
-bVk
-aDV
-aAs
-aFC
-aGK
-aHJ
-aJd
-aKe
-aLg
-aMt
-aGJ
-aOc
-aPf
-aQh
-aRg
-aSc
-bVT
-aRW
-aUQ
-aUL
-aUK
-aUL
-aYF
-aWL
-bWV
-aFw
-aAs
-aDJ
-bcX
-bcR
-beV
-bdM
-bdM
-bic
-bcZ
-bkz
-blX
-bns
-bcZ
-bpO
-brd
-bsq
-bte
-buh
-bvh
-bwm
-bxu
-bte
-bzv
-bAt
-bBv
-bCt
-bDs
-bEj
-bEJ
-bFz
-bEJ
-bGR
-bHz
-bIl
-bIV
-bJu
-bKl
-bKY
-bLE
-bMb
-bMN
-bNq
-bNJ
-bOf
-bOD
-bPc
-bPy
-bPQ
-bQe
-bQx
-bQK
-bQX
-bQU
-bRo
-bQU
-bRy
-bRF
-bRO
-bRF
-bRw
-bQU
-bRo
-bQU
-bQU
-bMb
-aad
-aad
-aad
-aaa
-aaa
aaa
aaa
aaa
@@ -85186,160 +87128,160 @@ aaa
aaa
aaa
aaa
-aac
+aby
aaa
-aaf
-aaj
-aam
-aaf
-aaf
-aaf
-bUj
-aaf
-aaf
-aaf
-aaM
-aaW
-aaf
-abe
-abw
-abI
-abT
-ach
-ach
-ach
-ach
-acW
+abO
+abY
+ace
+abO
+abO
+abO
+act
+abO
+abO
+abO
+acB
+acM
+abO
+add
ado
-adH
-adW
-ael
-aey
-acf
-acf
-acf
-bUp
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aoV
-apN
-apN
-apN
-apN
-aty
-aux
-avM
-axf
-axX
-azl
-aAn
-aBg
-axg
-aCF
-bVl
-aDV
-aAs
-aFK
-aGJ
-aHK
-aHK
-aHK
-aHK
-aGJ
-aGJ
-aMe
-aPd
-aPd
-aPd
-aPd
-aPd
-bVZ
-aUL
-aUK
-aUL
-aUK
-bWJ
-aWL
-bWW
-aFw
-aAs
-aDJ
-bXz
-bcR
-beW
-bdM
-bdM
-bid
-bcZ
-bkA
-bkT
-bkT
-boB
-bpP
-bre
-bsr
-btf
-bui
-bvi
-bwn
-bxv
-bte
-bzw
-bAu
-bBv
-bCu
-beT
-beT
-bEJ
-bFA
-bEJ
-bGQ
-bHA
-bIn
-bIW
-bJv
-bKm
-bKZ
-bLF
-bMg
-bMO
-bNr
-bNK
-bNt
-bOE
-bNt
-bNt
-cjQ
-bMb
-bQy
-bMb
-bQY
-bRb
-bRp
-bRb
-bRz
-bMb
-bMb
-bMb
-bRx
-bRb
-bRX
-bRY
-bRY
-bMb
-aad
+adA
+adL
+adZ
+adZ
+adZ
+adZ
+aeP
+afh
+afA
+afQ
+agf
+ags
+adX
+adX
+adX
+ahr
+aht
+aht
+aht
+aht
+aht
+aht
+alO
+aht
+aht
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aht
+aaa
+aaa
+aht
+aaa
+aaa
+aAH
+aBC
+aCS
+aDU
+aEN
+aAH
+aGw
+aHj
+aHV
+aDZ
+aJW
+aKY
+aLV
+aLV
+aLV
+aLV
+aKY
+aKY
+aQN
+aUf
+aUf
+aUf
+aUf
+aUf
+aZf
+bah
+bag
+bah
+bag
+beE
+bbu
+bgw
+aJI
+aDZ
+aHN
+bjn
+bjo
+blw
+bmF
+bkn
+boQ
+bjw
+brq
+bqs
+bqs
+bvv
+bxc
+byF
+bAo
+bBq
+bCE
+bDB
+bER
+bBp
+bHh
+bIw
+byK
+bBo
+bLS
+bmC
+bmC
+bOL
+bPL
+bOL
+bRo
+bRZ
+bSO
+bTF
+bUm
+bVa
+bVT
+bWF
+bXp
+bYn
+bZa
+bZH
+cam
+cbp
+cci
+cam
+cdN
+bXk
+cfg
+bXk
+cfZ
+cgt
+cha
+cgt
+chS
+bXk
+bXk
+bXk
+chP
+cgt
+cjU
+ckq
+bXk
+abI
+aaa
aaa
aaa
aaa
@@ -85443,160 +87385,160 @@ aaa
aaa
aaa
aaa
-aac
+aby
aaa
-aaf
-aag
-aam
-aam
-aaf
-aaf
-bUj
-aaf
-aaf
-aam
-aam
-aap
-abf
-abf
-abf
-abJ
+abO
abV
-aci
-acq
-acq
-acG
-acX
-adp
-abf
-adX
-aen
-aeA
-aeK
-aeZ
-aeZ
-afy
-aeZ
-aeZ
-aeZ
-aeZ
-afy
-aeZ
-aeZ
-aeZ
-aeZ
-afy
-aeZ
-aeZ
-aeZ
-aeZ
-afy
-aeZ
-aeZ
-aeZ
-asD
-atz
-auy
-avN
-axg
-axY
-azl
-aAo
-aBh
-axg
-aCF
-bVl
+ace
+ace
+abO
+abO
+act
+abO
+abO
+ace
+ace
+ach
+acU
+acU
+acU
+adB
+adN
+aea
+aej
+aej
+aez
+aeQ
+afi
+acU
+afR
+agh
+agu
+agE
+agS
+agS
+ahs
+ahR
+ahs
+ahs
+ahs
+ahR
+ala
+aht
+aaa
+aht
+aaa
+aaa
+app
+apT
+apT
+apT
+apT
+apT
+apT
+aaa
+aht
+aaa
+aaa
+aAH
+aBD
+aCS
aDV
-aAs
-bVB
-aGN
-aHL
-aJe
-aKf
-aLh
-aGN
-aKW
-aMe
-aPd
-aQi
-aRh
-aSd
-aSV
-aTO
-aUR
-aVR
-aWH
-aWD
-aYG
-aKZ
-bWX
-aFw
-aAs
-aDJ
-bcR
-bcW
-beX
-bdM
-bgd
-bie
-bcZ
-bkB
-blY
-bnt
-boC
-bpQ
-brf
-bss
-bte
-bte
-bvj
-bwo
-bte
-bte
-bzw
-bAt
-bBv
-bCv
-beT
-beT
-beT
-beT
-beT
-bGQ
-beT
-bGm
-bIV
-bJw
-bKn
-bLa
-bLG
-bMh
-bMP
-bNs
-bNL
-bNs
-bOF
-bNt
-bNt
-bPR
-bMb
-bMb
-bMb
-bMb
-bMb
-bMb
-bMb
-bMb
-bMb
-bOz
-bMb
-bMb
-bMb
-bMb
-bMb
-bMb
-bSh
-aad
+aEO
+aAH
+aGw
+aHj
+aHV
+aDZ
+aJR
+anX
+aLW
+aNu
+aOE
+aPM
+anX
+aPB
+aQN
+aUf
+aVk
+aWn
+aXk
+aYj
+aZg
+ban
+bbt
+bcr
+bck
+beF
+aPE
+bgx
+aJI
+aDZ
+aHN
+bjo
+bjt
+blx
+bmF
+bnI
+boR
+bjw
+brr
+bsR
+bup
+bvw
+bxd
+byG
+bAp
+bBr
+bCF
+bDC
+bES
+bBp
+bHi
+bIw
+byK
+bBo
+bLT
+bmC
+bmC
+bmC
+bmC
+bmC
+bRo
+bmC
+bQD
+bTE
+bUn
+bVb
+bVU
+bWG
+bXq
+bYo
+bZb
+bZI
+cah
+cbq
+cam
+cam
+cea
+bXk
+bXk
+bXk
+bXk
+bXk
+bXk
+bXk
+bXk
+bXk
+cbj
+bXk
+bXk
+bXk
+bXk
+bXk
+ckJ
+abI
+aaa
aaa
aaa
aaa
@@ -85700,160 +87642,160 @@ aaa
aaa
aaa
aaa
-aac
+aby
aaa
-aaf
-aah
-aal
-aam
-aam
-aam
-aam
-aam
-aam
-aam
-aal
-aaG
-abf
-abm
-abx
-abK
+abO
abW
-ach
-ach
-ach
-ach
-acY
-adq
-abf
-abf
-abf
-aew
-acf
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-apN
-atA
-apN
-apN
-axg
-axZ
-azl
-aAp
-aBi
-aBP
-bVh
-bVm
-aDV
-aAs
-aFC
-bVC
-aHM
-aJf
-aKg
-aLi
-aGN
-aNl
-aMe
-aPd
-aQj
-aRi
-aSe
-aPd
-aPd
-aKZ
-aWL
-aWI
-aUK
-aYH
-aKZ
-bap
-aFw
-aAs
-bce
-bcS
-bXC
-beY
-bdL
-bgY
-bXO
-bjm
-bkC
-blZ
-bnu
-boD
-bpR
-bkW
-bst
-bte
-buj
-bvk
-bwp
-bxw
-bte
-bzw
-bAt
-bBv
-bCw
-bDt
-bEk
-bEK
-bFB
-bGm
-bGS
-bCr
-bIo
-bIX
-bJx
-bKo
-bJx
-bLH
-bMb
-bIV
-bNt
-bNM
-bOg
-bOG
-bPd
-bNt
-bPS
-bMb
+acd
+ace
+ace
+ace
+ace
+ace
+ace
+ace
+acd
+acw
+acU
+ade
+adp
+adC
+adO
+adZ
+adZ
+adZ
+adZ
+aeR
+afj
+acU
+acU
+acU
+agq
+adX
+abI
+abI
+aht
+aht
+aht
+aht
+aht
+aht
+aht
+aht
+aht
+aht
+aht
+aht
+aht
+apT
+aqL
+arS
+asV
+aua
+auW
+awd
+axi
+aaa
+aaa
+aAH
+aBE
+aCS
+aDW
+aEP
+aFA
+aGv
+aHk
+aHV
+aDZ
+aJO
+aLc
+aLX
+aNv
+aOF
+aPN
+anX
+aRY
+aQN
+aUf
+aVl
+aWo
+aXl
+aUf
+aUf
+aPE
+bbu
+bcs
+bag
+beG
+aPE
+bgy
+aJI
+aDZ
+bih
+bjp
+bkm
+bly
+bmG
+bnJ
+boS
+bqb
+brs
+bsS
+buq
+bvx
+bxe
+byH
+bAq
+bBs
+bCG
+bDD
+bET
+bBp
+bHj
+bIx
+byK
+bKM
+bLU
+bMW
+bOe
+bOM
+bPM
+bQD
+bRq
+bCC
+bSP
+bTG
+bUo
+bVc
+bUo
+bWH
+bXk
+bTE
+bZc
+bZJ
+cay
+cbr
+ccl
+cam
+ceb
+bXk
aaa
aaa
aaa
aaa
aaa
aaa
-aad
+abI
aaa
aaa
aaa
-aad
+abI
+aaa
+abI
+abI
+abI
+abI
aaa
-aad
-aad
-aad
-aad
-aad
aaa
aaa
aaa
@@ -85957,34 +87899,34 @@ aaa
aaa
aaa
aaa
-aac
-aad
-aaf
-aai
-aao
-aaq
-aaj
-aah
-aaF
-aaG
-aaj
-aai
-aao
-aaq
-abf
-abn
aby
-abL
+abI
+abO
abX
-acj
-acr
-acr
-acH
-abN
-adr
-acs
-adY
-abf
+acg
+aci
+abY
+abW
+acu
+acw
+abY
+abX
+acg
+aci
+acU
+adf
+adq
+adD
+adP
+aeb
+aek
+aek
+aeA
+adF
+afk
+ael
+afS
+acU
aaa
aaa
aaa
@@ -85998,113 +87940,113 @@ aaa
aaa
aaa
aaa
+aht
aaa
aaa
+abI
+apT
+aqM
+arT
+asW
+aub
+auX
+awe
+axj
aaa
aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-axg
-aya
-azm
-aAq
-aBj
-aBQ
-aCG
-aDo
-aDV
-aAs
-aFJ
-aGO
-aHN
-aJg
-aKh
-aLj
-aGN
-aNm
-aMe
-aPd
-aQk
-aRj
-aSf
-aSW
-aPd
-bWf
-aVS
-aWJ
-aUL
-aTN
-bWA
+aAH
+aBF
+aCT
+aDX
+aEQ
+aFB
+aGx
+aHl
+aHV
+aDZ
+aJV
+aLd
+aLY
+aNw
+aOG
+aPO
+anX
+aRZ
+aQN
+aUf
+aVm
+aWp
+aXm
+aYk
+aUf
bao
-aFw
-aAs
-aDJ
-bcT
-bdM
-bdM
-bXL
-bgZ
-bXO
-bjn
-bkD
-blY
-bnv
-boE
-bpS
-bkW
-bsu
-bxC
-bxC
-bxC
-bxC
-bxC
-bxC
-bzx
-bAt
-bAA
-bCx
-bDu
-bEl
-bEL
-bAA
-bGn
-bGT
-bHB
-bAA
-bAA
-bAA
-bKp
-bAA
-bAA
-bAA
-bAA
-bMb
-bMb
-bMb
-bMb
-bMb
-bMb
-bMb
-bMb
-aad
-abZ
+bbv
+bct
+bah
+aZe
+bdy
+bdo
+aJI
+aDZ
+aHN
+bjq
+bkn
+bkn
+bmH
+bnK
+boS
+bqc
+brt
+bsR
+bur
+bvy
+bxf
+byI
+bAr
+bBt
+bCH
+bDE
+bEU
+bBp
+bHk
+bIw
+bJE
+bJN
+bLV
+bMX
+bOf
+bON
+bJN
+bQE
+bRr
+bSa
+bJN
+bJN
+bJN
+bVd
+bJN
+bJN
+bJN
+bJN
+bXk
+bXk
+bXk
+bXk
+bXk
+bXk
+bXk
+bXk
+abI
+adR
aaa
aaa
aaa
aaa
-aad
+abI
aaa
aaa
aaa
-aad
+abI
aaa
aaa
aaa
@@ -86214,36 +88156,36 @@ aaa
aaa
aaa
aaa
-aac
+aby
aaa
-aaf
-aaf
-aaf
-aaf
-aaf
-aaf
-aaf
-aaf
-aaf
-aaf
-aaf
-aaf
-abf
-abo
-abz
-abM
-abY
-ack
-acs
-acs
-acI
-acZ
-ads
-acs
-adY
-abf
-aad
-aac
+abO
+abO
+abO
+abO
+abO
+abO
+abO
+abO
+abO
+abO
+abO
+abO
+acU
+adg
+adr
+adE
+adQ
+aec
+ael
+ael
+aeB
+aeS
+afl
+ael
+afS
+acU
+abI
+aby
aaa
aaa
aaa
@@ -86255,114 +88197,114 @@ aaa
aaa
aaa
aaa
+aht
+aaa
+aaa
+abI
+apT
+aqN
+arU
+asX
+auc
+auY
+awf
+axk
+aaa
+abI
+aAH
+aBG
+aCU
+aDY
+aER
+aAH
+aGy
+aAN
+aHV
+aDZ
+aJO
+aLc
+aLZ
+aNx
+aOH
+aPP
+anX
+aSa
+aQN
+aUf
+aUf
+aWq
+aXn
+aYl
+aUf
+bap
+bbw
+bcu
+bag
+aXb
+bdy
+bdo
+bhd
+aBI
+aHG
+bjr
+bko
+blz
+bmI
+bnK
+boT
+bqb
+bru
+bsT
+bus
+bvz
+bxg
+byH
+bAs
+bBu
+bCI
+bDF
+bEV
+bBp
+bHl
+bIw
+bJF
+bKO
+bLW
+bMY
+bOg
+bOO
+bPN
+bQF
+bRs
+bSb
+bLW
+bTH
+bUp
+bVe
+bVV
+bWI
+bXr
+bKQ
+acN
+bZK
+abI
+abI
+abI
+abI
aaa
aaa
aaa
+adR
aaa
aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aad
-axg
-ayb
-azn
-aAr
-aBk
-axg
-aCH
-axm
-aDV
-aAs
-aFC
-bVC
-aHO
-aJh
-aKi
-aLk
-aGN
-aNn
-aMe
-aPd
-aPd
-aRk
-aSg
-aSX
-aPd
-bWg
-aVT
-aWK
-aUK
-aRW
-bWA
-bao
-baX
-axi
-aDI
-bcU
-bdN
-beZ
-bgf
-bgZ
-bXP
-bjm
-bkE
-bma
-bnw
-boF
-bpT
-bkW
-bsv
-bth
-buk
-bvl
-bwq
-bxx
-bxC
-bzw
-bAt
-bAA
-bCy
-bDv
-bEm
-bEM
-bFC
-bGo
-bGU
-bHC
-bFC
-bCy
-baW
-bKq
-bMR
-bLI
-bMi
-bNv
-aaX
-bJD
-aad
-aad
-aad
-aad
-aaa
-aaa
-aaa
-abZ
-aaa
-aaa
-aaY
-abZ
-abZ
-abZ
-abZ
-abZ
-abZ
-abZ
+acO
+adR
+adR
+adR
+adR
+adR
+adR
+adR
aaa
aaa
aaa
@@ -86473,34 +88415,34 @@ aaa
aaa
aaa
aaa
-aad
+abI
aaa
aaa
aaa
aaa
-aad
-bUk
+abI
+acv
aaa
aaa
aaa
-aaP
-aaX
-abg
-abg
-abg
-abN
-abf
-abf
-abf
-abf
-abf
-abf
-adt
-adI
-adZ
-abf
+acF
+acN
+acV
+acV
+acV
+adF
+acU
+acU
+acU
+acU
+acU
+acU
+afm
+afB
+afT
+acU
aaa
-aac
+aby
aaa
aaa
aaa
@@ -86512,104 +88454,104 @@ aaa
aaa
aaa
aaa
+aht
aaa
aaa
+abI
+apT
+aqO
+arV
+asY
+aud
+auZ
+awg
+axl
aaa
-aaa
-aaa
-aad
-aoW
-aoW
-aoW
-aoW
-aoW
-aoW
-aad
-avO
-axg
-axg
-azo
-axg
-axg
-axg
-axm
-axm
+axi
+aAH
+aAH
+aCV
+aAH
+aAH
+aAH
+aAN
+aAN
+aIc
+aGV
+aJP
+anX
+aMa
+aNy
+aOI
+aPQ
+anX
+aSb
+aSV
+aNj
+aVn
+aWr
+aXo
+aYm
+aUf
+baq
+bbx
+bcv
+bah
+beH
+aPE
+bgz
+aJI
aDZ
-aDc
-aFD
-aGN
-aHP
-aJi
-aKj
-aLl
-aGN
-aNo
-aOd
-aIT
-aQl
-aRl
-aSh
-aSY
-aPd
-bWh
-aVU
-aWJ
-aUL
-aYJ
-aKZ
-bWY
-aFw
-aAs
-bcg
-bcR
-bdO
-bfa
-bgg
-bha
-bcW
-bcZ
-bcZ
-bcZ
-bcZ
-bnD
-bpU
-bnD
-bik
-bth
-bul
-bvm
-bwr
-bxy
-bxC
-bzy
-bAv
-bBw
-bCz
-bDw
-bEn
-bEN
-bFD
-bGp
-bGV
-bHD
-bIp
-bIY
-bJy
-bKr
-bGs
-bLJ
-bMj
-bAA
-aad
-bAJ
-bAJ
-bAJ
-bAJ
-bAJ
-aad
-aac
-aad
-abZ
+bip
+bjo
+bkp
+blA
+bmJ
+bnL
+boU
+bjw
+bjw
+bjw
+bjw
+bqb
+bxh
+bqb
+bod
+bBv
+bCJ
+bCJ
+bBv
+bBp
+bHm
+bIy
+bJG
+bKP
+bLX
+bMZ
+bOh
+bOP
+bPO
+bPO
+bRt
+bSc
+bSQ
+bTI
+bUq
+bVf
+bQI
+bWJ
+bXs
+bJN
+abI
+bJP
+bJP
+bJP
+bJP
+bJP
+abI
+abI
+abI
+adR
aaa
aaa
aaa
@@ -86728,36 +88670,36 @@ aaa
aaa
aaa
aaa
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
+aby
+aby
+aby
+aby
+aby
+aby
+aby
+aby
+aby
+aby
+aby
+aby
+aby
aaa
aaa
-aad
+abI
aaa
aaa
aaa
aaa
-aad
+abI
aaa
aaa
-abf
-abf
-abf
-abf
-abf
-aad
-aac
+acU
+acU
+acU
+acU
+acU
+abI
+aby
aaa
aaa
aaa
@@ -86769,104 +88711,104 @@ aaa
aaa
aaa
aaa
+aht
aaa
aaa
-aaa
-aaa
-aaa
-aaa
-aoW
-apO
-aqK
-ary
-asE
-atB
-aad
-auB
-bUT
-ayc
-azp
-aAs
-axm
-aBR
-aCI
-axm
-bVt
-aAs
+abI
+apT
+aqP
+arW
+asZ
+aue
+apT
+awh
+axk
+abI
+awd
+aAI
+aBH
+aCW
+aDZ
+aAN
aFC
-aGN
-aGN
-aJj
-aKk
-aGN
-aGN
-aGE
-bVH
-aGE
-aPd
-aPd
-aSi
-aPd
-aPd
-aKZ
-aKZ
-bWs
-bWA
-aKZ
-aKZ
-aAs
-aFw
-aAs
-bXo
-bcV
-bdP
-bXH
-bdM
-bhb
-bif
-bjo
-bkF
-bmb
-bnx
-boG
-bpV
-brg
-bsw
-bti
-bum
-bvn
-bws
-bxz
-byx
-bzz
+aGz
+aAN
+aId
+aDZ
+aJR
+anX
+anX
+aNz
+aOJ
+anX
+anX
+aKT
+aSW
+aKT
+aUf
+aUf
+aXp
+aUf
+aUf
+aPE
+aPE
+bcw
+bdy
+aPE
+aPE
+aDZ
+aJI
+aDZ
+biq
+bjs
+bkq
+blB
+bkn
+bnM
+boV
+bqd
+brv
+bsU
+but
+bsU
+bxi
+byJ
bAt
-bAA
-bCA
-bDx
-bEo
-bEO
-bFC
-bGq
-bGW
-bHE
-bFC
-bIZ
-bEY
-bKs
-bEY
-bLK
-bMk
-bMQ
-bNu
-bNN
-bOh
-bOH
-bOH
-bAJ
+bBw
+bCK
+bDG
+bEW
+bAt
+bvD
+bIz
+bJF
+bKO
+bLW
+bNa
+bOi
+bOQ
+bPP
+bQG
+bRu
+bSd
+bLW
+bTJ
+bMf
+bUs
+bMf
+bWK
+bXt
+bYp
+bZd
+bZL
+caz
+cbs
+cbs
+bJP
aaa
-aac
aaa
-abZ
+aaa
+adR
aaa
aaa
aaa
@@ -86998,23 +88940,23 @@ aaa
aaa
aaa
aaa
-aaY
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
+acO
+aby
+aby
+aby
+aby
+aby
+aby
+aby
+aby
aaa
-aad
+abI
aaa
aaa
aaa
-aad
+abI
aaa
-aac
+aby
aaa
aaa
aaa
@@ -87026,102 +88968,102 @@ aaa
aaa
aaa
aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aad
-aoW
-apP
-aqL
-arz
-asF
-atC
-auz
-auz
-axi
-axi
-azq
-axi
-aBl
-axi
-axi
-aDd
-aDI
-axi
-aFL
-axi
-aHQ
-aJk
-aKl
-aHQ
-aMu
-aHQ
-bVI
-aPg
-aQm
-aHQ
-aSj
-aHQ
-aTS
-aUS
-aHQ
-bVI
-aHQ
-axi
-aDd
+aht
+anX
+anX
+anX
+apT
+apT
+apT
+apT
+apT
+apT
+awi
+axk
+awd
+awd
+aAJ
+aBI
+aCX
+aBI
+aES
+aBI
+aBI
+aGW
+aHG
+aBI
+aJX
+aBI
+aMb
+aNA
+aOK
+aMb
+aRd
+aMb
+aSX
+aUi
+aVo
+aMb
+aXq
+aMb
+aZh
bar
-baT
-aAs
-bcg
-bcR
-bdQ
-bXI
-bdN
-bhc
-big
-bjp
-bkG
-bmc
-bny
-boH
-bpW
-brh
-bsx
-btj
-bun
-bvo
-bwt
-bxA
-bxC
-bzA
+aMb
+aSX
+aMb
+aBI
+aGW
+bgA
+bhe
+aDZ
+bip
+bjo
+bkr
+blC
+bko
+bnN
+boW
+bqe
+boW
+boW
+boW
+bvA
+bxj
+byK
bAt
-bAA
-bCB
-bDx
-bEo
-bEP
-bAA
-bAA
-bAA
-bAA
-bAA
-bJa
-bJz
-bKt
-bLb
-bLL
-bMl
-bFC
-aad
-bCQ
-bOi
-bOI
-bPe
-bAJ
+bBx
+bCL
+bDH
+bEX
+bGb
+bHn
+bIA
+bJH
+bJN
+bJN
+bNb
+bOj
+bOR
+bJN
+bJN
+bJN
+bJN
+bJN
+bTK
+bUr
+bVg
+bVW
+bWL
+bXu
+bLW
+abI
+bMi
+caA
+cbt
+ccm
+bJP
+aaa
aaa
-aac
aaa
aaa
aaa
@@ -87265,13 +89207,13 @@ aaa
aaa
aaa
aaa
-aac
-aac
-aac
-aac
-aac
+aby
+aby
+aby
+aby
+aby
aaa
-aac
+aby
aaa
aaa
aaa
@@ -87283,102 +89225,102 @@ aaa
aaa
aaa
aaa
-aaa
-aaa
-aaa
-aaa
-aad
-aad
-aoW
-apQ
-aqM
-arA
-asG
-atD
-auA
-avP
-axj
-ayd
-azr
-aAt
-aAt
-aAt
-aAt
-aDp
+aht
+anX
+aoA
+apq
+apU
+aqQ
+arX
+ata
+auf
+ava
+awj
+axm
+ayh
+azq
+aAK
+aBJ
+aCY
aEa
-aES
-aJl
-aAt
-aAt
-aJl
-aKm
-aLm
-aLm
-aLm
-aLm
-aPh
-aFw
-aAs
-aDJ
-aAs
-aAs
-aAs
-aVV
-aAs
-aAs
-aAs
-aDc
-aAs
-baY
-bbD
-bcf
-bcW
-bdR
-bXJ
-bdM
-bhd
-bcW
-bjq
-bkH
-bmd
-bnz
-boI
-bpX
-bgZ
-bsw
-bti
-buo
-bvp
-bwu
-bxB
-bxC
-bzA
+aEa
+aEa
+aEa
+aHm
+aIe
+aJc
+aJY
+aEa
+aEa
+aJY
+aOL
+aPR
+aPR
+aPR
+aPR
+aUj
+aJI
+aDZ
+aHN
+aDZ
+aDZ
+aDZ
+bby
+aDZ
+aDZ
+aDZ
+aGV
+aDZ
+bhh
+bhM
+bir
+bjt
+bks
+blD
+bmK
+bmK
+bmK
+bqf
+bmK
+bsV
+buu
+bvB
+bxk
+byK
bAt
-bAA
-bCC
-bDx
-bEo
-bEQ
-bZF
-bGr
-bGX
-bHF
-bZF
-bJb
-bKs
+bBy
+bCM
+bDI
bEY
-bJA
-bLM
-bMq
+bGc
+bHo
+bIB
bJI
-bNw
-bNN
-bOj
-bOH
-bOH
-bAJ
+bJN
+bLY
+bNc
+bOk
+bOS
+bPQ
+bQH
+bRv
+bSe
+bPQ
+bTL
+bUs
+bMf
+bVX
+bWM
+bXv
+bWc
+bZe
+bZL
+caB
+cbs
+cbs
+bJP
+aaa
aaa
-aac
aaa
aaa
aaa
@@ -87540,102 +89482,102 @@ aaa
aaa
aaa
aaa
+aht
+anX
+aoB
+apr
+apV
+aqR
+arY
+atb
+aug
+anX
+awk
+axn
+axn
+axn
+aAL
+aAL
+aCZ
+aAL
+aAL
+aAL
+aAL
+aGU
+aCZ
+aJd
+aJZ
+aAL
+aMc
+aNB
+aOM
+aPS
+aRe
+aMc
+aHE
+aUk
+aJZ
+aMc
+aXr
+aMc
+aZi
+aMc
+bbz
+aMc
+aPS
+aAL
+aGU
+aAL
+aJZ
+aAL
+bis
+aAN
+bkt
+bkt
+bku
+bkt
+bku
+bkt
+bku
+bkt
+bkt
+bvC
+bxl
+byK
+bAu
+bAu
+bAt
+bAt
+bAu
+bAu
+bHp
+bIz
+bJJ
+bKQ
+bLZ
+bNd
+bOl
+bOT
+bPR
+bQI
+bQI
+bQI
+bQI
+bTM
+bUs
+bMf
+bOk
+bWL
+bXw
+bLW
+abI
+bJP
+bJP
+bJP
+bJP
+bJP
aaa
-aaa
-aaa
-aaa
-aaa
-aad
-aoW
-apR
-aqN
-arB
-asH
-atE
-auB
-auB
-axk
-aye
-azs
-aye
-aye
-aye
-aye
-aDb
-azs
-aET
-aFN
-aye
-aHR
-aJm
-aKn
-aLn
-aHR
-aHR
-aDG
-aPi
-aFN
-aHR
-aSk
-aHR
-bWa
-aHR
-aSk
-aHR
-aLn
-aye
-aDb
-aye
-aFN
-aye
-bXp
-bcW
-bdS
-bdT
-bdT
-bdS
-bdS
-bdS
-bdS
-bdS
-bdS
-boJ
-bpY
-bgZ
-bsy
-bth
-bth
-bth
-bth
-bxC
-bxC
-bzA
-bAw
-bBx
-bCD
-bDy
-bEp
-bER
-bFE
-bGs
-bGs
-bGs
-bGs
-bJc
-bKs
-bEY
-bEo
-bLL
-bMn
-bFC
-aad
-bAJ
-bAJ
-bAJ
-bAJ
-bAJ
-aaa
-aac
+aby
aaa
aaa
aaa
@@ -87797,102 +89739,102 @@ aaa
aaa
aaa
aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aad
-aoW
-apS
-aqO
-arC
-asI
-aoW
-aad
-auB
-axl
-ayf
-azt
-aAu
-axl
-bVf
-azt
-axm
+aht
+anX
+aoC
+aps
+apW
+aqS
+arZ
+atc
+auh
+avb
+awl
+awd
+abI
+awd
+aAM
+aBK
+aDa
aEb
-aEU
-aFO
-aGR
-aGR
-aJn
-aKo
-aGR
-aGR
-aLr
-aOe
-aPj
-aPq
-aLr
-aGS
-aGS
-aGS
-aGS
-aGS
-aAC
-aAC
-aAC
-aAC
-bWZ
-aFw
-aAs
-aDJ
-bcX
-bdT
-bfd
-bgi
-bhe
-bih
-bjr
-bkI
-bXW
-bnA
-boK
-bpZ
-bri
-bsy
-btk
-bup
-bvq
-bwv
-bxD
-byy
-bzB
-bAx
-bAA
-bCE
-bDz
-bEo
-bES
-bFF
-bFF
-bGY
-bEY
-bEY
-bJd
-bLd
-bEY
-bEo
-bLK
-bMk
-bMQ
-bNu
-bNN
+aAM
+aFD
+aDa
+aAN
+aIf
+aJe
+aKa
+aLe
+aLe
+aNC
+aON
+aLe
+aLe
+aPW
+aSY
+aUl
+aUs
+aPW
+aLf
+aLf
+aLf
+aLf
+aLf
+aEj
+aEj
+aEj
+aEj
+bgB
+aJI
+aDZ
+aHN
+bjm
+bku
+blE
+bmL
+bnO
+boX
+bqg
+brw
+bsW
+bku
+bvD
+bxm
+byL
+bAv
+bsU
+bsU
+bsU
+bsU
+bGd
+bHq
+bIC
+bJK
+bJN
+bMa
+bNe
+bOm
+bOU
+bPS
+bPS
+bRw
+bMf
+bMf
+bTN
+bUt
+bMf
bOk
-bOJ
-bOJ
-bAJ
-aaa
-aac
+bWK
+bXt
+bYp
+bZd
+bZL
+caC
+cbu
+cbu
+bJP
+abI
+aby
aaa
aaa
aaa
@@ -88054,106 +89996,106 @@ aaa
aaa
aaa
aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aad
-aoW
-aoW
-aoW
-aoW
-aoW
-aoW
-aad
-avO
-axm
-auB
-auB
-axm
-axm
-auB
-auB
-anp
-aEc
-aEV
-aFP
-aGR
-aHS
-aJo
-aKp
-aLo
-aMv
-aNp
-aOf
-aKu
-aQn
-aRm
-aLr
+aht
+anX
+anX
+anX
+anX
+anX
+asa
+atd
+aui
+avc
+awm
+awd
+abI
+axi
+aAN
+awd
+awd
+aAN
+aAN
+awd
+awd
+apX
+aIg
+aJf
+aKb
+aLe
+aMd
+aND
+aOO
+aPT
+aRf
+aSc
aSZ
-aTT
-aUU
-aGS
-bWu
-bWB
-aCg
-aZv
-aAs
-aFw
-bXg
-aDJ
-bcX
-bdU
-bfe
-bff
-bff
-bff
-bjs
-bkJ
-bme
-bnB
-boL
-bqa
-brj
-bsz
-btl
-buq
-bvr
-bww
-bxD
-byz
-bzC
-bAy
-bBy
-bCF
-bDz
-bEo
-bET
-bZF
-bGt
-bGZ
-bGt
-bZF
-bJe
-bEY
-bEY
-bEo
-bLL
-bMo
-bFC
-aad
-bCQ
-bOl
-bOK
-bPf
-bAJ
-aad
-aac
+aOT
+aVp
+aWs
+aPW
+aYn
+aZj
+bas
+aLf
+bcx
+bdz
+aFi
+bfu
+aDZ
+aJI
+bhP
+aHN
+bjm
+bkv
+blF
+bmM
+bmM
+bmM
+bqh
+brx
+bsX
+buv
+bvE
+bxn
+byM
+bAw
+bBz
+bBz
+bDJ
+bBz
+bBz
+bHr
+bID
+bJL
+bKR
+bMb
+bNf
+bOk
+bOV
+bPQ
+bQJ
+bRx
+bQJ
+bPQ
+bTO
+bMf
+bMf
+bOk
+bWL
+bXx
+bLW
+abI
+bMi
+caD
+cbv
+ccn
+bJP
+aaa
+aby
+aaa
aaa
aaa
aaa
-aac
aaa
aaa
aaa
@@ -88310,107 +90252,107 @@ aaa
aaa
aaa
aaa
+aht
+aht
+aht
+aaa
+aaa
+aaa
+anX
+anX
+anX
+anX
+anX
+awd
+awd
+aaa
+aaa
+aht
aaa
aaa
aaa
aaa
aaa
aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-anp
-aEd
-aEW
-avZ
-aGR
-aHT
-aJp
-aKq
-aLp
-aMw
-aNq
-aOg
-aKu
-aQo
-aRn
-aSl
+apX
+aIh
+aJg
+azA
+aLe
+aMe
+aNE
+aOP
+aPU
+aRg
+aSd
aTa
-aQs
-aUV
-aGS
-bWv
-aGX
-aAC
-aAC
-bas
-baZ
-bbG
-bcg
-bcX
-bdT
-bff
-bXM
-bXN
-bXN
-bjt
-bff
-bff
-bnA
-boK
-bdM
-brk
-bsy
-btm
-bur
-bvs
-bwx
-bxE
-byA
-bzD
-bAz
-bAA
-bCG
-bDA
-bEq
-bEU
-bZF
-bZF
-bZF
-bZF
-bZF
-bJf
-bEY
-bBz
-bKu
-bLM
-bMp
-bJI
-bNw
-bNN
-bOm
-bOJ
-bOJ
-bAJ
+aOT
+aVq
+aWt
+aXs
+aYo
+aVu
+bat
+aLf
+bcy
+aKq
+aEj
+aEj
+bgC
+bhi
+bhQ
+bip
+bjm
+bku
+blG
+bmN
+bnP
+bnP
+bqi
+bmM
+bsY
+bku
+bvF
+bxo
+byN
+bAx
+bBA
+bBA
+cnB
+bBA
+bBA
+bHs
+bBA
+bJM
+bJN
+bMc
+bNg
+bOn
+bOW
+bPQ
+bPQ
+bJN
+bPQ
+bPQ
+bTP
+bMf
+bVh
+bVY
+bWM
+bXy
+bWc
+bZe
+bZL
+caE
+cbu
+cbu
+bJP
+aaa
+aby
aaa
-aac
aaa
aaa
aaa
-aac
aaa
aaa
aaa
@@ -88562,112 +90504,112 @@ aaa
aaa
aaa
aaa
-aad
-agT
-agT
-agU
-agU
-agT
-agT
+abI
+aiS
+aiS
+aiT
+aiT
+aiS
+aiS
+aht
+aht
+aaa
+aaa
+aaa
+aht
+aaa
+aht
+aaa
+aaa
+aaa
+aaa
+aaa
+aht
aaa
aaa
aaa
aaa
aaa
aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aDq
-aEd
-aEW
-aFQ
-aGR
-aHU
-aJq
-aKr
-aLq
-aMv
-aNp
-aOf
-aPk
-aQn
-aRo
-aSm
-aTb
-aLt
-aUW
-aGS
-aCg
-aXL
-aYK
-aYK
-bat
-bba
-aYK
-bch
-aYK
-bdS
-bfg
-bgj
-bhf
-bhf
-bjt
-bkK
-bmf
-bnC
-boM
-bdM
-bYi
-bsA
-bsA
-bsA
-bsA
-bsA
-bsA
-buw
-bsA
-bAA
-bAA
-bCH
-bDz
-bEo
-bEV
-bZF
-bGu
-bGu
-bGu
-bZF
-bJg
-bEY
+ash
+aIh
+aJg
+aKc
+aLe
+aMf
+aNF
+aOQ
+aPV
+aRf
+aSc
+aSZ
+aUm
+aVp
+aWu
+aXt
+aYp
+aPY
+bau
+aLf
+aFi
+bdA
+beI
+beI
+bgD
+bhj
+beI
+bit
+beI
+bkt
+blH
+bmO
+bnQ
+bnQ
+bqi
+bry
+bsZ
+bkt
+bvG
+bxp
+byO
+bAy
bBB
-bEo
-bLP
-caE
-caS
-aad
-bAJ
-bAJ
-bAJ
-bAJ
-bAJ
+bCN
+bDK
+bEZ
+bGe
+bHt
+bIE
+bJN
+bJN
+bMd
+bNf
+bOk
+bOX
+bPQ
+bQK
+bQK
+bQK
+bPQ
+bTQ
+bMf
+bKX
+bOk
+bWN
+bXz
+bYq
+abI
+bJP
+bJP
+bJP
+bJP
+bJP
+abI
+aby
+aaa
+aaa
+aaa
aaa
-aac
-aad
-aad
-aad
-aac
aaa
aaa
aaa
@@ -88819,112 +90761,110 @@ aaa
aaa
aaa
aaa
-aad
-agT
-bUy
+abI
+aiS
+akf
+aju
+alP
+alP
+aiS
+aiS
+aiS
+aiT
+aiS
+aht
+aht
+aaa
+aht
+aaa
+aaa
+aaa
+aaa
+aaa
aht
-ajD
-ajD
-agT
-agT
-agT
-agU
-agT
aaa
aaa
aaa
aaa
aaa
aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aDq
-aEd
-aEW
-avZ
-aGS
-aGS
-aJr
-aKs
-aLr
-aGS
-aGS
-aOh
-aKu
-aQn
-aRo
-aSn
-aTc
-aLt
-aUX
-aGS
-aCg
-aCg
-aYK
-aZw
-bau
-bbb
-bbH
-bci
-baw
-bdS
-bfh
-bgj
-bhf
-bii
+ash
+aIh
+aJg
+azA
+aLf
+aLf
+aNG
+aOR
+aPW
+aLf
+aLf
+aTb
+aOT
+aVp
+aWu
+aXu
+aYq
+aPY
+bav
+aLf
+aFi
+aFi
+beI
+bfv
+bgE
+bhk
+bhR
+biu
+bju
+bkt
+blI
+bmO
+bnQ
+boY
+bqi
+brz
+bta
+bkt
+bvH
+bxq
+byP
+bAy
bjt
-bkL
-bmg
-bnC
-boN
-bdM
-brl
-bsA
-btn
-btn
-bvt
-bwy
-bxF
-byB
-bsA
-bAB
-bYP
-bCI
-bDB
-bEr
-bEt
-bFG
-bEX
-bHa
-bHG
-bIq
-bJc
-bEY
-bBB
-bLe
-bLf
+bCO
+bjt
+bCO
+bjt
+bCO
+bjt
+bJN
+bKS
+bMe
+bNh
+bOo
+bOY
+bPT
+bQL
+bRy
+bSf
+bSR
+bTM
+bMf
+bKX
+bVZ
+bWO
+bXA
+bYr
+bZe
+bZM
caF
-bMS
-bNw
-bNO
-bOn
-bOL
-bON
-bAJ
-aaa
-aac
+cbw
+cby
+bJP
aaa
aaa
aaa
-aac
+aby
aaa
aaa
aaa
@@ -88968,7 +90908,9 @@ aaa
aaa
aaa
aaa
-aab
+aaa
+aaa
+abN
aaa
aaa
aaa
@@ -88978,7 +90920,7 @@ aaa
aaa
aaa
aaa
-bSs
+cnA
aaa
aaa
aaa
@@ -89076,113 +91018,113 @@ aaa
aaa
aaa
aaa
-agT
-agT
-ahY
-agT
-agT
-ahY
-agT
-cfA
-agT
-amR
-agT
-agT
-agT
-agT
-anp
-arD
-arD
-anp
-auC
-auC
-anp
-ayg
-ayg
-anp
+aiS
+aiS
+akg
+aiS
+aiS
+akg
+aiS
+anY
+aiS
+apt
+aiS
+aiS
+aiS
+aiS
+apX
+avd
+avd
+apX
+ayi
+ayi
+apX
+aBL
+aBL
+apX
aaa
aaa
aaa
-aDq
-aEd
-aEW
-avZ
-aGS
-aHV
-aJs
-aKt
-aLs
-aMx
-aNr
-aOi
-aKu
-aQn
-aRo
-aLr
-aTd
-aKw
-aUY
-aVW
-aWM
-aXM
-aYK
-aZx
-bav
-bbc
-bbI
-bbI
-bbI
-bdV
-bfi
-bgk
-bhg
-bhg
-bju
-bkM
-bmh
-bnC
-bYa
-bYg
-brm
-bsA
-btn
-btn
-bvt
-bwy
-bxF
-byB
-bsA
-bAC
-bBB
-bEY
-bDz
-bEo
-bEW
-bEY
-bEY
-bHb
-bEY
-bZX
-bJh
-bEY
-bBB
-bJB
-bEY
-bMr
-bLR
-aad
-bCQ
-bOo
-bOM
-bPg
-bAJ
+ash
+aIh
+aJg
+azA
+aLf
+aMg
+aNH
+aOS
+aPX
+aRh
+aSe
+aTc
+aOT
+aVp
+aWu
+aPW
+aYr
+aOV
+baw
+bbA
+bcz
+bdB
+beI
+bfw
+bgF
+bhl
+bhS
+bhS
+bhS
+bkw
+blJ
+bmP
+bnR
+bnR
+bqj
+brA
+btb
+bkt
+bvI
+bxr
+byQ
+bAz
aaa
-aac
+aht
+aht
+aaa
+aht
+aht
+aaa
+bJN
+bKT
+bMf
+bNi
+bOk
+bOZ
+bMf
+bMf
+bRz
+bMf
+bSS
+bTR
+bMf
+bKX
+bWa
+bMf
+bXB
+bNm
+abI
+bMi
+caG
+cbx
+cco
+bJP
+abI
+abI
+abI
+aby
aaa
aaa
aaa
-aac
-aaa
aaa
aaa
aaa
@@ -89333,112 +91275,112 @@ aaa
aaa
aaa
aaa
-agU
-ahs
-aht
-aiM
-ajE
-aks
-agT
-bUG
-ahu
-amS
-ajH
-ajH
-aoX
-apT
-anp
-arE
-asJ
-anp
-auD
-avQ
-anp
-ayh
-azu
-anp
-aBm
-aBm
-aBm
-aBm
-aEd
-aEX
-aFR
-aGS
-aHW
-aJt
-aKu
-aLt
-aMy
-aNs
-aOj
-aPl
-aQp
-aRo
-aGS
-aTe
-aTU
-aUZ
-aGS
-aCg
-aOC
-aYK
-aZy
-bXa
-bbd
-bbJ
-bXq
-bXq
-bdS
-bfj
-bgl
-bff
-bff
-bff
-bkN
-bmi
-bnC
-boO
-bdM
-brn
-bsA
-btn
-bus
-bvt
-bwy
-bxF
-byB
-bsA
-bAD
-bBB
-bEY
-bDz
-bEo
-bZz
-bFH
-bEt
-bHc
-bEt
-bIr
-bJi
-bEY
-bJC
-bCI
-cau
-bMp
-bMS
-bNw
-bNP
-bOp
-bON
-bON
-bAJ
-aaa
-aac
+aiT
+ajt
+aju
+alb
+alQ
+amE
+aiS
+anZ
+ajv
+apu
+ale
+ale
+asb
+ate
+apX
+ave
+awn
+apX
+ayj
+azr
+apX
+aBM
+aDb
+apX
+aET
+aET
+aET
+aET
+aIh
+aJh
+aKd
+aLf
+aMh
+aNI
+aOT
+aPY
+aRi
+aSf
+aTd
+aUn
+aVr
+aWu
+aLf
+aYs
+aZk
+bax
+aLf
+aFi
+bdC
+beI
+bfx
+bgG
+bhm
+bhT
+biv
+biv
+bkt
+blK
+bmQ
+bmM
+bmM
+bmM
+brB
+btc
+bkt
+bvJ
+bxs
+byR
+bAA
+bAA
+bCP
+bAA
+bCP
+bAA
+bCP
+bAA
+bHw
+bKU
+bMf
+bMf
+bOk
+bPa
+bPU
+bOY
+bRA
+bOY
+bST
+bTS
+bUu
+bVi
+bMe
+bWP
+bXy
+bYr
+bZe
+bZN
+caH
+cby
+cby
+bJP
aaa
aaa
aaa
-aac
+aby
+aaa
+aaa
aaa
aaa
aaa
@@ -89590,112 +91532,112 @@ aaa
aaa
aaa
aaa
-bUt
-aht
-ahZ
-aiN
-ajF
-akt
-akX
-cfB
-agT
-aiT
-anp
-anp
-aoY
-apU
-anp
-arF
-asK
-anp
-auE
-avR
-anp
-ayi
-azv
-anp
-aBn
-aBS
-aCJ
-aDr
-aEe
-aEY
-aFS
-aGS
-aHX
-aJu
-aKu
-aLu
-aMz
-aGS
-aOk
-aPm
-aQq
-aRp
-aGS
-aTf
-aTV
-aVa
-aGS
-aGS
-aOC
-aYK
-aZz
-bax
-bbe
-bbK
-bcj
-bcj
-bdS
-bfk
-bgm
-bhh
-bij
-bjv
-bkO
-bmj
-bnC
-bYa
-bdM
-bro
-bsA
-bto
-bus
-bvt
-bwy
-bxF
-byC
-bsA
-bAE
+aiU
+aju
+akh
+alc
+alR
+amF
+anm
+aoa
+aiS
+akn
+apX
+apX
+asc
+atf
+apX
+avf
+awo
+apX
+ayk
+azs
+apX
+aBN
+aDc
+apX
+aEU
+aFE
+aGA
+aHn
+aIi
+aJi
+aKe
+aLf
+aMi
+aNJ
+aOT
+aPZ
+aRj
+aLf
+aTe
+aUo
+aVs
+aWv
+aLf
+aYt
+aZl
+bay
+aLf
+aLf
+bdC
+beI
+bfy
+bgH
+bhn
+bhU
+biw
+biw
+bkt
+blL
+bmR
+bnS
+boZ
+bqk
+brC
+btd
+bkt
+bvK
+bxt
+byS
+bAA
bBC
-bCL
-bDE
-bEo
-bEu
-bEY
-bGv
-bGv
-bGv
-bIs
-bJj
-bEY
-bBB
-bEY
-bEY
-bMt
-caU
-aad
-bAJ
-bAJ
-bAJ
-bAJ
-bAJ
-aad
-aac
-aad
-aad
-aad
-aac
+bBC
+bDL
+bFa
+bGf
+bCR
+bIF
+bHw
+bKV
+bMf
+bMf
+bOk
+bPb
+bMf
+bQM
+bQM
+bQM
+bSU
+bTT
+bUv
+bKX
+bMf
+bMf
+bXC
+bYs
+bYw
+bYw
+bYw
+cbz
+bYw
+bYw
+bYw
+aht
+aht
+aby
+aaa
+aaa
aaa
aaa
aaa
@@ -89847,114 +91789,114 @@ aaa
aaa
aaa
aaa
-agU
-ahu
-aia
-aiO
-ajG
-aku
-agT
-agT
-agT
aiT
-anp
-aob
-aoZ
-apV
-aqP
-arG
-asL
-anp
-auF
-avS
-anp
-ayj
-azw
-anp
-aBo
-aBT
-aCK
-aBm
-aEd
-aEW
-avZ
-aGS
-aHY
-aJv
-aKu
-aLt
-aLt
-aLr
-aOl
-aPn
-aQr
-aQr
-aQr
-aQr
-aTW
-aLt
-aVX
-aGS
-bWC
-aYK
-aZA
-bay
-bbf
-aZA
-aYK
-bcY
-bdS
-bdS
-bdS
-bcZ
-bik
-bik
-bik
-bik
-bik
-bfb
-bdM
-bYj
-bsA
-btp
-but
-btp
-btp
-btp
-byD
-bsA
-bAF
-bBB
-bEY
-bCM
-bZo
-bZA
-bFI
-bFI
-bFI
-bEZ
-bFI
-bFI
-bFI
-bKy
-bEY
-bEY
-bMu
-caU
-aad
+ajv
+aki
+ald
+alS
+amG
+aiS
+aiS
+aiS
+akn
+apX
+aqT
+asd
+atg
+auj
+avg
+awp
+apX
+ayl
+azt
+apX
+aBO
+aDd
+apX
+aEV
+aFF
+aGB
+aET
+aIh
+aJg
+azA
+aLf
+aMj
+aNK
+aOT
+aPY
+aPY
+aPW
+aTf
+aUp
+aVt
+aVt
+aVt
+aVt
+aZm
+aPY
+bbB
+aLf
+bdD
+beI
+bfz
+bgI
+bho
+bfz
+beI
+beI
+bkt
+bkt
+bkt
+bkt
+bkt
+bkt
+bkt
+bkt
+bkt
+bvL
+bxu
+byT
+bAB
+bBD
+bBD
+bDM
+bFb
+bGg
+bHu
+bIG
+bJO
+bKW
+bMg
+bNj
+bOp
+bPc
+bPV
+bPV
+bPV
+bSg
+bPV
+bPV
+bUw
+bVj
+bMg
+bMg
+bXD
+bYt
+bZf
+bZO
+caI
+cbA
+ccp
+cdg
+cbz
aaa
aaa
+aby
aaa
aaa
aaa
aaa
-aac
-aaa
-aaa
-aaa
-aac
-aaa
-aaa
aaa
aaa
aaa
@@ -90104,102 +92046,107 @@ aaa
aaa
aaa
aaa
-agT
-ahv
-agT
-agT
-agT
-agT
-agT
-alJ
-amj
-bUI
-anp
-aoc
-apa
-apW
-anp
-apU
-asM
-anp
-apU
-avT
-anp
-apU
-azx
-anp
-aBm
-aBm
-aBm
-aBm
-aEd
-aEW
-avZ
-aGS
-aHZ
-aJw
-aKv
-aLv
-aMA
-aNt
-aOm
-aPo
-aQs
-aLt
-aLt
-aLt
-aTX
-aLt
-aVY
-aGS
-aOC
-aYK
-aZB
-baz
-bbe
-bbL
-aYK
-bcZ
-bdW
-bfl
-bgn
-bhi
-bil
-bjw
-bkP
-bmk
-bnD
-boP
-bdN
-brp
-bsB
-btq
-buu
-bvu
-bwz
-bwz
-byE
-bzE
-bAG
-bBB
-bEY
-bDG
-bEv
-bFa
-bFJ
-bGw
-bFJ
-bFa
-bFJ
-bJk
-bFJ
-bFa
-bFJ
-bLQ
-caE
-caV
-bAA
+aiS
+ajw
+aiS
+aiS
+aiS
+aiS
+aiS
+aob
+aoD
+apv
+apX
+aqU
+ase
+ath
+apX
+atf
+awq
+apX
+atf
+azu
+apX
+atf
+aDe
+apX
+aET
+aET
+aET
+aET
+aIh
+aJg
+azA
+aLf
+aMk
+aNL
+aOU
+aQa
+aRk
+aSg
+aTg
+aUq
+aVu
+aPY
+aPY
+aPY
+aZn
+aPY
+bbC
+aLf
+bdC
+beI
+bfA
+bgJ
+bhn
+bhV
+beI
+aKq
+bkx
+blM
+bmS
+bnT
+bpa
+bql
+brD
+bte
+buw
+bvM
+bxv
+byU
bAA
+bBE
+bCQ
+bDN
+bFc
+bGh
+bCR
+bIH
+bHw
+bKX
+bMf
+bNk
+bOq
+bPd
+bPW
+bQN
+bPW
+bPd
+bPW
+bTU
+bUx
+bPd
+bPW
+bWQ
+bXE
+bYu
+bZg
+bZP
+caJ
+cbB
+ccq
+cdh
+bYw
aaa
aaa
aaa
@@ -90209,11 +92156,6 @@ aaa
aaa
aaa
aaa
-aac
-aaa
-aaa
-aaa
-aaa
aaa
aaa
aaa
@@ -90361,108 +92303,108 @@ aaa
aaa
aaa
aaa
-agT
-agT
-aiP
-ajH
-ajH
-ajH
-ajH
-ajH
-ajH
-amT
-anp
-aod
-apb
+aiS
+aiS
+akj
+ale
+ale
+ale
+ale
+ale
+ale
+apw
apX
-aqQ
-arH
-asN
-atF
-bUQ
-asN
-axn
-auG
-asN
-axn
-aBp
-axn
-aCL
-axn
-asN
-aEZ
-avZ
-aGS
-aIa
-aJx
-aKw
-aLw
-aMB
-aNu
-aOn
-aPp
-aQt
-aRq
-aSo
-aTg
-aKu
-aLt
-aVZ
-aGS
-bWC
-aYK
-aYK
-aYK
-bbg
-aYK
-aYK
-bcZ
-bdW
-bfm
-bgo
-bhj
-bim
-bjx
-bkQ
-bkQ
-bnE
-boQ
-bdM
-bYk
-bsA
-btr
-buv
-bvv
-bwA
-bxG
-byF
-bsA
-bAH
-bBE
-bCO
-bDH
-bJH
-bFb
-bFK
-bDH
-bHd
-bHH
-bIt
-bDH
-bEw
-bKz
-bLg
-bDH
-bMw
-bMT
-bNx
-bNQ
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
+aqV
+asf
+ati
+auk
+avh
+awr
+axo
+aym
+awr
+aAO
+aBP
+awr
+aAO
+aEW
+aAO
+aGC
+aAO
+awr
+aJj
+azA
+aLf
+aMl
+aNM
+aOV
+aQb
+aRl
+aSh
+aTh
+aUr
+aVv
+aWw
+aXv
+aYu
+aOT
+aPY
+bbD
+aLf
+bdD
+beI
+beI
+beI
+bhp
+beI
+beI
+bjv
+bkx
+blN
+bmT
+bnU
+bpb
+bqm
+brE
+btf
+bux
+bvN
+bxw
+byV
+bAA
+bBF
+bCR
+bDO
+bCR
+bCR
+bCR
+bII
+bHw
+bKY
+bMh
+bNl
+bOi
+bPe
+bPX
+bNl
+bRB
+bSh
+bSV
+bNl
+bUy
+bVk
+bWb
+bNl
+bXF
+bYv
+bZh
+bZQ
+caK
+cbC
+ccr
+cdi
+cec
+ceA
aaa
aaa
aaa
@@ -90619,107 +92561,107 @@ aaa
aaa
aaa
aaa
-agU
-aiQ
-agT
-agT
-agT
-agU
-agU
-agU
-agT
-anp
-aoe
-apc
-apY
-anp
-arI
-asO
-atG
-auH
-avU
-avU
-ayk
-azy
-azy
-aBq
-azy
-aCM
-azy
-azy
-aFa
-aFQ
-aGS
-aIb
-aGS
-aKx
-aGS
-aGS
-aGS
-aOe
-aPq
-aGS
-aGS
-aGS
-aGS
-aPj
-aVb
-aGS
-aGS
-aXN
-aWM
-aWM
-aWM
-bbh
-aJB
-bck
-bcZ
-bdW
-bfn
-bdW
-bhk
-bin
-bjy
-bkR
-bml
-bnF
-boR
-bdL
-brq
-bsA
-bsA
-buw
-bvw
-bsA
-bsA
-bsA
-bsA
+aiT
+akk
+aiS
+aiS
+aiS
+aiT
+aiT
+aiT
+aiS
+apX
+aqW
+asg
+atj
+apX
+avi
+aws
+axp
+ayn
+azv
+azv
+aBQ
+aDf
+aDf
+aEX
+aDf
+aGD
+aDf
+aDf
+aJk
+aKc
+aLf
+aMm
+aLf
+aOW
+aLf
+aLf
+aLf
+aSY
+aUs
+aLf
+aLf
+aLf
+aLf
+aUl
+baz
+aLf
+aLf
+bdE
+bcz
+bcz
+bcz
+bhq
+aNR
+bix
+aFi
+bkx
+blO
+bmU
+bnT
+bpc
+bqn
+brF
+bkx
+buy
+bvO
+bxx
+byW
bAA
-bYQ
-bFC
-bLR
-bZp
-bBF
-bCP
-bJl
-bCP
-bHI
-bCP
-bJl
-bJI
-bKA
-bJI
-cav
-caG
-bAA
-bAA
-bAA
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
+bBG
+bCR
+bDP
+bFd
+bGi
+bHv
+bIJ
+bHw
+bKZ
+bLW
+bNm
+bOr
+bPf
+bPY
+bQO
+bPY
+bSi
+bPY
+bQO
+bUz
+bVl
+bWc
+bWR
+bXG
+bYw
+bZi
+bZR
+caL
+cbD
+bYw
+cdj
+bYw
+bYw
aaa
aaa
aaa
@@ -90876,107 +92818,107 @@ aaa
aaa
aaa
aaa
-agT
-aiR
-agT
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-anp
-anp
-anp
-anp
-anp
-arJ
-asP
-atH
-auI
-avV
-axo
-ayl
-azz
-aAv
-aBr
-aAv
-aAv
-aAv
-aAv
-aFb
-aFT
-aGS
-aIc
-aGS
-aKy
-aGS
-aMC
-aGT
-aOo
-aPr
-aQu
-aRr
-aSp
-aTh
-aTY
-aOs
-aWa
-aWa
-aWa
-aWa
-aWa
-aWa
-aAC
-bbM
-bcl
-bcZ
-bdX
-bfo
-bdW
-bhk
-bio
-bjz
-bjC
-bmm
-bik
-bfb
-bdM
-bgZ
-bsC
-bts
-bux
-bvx
-bwB
-bxH
-byG
-aad
-aad
-bBG
-aad
-bDJ
-aad
-bBG
-aad
-bDJ
-aad
-bBG
-aad
-bDJ
-aad
-bBG
-aad
-bDJ
-aad
-aaa
-aaa
-aaa
+aiS
+akl
+aiS
aaa
aaa
aaa
aaa
aaa
aaa
+apX
+apX
+apX
+apX
+apX
+avj
+awt
+axq
+ayo
+azw
+aAP
+aBR
+aDg
+aEc
+aEY
+aEc
+aEc
+aEc
+aEc
+aJl
+aKf
+aLf
+aMn
+aLf
+aOX
+aLf
+aRm
+aLg
+aTi
+aUt
+aVw
+aWx
+aXw
+aYv
+aZo
+aTm
+bbE
+bbE
+bbE
+bbE
+bbE
+bbE
+aEj
+aEj
+biy
+bjw
+bjw
+bjw
+bjw
+bjw
+bjw
+bjw
+bjw
+bjw
+bod
+bvP
+bxy
+byX
+bAA
+bAA
+bCS
+bDQ
+bCS
+bAA
+bHw
+bHw
+bHw
+bLa
+abI
+bNn
+abI
+bLa
+abI
+bNn
+abI
+bLa
+abI
+bNn
+bUA
+bVm
+bWd
+bWS
+bWd
+bYx
+bZj
+bZS
+caM
+cbE
+bYw
+cdk
+ced
+bYw
aaa
aaa
aaa
@@ -91133,107 +93075,107 @@ aaa
aaa
aaa
aaa
-aib
-bUz
-ajI
+ajx
+akm
+alf
aaa
aaa
aaa
-akY
-akY
-akZ
-akY
-aof
-anp
-anp
-bUL
-arM
-bUN
-atI
-auJ
-avW
-axp
-arM
-azA
-aAw
-aAw
-aAw
-aAw
-aAw
-aEf
-aFc
-aFU
-aGT
-aId
-aGT
-aGT
-aGT
-aGT
-aGT
-aOp
-aPs
-aQv
-aQv
-aQv
-aTi
-aTZ
-aUd
-aWb
-aWN
-aXO
-aYL
-aZC
-aWa
-aUe
-aPB
-bcm
-bcZ
-bdY
-bfp
-bdY
-bhk
-bip
-bjA
-bjC
-bmn
-bik
-bfc
-bYh
-bgZ
-bdM
-bts
-bYn
-bvy
-bYx
-bxI
-byG
-aad
-bAJ
+ann
+ann
+ano
+ann
+aqX
+apX
+apX
+aul
+avk
+awu
+axr
+ayp
+azx
+aAQ
+avk
+aDh
+aEd
+aEd
+aEd
+aEd
+aEd
+aIj
+aJm
+aKg
+aLg
+aMo
+aLg
+aLg
+aLg
+aLg
+aLg
+aTj
+aUu
+aVx
+aVx
+aVx
+aYw
+aZp
+aZt
+bbF
+bcA
+bdF
+beJ
+bfB
+bbE
+aZv
+aUC
+biz
+bjw
+bky
+blP
+bmV
+bnV
+bpd
+bqo
+brG
+btg
+buz
+bvQ
+bxz
+byY
+bAC
bBH
-bCQ
-bBH
-bAJ
-bBH
-bCQ
-bBH
-bAJ
-bBH
-bCQ
-bBH
-bAJ
-bBH
-bCQ
-bBH
-bAJ
-aad
-aac
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
+bCT
+bDR
+bCT
+bGj
+bHx
+abI
+bJP
+bLb
+bMi
+bLb
+bJP
+bLb
+bMi
+bLb
+bJP
+bLb
+bMi
+bLb
+bJP
+bLb
+bMi
+bLb
+bJP
aaa
+bYw
+bZT
+caN
+bZT
+bYw
+cdl
+bYw
+bYw
aaa
aaa
aaa
@@ -91390,100 +93332,112 @@ aaa
aaa
aaa
aaa
-bUv
-aiT
-ajJ
+ajy
+akn
+alg
aaa
aaa
-akY
-akY
-amk
-amU
-anq
-aof
-aDq
-aDq
-aDq
-arM
-asQ
-atJ
-auK
-avX
-axq
-arM
-azB
-aAw
-aBs
-aBs
-bVi
-aAw
-aAw
-aFd
-aAw
-aAw
-aIe
-aJy
-aKz
-aLx
-aMD
-aNv
-aOq
-aPt
-aQw
-aRs
-aSq
-aTj
-aUa
-aVc
-aWc
-aWO
-aXP
-aYM
-aZD
-aWa
-aUf
-aAC
-aUf
-bcZ
-bdZ
-bfq
-bgp
-bhl
-biq
-bjB
-bkS
-bmo
-bik
-bdM
-bqd
-bge
-bdL
-btt
-buy
-bvz
-bYl
-bxJ
-byG
-aad
-bAJ
+ann
+ann
+aoE
+apx
+apY
+aqX
+ash
+ash
+ash
+avk
+awv
+axs
+ayq
+azy
+aAR
+avk
+aDi
+aEd
+aEZ
+aEZ
+aGE
+aEd
+aEd
+aJn
+aEd
+aEd
+aMp
+aNN
+aOY
+aQc
+aRn
+aSi
+aTk
+aUv
+aVy
+aWy
+aXx
+aYx
+aZq
+baA
+bbG
+bcB
+bdG
+beK
+bfC
+bbE
+aTx
+aEj
+aTx
+bjw
+bkz
+blQ
+bmW
+bnW
+bpe
+bqp
+brH
+brH
+buA
+bvR
+bxA
+byZ
+bAD
bBI
-bCR
-bDK
-bAJ
-bFc
-bFL
-bGx
-bAJ
-bHJ
-bIu
-bJm
-bAJ
-bKB
-bLh
-bLS
-bAJ
-aaa
-aac
+bCU
+bDS
+bFe
+bGk
+bHx
+abI
+bJP
+bLc
+bMj
+bNo
+bJP
+bPg
+bPZ
+bQP
+bJP
+bSj
+bSW
+bTV
+bJP
+bVn
+bWe
+bWT
+bJP
+aht
+bYw
+bZU
+caO
+cbF
+ccs
+cdm
+cdm
+bYw
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -91503,23 +93457,11 @@ aaa
aaa
aaa
aaa
-bRA
-bRA
-bRA
-bRA
-bRA
-bRA
-bRA
aaa
aaa
aaa
aaa
aaa
-bRA
-bRA
-bRA
-bRA
-bRA
aaa
aaa
aaa
@@ -91639,7 +93581,7 @@ aaa
aaa
aaa
aaa
-aab
+abN
aaa
aaa
aaa
@@ -91647,100 +93589,118 @@ aaa
aaa
aaa
aaa
-bUv
-aiU
-ajJ
+ajy
+ako
+alg
aaa
aaa
-akZ
-alK
-aml
-aml
-aml
-aog
-apd
-aqa
-apd
-arM
-asQ
-atK
-auL
-avY
-auL
-aym
-azC
-aAx
-aBt
-aBU
-aBv
-aBv
-aBv
-aBX
-aFV
-aAw
-aIf
-aJz
-aKA
-aLy
-aME
-aNw
-aOr
-aPu
-aOs
-aOs
-aOs
-aTk
-aTY
-aVd
-aWd
-aWP
-aXQ
-aYN
-aZE
-aWa
-aUf
-aAC
-bcn
-bcZ
-bcZ
-bcZ
-bcZ
-bcZ
-bir
-bjC
-bkT
-bmp
-bik
-boS
-bqe
-bYl
-bsD
-bsD
+ano
+aoc
+aoF
+aoF
+aoF
+aqY
+asi
+atk
+asi
+avk
+awv
+axt
+ayr
+azz
+ayr
+aBS
+aDj
+aEe
+aFa
+aFG
+aGF
+aGF
+aGF
+aFI
+aKh
+aEd
+aMq
+aNO
+aOZ
+aQd
+aRo
+aSj
+aTl
+aUw
+aTm
+aTm
+aTm
+aYy
+aZo
+baB
+bbH
+bcC
+bdH
+beL
+bfD
+bbE
+aTx
+aEj
+aTx
+bjw
+bkA
+blR
+bmX
+bnX
+bpf
+bqq
+brI
+bth
buz
-bvA
-bwC
-bsD
-byH
-aad
-bAJ
+bvS
+bxB
+bza
+bAE
bBJ
-bBK
-bBK
-bAJ
-bFd
-bFM
-bFd
-bAJ
-bHK
-bIv
-bHK
-bAJ
-bKC
-bLi
-bKC
-bAJ
-aaa
-aac
+bBJ
+bDT
+bFf
+bGl
+bHx
+abI
+bJP
+bLd
+bLe
+bLe
+bJP
+bPh
+bQa
+bPh
+bJP
+bSk
+bSX
+bSk
+bJP
+bVo
+bWf
+bVo
+bJP
+aht
+bYw
+bYw
+caP
+bYw
+bYw
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -91760,24 +93720,6 @@ aaa
aaa
aaa
aaa
-bRA
-bRA
-bRA
-bRA
-bRA
-bRA
-bRA
-bRA
-bRA
-bRA
-bRA
-bRA
-bRA
-bRA
-bRA
-bRA
-bRA
-bRA
aaa
aaa
aaa
@@ -91904,100 +93846,103 @@ aaa
aaa
aaa
aaa
-bUv
-aiT
-ajJ
+ajy
+akn
+alg
aaa
aaa
-akY
-akY
-amm
-amV
-anr
-aof
-bUK
-aqb
-bUM
-arN
-asQ
-atL
-auM
-avZ
-arM
-arM
-azD
-aAw
-aBu
-aBV
-aCN
-aDs
-aEg
-aFf
-aBv
-aAw
-aIg
-aJz
-aKB
-aJz
-aMF
-aNx
-aOs
-aPr
-aQx
-aRt
-aQx
-aTl
-aTY
-aVe
-aWe
-aWe
-aXR
-aXR
-aXR
-aWe
-bbi
-aWe
-aUf
-bda
-bcZ
-bfr
-bgq
-bhm
-bis
-bjC
-bkU
-bmq
-bnG
-blc
-bqf
-bgz
-bsD
-btu
-buA
-bvB
-bwD
-bxK
-byH
-aad
-bAJ
-bBK
-bCS
-bBK
-bAJ
-bFd
-bFN
-bFd
-bAJ
-bHL
-bIw
-bHK
-bAJ
-bKC
-bLj
-bKC
-bAJ
+ann
+ann
+aoG
+apy
+apZ
+aqX
+asj
+atl
+aum
+avl
+awv
+axu
+ays
+azA
+avk
+avk
+aDk
+aEd
+aFb
+aFH
+aGG
+aHo
+aIk
+aJo
+aGF
+aEd
+aMr
+aNO
+aPa
+aNO
+aRp
+aSk
+aTm
+aUt
+aVz
+aWz
+aVz
+aYz
+aZo
+baC
+bbI
+bbI
+bdI
+bdI
+bdI
+bbI
+bhr
+bbI
+biA
+bjw
+bkB
+blS
+bmY
+bnY
+bpg
+bqr
+brJ
+bti
+bod
+bvT
+bxC
+bzb
+bAF
+bAF
+bCV
+bDU
+bCV
+bAF
+bHy
aaa
-aac
+bJP
+bLe
+bMk
+bLe
+bJP
+bPh
+bQb
+bPh
+bJP
+bSl
+bSY
+bSk
+bJP
+bVo
+bWg
+bVo
+bJP
+aaa
+aaa
+bYw
+caQ
+bYw
aaa
aaa
aaa
@@ -92015,30 +93960,27 @@ aaa
aaa
aaa
aaa
-bRA
-bRA
-bRA
-bRA
-bRA
-bRA
-bRA
-bRA
-bRT
-bRA
-bRA
-bRA
-bRA
-bRA
-bRA
-bRT
-bRA
-bRA
-bRA
-bRA
aaa
aaa
aaa
aaa
+cju
+cju
+cju
+cju
+cju
+cju
+cju
+aaa
+aaa
+aaa
+aaa
+aaa
+cju
+cju
+cju
+cju
+cju
aaa
aaa
aaa
@@ -92161,100 +94103,103 @@ aaa
aaa
aaa
aaa
-aid
-aiQ
-ajK
+ajz
+akk
+alh
aaa
aaa
aaa
-akY
-akY
-akZ
-akY
-aof
-anp
-anp
-anp
-aqd
-asR
-atM
-auN
-awa
-atM
-atM
-aqd
-aAw
-aAw
-aBX
-bVj
-aAw
-aAw
-aAw
-aFW
-aAw
-aIh
-aJz
-aKC
-aLz
-aGT
-aGT
-aOt
-aPv
-aQy
-aOs
-aOs
-aOp
-aUb
-aVf
-aWe
-aWQ
-aXS
-aYO
-aZF
-baA
-bbj
-aWe
-bco
-aWM
-bea
-bfs
-bgr
-bhn
-bit
-bjC
-bkV
-bmr
-bik
-boT
-bqg
-brr
-bsD
-btv
-buB
-bvC
-bwE
-bxL
-byH
-aad
-bAJ
-bAJ
-bAJ
-bAJ
-bAJ
-bAJ
-bAJ
-bAJ
-bAJ
-bAJ
-bAJ
-bAJ
-bAJ
-bAJ
-bAJ
-bAJ
-bAJ
-aad
-aac
+ann
+ann
+ano
+ann
+aqX
+apX
+apX
+apX
+atn
+aww
+axv
+ayt
+azB
+axv
+axv
+atn
+aEd
+aEd
+aFI
+aGH
+aEd
+aEd
+aEd
+aKi
+aEd
+aMs
+aNO
+aPb
+aQe
+aLg
+aLg
+aTn
+aUx
+aVA
+aTm
+aTm
+aTj
+aZr
+baD
+bbI
+bcD
+bdJ
+beM
+bfE
+bgK
+bhs
+bbI
+aTx
+bjw
+bjw
+bjw
+bjw
+bjw
+bph
+bqs
+brJ
+btj
+bod
+bvU
+bxD
+bzc
+bAF
+bBK
+bCW
+bDV
+bFg
+bGm
+bHy
+aaa
+bJP
+bJP
+bJP
+bJP
+bJP
+bJP
+bJP
+bJP
+bJP
+bJP
+bJP
+bJP
+bJP
+bJP
+bJP
+bJP
+bJP
+abI
+abI
+bZV
+caR
+bZV
aaa
aaa
aaa
@@ -92272,31 +94217,28 @@ aaa
aaa
aaa
aaa
-bRA
-bRA
-bRA
-bRT
-bRA
-bRT
-bRT
-bRA
-bRA
-bRA
-bRA
-bRA
-bRA
-bRA
-bRT
-bRT
-bRT
-bRA
-bRT
-bRA
-bRA
aaa
aaa
aaa
aaa
+cju
+cju
+cju
+cju
+cju
+cju
+cju
+cju
+cju
+cju
+cju
+cju
+cju
+cju
+cju
+cju
+cju
+cju
aaa
aaa
aaa
@@ -92418,81 +94360,80 @@ aaa
aaa
aaa
aaa
-agT
-bUA
-agT
+aiS
+akp
+aiS
aaa
aaa
aaa
aaa
aaa
aaa
-agT
-agT
-agT
-aqc
-aqR
-aqd
-asS
-atN
-auO
-awb
-atN
-ayn
-aqd
-aAy
-bVb
-aBX
-aBv
-aDt
-aEh
-aAw
-aFX
-aAw
-aIi
-aJA
-aKC
-aJz
-aJA
-aGT
-aOu
-aNx
-aOs
-aOs
-aOs
-aTk
-aUc
-aVg
-aWf
-aWR
-aXT
-aYP
-aZG
-baB
-bbk
-aWe
-aUf
-bcZ
-bcZ
-bft
-bgs
-bho
-biu
-bjD
-bkW
-bms
-bik
-boU
-bqh
-brs
-bsD
-btw
-buC
-bvB
-bwF
-bxM
-byH
-aad
+aiS
+aiS
+aiS
+atm
+aun
+atn
+awx
+axw
+ayu
+azC
+axw
+aBT
+atn
+aEf
+aFc
+aFI
+aGF
+aHp
+aIl
+aEd
+aKj
+aEd
+aMt
+aNP
+aPb
+aNO
+aNP
+aLg
+aTo
+aSk
+aTm
+aTm
+aTm
+aYy
+aZs
+baE
+bbJ
+bcE
+bdK
+beN
+bfF
+bgL
+bht
+bbI
+aTx
+bjw
+bjw
+blT
+bmZ
+bnZ
+bpi
+bqs
+brJ
+btk
+buB
+brR
+bxE
+bnj
+bAF
+bBL
+bCW
+bDW
+bFh
+bGn
+bHy
aaa
aaa
aaa
@@ -92501,17 +94442,16 @@ aaa
aaa
aaa
aaa
-aad
+aaa
+abI
aaa
aaa
aaa
-aad
+abI
aaa
aaa
aaa
-aaa
-aaa
-aac
+abI
aaa
aaa
aaa
@@ -92529,27 +94469,6 @@ aaa
aaa
aaa
aaa
-bRA
-bRA
-bRT
-bRA
-bRT
-bRA
-bRT
-bRT
-bRA
-bRA
-bRA
-bRT
-bRA
-bRT
-bRA
-bRA
-bRA
-bRT
-bRA
-bRA
-bRA
aaa
aaa
aaa
@@ -92557,6 +94476,29 @@ aaa
aaa
aaa
aaa
+cju
+cju
+cju
+cju
+cju
+cju
+cju
+cju
+ckK
+cju
+cju
+cju
+cju
+cju
+cju
+ckK
+cju
+cju
+cju
+cju
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -92675,81 +94617,81 @@ aaa
aaa
aaa
aaa
-agU
-bUz
-agT
-agT
-agT
-agU
-agU
-agU
-agT
-agT
-aoh
-ape
-ahu
-ahu
-aqd
-asT
-atN
-auO
-awb
-atN
-ayo
-aqd
-aAz
-aBw
-aBY
-aBv
-aAw
-aAw
-aAw
-aAw
-aAw
-aIj
-aJz
-aKD
-aLA
-aMG
-aGT
-aOv
-aNx
-aOs
-aOs
-aOs
+aiT
+akm
+aiS
+aiS
+aiS
+aiT
+aiT
+aiT
+aiS
+aiS
+aqZ
+ask
+ajv
+ajv
+atn
+awy
+axw
+ayu
+azC
+axw
+aBU
+atn
+aEg
+aFd
+aFJ
+aGF
+aEd
+aEd
+aEd
+aEd
+aEd
+aMu
+aNO
+aPc
+aQf
+aRq
+aLg
+aTp
+aSk
aTm
-aUd
-aTZ
-aWg
-aWS
-aXU
-cfF
-aZH
-aYQ
-bbl
-aWe
-aUf
-bdb
-beb
-bdW
-bgt
-bhp
-biv
-bjE
-bkX
-bmt
-bik
-boV
-bqi
-brt
-bsE
-btx
-buD
-bvD
-bwG
-bxN
-byH
-aad
+aTm
+aTm
+aYA
+aZt
+aZp
+bbK
+bcF
+bdL
+beO
+bfG
+bgM
+bhu
+bbI
+biB
+bcz
+bkC
+blU
+bna
+boa
+bpj
+bqt
+brK
+btl
+bod
+bvV
+bxF
+bzd
+bAF
+bBM
+bCX
+bDX
+bFi
+bGo
+bHy
+abI
aaa
aaa
aaa
@@ -92757,16 +94699,16 @@ aaa
aaa
aaa
aaa
-aeV
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
+bzy
+aby
+aby
+aby
+aby
+aby
+aby
+aby
+aby
+aby
aaa
aaa
aaa
@@ -92784,32 +94726,6 @@ aaa
aaa
aaa
aaa
-bRA
-bRA
-bRA
-bRT
-bRT
-bRT
-bRA
-bRT
-bRT
-bRA
-bRA
-bRA
-bRT
-bRT
-bRT
-bRT
-bRA
-bRA
-bRA
-bRT
-bRA
-bRA
-bRA
-bRA
-bRA
-bRA
aaa
aaa
aaa
@@ -92817,6 +94733,32 @@ aaa
aaa
aaa
aaa
+cju
+cju
+cju
+ckK
+cju
+ckK
+ckK
+cju
+cju
+cju
+cju
+cju
+cju
+cju
+ckK
+ckK
+ckK
+cju
+ckK
+cju
+cju
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -92932,81 +94874,81 @@ aaa
aaa
aaa
aaa
-agU
-aiW
-ajH
-ajH
-ajH
-ala
-ajH
-ajH
-ajH
-ajH
-ajH
-ajH
-ajH
-aqS
-aqd
-asU
-atO
-auP
-awc
-axr
-ayp
-aqd
-aAA
-aBx
-aBX
-aBv
-aDu
-bVu
-aAw
-aFY
-aGU
-aIk
-bVE
-aJz
-aLB
-aJA
-aGT
-aOw
-aNx
-aQz
-aRu
-aSr
-aTn
-aOs
-aVh
-aWe
-aWT
-aXV
-aYR
-aZI
-aZI
-bbm
-aWe
-aUf
-bcZ
-bcZ
-bcZ
-bed
-bgz
-bgz
-bgz
-bgz
-bgz
-bgz
-boW
-bqj
-bgz
-bsD
-bty
+aiT
+akq
+ale
+ale
+ale
+anp
+ale
+ale
+ale
+ale
+ale
+ale
+ale
+auo
+atn
+awz
+axx
+ayv
+azD
+aAS
+aBV
+atn
+aEh
+aFe
+aFI
+aGF
+aHq
+aIm
+aEd
+aKk
+aLh
+aMv
+aNQ
+aNO
+aQg
+aNP
+aLg
+aTq
+aSk
+aVB
+aWA
+aXy
+aYB
+aTm
+baF
+bbI
+bcG
+bdM
+beP
+bfH
+bfH
+bhv
+bbI
+aTx
+bjx
+bjw
+blV
+bnb
+bob
+bpk
+bqs
+brL
+btm
buC
-bvB
-bwH
-bxO
-byH
-bYD
+bvW
+bxG
+bze
+bAF
+bBN
+bCY
+bDY
+bFj
+bGp
+bHy
+abI
aaa
aaa
aaa
@@ -93017,11 +94959,11 @@ aaa
aaa
aaa
aaa
-aad
+abI
aaa
aaa
aaa
-aad
+abI
aaa
aaa
aaa
@@ -93041,35 +94983,35 @@ aaa
aaa
aaa
aaa
-bRA
-bRA
-bRA
-bRT
-bRT
-bRT
-bRT
-bRT
-bRA
-bRT
-bRA
-bRT
-bRT
-bRA
-bRT
-bRT
-bRA
-bRT
-bRT
-bRT
-bRT
-bRA
-bRA
-bRA
-bRA
-bRA
-bRA
-bRA
-bRA
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+cju
+cju
+ckK
+cju
+ckK
+cju
+ckK
+ckK
+cju
+cju
+cju
+ckK
+cju
+ckK
+cju
+cju
+cju
+ckK
+cju
+cju
+cju
+aaa
aaa
aaa
aaa
@@ -93189,97 +95131,97 @@ aaa
aaa
aaa
aaa
-agT
-agT
-agT
-agT
-agT
-agU
-agU
-agU
-agT
-agT
-agT
-alI
-agT
-aqT
-aqd
-asV
-atN
-atN
-atN
-atN
-ayq
-aqd
-aAw
-aAw
-aBZ
-aAw
-aAw
-aAw
-aAw
-aFZ
-aGT
-aGT
-aGT
-aKE
-aKE
-aKE
-aGT
-aOx
-aPw
-aKE
-aPw
-aSs
-aGT
-aGT
-aGT
-aWe
-aWe
-aWe
-aXR
-aZJ
-aXR
-aWe
-aWe
-bcp
-aPB
-aPB
-bfu
-bed
-bhq
-biw
-bjF
-bkY
-bmu
-bnH
-boX
-bqk
-bru
-bsD
-btz
-buE
-bvE
-bwI
-bYy
-bxP
-byH
-byH
-byH
-bCT
-byH
-aad
-aad
-aad
+aiS
+aiS
+aiS
+aiS
+aiS
+aiT
+aiT
+aiT
+aiS
+aiS
+aiS
+asl
+aiS
+aup
+atn
+awA
+axw
+axw
+axw
+axw
+aBW
+atn
+aEd
+aEd
+aFK
+aEd
+aEd
+aEd
+aEd
+aKl
+aLg
+aLg
+aLg
+aPd
+aPd
+aPd
+aLg
+aTr
+aUy
+aPd
+aUy
+aXz
+aLg
+aLg
+aLg
+bbI
+bbI
+bbI
+bdI
+bfI
+bdI
+bbI
+bbI
+biC
+bjy
+bkD
+blW
+bnc
+boc
+bpl
+bqu
+brM
+btn
+bod
+bvX
+bxH
+bzf
+bAF
+bBO
+bCZ
+bDZ
+bFk
+bGq
+bHy
aaa
-aaY
-aac
-aac
-aac
aaa
-aaY
-aac
-aeV
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+acO
+aby
+aby
+aby
+aaa
+acO
+aby
+bzy
aaa
aaa
aaa
@@ -93298,38 +95240,38 @@ aaa
aaa
aaa
aaa
-bRA
-bRA
-bRA
-bRT
-bRA
-bRT
-bRT
-bRA
-bRT
-bRA
-bRT
-bRT
-bRA
-bRA
-bRA
-bRT
-bRA
-bRT
-bRT
-bRT
-bRA
-bRA
-bRT
-bRA
-bRT
-bRA
-bRA
-bRA
-bRA
-bRA
-bRA
-bRA
+aaa
+aaa
+aaa
+aaa
+aaa
+cju
+cju
+cju
+ckK
+ckK
+ckK
+cju
+ckK
+ckK
+cju
+cju
+cju
+ckK
+ckK
+ckK
+ckK
+cju
+cju
+cju
+ckK
+cju
+cju
+cju
+cju
+cju
+cju
+aaa
aaa
aaa
aaa
@@ -93456,78 +95398,70 @@ aaa
aaa
aaa
aaa
-agT
-amS
-ajH
-aqU
-aqd
-asW
-atN
-atN
-atN
-atN
-ayr
-aqd
-aAB
-aAw
-aCa
-aCO
-aDv
-aAw
-aFg
-aGa
-aGV
-aIl
-aAC
+aiS
+apu
+ale
+auq
+atn
+awB
+axw
+axw
+axw
+axw
+aBX
+atn
+aEi
+aEd
+aFL
+aGI
+aHr
+aEd
+aJp
+aKm
+aLi
+aMw
+aEj
aaa
aaa
aaa
-aGT
-aOy
-aPx
-aKE
-aRv
-aSt
-aGT
+aLg
+aTs
+aUz
+aPd
+aWB
+aXA
+aLg
aaa
aaa
aaa
aaa
aaa
-aXR
-aZK
-aXR
+bdI
+bfJ
+bdI
aaa
-bbN
-aCg
-aCg
-bec
-bfv
-bed
-bhr
-bix
-bjG
-bkZ
-bmv
-bnI
-boY
-bqh
-brv
-bsD
-btA
-buF
-bvF
-bwJ
-bxQ
-byI
-bzF
-bAK
-bzF
-bCU
-byH
-byH
-bFe
-aad
+aEj
+aFi
+aTx
+bjw
+bjw
+bjw
+bod
+bod
+bod
+bod
+bod
+bod
+bvY
+bxI
+bnj
+bAF
+bBP
+bCW
+bDZ
+bFl
+bGr
+bHy
aaa
aaa
aaa
@@ -93555,39 +95489,6 @@ aaa
aaa
aaa
aaa
-bRA
-bRA
-bRA
-bRA
-bRA
-bRT
-bRA
-bRT
-bRT
-bRT
-bRT
-bRA
-bRT
-bRA
-bRT
-bRT
-bRT
-bRT
-bLk
-bRA
-bRA
-bRT
-bRT
-bRA
-bRA
-bRA
-bRA
-bRT
-bRA
-bRA
-bRA
-bRA
-bRA
aaa
aaa
aaa
@@ -93601,6 +95502,47 @@ aaa
aaa
aaa
aaa
+cju
+cju
+cju
+ckK
+ckK
+ckK
+ckK
+ckK
+cju
+ckK
+cju
+ckK
+ckK
+cju
+ckK
+ckK
+cju
+ckK
+ckK
+ckK
+ckK
+cju
+cju
+cju
+cju
+cju
+cju
+cju
+cju
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -93713,78 +95655,77 @@ aaa
aaa
aaa
aaa
-agT
-aiT
-aqd
-aqd
-arO
-arO
-atP
-arO
-arO
-atP
-arO
-arO
-aqd
-aqd
-aCb
-aCP
-aCP
-aEi
-aAD
-aAD
-aGW
-aIm
-aAC
+aiS
+akn
+atn
+atn
+avm
+avm
+axy
+avm
+avm
+axy
+avm
+avm
+atn
+atn
+aFM
+aGJ
+aGJ
+aIn
+aEk
+aEk
+aLj
+aMx
+aEj
aaa
aaa
aaa
-aGT
-aOx
-aPw
-aKE
-aPw
-aSs
-aGT
+aLg
+aTr
+aUy
+aPd
+aUy
+aXz
+aLg
aaa
aaa
aaa
aaa
aaa
-aXR
-aZJ
-aXR
+bdI
+bfI
+bdI
aaa
-bbN
-aAC
-aAC
-aAC
-bfw
-bed
-bhs
-biy
-bix
-bla
-bmw
-bnJ
-boZ
-bql
-brw
-bsD
-btB
-buG
-bvG
-bvB
-bxR
-byJ
-bzG
-bAL
-bBL
-bCV
-bDL
-bEx
-bFf
-aad
+aEj
+aEj
+bjz
+bkE
+aht
+bnd
+boe
+bpm
+bqv
+brN
+bto
+buD
+bvZ
+bxJ
+bzg
+bAG
+bBQ
+bDa
+bEa
+bFm
+bGs
+bHy
+bHy
+bHy
+bHy
+bHy
+bHy
+bOs
+bPi
aaa
aaa
aaa
@@ -93811,43 +95752,6 @@ aaa
aaa
aaa
aaa
-bRA
-bRA
-bRT
-bRA
-bRA
-bRA
-bRA
-bRT
-bRT
-bRA
-bRA
-bRA
-bRT
-bRT
-bRT
-bRT
-bRA
-bRT
-bRT
-bRA
-bRA
-bRA
-bRT
-bRA
-bRA
-bRA
-bRT
-bRA
-bRA
-bRA
-bRT
-bSg
-bRA
-bRA
-bRA
-bRA
-bRA
aaa
aaa
aaa
@@ -93855,6 +95759,44 @@ aaa
aaa
aaa
aaa
+cju
+cju
+cju
+ckK
+cju
+ckK
+ckK
+cju
+ckK
+cju
+ckK
+ckK
+cju
+cju
+cju
+ckK
+cju
+ckK
+ckK
+ckK
+cju
+cju
+ckK
+cju
+ckK
+cju
+cju
+cju
+cju
+cju
+cju
+cju
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -93970,78 +95912,77 @@ aaa
aaa
aaa
aaa
-agU
aiT
-aqd
-aqV
-aqV
-aqV
-aqV
-aqV
-aqV
-aqV
-aqV
-aqV
-aqV
-aqd
-aAw
-aAw
-aAw
-aAw
-aAC
-aAC
-aGX
-aFi
-aAC
+akn
+atn
+aur
+aur
+aur
+aur
+aur
+aur
+aur
+aur
+aur
+aur
+atn
+aEd
+aEd
+aEd
+aEd
+aEj
+aEj
+aKq
+aJs
+aEj
aaa
-aLC
-aLC
-aLC
-aOz
-aPy
-aLC
-aRw
-aSu
-aLC
-aLC
-aLC
+aQh
+aQh
+aQh
+aTt
+aUA
+aQh
+aWC
+aXB
+aQh
+aQh
+aQh
aaa
-amZ
-amZ
-ana
-aZL
-ana
-amZ
-amZ
-aAC
-aUe
-aPB
-aUg
-bed
-bht
-biz
-bjH
-blb
-bmx
-bnK
-bpa
-bqm
-brx
-bsD
-btC
-buH
-bvH
-bwL
-bxS
-byK
-bzH
-bAM
-bzH
-bCW
-byH
-byH
-bFe
-aad
+apC
+apC
+apD
+bfK
+apD
+apC
+apC
+aEj
+aTx
+bkE
+aht
+bnd
+bof
+bpn
+bqw
+brO
+btp
+buE
+bwa
+bxH
+bzh
+bAF
+bBR
+bDb
+bEb
+bFn
+bGt
+bHz
+bIK
+bJQ
+bIK
+bMl
+bNp
+bOt
+bPj
aaa
aaa
aaa
@@ -94067,45 +96008,6 @@ aaa
aaa
aaa
aaa
-bRA
-bRA
-bRA
-bRA
-bRA
-bRA
-bRA
-bRA
-bRT
-bRA
-bRA
-bRT
-bRT
-bRA
-bRT
-bRT
-bRT
-bRT
-bRT
-bRT
-bRA
-bRA
-bRT
-bRA
-bRT
-bRT
-bRT
-bRA
-bRT
-bRA
-bRT
-bRT
-bRT
-bRT
-bRA
-bRA
-bRA
-bRA
-bRA
aaa
aaa
aaa
@@ -94114,6 +96016,46 @@ aaa
aaa
aaa
aaa
+cju
+cju
+cju
+cju
+cju
+ckK
+cju
+ckK
+ckK
+ckK
+ckK
+cju
+ckK
+cju
+ckK
+ckK
+ckK
+ckK
+clF
+cju
+cju
+ckK
+ckK
+cju
+cju
+cju
+cju
+ckK
+cju
+cju
+cju
+cju
+cju
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -94227,79 +96169,77 @@ aaa
aaa
aaa
aaa
-agU
aiT
-aqd
-aqV
-aqV
-aqV
-aqV
-aqV
-aqV
-aqV
-aqV
-aqV
-aqV
-aqd
-aCc
-aCQ
-aDw
-aAC
-aFh
-aGb
-aGb
-aIn
-aAC
-aKF
-aLC
-aLC
-aMH
-aMH
-aMH
-aQA
-aMH
-aMH
-aMH
-aMH
-aLC
+akn
+atn
+aur
+aur
+aur
+aur
+aur
+aur
+aur
+aur
+aur
+aur
+atn
+aFN
+aGK
+aHs
+aEj
+aJq
+aKn
+aKn
+aMy
+aEj
+aPe
+aQh
+aQh
+aRr
+aRr
+aRr
+aVC
+aRr
+aRr
+aRr
+aRr
+aQh
aaa
-amZ
-aXW
-aqh
-aqh
-aYS
-cjL
-amZ
-aAC
-aUf
-bed
-bed
-bed
-bed
-bed
-bgz
-blc
-bmy
-bnL
-bpb
-blc
-bgz
-bsD
-bsD
-bsD
-bsD
-bwM
-bxT
-bsD
-byH
-byH
-byH
-byH
-byH
-byH
-afp
-afp
-bGy
+apC
+bdN
+atr
+atr
+beQ
+bhw
+apC
+aEj
+aTx
+bkE
+aht
+bnd
+bog
+bpo
+bpn
+brP
+btq
+buF
+bwb
+bxK
+bzi
+bAF
+bBS
+bDc
+bEc
+bFo
+bGu
+bGu
+bIL
+bJR
+bLf
+bMm
+bNp
+bOt
+bPj
aaa
aaa
aaa
@@ -94324,45 +96264,6 @@ aaa
aaa
aaa
aaa
-bRB
-bRA
-bRA
-bRA
-bRA
-bRT
-bRA
-bRA
-bRA
-bRA
-bRT
-bRT
-bRA
-bRA
-bRT
-bRT
-bRT
-bRA
-bRA
-bRA
-bRA
-bRT
-bRT
-bRT
-bRT
-bRT
-bRA
-bRT
-bRT
-bRT
-bRA
-bRT
-bRT
-bSg
-bRA
-bRA
-bRA
-bRA
-bRA
aaa
aaa
aaa
@@ -94371,6 +96272,47 @@ aaa
aaa
aaa
aaa
+cju
+cju
+ckK
+cju
+cju
+cju
+cju
+ckK
+ckK
+cju
+cju
+cju
+ckK
+ckK
+ckK
+ckK
+cju
+ckK
+ckK
+cju
+cju
+cju
+ckK
+cju
+cju
+cju
+ckK
+cju
+cju
+cju
+ckK
+clv
+cju
+cju
+cju
+cju
+cju
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -94484,79 +96426,77 @@ aaa
aaa
aaa
aaa
-agT
-apf
-aqd
-aqV
-aqV
-aqV
-aqV
-aqV
-aqV
-aqV
-aqV
-aqV
-aqV
-aqd
-aCd
-aCR
-aDx
-aAC
-bVw
-aAC
-aGY
-aGY
-aAC
-aKF
-aLD
-aMH
-aMH
-aMH
-aMH
-aMH
-aMH
-aMH
-aMH
-aMH
-aLC
+aiS
+asm
+atn
+aur
+aur
+aur
+aur
+aur
+aur
+aur
+aur
+aur
+aur
+atn
+aFO
+aGL
+aHt
+aEj
+aJr
+aEj
+aLk
+aLk
+aEj
+aPe
+aQi
+aRr
+aRr
+aRr
+aRr
+aRr
+aRr
+aRr
+aRr
+aRr
+aQh
aaa
-ana
-aXX
-aYS
-aqh
-aYS
-bbn
-bbO
-aAC
-aUf
-bed
-bfy
-bgu
-bfy
-bed
-bjI
-bld
-bmz
-bnK
-bpc
-bqn
-bry
-bsF
-bfy
-bfy
-bvI
-bwN
-bxU
-byL
-bzI
-bzI
-bBM
-bCX
-bDM
-bEy
-bFg
-bFg
-bGz
+apD
+bdO
+beQ
+atr
+beQ
+bhx
+bhW
+aEj
+bjz
+bkE
+aht
+bnd
+boh
+bpp
+bqx
+brQ
+btr
+buG
+bwc
+bxL
+bzj
+bAF
+bBT
+bDd
+bEd
+bFp
+bGv
+bHA
+bIM
+bJS
+bIM
+bMn
+bNp
+bOt
+bPj
aaa
aaa
aaa
@@ -94579,48 +96519,6 @@ aaa
aaa
aaa
aaa
-aad
-aad
-bRB
-bRB
-bRD
-bRD
-bRD
-bRA
-bRA
-bRT
-bRA
-bRA
-bRT
-bRT
-bRA
-bRA
-bRT
-bRT
-bRT
-bRA
-bRA
-bRT
-bRT
-bRT
-bRT
-bRT
-bRT
-bRT
-bRT
-bRT
-bRT
-bRA
-bRT
-bRT
-bRA
-bRA
-bRA
-bRA
-bRA
-bRT
-bRA
-bRA
aaa
aaa
aaa
@@ -94630,6 +96528,50 @@ aaa
aaa
aaa
aaa
+cju
+cju
+cju
+cju
+cju
+cju
+cju
+cju
+ckK
+cju
+cju
+ckK
+ckK
+cju
+ckK
+ckK
+ckK
+ckK
+ckK
+ckK
+cju
+cju
+ckK
+cju
+ckK
+ckK
+ckK
+cju
+ckK
+cju
+ckK
+ckK
+ckK
+ckK
+cju
+cju
+cju
+cju
+cju
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -94741,78 +96683,77 @@ aaa
aaa
aaa
aaa
-agU
aiT
-aqd
-aqV
-aqV
-aqV
-aqV
-aqV
-aqV
-aqV
-aqV
-aqV
-aqV
-aqd
-aCe
-aCS
-aCg
-aEj
+akn
+atn
+aur
+aur
+aur
+aur
+aur
+aur
+aur
+aur
+aur
+aur
+atn
+aFP
+aGM
aFi
-aGc
-aGZ
aIo
-aAC
-aKF
-aLD
-aMH
-aMH
-aMH
-aMH
-aMH
-aMH
-aMH
-aMH
-cjI
-aLC
+aJs
+aKo
+aLl
+aMz
+aEj
+aPe
+aQi
+aRr
+aRr
+aRr
+aRr
+aRr
+aRr
+aRr
+aRr
+aZu
+aQh
aaa
-amZ
-cjJ
-aqh
-aqh
-aYS
-bbo
-amZ
-aAC
-aUf
-bed
-bfy
-bfy
-bfy
-biA
-bjJ
-ble
-bmz
-bXY
-bpc
-bqo
-brz
-bfy
-btD
-buI
-bvI
-bwO
-bxV
-byM
-bxW
-bAN
-bvI
-bCY
-bvK
-bvK
-afp
-afp
+apC
+bdP
+atr
+atr
+beQ
+bhy
+apC
+aEj
+aTx
+bkF
+bkF
+bkF
+bkF
+bkF
+bnj
+brR
+bts
+buH
+bwd
+brR
+bnj
+bAF
+bAF
+bAF
+bAF
+bFq
+bGw
+bAF
+bHy
+bHy
+bHy
+bHy
+bHy
+bOs
+bPk
aaa
aaa
aaa
@@ -94836,48 +96777,6 @@ aaa
aaa
aaa
aaa
-aad
-afp
-bRC
-bRJ
-bRP
-bRD
-bRD
-bRD
-bRA
-bRA
-bRT
-bRT
-bRT
-bRT
-bRA
-bRA
-bRT
-bRT
-bRT
-bRA
-bRT
-bRT
-bRT
-bRA
-bRA
-bRT
-bRT
-bRA
-bRT
-bRT
-bRT
-bRT
-bRT
-bRA
-bRT
-bRA
-bRA
-bRA
-bRA
-bRA
-bRA
-bRA
aaa
aaa
aaa
@@ -94886,6 +96785,49 @@ aaa
aaa
aaa
aaa
+cjv
+cju
+cju
+cju
+cju
+ckK
+cju
+cju
+cju
+cju
+ckK
+ckK
+cju
+cju
+ckK
+ckK
+ckK
+cju
+cju
+cju
+cju
+ckK
+ckK
+ckK
+ckK
+ckK
+cju
+ckK
+ckK
+ckK
+cju
+ckK
+ckK
+clv
+cju
+cju
+cju
+cju
+cju
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -94998,143 +96940,77 @@ aaa
aaa
aaa
aaa
-agU
aiT
-aqd
-aqV
-aqV
-aqV
-aqV
-aqV
-aqV
-aqV
-aqV
-aqV
-aqV
-aqd
-aCf
-aCT
-aCT
-aAC
-bVx
-aCg
-aCg
-aAC
-aAC
-aKF
-aLD
-aMH
-aMH
-aMH
-aMH
-aMH
-aMH
-aMH
-aMH
-aMH
-aLC
+akn
+atn
+aur
+aur
+aur
+aur
+aur
+aur
+aur
+aur
+aur
+aur
+atn
+aFQ
+aGN
+aGN
+aEj
+aJt
+aFi
+aFi
+aEj
+aEj
+aPe
+aQi
+aRr
+aRr
+aRr
+aRr
+aRr
+aRr
+aRr
+aRr
+aRr
+aQh
aaa
-amZ
-amZ
-ana
-aZM
-ana
-amZ
-amZ
-aAC
-bdc
-bed
-bfy
-bfy
-bgy
-bfy
-bjK
-blf
-bmz
-bnM
-bpd
-bqp
-brA
-bfy
-bfy
-bfy
-bvI
-bwP
-bxW
-byN
-bxW
-bAO
-bvI
-bvK
-bvK
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-afp
-bRD
-bRD
-bRD
-bRD
-bRD
-bRD
-bRD
-bRT
-bRT
-bRT
-bRT
-bRA
-bRA
-bRT
-bRT
-bRT
-bRA
-bRT
-bRA
-bRT
-bRT
-bRT
-bRA
-bRT
-bRT
-bRT
-bRT
-bRT
-bRT
-bRT
-bRA
-bRT
-bRT
-bRA
-bRA
-bRA
-bRD
-bRA
-bRA
-bRA
+apC
+apC
+apD
+bfL
+apD
+apC
+apC
+aEj
+aTx
+bkF
+blX
+bne
+blX
+bkF
+bqy
+brS
+btt
+buI
+bwe
+bxM
+bzk
+bAH
+blX
+blX
+bEe
+bFr
+bGx
+bHB
+bIN
+bIN
+bLg
+bMo
+bNq
+bOu
+bPl
aaa
aaa
aaa
@@ -95164,6 +97040,72 @@ aaa
aaa
aaa
aaa
+abI
+abI
+cjv
+cjv
+cjx
+cjx
+cjx
+cju
+cju
+ckK
+cju
+cju
+ckK
+ckK
+cju
+cju
+ckK
+ckK
+ckK
+cju
+cju
+ckK
+ckK
+ckK
+ckK
+ckK
+ckK
+ckK
+ckK
+ckK
+ckK
+cju
+ckK
+ckK
+cju
+cju
+cju
+cju
+cju
+ckK
+cju
+cju
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -95255,41 +97197,41 @@ aaa
aaa
aaa
aaa
-agT
-aiT
-aqd
-aqd
-arO
-arO
-atP
-arO
-arO
-atP
-arO
-arO
-aqd
-aqd
-aAC
-aAC
-aAC
-aAC
-aFj
-aGd
-aCg
-aIq
-aAC
-aKF
-aLC
-aLC
-aMH
-aMH
-aMH
-cjH
-aMH
-aMH
-aMH
-aMH
-aLC
+aiS
+akn
+atn
+atn
+avm
+avm
+axy
+avm
+avm
+axy
+avm
+avm
+atn
+atn
+aEj
+aEj
+aEj
+aEj
+aJu
+aKp
+aFi
+aMA
+aEj
+aPe
+aQh
+aQh
+aRr
+aRr
+aRr
+aVD
+aRr
+aRr
+aRr
+aRr
+aQh
aaa
aaa
aaa
@@ -95298,100 +97240,34 @@ aaa
aaa
aaa
aaa
-aAC
-aUf
-bee
-bfz
-bgv
-bfy
-bfy
-bjL
-blg
-bmz
-bnN
-bpe
-bqq
-bqq
-bqq
-bqq
-bqq
-bvJ
-bwQ
-bxX
-byO
-bzJ
-bAP
-bBN
-bCZ
-aaa
-aaa
-aaa
-aad
-aaa
-aaa
-aaa
-aad
-aaa
-aaa
-aaa
-aad
-aaa
-aaa
-aaa
-aad
-aaa
-aaa
-aaa
-aad
-aaa
-aaa
-aaa
-aad
-aaa
-aaa
-aaa
-aad
-afp
-bRD
-bRD
-bRD
-bRU
-bRD
-bRV
-bRD
-bRT
-bRT
-bRT
-bRT
-bRA
-bRT
-bRT
-bRT
-bRA
-bRT
-bRT
-bRA
-bRA
-bRT
-bRT
-bSg
-bSg
-bSg
-bRT
-bRT
-bRT
-bRT
-bRA
-bRT
-bRA
-bRT
-bRT
-bRA
-bRD
-bTB
-bTG
-bRA
-bRA
+aEj
+aTx
+bkF
+blX
+blX
+blX
+bpq
+bqz
+brT
+btt
+buJ
+bwe
+bxN
+bzl
+blX
+bBU
+bDe
+bEe
+bFs
+bGy
+bHC
+bGy
+bJT
+bEe
+bMp
+bEg
+bEg
+bPm
aaa
aaa
aaa
@@ -95421,6 +97297,72 @@ aaa
aaa
aaa
aaa
+abI
+ahi
+cjw
+cjV
+ckt
+cjx
+cjx
+cjx
+cju
+cju
+ckK
+ckK
+ckK
+ckK
+cju
+cju
+ckK
+ckK
+ckK
+cju
+ckK
+ckK
+ckK
+cju
+cju
+ckK
+ckK
+cju
+ckK
+ckK
+ckK
+ckK
+ckK
+cju
+ckK
+cju
+cju
+cju
+cju
+cju
+cju
+cju
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -95512,41 +97454,41 @@ aaa
aaa
aaa
aaa
-agT
-aiT
-aqe
-agT
-aqd
-asX
-atQ
-auQ
-awd
-axs
-ays
-aqd
-aAC
-aBy
-aCg
-aCg
-aCg
-aCg
+aiS
+akn
+ato
+aiS
+atn
+awC
+axz
+ayw
+azE
+aAT
+aBY
+atn
+aEj
+aFf
aFi
-aCg
-aCg
-aCg
-aAC
+aFi
+aFi
+aFi
+aJs
+aFi
+aFi
+aFi
+aEj
aaa
-aLC
-aLC
-aLC
-aLC
-aLC
-aLC
-aLC
-aLC
-aLC
-aLC
-aLC
+aQh
+aQh
+aQh
+aQh
+aQh
+aQh
+aQh
+aQh
+aQh
+aQh
+aQh
aaa
aaa
aaa
@@ -95555,105 +97497,105 @@ aaa
aaa
aaa
aaa
-aAC
-bdd
-bef
-bfy
-bfy
-bfy
-biB
-bjM
-blh
-bmz
-bnO
-bpf
-bqn
-brB
-bsF
-bfy
-bfy
-bvI
-bwR
-bxY
-bxY
-bxY
-bxY
-bBO
-bvK
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-afp
-bRD
-bRD
-bRD
-bRD
-bRD
-bRD
-bRD
-bRA
-bRT
-bRT
-bRA
-bRT
-bRT
-bRT
-bRT
-bRA
-bRT
-bRT
-bRA
-bRA
-bRT
-bRT
-bRA
-bRA
-bRT
-bRT
-bRT
-bRT
-bRT
-bRT
-bRA
-bRA
-bRT
-bRA
-bRA
-bRA
-bRD
-bRA
-bRA
-bRA
-aaa
-aaa
-aaa
-aaa
-aaa
+aEj
+aTx
+bkF
+blX
+blX
+bni
+blX
+bqA
+brU
+btt
+buK
+bwf
+bxO
+bzm
+blX
+blX
+blX
+bEe
+bFt
+bGy
+bHD
+bGy
+bJU
+bEe
+bEg
+bEg
+abI
+abI
+abI
+abI
+abI
+abI
+abI
+abI
+abI
+abI
+abI
+abI
+abI
+abI
+abI
+abI
+abI
+abI
+abI
+abI
+abI
+abI
+abI
+abI
+abI
+abI
+abI
+abI
+abI
+abI
+abI
+abI
+ahi
+cjx
+cjx
+cjx
+cjx
+cjx
+cjx
+cjx
+ckK
+ckK
+ckK
+ckK
+cju
+cju
+ckK
+ckK
+ckK
+cju
+ckK
+cju
+ckK
+ckK
+ckK
+cju
+ckK
+ckK
+ckK
+ckK
+ckK
+ckK
+ckK
+cju
+ckK
+ckK
+cju
+cju
+cju
+cjx
+cju
+cju
+cju
aaa
aaa
aaa
@@ -95769,29 +97711,29 @@ aaa
aaa
aaa
aaa
-agT
-apg
-ajH
-ajH
-arP
-asY
-atR
-auR
-awe
-axt
-ayt
-azE
-aAD
-aAD
-aAD
-aAD
-aAD
-aAD
-aFk
-aGb
-aGb
-aIr
-aAC
+aiS
+asn
+ale
+ale
+avn
+awD
+axA
+ayx
+azF
+aAU
+aBZ
+aDl
+aEk
+aEk
+aEk
+aEk
+aEk
+aEk
+aJv
+aKn
+aKn
+aMB
+aEj
aaa
aaa
aaa
@@ -95805,112 +97747,112 @@ aaa
aaa
aaa
aaa
-aAC
-aAC
-aAC
-aCV
-aCV
-aAC
-aCV
-aAC
-aUf
-bef
-bfy
-bfy
-bfy
-biA
-bjN
-bli
-bmz
-bnP
-bpc
-bqr
-brC
-bfy
-btD
-buI
-bvI
-bwS
-bxY
-byP
-bxW
-bxW
-bBP
-bzN
-aad
+aEj
+aEj
+aEj
+aEl
+aEl
+aEj
+aEl
+aEj
+aTx
+bkG
+blY
+bnf
+blX
+blX
+bqB
+brV
+btt
+buL
+bwg
+bxP
+bxP
+bxP
+bxP
+bxP
+bEf
+bFu
+bGz
+bHE
+bIO
+bJV
+bLh
+bMq
+aht
aaa
aaa
aaa
+abI
aaa
aaa
aaa
+abI
aaa
aaa
aaa
+abI
aaa
aaa
aaa
+abI
aaa
aaa
aaa
+abI
aaa
aaa
aaa
+abI
aaa
aaa
aaa
+abI
aaa
aaa
aaa
-aaa
-aaa
-aad
-afp
-bRC
-bRD
-bRD
-bRP
-bRD
-bRD
-bRA
-bRA
-bRT
-bRA
-bRT
-bRT
-bRT
-bRT
-bRA
-bRT
-bRT
-bRT
-bRA
-bRT
-bRT
-bRA
-bRT
-bRT
-bRT
-bRA
-bRA
-bRT
-bRT
-bRA
-bRA
-bRT
-bRA
-bRT
-bRA
-bRA
-bRA
-bRA
-bRA
-bRA
-aaa
-aaa
-aaa
-aaa
-aaa
+abI
+ahi
+cjx
+cjx
+cjx
+ckL
+cjx
+clj
+cjx
+ckK
+ckK
+ckK
+ckK
+cju
+ckK
+ckK
+ckK
+cju
+ckK
+ckK
+cju
+cju
+ckK
+ckK
+clv
+clv
+clv
+ckK
+ckK
+ckK
+ckK
+cju
+ckK
+cju
+ckK
+ckK
+cju
+cjx
+cnp
+cnq
+cju
+cju
aaa
aaa
aaa
@@ -96026,29 +97968,29 @@ aaa
aaa
aaa
aaa
-agT
-agU
-agT
-agT
-aqd
-aqd
-arO
-arO
-arO
-arO
-aqd
-aqd
-aAC
-aAC
-aAC
-aAC
-aSx
-aAC
-aAC
-aEk
-aAC
-aFi
-aAC
+aiS
+aiT
+aiS
+aiS
+atn
+atn
+avm
+avm
+avm
+avm
+atn
+atn
+aEj
+aEj
+aEj
+aEj
+aHu
+aEj
+aEj
+aKq
+aEj
+aJs
+aEj
aaa
aaa
aaa
@@ -96062,112 +98004,112 @@ aaa
aaa
aaa
aaa
-aCV
-aXY
-aYT
-aPB
-aPB
-bbp
-aPB
-aPB
-bde
-bef
-bfy
-bgw
-bfy
-bed
-bjO
-blj
-bmA
-bnQ
-bpd
-bqs
-brD
-bfy
-bfy
-bfy
-bvI
-bwT
-bxW
-byQ
-bzK
-bAQ
-bBQ
-bzN
-aad
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aad
-aad
-bRB
-bRB
-bRD
-bRD
-bRD
-bRA
-bRT
-bRT
-bRA
-bRT
-bRT
-bRT
-bRT
-bRA
-bRT
-bRT
-bRT
-bRA
-bRA
-bRT
-bRT
-bRT
-bRT
-bRT
-bRT
-bRT
-bRT
-bRT
-bRT
-bRT
-bRA
-bRT
-bRA
-bRA
-bRA
-bRA
-bRA
-bRA
-bRA
-bRA
-aaa
-aaa
-aaa
-aaa
-aaa
+aEl
+bdQ
+beR
+aUC
+aUC
+bhz
+aUC
+aUC
+bjA
+bkH
+blX
+blX
+blX
+bpr
+bqC
+brW
+btt
+buM
+bwh
+bxM
+bzn
+bAH
+blX
+blX
+bEe
+bFv
+bGA
+bGA
+bGA
+bGA
+bLi
+bEg
+abI
+aht
+abI
+abI
+abI
+abI
+abI
+abI
+abI
+abI
+abI
+abI
+abI
+abI
+abI
+abI
+abI
+abI
+abI
+abI
+abI
+abI
+abI
+abI
+abI
+abI
+abI
+abI
+abI
+abI
+abI
+abI
+abI
+ahi
+cjx
+cjx
+cjx
+cjx
+cjx
+cjx
+cjx
+cju
+ckK
+ckK
+cju
+ckK
+ckK
+ckK
+ckK
+cju
+ckK
+ckK
+cju
+cju
+ckK
+ckK
+cju
+cju
+ckK
+ckK
+ckK
+ckK
+ckK
+ckK
+cju
+cju
+ckK
+cju
+cju
+cju
+cjx
+cju
+cju
+cju
aaa
aaa
aaa
@@ -96286,72 +98228,72 @@ aaa
aaa
aaa
aaa
-bbN
-aad
-aad
+aiS
+abI
+abI
aaa
aaa
aaa
aaa
-aad
-aad
-aAC
-bVc
-bVg
-aPA
-aCg
-aPA
-aCg
-aCg
-aAC
+abI
+abI
+aEj
+aFg
+aFR
+aGO
aFi
-aAC
-aAC
-aCV
-aCV
-aCV
-aCV
-aAC
-aAC
-aCV
-aCV
-aAC
-aCV
-aCV
-aAC
-aAC
-aUf
-aYU
-aCg
-aPA
-aWV
-aAC
-aGY
-bdf
-beg
-bfA
-bfA
-bfA
-bfA
-bjP
-blk
-bmB
-bnP
-bpc
-bgz
-bgz
-bgz
-bgz
-bgz
-bvI
-bwU
-bya
-bvI
-bzL
-bAR
-bBR
-bvK
-aad
+aGO
+aFi
+aFi
+aEj
+aJs
+aEj
+aEj
+aEl
+aEl
+aEl
+aEl
+aEj
+aEj
+aht
+aht
+aEj
+aEl
+aEl
+aEj
+aEj
+aTx
+beS
+aFi
+aGO
+bcI
+aEj
+aLk
+bjB
+bkH
+blX
+blX
+blX
+bpq
+bqD
+brX
+btt
+buN
+bwe
+bxQ
+bzo
+blX
+bBU
+bDe
+bEe
+bFw
+bGA
+bHF
+bGy
+bGy
+bLj
+bIS
+abI
aaa
aaa
aaa
@@ -96380,46 +98322,51 @@ aaa
aaa
aaa
aaa
-bRB
-bRA
-bRA
-bRA
-bRA
-bRA
-bRA
-bRT
-bRA
-bRT
-bRA
-bRA
-bRT
-bRT
-bRT
-bRT
-bRT
-bRA
-bRA
-bRT
-bRT
-bRT
-bRA
-bRA
-bRA
-bRT
-bRT
-bRT
-bRT
-bRA
-bRT
-bRA
-bRA
-bRA
-bRA
-bRA
-bRA
-bRT
-bRA
-bRA
+aaa
+aaa
+aaa
+abI
+ahi
+cjw
+cjx
+cjx
+ckt
+cjx
+cjx
+cju
+cju
+ckK
+cju
+ckK
+ckK
+ckK
+ckK
+cju
+ckK
+ckK
+ckK
+cju
+ckK
+ckK
+cju
+ckK
+ckK
+ckK
+cju
+cju
+ckK
+ckK
+cju
+cju
+ckK
+cju
+ckK
+cju
+cju
+cju
+cju
+cju
+cju
aaa
aaa
aaa
@@ -96428,12 +98375,7 @@ aaa
aaa
aaa
aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aab
+abN
aaa
aaa
aaa
@@ -96545,70 +98487,70 @@ aaa
aaa
aaa
aaa
-aad
+abI
aaa
aaa
aaa
-aad
-aad
-aad
-aAC
-bVd
-aAC
-aZP
-aAC
-aEk
-aAC
-aAC
-aAC
-aIs
-aJB
-aJB
-aJB
-aJB
-aJB
-aOA
-aPz
-aAC
-aRx
-aSv
-aAC
-aUe
-aPB
-aPB
-aWU
-aUg
-aCg
-aZN
-aCg
-aWV
-aAC
-bcq
-bdg
-beh
-bed
-bfy
-bfy
-biB
-bjQ
-bll
-bmC
-bnP
-bpc
-bqn
-brE
-bsF
-bfy
-bfy
-bvI
-bwV
-byb
-byS
-bzM
-bAS
-bBS
-bvK
-aad
+abI
+abI
+abI
+aEj
+aFh
+aEj
+aGP
+aEj
+aIp
+aEj
+aEj
+aEj
+aMC
+aNR
+aNR
+aNR
+aNR
+aNR
+aTu
+aUB
+aEl
+aaa
+aaa
+aEl
+aZv
+aUC
+aUC
+bcH
+aZw
+aFi
+bfM
+aFi
+bcI
+aEj
+biD
+bjC
+bkH
+blX
+bng
+blX
+bkF
+bqE
+brY
+btu
+buO
+bwf
+bxR
+bzp
+blX
+blX
+blX
+bEe
+bFx
+bGy
+bHG
+bIP
+bJW
+bLk
+bIS
+abI
aaa
aaa
aaa
@@ -96637,51 +98579,51 @@ aaa
aaa
aaa
aaa
-bRA
-bRA
-bRA
-bRA
-bRA
-bRT
-bRT
-bRA
-bRT
-bRA
-bRA
-bRT
-bRT
-bRA
-bRT
-bRA
-bRA
-bRA
-bRT
-bRA
-bRT
-bRA
-bRA
-bRA
-bRT
-bRA
-bRT
-bRT
-bRA
-bRA
-bRA
-bRA
-bRA
-bRT
-bRA
-bRA
-bRA
-bRA
-bRA
-aaa
-aaa
-aaa
aaa
aaa
aaa
+abI
+abI
+cjv
+cjv
+cjx
+cjx
+cjx
+cju
+ckK
+ckK
+cju
+ckK
+ckK
+ckK
+ckK
+cju
+ckK
+ckK
+ckK
+cju
+cju
+ckK
+ckK
+ckK
+ckK
+ckK
+ckK
+ckK
+ckK
+ckK
+ckK
+ckK
+cju
+ckK
+cju
+cju
+cju
+cju
+cju
+cju
+cju
+cju
aaa
aaa
aaa
@@ -96807,65 +98749,65 @@ aaa
aaa
aaa
aaa
-aad
+abI
aaa
-aCV
-aCg
-aAC
-aAC
-aAC
-aCU
-bVy
aEl
-aAC
-aIt
-aJC
-aKG
-aLE
-aMI
-aNy
-aOB
-aPA
-aAC
-aRy
-aCg
-aAC
-aUf
-aPA
-aCg
-aWV
-aCg
-aYV
-aZO
-baC
-aWV
-aAC
-bcr
-bdh
-bei
-bed
-bgx
-bhu
-bfy
-bjR
-blm
-bmC
-bnP
-bpc
-bqt
-brF
-bfy
-bhu
-buI
-bvK
-bwW
-bvK
-bvK
-bzN
-bvK
-bzN
-bvK
-aad
+aFi
+aEj
+aEj
+aEj
+aIq
+aJw
+aKr
+aEj
+aMD
+aNS
+aPf
+aQj
+aRs
+aSl
+aTv
+aGO
+aEj
+aEj
+aEj
+aEj
+aTx
+aGO
+aFi
+bcI
+aFi
+beT
+bfN
+bgN
+bcI
+aEj
+aKq
+bjD
+bkI
+blZ
+blZ
+blZ
+blZ
+bqF
+brZ
+btv
+buN
+bwe
+bnj
+bnj
+bnj
+bnj
+bnj
+bEe
+bFy
+bGB
+bEe
+bIQ
+bJX
+bLl
+bEg
+abI
aaa
aaa
aaa
@@ -96895,50 +98837,50 @@ aaa
aaa
aaa
aaa
-bRA
-bRA
-bRA
-bRA
-bRA
-bRA
-bRT
-bRT
-bRA
-bRA
-bRT
-bRA
-bRT
-bRT
-bRT
-bSg
-bRT
-bRT
-bRA
-bRA
-bRA
-bRT
-bRT
-bRA
-bRA
-bRT
-bRA
-bRA
-bRA
-bRA
-bRA
-bRA
-bRA
-bRA
-bRA
-bRA
-bRA
-bRA
-aaa
-aaa
aaa
aaa
aaa
aaa
+cjv
+cju
+cju
+cju
+cju
+cju
+cju
+ckK
+cju
+ckK
+cju
+cju
+ckK
+ckK
+ckK
+ckK
+ckK
+cju
+cju
+ckK
+ckK
+ckK
+cju
+cju
+cju
+ckK
+ckK
+ckK
+ckK
+cju
+ckK
+cju
+cju
+cju
+cju
+cju
+cju
+ckK
+cju
+cju
aaa
aaa
aaa
@@ -97064,59 +99006,65 @@ aaa
aaa
aaa
aaa
-aad
-aad
-aAC
-bVe
-aAC
+abI
+abI
+aEj
+aFj
+aEj
aaa
-aAC
-aCV
-aAC
-aAC
-aHa
-aHa
-aHa
-aHa
-aLF
-aMJ
-aHa
-aOC
-aCg
-aCg
-aCg
-bVO
-aAC
-aUf
-aVi
-aVi
-aWW
-aVi
-aVi
-aAC
-aAC
-bbr
-aAC
-bcs
-bdi
-aCg
-bed
-bgy
-bfy
-bfy
-bjS
-bln
-bmD
-bnR
-bpd
-bqu
-brG
-bfy
-bfy
-bfy
-bed
-bwX
-brM
+aEj
+aEl
+aEj
+aEj
+aLm
+aLm
+aLm
+aLm
+aQk
+aRt
+aLm
+aTw
+aUC
+aVE
+aUC
+aUC
+aUC
+aZw
+baG
+baG
+bcJ
+baG
+baG
+aEj
+aEj
+bhA
+aKq
+biE
+bjD
+bkJ
+bkF
+blX
+blX
+bpr
+bqG
+bsa
+btw
+buN
+bwe
+bxM
+bzq
+bAH
+blX
+blX
+bEe
+bFz
+bGC
+bHH
+bIR
+bJY
+bLm
+bEg
+abI
aaa
aaa
aaa
@@ -97150,51 +99098,45 @@ aaa
aaa
aaa
aaa
-aaa
-aaa
-aaa
-bRA
-bRA
-bRA
-bRT
-bRT
-bRT
-bRT
-bRT
-bRT
-bRA
-bRA
-bRT
-bRT
-bRA
-bRT
-bRT
-bRA
-bRA
-bRA
-bRT
-bRT
-bRA
-bRA
-bRT
-bRT
-bRA
-bRA
-bRT
-bRA
-bRA
-bRA
-bRA
-bRA
-bRA
-bRA
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
+cju
+cju
+cju
+cju
+cju
+ckK
+ckK
+cju
+ckK
+cju
+cju
+ckK
+ckK
+cju
+ckK
+cju
+cju
+cju
+ckK
+cju
+ckK
+cju
+cju
+cju
+ckK
+cju
+ckK
+ckK
+cju
+cju
+cju
+cju
+cju
+ckK
+cju
+cju
+cju
+cju
+cju
aaa
aaa
aaa
@@ -97322,58 +99264,64 @@ aaa
aaa
aaa
aaa
-aad
-afp
-afp
-afp
+abI
+ahi
+ahi
+ahi
aaa
aaa
aaa
aaa
aaa
-aHb
-aHb
-aJD
-aKH
-aLG
-aMK
-aHa
-aOC
-aCg
-aAC
-aAC
-aAC
-aAC
-aUf
-aVi
-aWh
-aWX
-aXZ
-aVi
-bWN
-aCg
-aWV
-aAC
-aAC
-bdi
-aGd
-bed
-bgz
-bgz
-bgz
-bgz
-bgz
-bmE
-bnS
-bpg
-bgz
-bgz
-bgz
-bgz
-bgz
-bed
-bwY
-brM
+aLn
+aLn
+aNT
+aPg
+aQl
+aRu
+aLm
+aTx
+aEj
+aEj
+aEj
+aEj
+aYC
+aEj
+baG
+bbL
+bcK
+bdR
+baG
+bfO
+aFi
+bhB
+aNR
+aNR
+bjE
+bkK
+bkF
+bnh
+boi
+blX
+bqH
+bsb
+btw
+buN
+bwe
+bxS
+bzr
+blX
+boi
+bDe
+bEg
+bFA
+bEg
+bEg
+bIS
+bEg
+bIS
+bEg
+abI
aaa
aaa
aaa
@@ -97408,50 +99356,44 @@ aaa
aaa
aaa
aaa
-aaa
-aaa
-aaa
-bRA
-bRA
-bRA
-bRA
-bRA
-bRA
-bRT
-bRT
-bSi
-bRT
-bRT
-bRA
-bRA
-bRT
-bRA
-bRA
-bRT
-bRA
-bRA
-bRA
-bRA
-bRT
-bRA
-bRA
-bRA
-bRA
-bRA
-bRA
-bRA
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
+cju
+cju
+cju
+cju
+cju
+cju
+ckK
+ckK
+cju
+cju
+ckK
+cju
+ckK
+ckK
+ckK
+clv
+ckK
+ckK
+cju
+cju
+cju
+ckK
+ckK
+cju
+cju
+ckK
+cju
+cju
+cju
+cju
+cju
+cju
+cju
+cju
+cju
+cju
+cju
+cju
aaa
aaa
aaa
@@ -97588,49 +99530,49 @@ aaa
aaa
aaa
aaa
-aHa
-aHa
-aJE
-aKI
-aLH
-aML
-aHa
-aOD
-aPB
-aQB
-aPB
-aPB
-aPB
-aUg
-aVi
-aWi
-aWY
-aYa
-aVi
-aZQ
-baD
-bbs
-aJB
-aJB
-bdj
-bej
-bed
-bfy
-bfy
-biB
-bjT
-bll
-bmC
-bnP
-bpc
-bqn
-brH
-bsF
-bfy
-bfy
-bed
-bwX
-brM
+aLm
+aLm
+aNU
+aPh
+aQm
+aRv
+aLm
+aTx
+aEj
+aVF
+aFi
+aFi
+aFi
+aEj
+baG
+bbM
+bcL
+bdS
+baG
+bfP
+bgO
+aFi
+aKq
+biD
+aGO
+bjD
+bkF
+bni
+blX
+blX
+bqI
+bsc
+btx
+buP
+bwf
+bxT
+bzs
+blX
+blX
+blX
+bkF
+bFB
+aEj
aaa
aaa
aaa
@@ -97669,44 +99611,44 @@ aaa
aaa
aaa
aaa
-bRA
-bRA
-bRA
-bRT
-bRA
-bRT
-bRA
-bRT
-bRT
-bRA
-bRA
-bRA
-bRA
-bRA
-bRA
-bRA
-bRA
-bRA
-bRA
-bRA
-bRA
-bRA
-bRA
-bRA
-bRA
-bRA
-bRA
-bRA
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
aaa
aaa
aaa
+cju
+cju
+cju
+ckK
+ckK
+ckK
+ckK
+ckK
+ckK
+cju
+cju
+ckK
+ckK
+cju
+ckK
+ckK
+cju
+cju
+cju
+ckK
+ckK
+cju
+cju
+ckK
+ckK
+cju
+cju
+ckK
+cju
+cju
+cju
+cju
+cju
+cju
+cju
aaa
aaa
aaa
@@ -97845,49 +99787,49 @@ aaa
aaa
aaa
aaa
-aHa
-aIu
-aJF
-aKI
-aLH
-aMM
-aHa
-aOE
-aAC
-aAC
-aAC
-aAC
-bVU
-aAC
-aVi
-aWj
-aWZ
-aYb
-aVi
-aAC
-aCV
-aCV
-aAC
-aAC
-aAC
-bek
-bed
-bgx
-bhu
-bfy
-bjU
-blo
-bmC
-bnP
-bpc
-bqv
-brI
-bfy
-bhu
-buI
-bed
-bwZ
-brM
+aLm
+aME
+aNV
+aPh
+aQm
+aRw
+aLm
+aTy
+aEj
+aEj
+aHu
+aEj
+aEj
+aEj
+baG
+bbN
+bcM
+bdT
+baG
+aEj
+aEl
+aEl
+aEj
+biF
+bjF
+bjD
+bkF
+bnj
+bnj
+bnj
+bnj
+bnj
+bty
+buQ
+bwi
+bnj
+bnj
+bnj
+bnj
+bnj
+bkF
+bjD
+aEj
aaa
aaa
aaa
@@ -97929,36 +99871,36 @@ aaa
aaa
aaa
aaa
-bRA
-bRA
-bRA
-bRA
-bRA
-bRA
-bRA
-bRA
-bRA
-bRA
-bRA
-bRA
-bRA
-bRA
-bRA
-bRA
-bRA
-bRA
-bRA
-bRA
-bRA
-bRA
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
aaa
+cju
+cju
+cju
+cju
+cju
+cju
+ckK
+ckK
+cls
+ckK
+ckK
+cju
+cju
+ckK
+cju
+cju
+ckK
+cju
+cju
+cju
+cju
+ckK
+cju
+cju
+cju
+cju
+cju
+cju
+cju
aaa
aaa
aaa
@@ -98102,49 +100044,49 @@ aaa
aaa
aaa
aaa
-aHc
-aIv
-aJG
-aKI
-aLI
-aMN
-aNz
-aOF
-aAC
-bVL
-aCg
-aCg
-aCg
-aAC
-aVj
-aVj
-aXa
-aVj
-aVj
-aad
-aad
-aad
-aAC
-bXr
-aAC
-bel
-bed
-bfy
-bfy
-bfy
-bjV
-blp
-bmF
-bnT
-bpd
-bqw
-brJ
-bfy
-bfy
-bfy
-bed
-bwX
-brM
+aLo
+aMF
+aNW
+aPh
+aQn
+aRx
+aSm
+aTz
+aEj
+aVG
+aFi
+aFi
+aYD
+aEj
+baH
+baH
+bcN
+baH
+baH
+abI
+abI
+abI
+aEj
+biG
+bjG
+bjD
+bkF
+blX
+blX
+bpr
+bqJ
+bsa
+btw
+buN
+bwe
+bxM
+bzt
+bAH
+blX
+blX
+bkF
+bFC
+aEj
aaa
aaa
aaa
@@ -98188,34 +100130,34 @@ aaa
aaa
aaa
aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-bRA
-bRA
-bRA
-bRA
-bRA
-bRA
-bRA
-bRA
-bRA
-bRA
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
+cju
+cju
+cju
+ckK
+cju
+ckK
+cju
+ckK
+ckK
+cju
+cju
+cju
+cju
+cju
+cju
+cju
+cju
+cju
+cju
+cju
+cju
+cju
+cju
+cju
+cju
+cju
+cju
+cju
aaa
aaa
aaa
@@ -98359,71 +100301,49 @@ aaa
aaa
aaa
aaa
-aHc
-aIw
-aJH
-aKI
-aLJ
-aMO
-aNA
-aOG
-aAC
-aAC
-aSx
-aAC
-aAC
-aAC
-aad
-aWk
-aXb
-aVj
-aaa
-aaa
-aaa
-aaa
-aAC
-aCg
-aGX
-bel
-bed
-bed
-bed
-bed
-bed
-bed
-bed
-bnU
-bph
-bed
-bed
-bed
-bed
-bed
-bed
-bxa
-brM
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
+aLo
+aMG
+aNX
+aPh
+aQo
+aRy
+aSn
+aTA
+aEj
+aVH
+aFi
+aXC
+aYE
+aEj
+abI
+bbO
+bcO
+baH
aaa
aaa
aaa
aaa
+aEj
+biH
+bjH
+bjD
+bkF
+bnh
+boi
+blX
+bqK
+bsd
+btw
+buN
+bwe
+bxU
+bzu
+blX
+boi
+bDe
+bkF
+bjD
+aEj
aaa
aaa
aaa
@@ -98470,6 +100390,28 @@ aaa
aaa
aaa
aaa
+cju
+cju
+cju
+cju
+cju
+cju
+cju
+cju
+cju
+cju
+cju
+cju
+cju
+cju
+cju
+cju
+cju
+cju
+cju
+cju
+cju
+cju
aaa
aaa
aaa
@@ -98604,7 +100546,7 @@ aaa
aaa
aaa
aaa
-aab
+abN
aaa
aaa
aaa
@@ -98616,59 +100558,49 @@ aaa
aaa
aaa
aaa
-aHa
-aIx
-aJI
-aKJ
-aLK
-aMP
-aNB
-aOH
-aAC
-aQC
-aCg
-aCg
-aTo
-aAC
-aad
-aVj
-aXc
-aVj
-aaa
-aaa
-aaa
-aAC
-aAC
-aCg
-aAC
-bel
-aCg
-bgA
-bhv
-biC
-aIq
-bgz
-bmG
-bnV
-bpi
-bgz
-brK
-bsG
-bsG
-bsG
-bvL
-brL
-brM
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
+aLm
+aMH
+aNY
+aPi
+aQp
+aRz
+aSo
+aTB
+aEl
+aVI
+aFi
+aXC
+aYF
+aEj
+abI
+baH
+bcP
+baH
aaa
aaa
aaa
aaa
+aEj
+aEl
+aEj
+bjD
+bkF
+blX
+blX
+blX
+bqL
+bse
+btz
+buR
+bwf
+bxV
+bzv
+blX
+blX
+blX
+bkF
+bjD
+aEj
aaa
aaa
aaa
@@ -98722,6 +100654,16 @@ aaa
aaa
aaa
aaa
+cju
+cju
+cju
+cju
+cju
+cju
+cju
+cju
+cju
+cju
aaa
aaa
aaa
@@ -98873,49 +100815,49 @@ aaa
aaa
aaa
aaa
-aHa
-aHa
-aHc
-aHa
-aHc
-aHa
-aHa
-aHa
-aAC
-aQD
-aCg
-aSy
-aTp
-aAC
+aLm
+aLm
+aLo
+aLm
+aLo
+aLm
+aLm
+aLm
+aEj
+aEj
+aEl
+aEl
+aEl
+aEj
aaa
aaa
-aXd
+bcQ
aaa
aaa
aaa
aaa
-aAC
-aCg
-bWB
-aCg
-bem
-bfB
-bfB
-bfB
-bfB
-bjW
-blq
-bmH
-bnW
-bpj
-bqx
-brL
-brM
-brM
-buJ
-buJ
-brM
-brM
+aaa
+aaa
+aaa
+aEj
+bjD
+bkF
+bkF
+bkF
+bkF
+bkF
+bkF
+bkF
+buS
+bwj
+bkF
+bkF
+bkF
+bkF
+bkF
+bkF
+bFD
+aEj
aaa
aaa
aaa
@@ -99130,44 +101072,14 @@ aaa
aaa
aaa
aaa
-aad
-aad
-aad
+abI
+abI
+abI
aaa
aaa
-aad
-aad
-aad
-aCV
-bVM
-aCg
-aSy
-aTq
-aAC
-aaa
-aaa
-aXd
-aaa
-aaa
-aaa
-aAC
-aAC
-bWB
-aAC
-aAC
-aAC
-aSx
-aAC
-aAC
-aAC
-aFZ
-bgz
-bmI
-bnX
-bmI
-bgz
-brM
-brM
+abI
+abI
+abI
aaa
aaa
aaa
@@ -99176,6 +101088,36 @@ aaa
aaa
aaa
aaa
+bcQ
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aEj
+bjD
+aEj
+bnk
+boj
+bps
+aMA
+aEj
+btA
+buT
+bwk
+aEj
+bzw
+bma
+bma
+bma
+bEh
+bzx
+aEj
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -99394,37 +101336,7 @@ aaa
aaa
aaa
aaa
-aad
-aAC
-aAC
-aCV
-aCV
-aCV
-aAC
-aaa
-aaa
-aXd
-aaa
-aaa
-aaa
-aCV
-bXe
-bXh
-bXs
-aAC
-ben
-aCg
-bgB
-bhw
-aAC
-aFZ
-bgz
-bmJ
-bmJ
-bmJ
-bqy
-aeV
-aad
+abI
aaa
aaa
aaa
@@ -99433,6 +101345,36 @@ aaa
aaa
aaa
aaa
+bcQ
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aEj
+bkL
+bma
+bma
+bma
+bma
+bqM
+bsf
+btB
+buU
+bwl
+bxW
+bzx
+aEj
+aEj
+aEl
+aEl
+aEj
+aEj
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -99660,28 +101602,28 @@ aaa
aaa
aaa
aaa
-aXd
+bcQ
aaa
aaa
aaa
-aCV
-bXf
-bXi
-bXt
-aAC
-beo
-bfC
-bgC
-bhx
-aAC
-bjX
-bgz
-bmK
-bnY
-bmJ
-bqy
-aeV
-aad
+aaa
+aaa
+aaa
+aaa
+aEj
+aEj
+aHu
+aEj
+aEj
+aEj
+aKl
+aEj
+btC
+buV
+btC
+aEj
+aEj
+abI
aaa
aaa
aaa
@@ -99917,28 +101859,28 @@ aaa
aaa
aaa
aaa
-aXd
+bcQ
aaa
aaa
aaa
-aAC
-aAC
-aAC
-aCV
-aAC
-bep
-baD
-bgD
-bhy
-aAC
-aFZ
-bgz
-bgz
-bgz
-bgz
-bgz
-bbN
-bbN
+aaa
+aaa
+aaa
+aaa
+aEj
+bkM
+aFi
+bnl
+bok
+aEj
+aKl
+aEj
+btD
+btD
+btD
+bxX
+bzy
+abI
aaa
aaa
aaa
@@ -100174,7 +102116,7 @@ aaa
aaa
aaa
aaa
-aXd
+bcQ
aaa
aaa
aaa
@@ -100182,20 +102124,21 @@ aaa
aaa
aaa
aaa
-aAC
-aCV
-aCV
-aCV
-aCV
-aAC
-aGa
-aGV
-aGV
-aGV
-bpk
-aAC
-aad
-aad
+aEj
+bkN
+bmb
+bnm
+bol
+aEj
+bqN
+aEj
+btE
+buW
+btD
+bxX
+bzy
+abI
+aaa
aaa
aaa
aaa
@@ -100265,7 +102208,6 @@ aaa
aaa
aaa
aaa
-aab
aaa
aaa
aaa
@@ -100431,7 +102373,7 @@ aaa
aaa
aaa
aaa
-aXd
+bcQ
aaa
aaa
aaa
@@ -100439,20 +102381,20 @@ aaa
aaa
aaa
aaa
-aaa
-aaa
-aaa
-aaa
-aad
-aAC
-aCV
-blr
-bmL
-aCV
-bpl
-aAC
-aad
-aaa
+aEj
+bkO
+bgO
+bnn
+bom
+aEj
+aKl
+aEj
+aEj
+aEj
+aEj
+aEj
+aEj
+abI
aaa
aaa
aaa
@@ -100688,7 +102630,7 @@ aaa
aaa
aaa
aaa
-aXd
+bcQ
aaa
aaa
aaa
@@ -100696,20 +102638,19 @@ aaa
aaa
aaa
aaa
-aaa
-aaa
-aaa
-aaa
-aad
-aad
-aCV
-aCV
-aCV
-aCV
-bpm
-aad
-aad
-aaa
+aEj
+aEl
+aEl
+aEl
+aEl
+aEj
+aKm
+aLi
+aLi
+aLi
+bwm
+aEj
+abI
aaa
aaa
aaa
@@ -100785,6 +102726,7 @@ aaa
aaa
aaa
aaa
+abN
aaa
aaa
aaa
@@ -100945,16 +102887,7 @@ aaa
aaa
aaa
aaa
-aXd
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
+bcQ
aaa
aaa
aaa
@@ -100966,6 +102899,15 @@ aaa
aaa
aaa
aaa
+abI
+aEj
+bqO
+aJp
+btF
+aEj
+bwn
+aEj
+abI
aaa
aaa
aaa
@@ -101191,38 +103133,38 @@ aaa
aaa
aaa
aaa
-aac
-acl
-aac
-aac
-aac
+aby
+aed
+aby
+aby
+aby
aaa
-aab
+abN
aaa
aaa
aaa
aaa
-aXe
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aac
-aac
-aac
-aad
-aac
-aaa
-aaa
-aaa
+bcR
aaa
aaa
aaa
aaa
aaa
aaa
+aby
+aby
+aby
+aed
+aby
+abI
+aEj
+aEl
+aEl
+aEl
+aEl
+bwo
+aEj
+abI
aaa
aaa
aaa
@@ -101448,29 +103390,29 @@ aaa
aaa
aaa
aaa
-aac
+aby
aaa
aaa
aaa
-aad
+abI
aaa
aaa
aaa
aaa
aaa
aaa
-aXf
+bcS
aaa
aaa
aaa
aaa
aaa
aaa
-aad
+abI
aaa
aaa
aaa
-aac
+aby
aaa
aaa
aaa
@@ -101705,29 +103647,29 @@ aaa
aaa
aaa
aaa
-aac
+aby
aaa
-aOI
-aOI
-aOI
-aOI
-aOI
-aOI
-aOI
-aOI
+aTC
+aTC
+aTC
+aTC
+aTC
+aTC
+aTC
+aTC
aaa
-aXf
+bcS
aaa
-aOI
-aOI
-aOI
-aOI
-aOI
-aOI
-aOI
-aOI
+aTC
+aTC
+aTC
+aTC
+aTC
+aTC
+aTC
+aTC
aaa
-aac
+aby
aaa
aaa
aaa
@@ -101796,7 +103738,7 @@ aaa
aaa
aaa
aaa
-aab
+abN
aaa
aaa
aaa
@@ -101962,29 +103904,29 @@ aaa
aaa
aaa
aaa
-aac
-aad
-ant
-aoi
-aoi
-aoi
-aoi
-aoi
-aoi
-aoi
-auS
-aXf
-axu
-ayu
-ayu
-ayu
-ayu
-ayu
-ayu
-ayu
-aEm
-aad
-aac
+aby
+abI
+aTD
+aUD
+aUD
+aUD
+aUD
+aUD
+aUD
+aUD
+bbP
+bcS
+bdU
+beU
+beU
+beU
+beU
+beU
+beU
+beU
+bkP
+aaa
+aby
aaa
aaa
aaa
@@ -102219,29 +104161,29 @@ aaa
aaa
aaa
aaa
-aac
+aby
aaa
-aOJ
-aOJ
-aOJ
-aOJ
-aOJ
-aOJ
-aOJ
-aVk
+aTE
+aTE
+aTE
+aTE
+aTE
+aTE
+aTE
+baI
aaa
-aXf
+bcS
aaa
-aOJ
-aOJ
-aOJ
-aOJ
-aOJ
-aOJ
-aOJ
-aVk
-aaa
-aac
+aTE
+aTE
+aTE
+aTE
+aTE
+aTE
+aTE
+baI
+abI
+aby
aaa
aaa
aaa
@@ -102476,7 +104418,7 @@ aaa
aaa
aaa
aaa
-acl
+aed
aaa
aaa
aaa
@@ -102487,7 +104429,7 @@ aaa
aaa
aaa
aaa
-aXf
+bcS
aaa
aaa
aaa
@@ -102498,7 +104440,7 @@ aaa
aaa
aaa
aaa
-acl
+aby
aaa
aaa
aaa
@@ -102733,29 +104675,29 @@ aaa
aaa
aaa
aaa
-aac
+aby
aaa
-aOI
-aOI
-aOI
-aOI
-aOI
-aOI
-aOI
-aOI
+aTC
+aTC
+aTC
+aTC
+aTC
+aTC
+aTC
+aTC
aaa
-aXf
+bcS
aaa
-aOI
-aOI
-aOI
-aOI
-aOI
-aOI
-aOI
-aOI
+aTC
+aTC
+aTC
+aTC
+aTC
+aTC
+aTC
+aTC
aaa
-aac
+aed
aaa
aaa
aaa
@@ -102990,29 +104932,29 @@ aaa
aaa
aaa
aaa
-aac
-aad
-ant
-aoi
-aoi
-aoi
-aoi
-aoi
-aoi
-aoi
-auS
-aXf
-axu
-ayu
-ayu
-ayu
-ayu
-ayu
-ayu
-ayu
-aEm
-aad
-aac
+aby
+abI
+aTD
+aUD
+aUD
+aUD
+aUD
+aUD
+aUD
+aUD
+bbP
+bcS
+bdU
+beU
+beU
+beU
+beU
+beU
+beU
+beU
+bkP
+abI
+aby
aaa
aaa
aaa
@@ -103247,29 +105189,29 @@ aaa
aaa
aaa
aaa
-aac
+aby
aaa
-aOJ
-aOJ
-aOJ
-aOJ
-aOJ
-aOJ
-aOJ
-aVk
+aTE
+aTE
+aTE
+aTE
+aTE
+aTE
+aTE
+baI
aaa
-aXf
+bcS
aaa
-aOJ
-aOJ
-aOJ
-aOJ
-aOJ
-aOJ
-aOJ
-aVk
+aTE
+aTE
+aTE
+aTE
+aTE
+aTE
+aTE
+baI
aaa
-aac
+aby
aaa
aaa
aaa
@@ -103504,7 +105446,7 @@ aaa
aaa
aaa
aaa
-aac
+aby
aaa
aaa
aaa
@@ -103515,7 +105457,7 @@ aaa
aaa
aaa
aaa
-aXf
+bcS
aaa
aaa
aaa
@@ -103526,7 +105468,7 @@ aaa
aaa
aaa
aaa
-aac
+aby
aaa
aaa
aaa
@@ -103761,29 +105703,29 @@ aaa
aaa
aaa
aaa
-aac
+aby
aaa
-aOI
-aOI
-aOI
-aOI
-aOI
-aOI
-aOI
-aOI
+aTC
+aTC
+aTC
+aTC
+aTC
+aTC
+aTC
+aTC
aaa
-aXf
+bcS
aaa
-aOI
-aOI
-aOI
-aOI
-aOI
-aOI
-aOI
-aOI
+aTC
+aTC
+aTC
+aTC
+aTC
+aTC
+aTC
+aTC
aaa
-aac
+aby
aaa
aaa
aaa
@@ -104018,29 +105960,29 @@ aaa
aaa
aaa
aaa
-aac
-aad
-ant
-aoi
-aoi
-aoi
-aoi
-aoi
-aoi
-aoi
-auS
-aXf
-axu
-ayu
-ayu
-ayu
-ayu
-ayu
-ayu
-ayu
-aEm
-aad
-aac
+aby
+abI
+aTD
+aUD
+aUD
+aUD
+aUD
+aUD
+aUD
+aUD
+bbP
+bcS
+bdU
+beU
+beU
+beU
+beU
+beU
+beU
+beU
+bkP
+abI
+aby
aaa
aaa
aaa
@@ -104275,29 +106217,29 @@ aaa
aaa
aaa
aaa
-aac
+aby
aaa
-aOJ
-aOJ
-aOJ
-aOJ
-aOJ
-aOJ
-aOJ
-aVk
+aTE
+aTE
+aTE
+aTE
+aTE
+aTE
+aTE
+baI
aaa
-aXf
+bcS
aaa
-aOJ
-aOJ
-aOJ
-aOJ
-aOJ
-aOJ
-aOJ
-aVk
+aTE
+aTE
+aTE
+aTE
+aTE
+aTE
+aTE
+baI
aaa
-acl
+aed
aaa
aaa
aaa
@@ -104327,7 +106269,7 @@ aaa
aaa
aaa
aaa
-bQz
+bUB
aaa
aaa
aaa
@@ -104532,7 +106474,7 @@ aaa
aaa
aaa
aaa
-acl
+aed
aaa
aaa
aaa
@@ -104543,7 +106485,7 @@ aaa
aaa
aaa
aaa
-aXf
+bcS
aaa
aaa
aaa
@@ -104554,7 +106496,7 @@ aaa
aaa
aaa
aaa
-aac
+aby
aaa
aaa
aaa
@@ -104789,29 +106731,29 @@ aaa
aaa
aaa
aaa
-aac
+aby
aaa
-aOI
-aOI
-aOI
-aOI
-aOI
-aOI
-aOI
-aOI
+aTC
+aTC
+aTC
+aTC
+aTC
+aTC
+aTC
+aTC
aaa
-aXf
+bcS
aaa
-aOI
-aOI
-aOI
-aOI
-aOI
-aOI
-aOI
-aOI
+aTC
+aTC
+aTC
+aTC
+aTC
+aTC
+aTC
+aTC
aaa
-aac
+aby
aaa
aaa
aaa
@@ -105046,29 +106988,29 @@ aaa
aaa
aaa
aaa
-aac
-aad
-ant
-aoi
-aoi
-aoi
-aoi
-aoi
-aoi
-aoi
-auS
-awi
-axu
-ayu
-ayu
-ayu
-ayu
-ayu
-ayu
-ayu
-aEm
-aad
-aac
+aby
+abI
+aTD
+aUD
+aUD
+aUD
+aUD
+aUD
+aUD
+aUD
+bbP
+bcT
+bdU
+beU
+beU
+beU
+beU
+beU
+beU
+beU
+bkP
+abI
+aby
aaa
aaa
aaa
@@ -105303,29 +107245,29 @@ aaa
aaa
aaa
aaa
-aac
+aby
aaa
-aOJ
-aOJ
-aOJ
-aOJ
-aOJ
-aOJ
-aOJ
-aVk
+aTE
+aTE
+aTE
+aTE
+aTE
+aTE
+aTE
+baI
aaa
-aXg
+bcU
aaa
-aOJ
-aOJ
-aOJ
-aOJ
-aOJ
-aOJ
-aOJ
-aVk
+aTE
+aTE
+aTE
+aTE
+aTE
+aTE
+aTE
+baI
aaa
-aac
+aby
aaa
aaa
aaa
@@ -105560,7 +107502,7 @@ aaa
aaa
aaa
aaa
-aad
+abI
aaa
aaa
aaa
@@ -105571,7 +107513,7 @@ aaa
aaa
aaa
aaa
-aXd
+bcQ
aaa
aaa
aaa
@@ -105582,7 +107524,7 @@ aaa
aaa
aaa
aaa
-aad
+abI
aaa
aaa
aaa
@@ -105817,29 +107759,29 @@ aaa
aaa
aaa
aaa
-acl
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
+aed
+aby
+aby
+aby
+aby
+aby
+aby
+aby
+aby
+aby
aaa
-aXd
+bcQ
aaa
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
+aby
+aby
+aby
+aby
+aby
+aby
+aby
+aby
+aby
+aby
aaa
aaa
aaa
@@ -106083,11 +108025,11 @@ aaa
aaa
aaa
aaa
-aad
-aad
-aXh
-aad
-aad
+abI
+abI
+bcV
+abI
+abI
aaa
aaa
aaa
@@ -106340,11 +108282,11 @@ aaa
aaa
aaa
aaa
-aac
+aby
aaa
-aad
+abI
aaa
-aac
+aby
aaa
aaa
aaa
@@ -106597,11 +108539,11 @@ aaa
aaa
aaa
aaa
-aac
-aac
-aac
-aac
-aac
+aby
+aby
+aby
+aby
+aby
aaa
aaa
aaa
@@ -108609,7 +110551,7 @@ aaa
aaa
aaa
aaa
-ajL
+ajA
aaa
aaa
aaa
diff --git a/_maps/map_files/PubbyStation/PubbyStation.dmm.rej b/_maps/map_files/PubbyStation/PubbyStation.dmm.rej
deleted file mode 100644
index e4945f57e3..0000000000
--- a/_maps/map_files/PubbyStation/PubbyStation.dmm.rej
+++ /dev/null
@@ -1,213 +0,0 @@
-diff a/_maps/map_files/PubbyStation/PubbyStation.dmm b/_maps/map_files/PubbyStation/PubbyStation.dmm (rejected hunks)
-@@ -17662,7 +17662,7 @@
- /obj/machinery/conveyor_switch/oneway{
- convdir = 1;
- id = "garbagestacked";
-- name = "disposal coveyor"
-+ name = "disposal conveyor"
- },
- /obj/effect/turf_decal/stripes/line,
- /turf/open/floor/plating{
-@@ -19866,7 +19866,7 @@
- /obj/machinery/conveyor_switch/oneway{
- convdir = -1;
- id = "garbage";
-- name = "disposal coveyor"
-+ name = "disposal conveyor"
- },
- /obj/effect/turf_decal/stripes/line{
- dir = 1
-@@ -29076,7 +29076,7 @@
- /area/science/explab)
- "blV" = (
- /obj/structure/sign/atmosplaque{
-- desc = "A guide to the drone shell dispenser, detailing the constructive and destructive applications of modern repair drones, as well as the development of the uncorruptable cyborg servants of tomorrow, available today.";
-+ desc = "A guide to the drone shell dispenser, detailing the constructive and destructive applications of modern repair drones, as well as the development of the incorruptible cyborg servants of tomorrow, available today.";
- icon_state = "kiddieplaque";
- name = "\improper 'Perfect Drone' sign";
- pixel_y = 32
-@@ -31843,7 +31843,7 @@
- /area/science/xenobiology)
- "brT" = (
- /obj/machinery/computer/security/telescreen{
-- name = "Test Chamber Moniter";
-+ name = "Test Chamber Monitor";
- network = list("Xeno");
- pixel_y = 2
- },
-@@ -36758,7 +36758,7 @@
- /obj/item/device/radio/intercom{
- dir = 8;
- freerange = 1;
-- name = "Station Intercom (Telecoms)";
-+ name = "Station Intercom (Telecomms)";
- pixel_x = 28;
- pixel_y = 24
- },
-@@ -42005,7 +42005,7 @@
- /obj/item/device/radio/intercom{
- dir = 8;
- freerange = 1;
-- name = "Station Intercom (Telecoms)";
-+ name = "Station Intercom (Telecomms)";
- pixel_y = 26
- },
- /turf/open/floor/plasteel,
-@@ -49228,7 +49228,7 @@
- /area/chapel/main/monastery)
- "ccI" = (
- /obj/machinery/door/airlock/centcom{
-- name = "Chape Access";
-+ name = "Chapel Access";
- opacity = 1
- },
- /turf/open/floor/plasteel/black,
-@@ -50408,7 +50408,7 @@
- /area/engine/engineering)
- "cfs" = (
- /obj/machinery/camera{
-- c_tag = "Engineering Telecoms Access";
-+ c_tag = "Engineering Telecomms Access";
- dir = 8;
- network = list("Labor")
- },
-@@ -50416,11 +50416,11 @@
- dir = 4
- },
- /obj/machinery/computer/security/telescreen{
-- desc = "Used for watching telecoms.";
-+ desc = "Used for watching telecomms.";
- dir = 8;
- layer = 4;
-- name = "Telecoms Telescreen";
-- network = list("Telecoms");
-+ name = "Telecomms Telescreen";
-+ network = list("Telecomms");
- pixel_x = 30
- },
- /turf/open/floor/plasteel,
-@@ -52887,9 +52887,9 @@
- /area/space)
- "clu" = (
- /obj/machinery/camera{
-- c_tag = "Telecoms External Fore";
-+ c_tag = "Telecomms External Fore";
- dir = 1;
-- network = list("SS13, Telecoms");
-+ network = list("SS13, Telecomms");
- start_active = 1
- },
- /turf/open/space,
-@@ -53072,9 +53072,9 @@
- /area/tcommsat/computer)
- "clX" = (
- /obj/machinery/camera/motion{
-- c_tag = "Telecoms External Access";
-+ c_tag = "Telecomms External Access";
- dir = 1;
-- network = list("SS13","Telecoms")
-+ network = list("SS13","Telecomms")
- },
- /turf/open/floor/plasteel,
- /area/tcommsat/computer)
-@@ -53136,9 +53136,9 @@
- "cmg" = (
- /obj/machinery/requests_console{
- announcementConsole = 1;
-- department = "Telecoms Admin";
-+ department = "Telecomms Admin";
- departmentType = 5;
-- name = "Telecoms RC";
-+ name = "Telecomms RC";
- pixel_y = 30
- },
- /obj/machinery/atmospherics/components/unary/vent_scrubber/on{
-@@ -53169,9 +53169,9 @@
- pixel_y = 26
- },
- /obj/machinery/camera/motion{
-- c_tag = "Telecoms Monitoring";
-+ c_tag = "Telecomms Monitoring";
- dir = 2;
-- network = list("SS13","Telecoms")
-+ network = list("SS13","Telecomms")
- },
- /turf/open/floor/plasteel/yellow/side{
- dir = 1
-@@ -53197,7 +53197,7 @@
- "cmk" = (
- /obj/machinery/power/apc{
- dir = 1;
-- name = "Telecoms Monitoring APC";
-+ name = "Telecomms Monitoring APC";
- pixel_y = 25
- },
- /obj/structure/cable{
-@@ -53282,9 +53282,9 @@
- "cmt" = (
- /obj/structure/lattice,
- /obj/machinery/camera/motion{
-- c_tag = "Telecoms External Port";
-+ c_tag = "Telecomms External Port";
- dir = 8;
-- network = list("Telecoms")
-+ network = list("Telecomms")
- },
- /turf/open/space,
- /area/space)
-@@ -53342,9 +53342,9 @@
- "cmz" = (
- /obj/structure/lattice,
- /obj/machinery/camera/motion{
-- c_tag = "Telecoms External Starboard";
-+ c_tag = "Telecomms External Starboard";
- dir = 4;
-- network = list("Telecoms")
-+ network = list("Telecomms")
- },
- /turf/open/space,
- /area/space)
-@@ -53430,7 +53430,7 @@
- cell_type = 5000;
- dir = 1;
- layer = 4;
-- name = "Telecoms Server APC";
-+ name = "Telecomms Server APC";
- pixel_y = 24
- },
- /obj/structure/cable,
-@@ -53719,9 +53719,9 @@
- /area/tcommsat/server)
- "cnu" = (
- /obj/machinery/camera/motion{
-- c_tag = "Telecoms Server Room";
-+ c_tag = "Telecomms Server Room";
- dir = 1;
-- network = list("SS13","Telecoms")
-+ network = list("SS13","Telecomms")
- },
- /turf/open/floor/plasteel/black{
- initial_gas_mix = "n2=100;TEMP=80"
-@@ -53758,18 +53758,18 @@
- "cny" = (
- /obj/structure/lattice,
- /obj/machinery/camera/motion{
-- c_tag = "Telecoms External Port Aft";
-+ c_tag = "Telecomms External Port Aft";
- dir = 2;
-- network = list("Telecoms")
-+ network = list("Telecomms")
- },
- /turf/open/space,
- /area/space)
- "cnz" = (
- /obj/structure/lattice,
- /obj/machinery/camera/motion{
-- c_tag = "Telecoms External Starboard Aft";
-+ c_tag = "Telecomms External Starboard Aft";
- dir = 2;
-- network = list("Telecoms")
-+ network = list("Telecomms")
- },
- /turf/open/space,
- /area/space)
\ No newline at end of file
diff --git a/_maps/map_files/generic/Centcomm.dmm b/_maps/map_files/generic/Centcomm.dmm
index fe6fcad6e2..d996a0d7e8 100644
--- a/_maps/map_files/generic/Centcomm.dmm
+++ b/_maps/map_files/generic/Centcomm.dmm
@@ -2454,7 +2454,6 @@
/area/ctf)
"hf" = (
/obj/machinery/power/emitter/energycannon{
- icon_state = "emitter";
dir = 1
},
/turf/open/floor/plating,
@@ -3513,11 +3512,7 @@
},
/area/centcom/supply)
"jZ" = (
-/obj/structure/closet/secure_closet{
- anchored = 1;
- name = "Contraband Locker";
- req_access_txt = "19"
- },
+/obj/structure/closet/secure_closet/contraband/heads,
/turf/open/floor/plasteel/vault{
dir = 8
},
@@ -3586,7 +3581,7 @@
"ki" = (
/obj/structure/table/wood,
/obj/item/weapon/phone{
- desc = "Supposedly a direct line to NanoTrasen Central Command. It's not even plugged in.";
+ desc = "Supposedly a direct line to Nanotrasen Central Command. It's not even plugged in.";
pixel_x = -3;
pixel_y = 3
},
@@ -5142,7 +5137,7 @@
"nX" = (
/obj/structure/table/wood,
/obj/item/weapon/phone{
- desc = "Supposedly a direct line to NanoTrasen Central Command. It's not even plugged in.";
+ desc = "Supposedly a direct line to Nanotrasen Central Command. It's not even plugged in.";
pixel_x = -3;
pixel_y = 3
},
@@ -8399,7 +8394,7 @@
"vR" = (
/obj/structure/table/wood,
/obj/item/weapon/phone{
- desc = "Supposedly a direct line to NanoTrasen Central Command. It's not even plugged in.";
+ desc = "Supposedly a direct line to Nanotrasen Central Command. It's not even plugged in.";
pixel_x = -3;
pixel_y = 3
},
@@ -10687,7 +10682,6 @@
/obj/machinery/door/airlock/silver{
name = "Shower"
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/white,
/area/tdome/tdomeobserve)
"BK" = (
@@ -12188,7 +12182,7 @@
"Fu" = (
/obj/structure/table/wood,
/obj/item/weapon/phone{
- desc = "Supposedly a direct line to NanoTrasen Central Command. It's not even plugged in.";
+ desc = "Supposedly a direct line to Nanotrasen Central Command. It's not even plugged in.";
pixel_x = -3;
pixel_y = 3
},
@@ -14384,6 +14378,12 @@ aa
aa
aa
aa
+aa
+aa
+aa
+aa
+aa
+aa
Gf
Gv
GF
@@ -14468,12 +14468,6 @@ aa
aa
aa
aa
-aa
-aa
-aa
-aa
-aa
-aa
Gf
Gv
GF
@@ -14640,6 +14634,12 @@ aa
aa
aa
aa
+aa
+aa
+aa
+aa
+aa
+aa
Ga
Gg
GA
@@ -14724,12 +14724,6 @@ aa
aa
aa
aa
-aa
-aa
-aa
-aa
-aa
-aa
Ga
Gg
Ht
@@ -14897,6 +14891,12 @@ aa
aa
aa
aa
+aa
+aa
+aa
+aa
+aa
+aa
Gb
Gm
Gx
@@ -14981,12 +14981,6 @@ aa
aa
aa
aa
-aa
-aa
-aa
-aa
-aa
-aa
Gb
Hn
Gx
@@ -15154,6 +15148,12 @@ aa
aa
aa
aa
+aa
+aa
+aa
+aa
+aa
+aa
Gc
Gn
Gx
@@ -15238,12 +15238,6 @@ aa
aa
aa
aa
-aa
-aa
-aa
-aa
-aa
-aa
Gc
Ho
Gx
@@ -15411,6 +15405,12 @@ aa
aa
aa
aa
+aa
+aa
+aa
+aa
+aa
+aa
Gd
Go
Gx
@@ -15495,12 +15495,6 @@ aa
aa
aa
aa
-aa
-aa
-aa
-aa
-aa
-aa
Gd
Hp
Gx
@@ -15668,6 +15662,12 @@ aa
aa
aa
aa
+aa
+aa
+aa
+aa
+aa
+aa
Ge
Gk
Gy
@@ -15752,12 +15752,6 @@ aa
aa
aa
aa
-aa
-aa
-aa
-aa
-aa
-aa
Ge
Gk
Gy
@@ -15926,6 +15920,12 @@ aa
aa
aa
aa
+aa
+aa
+aa
+aa
+aa
+aa
Gl
Gz
GL
@@ -16010,12 +16010,6 @@ aa
aa
aa
aa
-aa
-aa
-aa
-aa
-aa
-aa
Gl
Gz
GL
@@ -26983,6 +26977,11 @@ hq
hq
hq
hq
+hq
+hq
+hq
+hq
+hq
lF
hq
hq
@@ -27011,11 +27010,6 @@ hq
hq
hq
hq
-hq
-hq
-hq
-hq
-hq
Kl
hm
aa
diff --git a/_maps/shuttles/emergency_pubby.dmm b/_maps/shuttles/emergency_pubby.dmm
index f7dd78f851..d92b77a294 100644
--- a/_maps/shuttles/emergency_pubby.dmm
+++ b/_maps/shuttles/emergency_pubby.dmm
@@ -1,6 +1,6 @@
//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
"aa" = (
-/turf/open/space,
+/turf/open/space/basic,
/area/space)
"ab" = (
/turf/closed/wall/mineral/titanium,
@@ -159,7 +159,7 @@
name = "Emergency Shuttle Airlock";
req_access_txt = "2"
},
-/turf/open/floor/mineral/plastitanium/brig,
+/turf/open/floor/plating,
/area/shuttle/escape)
"aE" = (
/obj/machinery/door/airlock/glass{
@@ -172,9 +172,6 @@
/obj/item/weapon/twohanded/required/kirbyplants{
icon_state = "plant-22"
},
-/obj/machinery/light{
- dir = 1
- },
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/escape)
"aG" = (
@@ -286,7 +283,7 @@
port_angle = 90;
width = 18
},
-/turf/open/floor/mineral/titanium/blue,
+/turf/open/floor/plating,
/area/shuttle/escape)
"aY" = (
/obj/machinery/light{
@@ -311,10 +308,8 @@
/turf/open/floor/mineral/titanium,
/area/shuttle/escape)
"ba" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
/obj/structure/shuttle/engine/heater,
+/obj/structure/window/shuttle,
/turf/open/floor/plating/airless,
/area/shuttle/escape)
"bb" = (
@@ -326,6 +321,24 @@
/obj/structure/shuttle/engine/propulsion,
/turf/open/floor/plating/airless,
/area/shuttle/escape)
+"bd" = (
+/turf/closed/wall/mineral/titanium/nodiagonal,
+/area/shuttle/escape)
+"be" = (
+/turf/closed/wall/mineral/titanium/nodiagonal,
+/area/shuttle/escape)
+"bf" = (
+/turf/closed/wall/mineral/titanium/nodiagonal,
+/area/shuttle/escape)
+"bg" = (
+/turf/closed/wall/mineral/titanium/nodiagonal,
+/area/shuttle/escape)
+"bh" = (
+/turf/closed/wall/mineral/titanium/nodiagonal,
+/area/shuttle/escape)
+"bi" = (
+/turf/closed/wall/mineral/titanium/nodiagonal,
+/area/shuttle/escape)
(1,1,1) = {"
aa
@@ -414,13 +427,13 @@ ab
ab
ab
ab
-ab
-ao
+bf
+aI
aL
aL
aL
-ao
-ab
+aT
+bh
ab
ab
ab
@@ -430,7 +443,7 @@ ab
(6,1,1) = {"
ab
ab
-ab
+bd
am
au
aA
@@ -439,7 +452,7 @@ ao
ao
ao
ao
-aT
+ao
ab
aV
aY
@@ -510,7 +523,7 @@ bc
(10,1,1) = {"
ab
ab
-ab
+be
aq
av
aA
@@ -519,7 +532,7 @@ ao
ao
ao
ao
-aT
+ao
ab
aW
aZ
@@ -534,13 +547,13 @@ ab
ab
ab
ab
-ab
-ao
+bg
+aI
aK
aK
aK
-ao
-ab
+aT
+bi
ab
ab
ab
diff --git a/_maps/shuttles/emergency_supermatter.dmm b/_maps/shuttles/emergency_supermatter.dmm
index e0dad50c6c..2075969a4c 100644
--- a/_maps/shuttles/emergency_supermatter.dmm
+++ b/_maps/shuttles/emergency_supermatter.dmm
@@ -56,18 +56,14 @@
/turf/open/floor/noslip,
/area/shuttle/escape)
"am" = (
-/obj/structure/reflector/single{
- anchored = 1
- },
+/obj/structure/reflector/single/anchored,
/obj/effect/turf_decal/stripes/line{
dir = 8
},
/turf/open/floor/plating,
/area/shuttle/escape)
"an" = (
-/obj/structure/reflector/box{
- anchored = 1
- },
+/obj/structure/reflector/box/anchored,
/turf/open/floor/plating,
/area/shuttle/escape)
"ao" = (
@@ -221,15 +217,11 @@
/turf/open/floor/plating/airless,
/area/shuttle/escape)
"aN" = (
-/obj/structure/reflector/single{
- anchored = 1
- },
+/obj/structure/reflector/single/anchored,
/turf/open/floor/plating/airless,
/area/shuttle/escape)
"aO" = (
-/obj/structure/reflector/double{
- anchored = 1
- },
+/obj/structure/reflector/double/anchored,
/turf/open/floor/plating/airless,
/area/shuttle/escape)
"aP" = (
diff --git a/code/__DEFINES/DNA.dm.rej b/code/__DEFINES/DNA.dm.rej
deleted file mode 100644
index 343dc1f7a0..0000000000
--- a/code/__DEFINES/DNA.dm.rej
+++ /dev/null
@@ -1,9 +0,0 @@
-diff a/code/__DEFINES/DNA.dm b/code/__DEFINES/DNA.dm (rejected hunks)
-@@ -114,4 +114,6 @@
- #define EASYLIMBATTACHMENT 23
- #define TOXINLOVER 24
- #define DIGITIGRADE 25 //Uses weird leg sprites. Optional for Lizards, required for ashwalkers. Don't give it to other races unless you make sprites for this (see human_parts_greyscale.dmi)
--#define NO_UNDERWEAR 26
-+#define NO_UNDERWEAR 26
-+#define NOLIVER 27
-+#define NOSTOMACH 28
diff --git a/code/__DEFINES/combat.dm.rej b/code/__DEFINES/combat.dm.rej
deleted file mode 100644
index b765917e85..0000000000
--- a/code/__DEFINES/combat.dm.rej
+++ /dev/null
@@ -1,9 +0,0 @@
-diff a/code/__DEFINES/combat.dm b/code/__DEFINES/combat.dm (rejected hunks)
-@@ -9,6 +9,7 @@
- #define OXY "oxy"
- #define CLONE "clone"
- #define STAMINA "stamina"
-+#define BRAIN "brain"
-
- //bitflag damage defines used for suicide_act
- #define BRUTELOSS 1
diff --git a/code/__DEFINES/sound.dm.rej b/code/__DEFINES/sound.dm.rej
deleted file mode 100644
index c54b9b4b64..0000000000
--- a/code/__DEFINES/sound.dm.rej
+++ /dev/null
@@ -1,51 +0,0 @@
-diff a/code/__DEFINES/sound.dm b/code/__DEFINES/sound.dm (rejected hunks)
-@@ -5,42 +5,15 @@
- #define CHANNEL_JUKEBOX 1021
- #define CHANNEL_JUSTICAR_ARK 1020
- #define CHANNEL_HEARTBEAT 1019 //sound channel for heartbeats
-+#define CHANNEL_AMBIENCE 1018
-+#define CHANNEL_BUZZ 1017
-+#define CHANNEL_BICYCLE 1016
-
- //THIS SHOULD ALWAYS BE THE LOWEST ONE!
- //KEEP IT UPDATED
-
--#define CHANNEL_HIGHEST_AVAILABLE 1018
-+#define CHANNEL_HIGHEST_AVAILABLE 1015
-
-
- #define SOUND_MINIMUM_PRESSURE 10
--#define FALLOFF_SOUNDS 0.5
--
--//BYOND Sound Environment defines
--
--#define SOUND_ENV_DEFAULT -1
--#define SOUND_ENV_GENERIC 0
--#define SOUND_ENV_PADDED_CELL 1
--#define SOUND_ENV_ROOM 2
--#define SOUND_ENV_BATHROOM 3
--#define SOUND_ENV_LIVINGROOM 4
--#define SOUND_ENV_STONEROOM 5
--#define SOUND_ENV_AUDITORIUM 6
--#define SOUND_ENV_CONCERT_HALL 7
--#define SOUND_ENV_CAVE 8
--#define SOUND_ENV_ARENA 9
--#define SOUND_ENV_HANGAR 10
--#define SOUND_ENV_CARPETTED_HALLWAY 11
--#define SOUND_ENV_HALLWAY 12
--#define SOUND_ENV_STONE_CORRIDOOR 13
--#define SOUND_ENV_ALLEY 14
--#define SOUND_ENV_FOREST 15
--#define SOUND_ENV_CITY 16
--#define SOUND_ENV_MOUNTAINS 17
--#define SOUND_ENV_QUARRY 18
--#define SOUND_ENV_PLAIN 19
--#define SOUND_ENV_PARKING_LOT 20
--#define SOUND_ENV_SEWER_PIPE 21
--#define SOUND_ENV_UNDERWATER 22
--#define SOUND_ENV_DRUGGED 23
--#define SOUND_ENV_DIZZY 24
--#define SOUND_ENV_PSYCHOTIC 25
-\ No newline at end of file
-+#define FALLOFF_SOUNDS 0.5
-\ No newline at end of file
diff --git a/code/__HELPERS/_lists.dm.rej b/code/__HELPERS/_lists.dm.rej
deleted file mode 100644
index e69de29bb2..0000000000
diff --git a/code/datums/action.dm b/code/datums/action.dm
index 715aea1493..c8385c9ed3 100644
--- a/code/datums/action.dm
+++ b/code/datums/action.dm
@@ -168,6 +168,10 @@
/datum/action/item_action/toggle_firemode
name = "Toggle Firemode"
+
+/datum/action/item_action/rcl
+ name = "Change Cable Color"
+ button_icon_state = "rcl_rainbow"
/datum/action/item_action/startchainsaw
name = "Pull The Starting Cord"
diff --git a/code/datums/components/component.dm.rej b/code/datums/components/component.dm.rej
deleted file mode 100644
index 2116ae9d81..0000000000
--- a/code/datums/components/component.dm.rej
+++ /dev/null
@@ -1,35 +0,0 @@
-diff a/code/datums/components/component.dm b/code/datums/components/component.dm (rejected hunks)
-@@ -47,12 +47,14 @@
-
- procs[sig_type] = CALLBACK(src, proc_on_self)
-
--/datum/component/proc/ReceiveSignal(sigtype, list/sig_args)
-+/datum/component/proc/ReceiveSignal(sigtype, ...)
- var/list/sps = signal_procs
- var/datum/callback/CB = LAZYACCESS(sps, sigtype)
- if(!CB)
- return FALSE
-- return CB.InvokeAsync(arglist(sig_args))
-+ var/list/arguments = args.Copy()
-+ arguments.Cut(1, 2)
-+ return CB.InvokeAsync(arglist(arguments))
-
- /datum/component/proc/InheritComponent(datum/component/C, i_am_original)
- return
-@@ -62,14 +64,14 @@
-
- /datum/var/list/datum_components //list of /datum/component
-
--/datum/proc/SendSignal(sigtype, list/sig_args)
-+/datum/proc/SendSignal(sigtype, ...)
- var/list/comps = datum_components
- . = FALSE
- for(var/I in comps)
- var/datum/component/C = I
- if(!C.enabled)
- continue
-- if(C.ReceiveSignal(sigtype, sig_args))
-+ if(C.ReceiveSignal(arglist(args)))
- ComponentActivated(C)
- . = TRUE
-
diff --git a/code/datums/diseases/advance/symptoms/sensory.dm.rej b/code/datums/diseases/advance/symptoms/sensory.dm.rej
deleted file mode 100644
index fbf27328fa..0000000000
--- a/code/datums/diseases/advance/symptoms/sensory.dm.rej
+++ /dev/null
@@ -1,134 +0,0 @@
-diff a/code/datums/diseases/advance/symptoms/sensory.dm b/code/datums/diseases/advance/symptoms/sensory.dm (rejected hunks)
-@@ -23,106 +23,43 @@ Bonus
- transmittable = -3
- level = 5
- severity = 0
-+ symptom_delay_min = 5
-+ symptom_delay_max = 10
-+ var/purge_alcohol = FALSE
-+ var/brain_heal = FALSE
-
--/datum/symptom/sensory_restoration/Activate(var/datum/disease/advance/A)
-+/datum/symptom/sensory_restoration/Start(datum/disease/advance/A)
- ..()
-+ if(A.properties["resistance"] >= 6) //heal brain damage
-+ brain_heal = TRUE
-+ if(A.properties["transmittable"] >= 8) //purge alcohol
-+ purge_alcohol = TRUE
-+
-+/datum/symptom/sensory_restoration/Activate(var/datum/disease/advance/A)
-+ if(!..())
-+ return
- var/mob/living/M = A.affected_mob
- if(A.stage >= 2)
- M.restoreEars()
-
- if(A.stage >= 3)
-- M.dizziness = 0
-- M.drowsyness = 0
-- M.slurring = 0
-- M.confused = 0
-- M.reagents.remove_all_type(/datum/reagent/consumable/ethanol, 3)
-- if(ishuman(M))
-- var/mob/living/carbon/human/H = M
-- H.drunkenness = max(H.drunkenness - 10, 0)
-+ M.dizziness = max(0, M.dizziness - 2)
-+ M.drowsyness = max(0, M.drowsyness - 2)
-+ M.slurring = max(0, M.slurring - 2)
-+ M.confused = max(0, M.confused - 2)
-+ if(purge_alcohol)
-+ M.reagents.remove_all_type(/datum/reagent/consumable/ethanol, 3)
-+ if(ishuman(M))
-+ var/mob/living/carbon/human/H = M
-+ H.drunkenness = max(H.drunkenness - 5, 0)
-
- if(A.stage >= 4)
-- M.drowsyness = max(M.drowsyness-5, 0)
-+ M.drowsyness = max(0, M.drowsyness - 2)
- if(M.reagents.has_reagent("mindbreaker"))
- M.reagents.remove_reagent("mindbreaker", 5)
- if(M.reagents.has_reagent("histamine"))
- M.reagents.remove_reagent("histamine", 5)
- M.hallucination = max(0, M.hallucination - 10)
-
-- if(A.stage >= 5)
-- M.adjustBrainLoss(-3)
--
--/*
--//////////////////////////////////////
--Sensory-Destruction
-- noticable.
-- Lowers resistance
-- Decreases stage speed tremendously.
-- Decreases transmittablity tremendously.
-- the drugs hit them so hard they have to focus on not dying
--
--Bonus
-- The body generates Sensory destructive chemicals.
-- You cannot taste anything anymore.
-- ethanol for extremely drunk victim
-- mindbreaker to break the mind
-- impedrezene to ruin the brain
--
--//////////////////////////////////////
--*/
--/datum/symptom/sensory_destruction
-- name = "Sensory destruction"
-- stealth = -1
-- resistance = -2
-- stage_speed = -3
-- transmittable = -4
-- level = 6
-- severity = 5
-- var/sleepy = 0
-- var/sleepy_ticks = 0
--
--/datum/symptom/sensory_destruction/Activate(var/datum/disease/advance/A)
-- ..()
-- var/mob/living/M = A.affected_mob
-- if(prob(SYMPTOM_ACTIVATION_PROB))
-- switch(A.stage)
-- if(1)
-- to_chat(M, "You can't feel anything.")
-- if(2)
-- to_chat(M, "You feel absolutely hammered.")
-- if(prob(10))
-- sleepy_ticks += rand(10,14)
-- if(3)
-- M.reagents.add_reagent("ethanol",rand(5,7))
-- to_chat(M, "You try to focus on not dying.")
-- if(prob(15))
-- sleepy_ticks += rand(10,14)
-- if(4)
-- M.reagents.add_reagent("ethanol",rand(6,10))
-- to_chat(M, "u can count 2 potato!")
-- if(prob(20))
-- sleepy_ticks += rand(10,14)
-- if(5)
-- M.reagents.add_reagent("ethanol",rand(7,13))
-- if(prob(25))
-- sleepy_ticks += rand(10,14)
--
-- if(sleepy_ticks)
-- if(A.stage>=4)
-- M.hallucination = min(M.hallucination + 10, 50)
-- if(A.stage>=5)
-- if(prob(80))
-- M.adjustBrainLoss(1)
-- if(prob(50))
-- M.drowsyness = max(M.drowsyness, 3)
-- sleepy++
-- sleepy_ticks--
-- else
-- sleepy = 0
--
-- switch(sleepy) //Works like morphine
-- if(11)
-- to_chat(M, "You start to feel tired...")
-- if(12 to 24)
-- M.drowsyness += 1
-- if(24 to INFINITY)
-- M.Sleeping(2, 0)
-+ if(brain_heal && A.stage >= 5)
-+ M.adjustBrainLoss(-3)
-\ No newline at end of file
diff --git a/code/datums/diseases/advance/symptoms/vision.dm.rej b/code/datums/diseases/advance/symptoms/vision.dm.rej
deleted file mode 100644
index e9cb0cd6d8..0000000000
--- a/code/datums/diseases/advance/symptoms/vision.dm.rej
+++ /dev/null
@@ -1,19 +0,0 @@
-diff a/code/datums/diseases/advance/symptoms/vision.dm b/code/datums/diseases/advance/symptoms/vision.dm (rejected hunks)
-@@ -40,7 +40,7 @@ Bonus
- if(!..())
- return
- var/mob/living/carbon/M = A.affected_mob
-- var/obj/item/organ/eyes = M.getorganslot("eye_sight")
-+ var/obj/item/organ/eyes/eyes = M.getorganslot("eye_sight")
- if(istype(eyes))
- switch(A.stage)
- if(1, 2)
-@@ -55,7 +55,7 @@ Bonus
- M.adjust_eye_damage(5)
- if(eyes.eye_damage >= 10)
- M.become_nearsighted()
-- if(prob(M.eye_damage - 10 + 1))
-+ if(prob(eyes.eye_damage - 10 + 1))
- if(!remove_eyes)
- if(M.become_blind())
- to_chat(M, "You go blind!")
diff --git a/code/datums/diseases/advance/symptoms/vomit.dm.rej b/code/datums/diseases/advance/symptoms/vomit.dm.rej
deleted file mode 100644
index b6fd999e2f..0000000000
--- a/code/datums/diseases/advance/symptoms/vomit.dm.rej
+++ /dev/null
@@ -1,30 +0,0 @@
-diff a/code/datums/diseases/advance/symptoms/vomit.dm b/code/datums/diseases/advance/symptoms/vomit.dm (rejected hunks)
-@@ -32,7 +32,7 @@ Bonus
- symptom_delay_min = 25
- symptom_delay_max = 80
- var/vomit_blood = FALSE
-- var/proj_vomit = FALSE
-+ var/proj_vomit = 0
-
- /datum/symptom/vomit/Start(datum/disease/advance/A)
- ..()
-@@ -41,7 +41,7 @@ Bonus
- if(A.properties["resistance"] >= 7) //blood vomit
- vomit_blood = TRUE
- if(A.properties["transmittable"] >= 7) //projectile vomit
-- proj_vomit = TRUE
-+ proj_vomit = 5
-
- /datum/symptom/vomit/Activate(datum/disease/advance/A)
- if(!..())
-@@ -52,7 +52,7 @@ Bonus
- if(prob(base_message_chance) && !suppress_warning)
- to_chat(M, "[pick("You feel nauseous.", "You feel like you're going to throw up!")]")
- else
-- Vomit(M)
-+ vomit(M)
-
--/datum/symptom/vomit/proc/Vomit(mob/living/carbon/M)
-- M.vomit(20, vomit_blood, distance = 5 * proj_vomit)
-+/datum/symptom/vomit/proc/vomit(mob/living/carbon/M)
-+ M.vomit(20, vomit_blood, distance = proj_vomit)
diff --git a/code/game/area/areas/derelict.dm b/code/game/area/areas/derelict.dm
index 00804c5012..5882fa0a8c 100644
--- a/code/game/area/areas/derelict.dm
+++ b/code/game/area/areas/derelict.dm
@@ -13,6 +13,10 @@
name = "Derelict Secondary Hallway"
icon_state = "hallS"
+/area/derelict/hallway/primary/port
+ name = "Derelict Port Hallway"
+ icon_state = "hallFP"
+
/area/derelict/arrival
name = "Derelict Arrival Centre"
icon_state = "yellow"
@@ -121,4 +125,4 @@
name = "Abandoned Teleporter"
icon_state = "teleporter"
music = "signal"
- ambientsounds = list('sound/ambience/ambimalf.ogg')
+ ambientsounds = list('sound/ambience/ambimalf.ogg')
\ No newline at end of file
diff --git a/code/game/atoms.dm.rej b/code/game/atoms.dm.rej
deleted file mode 100644
index eee34deceb..0000000000
--- a/code/game/atoms.dm.rej
+++ /dev/null
@@ -1,10 +0,0 @@
-diff a/code/game/atoms.dm b/code/game/atoms.dm (rejected hunks)
-@@ -126,7 +126,7 @@
- return TRUE
-
- //finally check for centcom itself
-- return istype(T.loc,/area/centcom)
-+ return istype(T.loc, /area/centcom)
-
- /atom/proc/onSyndieBase()
- var/turf/T = get_turf(src)
diff --git a/code/game/gamemodes/game_mode.dm.rej b/code/game/gamemodes/game_mode.dm.rej
deleted file mode 100644
index 7c4f33972c..0000000000
--- a/code/game/gamemodes/game_mode.dm.rej
+++ /dev/null
@@ -1,10 +0,0 @@
-diff a/code/game/gamemodes/game_mode.dm b/code/game/gamemodes/game_mode.dm (rejected hunks)
-@@ -266,7 +266,7 @@
- if(escaped_total > 0)
- SSblackbox.set_val("escaped_total",escaped_total)
- send2irc("Server", "Round just ended.")
-- if(cult.len && !istype(SSticker.mode,/datum/game_mode/cult))
-+ if(cult.len && !istype(SSticker.mode, /datum/game_mode/cult))
- datum_cult_completion()
-
- return 0
diff --git a/code/game/machinery/iv_drip.dm.rej b/code/game/machinery/iv_drip.dm.rej
deleted file mode 100644
index 21479ee4d2..0000000000
--- a/code/game/machinery/iv_drip.dm.rej
+++ /dev/null
@@ -1,35 +0,0 @@
-diff a/code/game/machinery/iv_drip.dm b/code/game/machinery/iv_drip.dm (rejected hunks)
-@@ -1,21 +1,29 @@
-+#define IV_TAKING 0
-+#define IV_INJECTING 1
-+
- /obj/machinery/iv_drip
- name = "\improper IV drip"
- icon = 'icons/obj/iv_drip.dmi'
- icon_state = "iv_drip"
-- anchored = 0
-+ anchored = FALSE
- mouse_drag_pointer = MOUSE_ACTIVE_POINTER
- var/mob/living/carbon/attached = null
-- var/mode = 1 // 1 is injecting, 0 is taking blood.
-+ var/mode = IV_INJECTING
- var/obj/item/weapon/reagent_containers/beaker = null
- var/list/drip_containers = list(/obj/item/weapon/reagent_containers/blood,
-- /obj/item/weapon/reagent_containers/food,
-- /obj/item/weapon/reagent_containers/glass)
-+ /obj/item/weapon/reagent_containers/food,
-+ /obj/item/weapon/reagent_containers/glass)
-
- /obj/machinery/iv_drip/Initialize()
- ..()
- update_icon()
- drip_containers = typecacheof(drip_containers)
-
-+/obj/machinery/iv_drip/Destroy()
-+ attached = null
-+ QDEL_NULL(beaker)
-+ return ..()
-+
- /obj/machinery/iv_drip/update_icon()
- if(attached)
- if(mode)
diff --git a/code/game/objects/effects/spawners/gibspawner.dm.rej b/code/game/objects/effects/spawners/gibspawner.dm.rej
deleted file mode 100644
index ffd534c1f0..0000000000
--- a/code/game/objects/effects/spawners/gibspawner.dm.rej
+++ /dev/null
@@ -1,10 +0,0 @@
-diff a/code/game/objects/effects/spawners/gibspawner.dm b/code/game/objects/effects/spawners/gibspawner.dm (rejected hunks)
-@@ -52,7 +52,7 @@
- . = ..()
-
- /obj/effect/gibspawner/human
-- gibtypes = list(/obj/effect/decal/cleanable/blood/gibs/up,/obj/effect/decal/cleanable/blood/gibs/down,/obj/effect/decal/cleanable/blood/gibs,/obj/effect/decal/cleanable/blood/gibs,/obj/effect/decal/cleanable/blood/gibs/body,/obj/effect/decal/cleanable/blood/gibs/limb,/obj/effect/decal/cleanable/blood/gibs/core)
-+ gibtypes = list(/obj/effect/decal/cleanable/blood/gibs/up, /obj/effect/decal/cleanable/blood/gibs/down, /obj/effect/decal/cleanable/blood/gibs, /obj/effect/decal/cleanable/blood/gibs, /obj/effect/decal/cleanable/blood/gibs/body, /obj/effect/decal/cleanable/blood/gibs/limb, /obj/effect/decal/cleanable/blood/gibs/core)
- gibamounts = list(1,1,1,1,1,1,1)
-
- /obj/effect/gibspawner/human/Initialize()
diff --git a/code/game/objects/items/shooting_range.dm b/code/game/objects/items/shooting_range.dm
index d86ea63338..e30b9bb2cd 100644
--- a/code/game/objects/items/shooting_range.dm
+++ b/code/game/objects/items/shooting_range.dm
@@ -49,6 +49,9 @@
desc = "A shooting target that looks like a xenomorphic alien."
hp = 2350
+/obj/item/target/alien/anchored
+ anchored = TRUE
+
/obj/item/target/clown
icon_state = "target_c"
desc = "A shooting target that looks like a useless clown."
diff --git a/code/game/objects/items/weapons/RCL.dm b/code/game/objects/items/weapons/RCL.dm
new file mode 100644
index 0000000000..623a1f9b78
--- /dev/null
+++ b/code/game/objects/items/weapons/RCL.dm
@@ -0,0 +1,202 @@
+/obj/item/weapon/twohanded/rcl
+ name = "rapid cable layer"
+ desc = "A device used to rapidly deploy cables. It has screws on the side which can be removed to slide off the cables. Do not use without insulation!"
+ icon = 'icons/obj/tools.dmi'
+ icon_state = "rcl-0"
+ item_state = "rcl-0"
+ var/obj/structure/cable/last
+ var/obj/item/stack/cable_coil/loaded
+ opacity = FALSE
+ force = 5 //Plastic is soft
+ throwforce = 5
+ throw_speed = 1
+ throw_range = 7
+ w_class = WEIGHT_CLASS_NORMAL
+ origin_tech = "engineering=4;materials=2"
+ var/max_amount = 90
+ var/active = FALSE
+ actions_types = list(/datum/action/item_action/rcl)
+ var/list/colors = list("red", "yellow", "green", "blue", "pink", "orange", "cyan", "white")
+ var/current_color_index = 1
+ var/ghetto = FALSE
+
+/obj/item/weapon/twohanded/rcl/attackby(obj/item/W, mob/user)
+ if(istype(W, /obj/item/stack/cable_coil))
+ var/obj/item/stack/cable_coil/C = W
+ if(user.transferItemToLoc(W, src))
+ loaded = W
+ loaded.max_amount = max_amount //We store a lot.
+ else
+ to_chat(user, "[src] is stuck to your hand!")
+ return
+
+ if(loaded.amount < max_amount)
+ var/amount = min(loaded.amount + C.amount, max_amount)
+ C.use(amount - loaded.amount)
+ loaded.amount = amount
+ else
+ return
+ update_icon()
+ to_chat(user, "You add the cables to the [src]. It now contains [loaded.amount].")
+ else if(istype(W, /obj/item/weapon/screwdriver))
+ if(!loaded)
+ return
+ if(ghetto && prob(10)) //Is it a ghetto RCL? If so, give it a 10% chance to fall apart
+ to_chat(user, "You attempt to loosen the securing screws on the side, but it falls apart!")
+ while(loaded.amount > 30) //There are only two kinds of situations: "nodiff" (60,90), or "diff" (31-59, 61-89)
+ var/diff = loaded.amount % 30
+ if(diff)
+ loaded.use(diff)
+ new /obj/item/stack/cable_coil(get_turf(user), diff)
+ else
+ loaded.use(30)
+ new /obj/item/stack/cable_coil(get_turf(user), 30)
+ qdel(src)
+ return
+
+ to_chat(user, "You loosen the securing screws on the side, allowing you to lower the guiding edge and retrieve the wires.")
+ while(loaded.amount > 30) //There are only two kinds of situations: "nodiff" (60,90), or "diff" (31-59, 61-89)
+ var/diff = loaded.amount % 30
+ if(diff)
+ loaded.use(diff)
+ new /obj/item/stack/cable_coil(get_turf(user), diff)
+ else
+ loaded.use(30)
+ new /obj/item/stack/cable_coil(get_turf(user), 30)
+ loaded.max_amount = initial(loaded.max_amount)
+ if(!user.put_in_hands(loaded))
+ loaded.forceMove(get_turf(user))
+
+ loaded = null
+ update_icon()
+ else
+ ..()
+
+/obj/item/weapon/twohanded/rcl/examine(mob/user)
+ ..()
+ if(loaded)
+ to_chat(user, "It contains [loaded.amount]/[max_amount] cables.")
+
+/obj/item/weapon/twohanded/rcl/Destroy()
+ QDEL_NULL(loaded)
+ last = null
+ active = FALSE
+ return ..()
+
+/obj/item/weapon/twohanded/rcl/update_icon()
+ if(!loaded)
+ icon_state = "rcl-0"
+ item_state = "rcl-0"
+ return
+ switch(loaded.amount)
+ if(61 to INFINITY)
+ icon_state = "rcl-30"
+ item_state = "rcl"
+ if(31 to 60)
+ icon_state = "rcl-20"
+ item_state = "rcl"
+ if(1 to 30)
+ icon_state = "rcl-10"
+ item_state = "rcl"
+ else
+ icon_state = "rcl-0"
+ item_state = "rcl-0"
+
+/obj/item/weapon/twohanded/rcl/proc/is_empty(mob/user, loud = 1)
+ update_icon()
+ if(!loaded || !loaded.amount)
+ if(loud)
+ to_chat(user, "The last of the cables unreel from [src].")
+ if(loaded)
+ QDEL_NULL(loaded)
+ loaded = null
+ unwield(user)
+ active = wielded
+ return TRUE
+ return FALSE
+
+/obj/item/weapon/twohanded/rcl/dropped(mob/wearer)
+ ..()
+ active = FALSE
+ last = null
+
+/obj/item/weapon/twohanded/rcl/attack_self(mob/user)
+ ..()
+ active = wielded
+ if(!active)
+ last = null
+ else if(!last)
+ for(var/obj/structure/cable/C in get_turf(user))
+ if(C.d1 == FALSE || C.d2 == FALSE)
+ last = C
+ break
+
+/obj/item/weapon/twohanded/rcl/on_mob_move(direct, mob/user)
+ if(active)
+ trigger(user)
+
+/obj/item/weapon/twohanded/rcl/proc/trigger(mob/user)
+ if(!isturf(user.loc))
+ return
+ if(is_empty(user, 0))
+ to_chat(user, "\The [src] is empty!")
+ return
+
+ if(prob(2) && ghetto) //Give ghetto RCLs a 2% chance to jam, requiring it to be reactviated manually.
+ to_chat(user, "[src]'s wires jam!")
+ active = FALSE
+ return
+ else
+ if(last)
+ if(get_dist(last, user) == 1) //hacky, but it works
+ var/turf/T = get_turf(user)
+ if(T.intact || !T.can_have_cabling())
+ last = null
+ return
+ if(get_dir(last, user) == last.d2)
+ //Did we just walk backwards? Well, that's the one direction we CAN'T complete a stub.
+ last = null
+ return
+ loaded.cable_join(last, user, FALSE)
+ if(is_empty(user))
+ return //If we've run out, display message and exit
+ else
+ last = null
+ loaded.item_color = colors[current_color_index]
+ last = loaded.place_turf(get_turf(src), user, turn(user.dir, 180))
+ is_empty(user) //If we've run out, display message
+
+
+/obj/item/weapon/twohanded/rcl/pre_loaded/Initialize () //Comes preloaded with cable, for testing stuff
+ . = ..()
+ loaded = new()
+ loaded.max_amount = max_amount
+ loaded.amount = max_amount
+ update_icon()
+
+/obj/item/weapon/twohanded/rcl/ui_action_click(mob/user, action)
+ if(istype(action, /datum/action/item_action/rcl))
+ current_color_index++;
+ if (current_color_index > colors.len)
+ current_color_index = 1
+ var/cwname = colors[current_color_index]
+ to_chat(user, "Color changed to [cwname]!")
+
+/obj/item/weapon/twohanded/rcl/ghetto
+ actions_types = list()
+ max_amount = 30
+ name = "makeshift rapid cable layer"
+ ghetto = TRUE
+
+/obj/item/weapon/twohanded/rcl/ghetto/update_icon()
+ if(!loaded)
+ icon_state = "rclg-0"
+ item_state = "rclg-0"
+ return
+ switch(loaded.amount)
+ if(1 to INFINITY)
+ icon_state = "rclg-1"
+ item_state = "rcl"
+ else
+ icon_state = "rclg-1"
+ item_state = "rclg-1"
\ No newline at end of file
diff --git a/code/game/objects/structures/beds_chairs/bed.dm b/code/game/objects/structures/beds_chairs/bed.dm
index f512f6ba4f..040f83ded2 100644
--- a/code/game/objects/structures/beds_chairs/bed.dm
+++ b/code/game/objects/structures/beds_chairs/bed.dm
@@ -162,6 +162,26 @@
buildstackamount = 10
var/mob/living/owner = null
+/obj/structure/bed/dogbed/ian
+ desc = "Ian's bed! Looks comfy."
+ name = "Ian's bed"
+ anchored = TRUE
+
+/obj/structure/bed/dogbed/cayenne
+ desc = "Seems kind of... fishy."
+ name = "Cayenne's bed"
+ anchored = TRUE
+
+/obj/structure/bed/dogbed/renault
+ desc = "Renault's bed! Looks comfy. A foxy person needs a foxy pet."
+ name = "Renault's bed"
+ anchored = TRUE
+
+/obj/structure/bed/dogbed/runtime
+ desc = "A comfy-looking cat bed. You can even strap your pet in, in case the gravity turns off."
+ name = "Runtime's bed"
+ anchored = TRUE
+
/obj/structure/bed/dogbed/proc/update_owner(mob/living/M)
owner = M
name = "[M]'s bed"
@@ -174,4 +194,4 @@
/obj/structure/bed/alien
name = "resting contraption"
desc = "This looks similar to contraptions from earth. Could aliens be stealing our technology?"
- icon_state = "abed"
+ icon_state = "abed"
\ No newline at end of file
diff --git a/code/game/objects/structures/crates_lockers/closets/secure/security.dm.rej b/code/game/objects/structures/crates_lockers/closets/secure/security.dm.rej
deleted file mode 100644
index 2fe11f47d0..0000000000
--- a/code/game/objects/structures/crates_lockers/closets/secure/security.dm.rej
+++ /dev/null
@@ -1,30 +0,0 @@
-diff a/code/game/objects/structures/crates_lockers/closets/secure/security.dm b/code/game/objects/structures/crates_lockers/closets/secure/security.dm (rejected hunks)
-@@ -203,7 +203,7 @@
- anchored = TRUE
- name = "Secure Evidence Closet"
- req_access_txt = "0"
-- req_one_access_txt = list(GLOB.access_armory, GLOB.access_forensics_lockers)
-+ req_one_access_txt = list(ACCESS_ARMORY, ACCESS_FORENSICS_LOCKERS)
-
- /obj/structure/closet/secure_closet/brig/PopulateContents()
- ..()
-@@ -227,16 +227,16 @@
- /obj/structure/closet/secure_closet/contraband/armory
- anchored = TRUE
- name = "Contraband Locker"
-- req_access = list(GLOB.access_armory)
-+ req_access = list(ACCESS_ARMORY)
-
- /obj/structure/closet/secure_closet/contraband/heads
- anchored = TRUE
- name = "Contraband Locker"
-- req_access = list(GLOB.access_heads)
-+ req_access = list(ACCESS_HEADS)
-
- /obj/structure/closet/secure_closet/armory1
- name = "armory armor locker"
-- req_access = list(GLOB.access_armory)
-+ req_access = list(ACCESS_ARMORY)
- icon_state = "armory"
-
- /obj/structure/closet/secure_closet/armory1/PopulateContents()
diff --git a/code/game/objects/structures/crates_lockers/closets/utility_closets.dm b/code/game/objects/structures/crates_lockers/closets/utility_closets.dm
index 1b864d1813..441232e155 100644
--- a/code/game/objects/structures/crates_lockers/closets/utility_closets.dm
+++ b/code/game/objects/structures/crates_lockers/closets/utility_closets.dm
@@ -17,6 +17,9 @@
desc = "It's a storage unit for emergency breath masks and O2 tanks."
icon_state = "emergency"
+/obj/structure/closet/emcloset/anchored
+ anchored = TRUE
+
/obj/structure/closet/emcloset/PopulateContents()
..()
diff --git a/code/game/objects/structures/reflector.dm b/code/game/objects/structures/reflector.dm
index 4e143a9109..0b9745f0d6 100644
--- a/code/game/objects/structures/reflector.dm
+++ b/code/game/objects/structures/reflector.dm
@@ -148,6 +148,9 @@
buildstacktype = /obj/item/stack/sheet/glass
buildstackamount = 5
+/obj/structure/reflector/single/anchored
+ anchored = TRUE
+
/obj/structure/reflector/single/get_reflection(srcdir,pdir)
var/new_dir = rotations["[srcdir]"]["[pdir]"]
return new_dir
@@ -171,6 +174,9 @@
buildstacktype = /obj/item/stack/sheet/rglass
buildstackamount = 10
+/obj/structure/reflector/double/anchored
+ anchored = TRUE
+
/obj/structure/reflector/double/get_reflection(srcdir,pdir)
var/new_dir = double_rotations["[srcdir]"]["[pdir]"]
return new_dir
@@ -194,6 +200,9 @@
buildstacktype = /obj/item/stack/sheet/mineral/diamond
buildstackamount = 1
+/obj/structure/reflector/box/anchored
+ anchored = TRUE
+
/obj/structure/reflector/box/get_reflection(srcdir,pdir)
var/new_dir = box_rotations["[srcdir]"]["[pdir]"]
return new_dir
diff --git a/code/game/objects/structures/signs.dm b/code/game/objects/structures/signs.dm
index 9195c243a5..9a25da9019 100644
--- a/code/game/objects/structures/signs.dm
+++ b/code/game/objects/structures/signs.dm
@@ -244,6 +244,36 @@
desc = "A sign labelling an area as a place where xenobiological entities are researched."
icon_state = "xenobio"
+/obj/structure/sign/evac
+ name = "\improper EVACUATION"
+ desc = "A sign labelling an area where evacuation procedures take place."
+ icon_state = "evac"
+
+/obj/structure/sign/custodian
+ name = "\improper CUSTODIAN"
+ desc = "A sign labelling an area where the custodian works."
+ icon_state = "custodian"
+
+/obj/structure/sign/engineering
+ name = "\improper ENGINEERING"
+ desc = "A sign labelling an area where engineers work."
+ icon_state = "engine"
+
+/obj/structure/sign/cargo
+ name = "\improper CARGO"
+ desc = "A sign labelling an area where cargo ships dock."
+ icon_state = "cargo"
+
+/obj/structure/sign/security
+ name = "\improper SECURITY"
+ desc = "A sign labelling an area where the law is law."
+ icon_state = "security"
+
+/obj/structure/sign/holy
+ name = "\improper HOLY"
+ desc = "A sign labelling a religious area."
+ icon_state = "holy"
+
/obj/structure/sign/xeno_warning_mining
name = "DANGEROUS ALIEN LIFE"
desc = "A sign that warns would-be travellers of hostile alien life in the vicinity."
@@ -289,3 +319,8 @@
name = "command department"
desc = "A direction sign, pointing out which way the Command department is."
icon_state = "direction_bridge"
+
+/obj/structure/sign/logo
+ name = "station logo"
+ desc = "A sign: SPACE STATION 13."
+ icon_state = "ss13sign-1"
\ No newline at end of file
diff --git a/code/game/sound.dm.rej b/code/game/sound.dm.rej
deleted file mode 100644
index bf2bbbce69..0000000000
--- a/code/game/sound.dm.rej
+++ /dev/null
@@ -1,9 +0,0 @@
-diff a/code/game/sound.dm b/code/game/sound.dm (rejected hunks)
-@@ -154,6 +151,6 @@
- soundin = pick('sound/effects/can_open1.ogg', 'sound/effects/can_open2.ogg', 'sound/effects/can_open3.ogg')
- return soundin
-
--/proc/playsound_global(file, repeat=0, wait, channel, volume)
-+/proc/playsound_global(file, repeat = 0, wait, channel, volume)
- for(var/V in GLOB.clients)
- V << sound(file, repeat, wait, channel, volume)
diff --git a/code/game/turfs/simulated/floor/misc_floor.dm b/code/game/turfs/simulated/floor/misc_floor.dm
index 810a77fc42..89af274e58 100644
--- a/code/game/turfs/simulated/floor/misc_floor.dm
+++ b/code/game/turfs/simulated/floor/misc_floor.dm
@@ -49,6 +49,9 @@
/turf/open/floor/circuit/telecomms
initial_gas_mix = "n2=100;TEMP=80"
+/turf/open/floor/circuit/telecomms/mainframe
+ name = "Mainframe Base"
+
/turf/open/floor/circuit/green
icon_state = "gcircuit"
icon_normal = "gcircuit"
@@ -70,6 +73,9 @@
/turf/open/floor/circuit/green/telecomms
initial_gas_mix = "n2=100;TEMP=80"
+/turf/open/floor/circuit/green/telecomms/mainframe
+ name = "Mainframe Base"
+
/turf/open/floor/circuit/red
icon_state = "rcircuit"
icon_normal = "rcircuit"
@@ -265,4 +271,4 @@
//Do this *after* the turf has changed as qdel in spacevines will call changeturf again if it hasn't
for(var/obj/structure/spacevine/SV in src)
if(!QDESTROYING(SV))//Helps avoid recursive loops
- qdel(SV)
+ qdel(SV)
\ No newline at end of file
diff --git a/code/game/turfs/simulated/floor/plasteel_floor.dm b/code/game/turfs/simulated/floor/plasteel_floor.dm
index 039d278baf..23471ccd5f 100644
--- a/code/game/turfs/simulated/floor/plasteel_floor.dm
+++ b/code/game/turfs/simulated/floor/plasteel_floor.dm
@@ -17,6 +17,10 @@
/turf/open/floor/plasteel/black
icon_state = "dark"
+/turf/open/floor/plasteel/black/telecomms
+ initial_gas_mix = "n2=100;TEMP=80"
+/turf/open/floor/plasteel/black/telecomms/mainframe
+ name = "Mainframe Floor"
/turf/open/floor/plasteel/airless/black
icon_state = "dark"
/turf/open/floor/plasteel/black/side
@@ -43,6 +47,10 @@
/turf/open/floor/plasteel/brown
icon_state = "brown"
+/turf/open/floor/plasteel/brown/telecomms
+ initial_gas_mix = "n2=100;TEMP=80"
+/turf/open/floor/plasteel/brown/telecomms/mainframe
+ name = "Mainframe Floor"
/turf/open/floor/plasteel/brown/corner
icon_state = "browncorner"
@@ -59,6 +67,8 @@
icon_state = "greenfull"
/turf/open/floor/plasteel/green/side
icon_state = "green"
+/turf/open/floor/plasteel/green/side/telecomms
+ initial_gas_mix = "n2=100;TEMP=80"
/turf/open/floor/plasteel/green/corner
icon_state = "greencorner"
@@ -66,6 +76,8 @@
icon_state = "darkgreenfull"
/turf/open/floor/plasteel/darkgreen/side
icon_state = "darkgreen"
+/turf/open/floor/plasteel/darkgreen/side/telecomms
+ initial_gas_mix = "n2=100;TEMP=80"
/turf/open/floor/plasteel/darkgreen/corner
icon_state = "darkgreencorners"
@@ -89,6 +101,8 @@
icon_state = "darkredfull"
/turf/open/floor/plasteel/darkred/side
icon_state = "darkred"
+/turf/open/floor/plasteel/darkred/side/telecomms
+ initial_gas_mix = "n2=100;TEMP=80"
/turf/open/floor/plasteel/darkred/corner
icon_state = "darkredcorners"
@@ -112,6 +126,8 @@
icon_state = "darkbluefull"
/turf/open/floor/plasteel/darkblue/side
icon_state = "darkblue"
+/turf/open/floor/plasteel/darkblue/side/telecomms
+ initial_gas_mix = "n2=100;TEMP=80"
/turf/open/floor/plasteel/darkblue/corner
icon_state = "darkbluecorners"
@@ -119,6 +135,8 @@
icon_state = "whitebluefull"
/turf/open/floor/plasteel/whiteblue/side
icon_state = "whiteblue"
+/turf/open/floor/plasteel/whiteblue/side/telecomms
+ initial_gas_mix = "n2=100;TEMP=80"
/turf/open/floor/plasteel/whiteblue/corner
icon_state = "whitebluecorner"
@@ -135,6 +153,8 @@
icon_state = "darkyellowfull"
/turf/open/floor/plasteel/darkyellow/side
icon_state = "darkyellow"
+/turf/open/floor/plasteel/darkyellow/side/telecomms
+ initial_gas_mix = "n2=100;TEMP=80"
/turf/open/floor/plasteel/darkyellow/corner
icon_state = "darkyellowcorners"
@@ -158,6 +178,8 @@
icon_state = "darkpurplefull"
/turf/open/floor/plasteel/darkpurple/side
icon_state = "darkpurple"
+/turf/open/floor/plasteel/darkpurple/side/telecomms
+ initial_gas_mix = "n2=100;TEMP=80"
/turf/open/floor/plasteel/darkpurple/corner
icon_state = "darkpurplecorners"
@@ -165,6 +187,8 @@
icon_state = "whitepurplefull"
/turf/open/floor/plasteel/whitepurple/side
icon_state = "whitepurple"
+/turf/open/floor/plasteel/whitepurple/side/telecomms
+ initial_gas_mix = "n2=100;TEMP=80"
/turf/open/floor/plasteel/whitepurple/corner
icon_state = "whitepurplecorner"
@@ -181,6 +205,8 @@
icon_state = "neutralfull"
/turf/open/floor/plasteel/neutral/side
icon_state = "neutral"
+/turf/open/floor/plasteel/neutral/side/telecomms
+ initial_gas_mix = "n2=100;TEMP=80"
/turf/open/floor/plasteel/neutral/corner
icon_state = "neutralcorner"
@@ -325,6 +351,10 @@
/turf/open/floor/plasteel/vault
icon_state = "vault"
+/turf/open/floor/plasteel/vault/telecomms
+ initial_gas_mix = "n2=100;TEMP=80"
+/turf/open/floor/plasteel/vault/telecomms/mainframe
+ name = "Mainframe Floor"
/turf/open/floor/plasteel/cult
icon_state = "cult"
diff --git a/code/game/turfs/turf.dm b/code/game/turfs/turf.dm
index 924628a27d..3641eae0d3 100644
--- a/code/game/turfs/turf.dm
+++ b/code/game/turfs/turf.dm
@@ -9,7 +9,7 @@
var/to_be_destroyed = 0 //Used for fire, if a melting temperature was reached, it will be destroyed
var/max_fire_temperature_sustained = 0 //The max temperature of the fire which it was subjected to
- var/blocks_air = 0
+ var/blocks_air = FALSE
flags = CAN_BE_DIRTY
@@ -84,16 +84,28 @@
/turf/attack_hand(mob/user)
user.Move_Pulled(src)
+/turf/proc/handleRCL(obj/item/weapon/twohanded/rcl/C, mob/user)
+ if(C.loaded)
+ for(var/obj/structure/cable/LC in src)
+ if(!LC.d1 || !LC.d2)
+ LC.handlecable(C, user)
+ return
+ C.loaded.place_turf(src, user)
+ C.is_empty(user)
+
/turf/attackby(obj/item/C, mob/user, params)
if(can_lay_cable() && istype(C, /obj/item/stack/cable_coil))
var/obj/item/stack/cable_coil/coil = C
for(var/obj/structure/cable/LC in src)
- if((LC.d1==0)||(LC.d2==0))
+ if(!LC.d1 || !LC.d2)
LC.attackby(C,user)
return
coil.place_turf(src, user)
return TRUE
+ else if(istype(C, /obj/item/weapon/twohanded/rcl))
+ handleRCL(C, user)
+
return FALSE
/turf/CanPass(atom/movable/mover, turf/target)
@@ -117,7 +129,7 @@
return FALSE
var/list/large_dense = list()
-
+
//Next, check objects to block entry that are on the border
for(var/atom/movable/border_obstacle in src)
if(border_obstacle.flags & ON_BORDER)
@@ -134,7 +146,7 @@
//Finally, check objects/mobs to block entry that are not on the border
var/atom/movable/tompost_bump
- var/top_layer = 0
+ var/top_layer = FALSE
for(var/atom/movable/obstacle in large_dense)
if(!obstacle.CanPass(mover, mover.loc, 1) && (forget != obstacle))
if(obstacle.layer > top_layer)
@@ -197,14 +209,14 @@
qdel(L)
//wrapper for ChangeTurf()s that you want to prevent/affect without overriding ChangeTurf() itself
-/turf/proc/TerraformTurf(path, new_baseturf, defer_change = FALSE, ignore_air = FALSE)
- return ChangeTurf(path, new_baseturf, defer_change, ignore_air)
+/turf/proc/TerraformTurf(path, new_baseturf, defer_change = FALSE, ignore_air = FALSE, forceop = FALSE)
+ return ChangeTurf(path, new_baseturf, defer_change, ignore_air, forceop)
//Creates a new turf
-/turf/proc/ChangeTurf(path, new_baseturf, defer_change = FALSE, ignore_air = FALSE)
+/turf/proc/ChangeTurf(path, new_baseturf, defer_change = FALSE, ignore_air = FALSE, forceop = FALSE)
if(!path)
return
- if(!GLOB.use_preloader && path == type) // Don't no-op if the map loader requires it to be reconstructed
+ if(!GLOB.use_preloader && path == type && !forceop) // Don't no-op if the map loader requires it to be reconstructed
return src
var/old_baseturf = baseturf
@@ -416,8 +428,8 @@
var/thing = allowed_contents[i]
qdel(thing, force=TRUE)
- var/turf/newT = ChangeTurf(turf_type, baseturf_type, FALSE, FALSE)
-
+ var/turf/newT = ChangeTurf(turf_type, baseturf_type, FALSE, FALSE, forceop = forceop)
+
SSair.remove_from_active(newT)
newT.CalculateAdjacentTurfs()
SSair.add_to_active(newT,1)
@@ -425,13 +437,12 @@
/turf/proc/is_transition_turf()
return
-
/turf/acid_act(acidpwr, acid_volume)
. = 1
var/acid_type = /obj/effect/acid
if(acidpwr >= 200) //alien acid power
acid_type = /obj/effect/acid/alien
- var/has_acid_effect = 0
+ var/has_acid_effect = FALSE
for(var/obj/O in src)
if(intact && O.level == 1) //hidden under the floor
continue
@@ -503,4 +514,4 @@
limit--
else
return I
- return I
+ return I
\ No newline at end of file
diff --git a/code/game/turfs/turf.dm.rej b/code/game/turfs/turf.dm.rej
deleted file mode 100644
index f4c27f5c30..0000000000
--- a/code/game/turfs/turf.dm.rej
+++ /dev/null
@@ -1,10 +0,0 @@
-diff a/code/game/turfs/turf.dm b/code/game/turfs/turf.dm (rejected hunks)
-@@ -410,7 +410,7 @@
- /turf/proc/empty(turf_type=/turf/open/space, baseturf_type)
- // Remove all atoms except observers, landmarks, docking ports
- var/static/list/ignored_atoms = typecacheof(list(/mob/dead, /obj/effect/landmark, /obj/docking_port, /atom/movable/lighting_object))
-- var/list/allowed_contents = typecache_filter_list(GetAllContents(),ignored_atoms,reversed=TRUE)
-+ var/list/allowed_contents = typecache_filter_list_reverse(GetAllContents(),ignored_atoms)
- allowed_contents -= src
- for(var/i in 1 to allowed_contents.len)
- var/thing = allowed_contents[i]
diff --git a/code/modules/atmospherics/machinery/airalarm.dm b/code/modules/atmospherics/machinery/airalarm.dm
index 26882d0a81..e48059a066 100644
--- a/code/modules/atmospherics/machinery/airalarm.dm
+++ b/code/modules/atmospherics/machinery/airalarm.dm
@@ -113,6 +113,19 @@
"water_vapor" = new/datum/tlv(-1, -1, 0.2, 0.5)
)
+/obj/machinery/airalarm/engine
+ name = "engine air alarm"
+ locked = FALSE
+ req_access = null
+ req_one_access = list(ACCESS_ATMOSPHERICS, ACCESS_ENGINE)
+
+/obj/machinery/airalarm/all_access
+ name = "all-access air alarm"
+ desc = "This particular atmos control unit appears to have no access restrictions."
+ locked = FALSE
+ req_access = null
+ req_one_access = null
+
//all air alarms in area are connected via magic
/area
var/list/air_vent_names = list()
diff --git a/code/modules/clothing/spacesuits/flightsuit.dm.rej b/code/modules/clothing/spacesuits/flightsuit.dm.rej
deleted file mode 100644
index a0b426974d..0000000000
--- a/code/modules/clothing/spacesuits/flightsuit.dm.rej
+++ /dev/null
@@ -1,14 +0,0 @@
-diff a/code/modules/clothing/spacesuits/flightsuit.dm b/code/modules/clothing/spacesuits/flightsuit.dm (rejected hunks)
-@@ -1157,10 +1157,10 @@
- maint_panel = TRUE
- else
- maint_panel = FALSE
-- usermessage("You [maint_panel? "open" : "close"] the maintainence panel.")
-+ usermessage("You [maint_panel? "open" : "close"] the maintenance panel.")
- return FALSE
- else if(!maint_panel)
-- usermessage("The maintainence panel is closed!", "boldwarning")
-+ usermessage("The maintenance panel is closed!", "boldwarning")
- return FALSE
- else if(istype(I, /obj/item/weapon/crowbar))
- var/list/inputlist = list()
diff --git a/code/modules/clothing/spacesuits/hardsuit.dm.rej b/code/modules/clothing/spacesuits/hardsuit.dm.rej
deleted file mode 100644
index 93cffce359..0000000000
--- a/code/modules/clothing/spacesuits/hardsuit.dm.rej
+++ /dev/null
@@ -1,19 +0,0 @@
-diff a/code/modules/clothing/spacesuits/hardsuit.dm b/code/modules/clothing/spacesuits/hardsuit.dm (rejected hunks)
-@@ -304,7 +304,7 @@
- item_color = "syndi"
- w_class = WEIGHT_CLASS_NORMAL
- armor = list(melee = 40, bullet = 50, laser = 30, energy = 15, bomb = 35, bio = 100, rad = 50, fire = 50, acid = 90)
-- allowed = list(/obj/item/weapon/gun,/obj/item/ammo_box,/obj/item/ammo_casing,/obj/item/weapon/melee/baton,/obj/item/weapon/melee/energy/sword/saber,/obj/item/weapon/restraints/handcuffs,/obj/item/weapon/tank/internals)
-+ allowed = list(/obj/item/weapon/gun, /obj/item/ammo_box, /obj/item/ammo_casing, /obj/item/weapon/melee/baton, /obj/item/weapon/melee/energy/sword/saber, /obj/item/weapon/restraints/handcuffs, /obj/item/weapon/tank/internals)
- helmettype = /obj/item/clothing/head/helmet/space/hardsuit/syndi
- jetpack = /obj/item/weapon/tank/jetpack/suit
-
-@@ -698,7 +698,7 @@
- item_state = "syndie_hardsuit"
- item_color = "syndi"
- armor = list(melee = 40, bullet = 50, laser = 30, energy = 15, bomb = 35, bio = 100, rad = 50, fire = 100, acid = 100)
-- allowed = list(/obj/item/weapon/gun,/obj/item/ammo_box,/obj/item/ammo_casing,/obj/item/weapon/melee/baton,/obj/item/weapon/melee/energy/sword/saber,/obj/item/weapon/restraints/handcuffs,/obj/item/weapon/tank/internals)
-+ allowed = list(/obj/item/weapon/gun, /obj/item/ammo_box, /obj/item/ammo_casing, /obj/item/weapon/melee/baton, /obj/item/weapon/melee/energy/sword/saber, /obj/item/weapon/restraints/handcuffs, /obj/item/weapon/tank/internals)
- helmettype = /obj/item/clothing/head/helmet/space/hardsuit/shielded/syndi
- slowdown = 0
-
diff --git a/code/modules/clothing/spacesuits/miscellaneous.dm.rej b/code/modules/clothing/spacesuits/miscellaneous.dm.rej
deleted file mode 100644
index 460a86c3dc..0000000000
--- a/code/modules/clothing/spacesuits/miscellaneous.dm.rej
+++ /dev/null
@@ -1,10 +0,0 @@
-diff a/code/modules/clothing/spacesuits/miscellaneous.dm b/code/modules/clothing/spacesuits/miscellaneous.dm (rejected hunks)
-@@ -146,7 +146,7 @@ Contains:
- item_state = "pirate"
- w_class = WEIGHT_CLASS_NORMAL
- flags_inv = 0
-- allowed = list(/obj/item/weapon/gun,/obj/item/ammo_box,/obj/item/ammo_casing,/obj/item/weapon/melee/baton,/obj/item/weapon/restraints/handcuffs,/obj/item/weapon/tank/internals, /obj/item/weapon/melee/energy/sword/pirate, /obj/item/clothing/glasses/eyepatch, /obj/item/weapon/reagent_containers/food/drinks/bottle/rum)
-+ allowed = list(/obj/item/weapon/gun, /obj/item/ammo_box, /obj/item/ammo_casing, /obj/item/weapon/melee/baton, /obj/item/weapon/restraints/handcuffs, /obj/item/weapon/tank/internals, /obj/item/weapon/melee/energy/sword/pirate, /obj/item/clothing/glasses/eyepatch, /obj/item/weapon/reagent_containers/food/drinks/bottle/rum)
- slowdown = 0
- armor = list(melee = 30, bullet = 50, laser = 30,energy = 15, bomb = 30, bio = 30, rad = 30, fire = 60, acid = 75)
- strip_delay = 40
diff --git a/code/modules/clothing/spacesuits/plasmamen.dm.rej b/code/modules/clothing/spacesuits/plasmamen.dm.rej
deleted file mode 100644
index 6a1030e468..0000000000
--- a/code/modules/clothing/spacesuits/plasmamen.dm.rej
+++ /dev/null
@@ -1,10 +0,0 @@
-diff a/code/modules/clothing/spacesuits/plasmamen.dm b/code/modules/clothing/spacesuits/plasmamen.dm (rejected hunks)
-@@ -4,7 +4,7 @@
- /obj/item/clothing/suit/space/eva/plasmaman
- name = "EVA plasma envirosuit"
- desc = "A special plasma containment suit designed to be space-worthy, as well as worn over other clothing. Like it's smaller counterpart, it can automatically extinguish the wearer in a crisis, and holds twice as many charges."
-- allowed = list(/obj/item/weapon/gun,/obj/item/ammo_casing,/obj/item/ammo_casing,/obj/item/weapon/melee/baton,/obj/item/weapon/melee/energy/sword,/obj/item/weapon/restraints/handcuffs,/obj/item/weapon/tank)
-+ allowed = list(/obj/item/weapon/gun, /obj/item/ammo_casing, /obj/item/ammo_casing, /obj/item/weapon/melee/baton, /obj/item/weapon/melee/energy/sword, /obj/item/weapon/restraints/handcuffs, /obj/item/weapon/tank)
- armor = list(melee = 0, bullet = 0, laser = 0, energy = 0, bomb = 0, bio = 100, rad = 0, fire = 100, acid = 75)
- resistance_flags = FIRE_PROOF
- icon_state = "plasmaman_suit"
diff --git a/code/modules/clothing/spacesuits/syndi.dm.rej b/code/modules/clothing/spacesuits/syndi.dm.rej
deleted file mode 100644
index 2c05b046f0..0000000000
--- a/code/modules/clothing/spacesuits/syndi.dm.rej
+++ /dev/null
@@ -1,10 +0,0 @@
-diff a/code/modules/clothing/spacesuits/syndi.dm b/code/modules/clothing/spacesuits/syndi.dm (rejected hunks)
-@@ -12,7 +12,7 @@
- item_state = "space_suit_syndicate"
- desc = "Has a tag on it: Totally not property of an enemy corporation, honest!"
- w_class = WEIGHT_CLASS_NORMAL
-- allowed = list(/obj/item/weapon/gun,/obj/item/ammo_box,/obj/item/ammo_casing,/obj/item/weapon/melee/baton,/obj/item/weapon/melee/energy/sword/saber,/obj/item/weapon/restraints/handcuffs,/obj/item/weapon/tank/internals)
-+ allowed = list(/obj/item/weapon/gun, /obj/item/ammo_box, /obj/item/ammo_casing, /obj/item/weapon/melee/baton, /obj/item/weapon/melee/energy/sword/saber, /obj/item/weapon/restraints/handcuffs, /obj/item/weapon/tank/internals)
- armor = list(melee = 40, bullet = 50, laser = 30,energy = 15, bomb = 30, bio = 30, rad = 30, fire = 80, acid = 85)
-
-
diff --git a/code/modules/clothing/suits/miscellaneous.dm.rej b/code/modules/clothing/suits/miscellaneous.dm.rej
deleted file mode 100644
index e8ab225870..0000000000
--- a/code/modules/clothing/suits/miscellaneous.dm.rej
+++ /dev/null
@@ -1,19 +0,0 @@
-diff a/code/modules/clothing/suits/miscellaneous.dm b/code/modules/clothing/suits/miscellaneous.dm (rejected hunks)
-@@ -450,7 +450,7 @@
- icon_state = "coatcaptain"
- item_state = "coatcaptain"
- armor = list(melee = 25, bullet = 30, laser = 30, energy = 10, bomb = 25, bio = 0, rad = 0, fire = 0, acid = 50)
-- allowed = list(/obj/item/weapon/gun/energy,/obj/item/weapon/reagent_containers/spray/pepper,/obj/item/weapon/gun/ballistic,/obj/item/ammo_box,/obj/item/ammo_casing,/obj/item/weapon/melee/baton,/obj/item/weapon/restraints/handcuffs,/obj/item/device/flashlight/seclite,/obj/item/weapon/melee/classic_baton/telescopic)
-+ allowed = list(/obj/item/weapon/gun/energy, /obj/item/weapon/reagent_containers/spray/pepper, /obj/item/weapon/gun/ballistic, /obj/item/ammo_box, /obj/item/ammo_casing, /obj/item/weapon/melee/baton, /obj/item/weapon/restraints/handcuffs, /obj/item/device/flashlight/seclite, /obj/item/weapon/melee/classic_baton/telescopic)
- hoodtype = /obj/item/clothing/head/hooded/winterhood/captain
-
- /obj/item/clothing/head/hooded/winterhood/captain
-@@ -461,7 +461,7 @@
- icon_state = "coatsecurity"
- item_state = "coatsecurity"
- armor = list(melee = 25, bullet = 15, laser = 30, energy = 10, bomb = 25, bio = 0, rad = 0, fire = 0, acid = 45)
-- allowed = list(/obj/item/weapon/gun/energy,/obj/item/weapon/reagent_containers/spray/pepper,/obj/item/weapon/gun/ballistic,/obj/item/ammo_box,/obj/item/ammo_casing,/obj/item/weapon/melee/baton,/obj/item/weapon/restraints/handcuffs,/obj/item/device/flashlight/seclite,/obj/item/weapon/melee/classic_baton/telescopic)
-+ allowed = list(/obj/item/weapon/gun/energy, /obj/item/weapon/reagent_containers/spray/pepper, /obj/item/weapon/gun/ballistic, /obj/item/ammo_box, /obj/item/ammo_casing, /obj/item/weapon/melee/baton, /obj/item/weapon/restraints/handcuffs, /obj/item/device/flashlight/seclite, /obj/item/weapon/melee/classic_baton/telescopic)
- hoodtype = /obj/item/clothing/head/hooded/winterhood/security
-
- /obj/item/clothing/head/hooded/winterhood/security
diff --git a/code/modules/crafting/recipes.dm b/code/modules/crafting/recipes.dm
index 2fc97bf06e..f363ea98e1 100644
--- a/code/modules/crafting/recipes.dm
+++ b/code/modules/crafting/recipes.dm
@@ -557,3 +557,12 @@
time = 5
reqs = list(/obj/item/stack/sheet/plasteel = 1, /obj/item/stack/tile/plasteel = 1, /obj/item/stack/cable_coil = 2)
category = CAT_MISC
+
+
+/datum/crafting_recipe/rcl
+ name = "Makeshift Rapid Cable Layer"
+ result = /obj/item/weapon/twohanded/rcl/ghetto
+ time = 40
+ tools = list(/obj/item/weapon/weldingtool, /obj/item/weapon/screwdriver, /obj/item/weapon/wrench)
+ reqs = list(/obj/item/stack/sheet/metal = 15)
+ category = CAT_MISC
diff --git a/code/modules/mining/mine_items.dm b/code/modules/mining/mine_items.dm
index d6ef4a3885..b2fe66cb0b 100644
--- a/code/modules/mining/mine_items.dm
+++ b/code/modules/mining/mine_items.dm
@@ -37,6 +37,9 @@
icon_state = "mining"
req_access = list(ACCESS_MINING)
+/obj/structure/closet/secure_closet/miner/unlocked
+ locked = FALSE
+
/obj/structure/closet/secure_closet/miner/PopulateContents()
..()
new /obj/item/stack/sheet/mineral/sandbags(src, 5)
@@ -77,4 +80,4 @@
/obj/structure/closet/crate/miningcar
desc = "A mining car. This one doesn't work on rails, but has to be dragged."
name = "Mining car (not for rails)"
- icon_state = "miningcar"
+ icon_state = "miningcar"
\ No newline at end of file
diff --git a/code/modules/mob/living/carbon/damage_procs.dm.rej b/code/modules/mob/living/carbon/damage_procs.dm.rej
deleted file mode 100644
index 9819e18e18..0000000000
--- a/code/modules/mob/living/carbon/damage_procs.dm.rej
+++ /dev/null
@@ -1,10 +0,0 @@
-diff a/code/modules/mob/living/carbon/damage_procs.dm b/code/modules/mob/living/carbon/damage_procs.dm (rejected hunks)
-@@ -36,6 +36,8 @@
- adjustCloneLoss(damage * hit_percent)
- if(STAMINA)
- adjustStaminaLoss(damage * hit_percent)
-+ if(BRAIN)
-+ adjustBrainLoss(damage * hit_percent)
- return 1
-
-
diff --git a/code/modules/mob/living/carbon/human/species.dm.rej b/code/modules/mob/living/carbon/human/species.dm.rej
deleted file mode 100644
index e10962105a..0000000000
--- a/code/modules/mob/living/carbon/human/species.dm.rej
+++ /dev/null
@@ -1,12 +0,0 @@
-diff a/code/modules/mob/living/carbon/human/species.dm b/code/modules/mob/living/carbon/human/species.dm (rejected hunks)
-@@ -71,8 +71,8 @@
- var/obj/item/mutanthands = null
- var/obj/item/organ/tongue/mutanttongue = /obj/item/organ/tongue
-
-- var/obj/item/organ/liver/mutantliver = null
-- var/obj/item/organ/stomach/mutantstomach = null
-+ var/obj/item/organ/liver/mutantliver
-+ var/obj/item/organ/stomach/mutantstomach
-
- ///////////
- // PROCS //
diff --git a/code/modules/mob/living/damage_procs.dm.rej b/code/modules/mob/living/damage_procs.dm.rej
deleted file mode 100644
index 375db36138..0000000000
--- a/code/modules/mob/living/damage_procs.dm.rej
+++ /dev/null
@@ -1,41 +0,0 @@
-diff a/code/modules/mob/living/damage_procs.dm b/code/modules/mob/living/damage_procs.dm (rejected hunks)
-@@ -25,6 +25,8 @@
- adjustCloneLoss(damage * hit_percent)
- if(STAMINA)
- adjustStaminaLoss(damage * hit_percent)
-+ if(BRAIN)
-+ adjustBrainLoss(damage * hit_percent)
- return 1
-
- /mob/living/proc/apply_damage_type(damage = 0, damagetype = BRUTE) //like apply damage except it always uses the damage procs
-@@ -41,6 +43,8 @@
- return adjustCloneLoss(damage)
- if(STAMINA)
- return adjustStaminaLoss(damage)
-+ if(BRAIN)
-+ return adjustBrainLoss(damage)
-
- /mob/living/proc/get_damage_amount(damagetype = BRUTE)
- switch(damagetype)
-@@ -56,9 +60,11 @@
- return getCloneLoss()
- if(STAMINA)
- return getStaminaLoss()
-+ if(BRAIN)
-+ return getBrainLoss()
-
-
--/mob/living/proc/apply_damages(brute = 0, burn = 0, tox = 0, oxy = 0, clone = 0, def_zone = null, blocked = FALSE, stamina = 0)
-+/mob/living/proc/apply_damages(brute = 0, burn = 0, tox = 0, oxy = 0, clone = 0, def_zone = null, blocked = FALSE, stamina = 0, brain = 0)
- if(blocked >= 100)
- return 0
- if(brute)
-@@ -73,6 +79,8 @@
- apply_damage(clone, CLONE, def_zone, blocked)
- if(stamina)
- apply_damage(stamina, STAMINA, def_zone, blocked)
-+ if(brain)
-+ apply_damage(brain, BRAIN, def_zone, blocked)
- return 1
-
-
diff --git a/code/modules/mob/living/simple_animal/friendly/lizard.dm.rej b/code/modules/mob/living/simple_animal/friendly/lizard.dm.rej
deleted file mode 100644
index 6cac5b3c80..0000000000
--- a/code/modules/mob/living/simple_animal/friendly/lizard.dm.rej
+++ /dev/null
@@ -1,10 +0,0 @@
-diff a/code/modules/mob/living/simple_animal/friendly/lizard.dm b/code/modules/mob/living/simple_animal/friendly/lizard.dm (rejected hunks)
-@@ -21,7 +21,7 @@
- gold_core_spawnable = 2
- obj_damage = 0
- environment_smash = ENVIRONMENT_SMASH_NONE
-- var/static/list/edibles = typecacheof(list(/mob/living/simple_animal/butterfly,/mob/living/simple_animal/cockroach)) //list of atoms, however turfs won't affect AI, but will affect consumption.
-+ var/static/list/edibles = typecacheof(list(/mob/living/simple_animal/butterfly, /mob/living/simple_animal/cockroach)) //list of atoms, however turfs won't affect AI, but will affect consumption.
-
- /mob/living/simple_animal/hostile/lizard/CanAttack(atom/the_target)//Can we actually attack a possible target?
- if(see_invisible < the_target.invisibility)//Target's invisible to us, forget it
diff --git a/code/modules/modular_computers/computers/item/tablet.dm.rej b/code/modules/modular_computers/computers/item/tablet.dm.rej
deleted file mode 100644
index ee3bfe26b9..0000000000
--- a/code/modules/modular_computers/computers/item/tablet.dm.rej
+++ /dev/null
@@ -1,15 +0,0 @@
-diff a/code/modules/modular_computers/computers/item/tablet.dm b/code/modules/modular_computers/computers/item/tablet.dm (rejected hunks)
-@@ -12,3 +13,12 @@
- slot_flags = SLOT_ID | SLOT_BELT
- has_light = TRUE //LED flashlight!
- comp_light_luminosity = 2.3 //Same as the PDA
-+ var/finish_color = null
-+
-+/obj/item/device/modular_computer/tablet/update_icon()
-+ ..()
-+ if(!finish_color)
-+ finish_color = pick("red","blue","brown","green","black")
-+ icon_state = "tablet-[finish_color]"
-+ icon_state_unpowered = "tablet-[finish_color]"
-+ icon_state_powered = "tablet-[finish_color]"
-\ No newline at end of file
diff --git a/code/modules/paperwork/paper.dm b/code/modules/paperwork/paper.dm
index 81f6572c22..6a66b4d2e6 100644
--- a/code/modules/paperwork/paper.dm
+++ b/code/modules/paperwork/paper.dm
@@ -399,5 +399,4 @@
return
/obj/item/weapon/paper/crumpled/bloody
- icon_state = "scrap_bloodied"
-
+ icon_state = "scrap_bloodied"
\ No newline at end of file
diff --git a/code/modules/paperwork/paper_premade.dm b/code/modules/paperwork/paper_premade.dm
index 7a269745b7..0b1fb36e4b 100644
--- a/code/modules/paperwork/paper_premade.dm
+++ b/code/modules/paperwork/paper_premade.dm
@@ -4,7 +4,7 @@
/obj/item/weapon/paper/fluff/sop
name = "paper- 'Standard Operating Procedure'"
- info = "Alert Levels:
\nBlue- Emergency
\n\t1. Caused by fire
\n\t2. Caused by manual interaction
\n\tAction:
\n\t\tClose all fire doors. These can only be opened by reseting the alarm
\nRed- Ejection/Self Destruct
\n\t1. Caused by module operating computer.
\n\tAction:
\n\t\tAfter the specified time the module will eject completely.
\n
\nEngine Maintenance Instructions:
\n\tShut off ignition systems:
\n\tActivate internal power
\n\tActivate orbital balance matrix
\n\tRemove volatile liquids from area
\n\tWear a fire suit
\n
\n\tAfter
\n\t\tDecontaminate
\n\t\tVisit medical examiner
\n
\nToxin Laboratory Procedure:
\n\tWear a gas mask regardless
\n\tGet an oxygen tank.
\n\tActivate internal atmosphere
\n
\n\tAfter
\n\t\tDecontaminate
\n\t\tVisit medical examiner
\n
\nDisaster Procedure:
\n\tFire:
\n\t\tActivate sector fire alarm.
\n\t\tMove to a safe area.
\n\t\tGet a fire suit
\n\t\tAfter:
\n\t\t\tAssess Damage
\n\t\t\tRepair damages
\n\t\t\tIf needed, Evacuate
\n\tMeteor Shower:
\n\t\tActivate fire alarm
\n\t\tMove to the back of ship
\n\t\tAfter
\n\t\t\tRepair damage
\n\t\t\tIf needed, Evacuate
\n\tAccidental Reentry:
\n\t\tActivate fire alrms in front of ship.
\n\t\tMove volatile matter to a fire proof area!
\n\t\tGet a fire suit.
\n\t\tStay secure until an emergency ship arrives.
\n
\n\t\tIf ship does not arrive-
\n\t\t\tEvacuate to a nearby safe area!"
+ info = "Alert Levels:
\nBlue- Emergency
\n\t1. Caused by fire
\n\t2. Caused by manual interaction
\n\tAction:
\n\t\tClose all fire doors. These can only be opened by resetting the alarm
\nRed- Ejection/Self Destruct
\n\t1. Caused by module operating computer.
\n\tAction:
\n\t\tAfter the specified time the module will eject completely.
\n
\nEngine Maintenance Instructions:
\n\tShut off ignition systems:
\n\tActivate internal power
\n\tActivate orbital balance matrix
\n\tRemove volatile liquids from area
\n\tWear a fire suit
\n
\n\tAfter
\n\t\tDecontaminate
\n\t\tVisit medical examiner
\n
\nToxin Laboratory Procedure:
\n\tWear a gas mask regardless
\n\tGet an oxygen tank.
\n\tActivate internal atmosphere
\n
\n\tAfter
\n\t\tDecontaminate
\n\t\tVisit medical examiner
\n
\nDisaster Procedure:
\n\tFire:
\n\t\tActivate sector fire alarm.
\n\t\tMove to a safe area.
\n\t\tGet a fire suit
\n\t\tAfter:
\n\t\t\tAssess Damage
\n\t\t\tRepair damages
\n\t\t\tIf needed, Evacuate
\n\tMeteor Shower:
\n\t\tActivate fire alarm
\n\t\tMove to the back of ship
\n\t\tAfter
\n\t\t\tRepair damage
\n\t\t\tIf needed, Evacuate
\n\tAccidental Reentry:
\n\t\tActivate fire alarms in front of ship.
\n\t\tMove volatile matter to a fire proof area!
\n\t\tGet a fire suit.
\n\t\tStay secure until an emergency ship arrives.
\n
\n\t\tIf ship does not arrive-
\n\t\t\tEvacuate to a nearby safe area!"
/obj/item/weapon/paper/fluff/shuttles/daniel
info = "i love daniel
daniel is my best friend
you are tearing me apart elise"
@@ -16,6 +16,7 @@
name = "paper- 'Greetings from Billy Bob'"
info = "Hey fellow botanist!
\n
\nI didn't trust the station folk so I left
\na couple of weeks ago. But here's some
\ninstructions on how to operate things here.
\nYou can grow plants and each iteration they become
\nstronger, more potent and have better yield, if you
\nknow which ones to pick. Use your botanist's analyzer
\nfor that. You can turn harvested plants into seeds
\nat the seed extractor, and replant them for better stuff!
\nSometimes if the weed level gets high in the tray
\nmutations into different mushroom or weed species have
\nbeen witnessed. On the rare occassion even weeds mutate!
\n
\nEither way, have fun!
\n
\nBest regards,
\nBilly Bob Johnson.
\n
\nPS.
\nHere's a few tips:
\nIn nettles, potency = damage
\nIn amanitas, potency = deadliness + side effect
\nIn Liberty caps, potency = drug power + effect
\nIn chilis, potency = heat
\nNutrients keep mushrooms alive!
\nWater keeps weeds such as nettles alive!
\nAll other plants need both."
+
/obj/item/weapon/paper/fluff/jobs/security/beepsky_mom
name = "Note from Beepsky's Mom"
info = "01001001 00100000 01101000 01101111 01110000 01100101 00100000 01111001 01101111 01110101 00100000 01110011 01110100 01100001 01111001 00100000 01110011 01100001 01100110 01100101 00101110 00100000 01001100 01101111 01110110 01100101 00101100 00100000 01101101 01101111 01101101 00101110"
@@ -48,7 +49,6 @@
name = "paper- 'Chemical Information'"
info = "Known Onboard Toxins:
\n\tGrade A Semi-Liquid Plasma:
\n\t\tHighly poisonous. You cannot sustain concentrations above 15 units.
\n\t\tA gas mask fails to filter plasma after 50 units.
\n\t\tWill attempt to diffuse like a gas.
\n\t\tFiltered by scrubbers.
\n\t\tThere is a bottled version which is very different
\n\t\t\tfrom the version found in canisters!
\n
\n\t\tWARNING: Highly Flammable. Keep away from heat sources
\n\t\texcept in a enclosed fire area!
\n\t\tWARNING: It is a crime to use this without authorization.
\nKnown Onboard Anti-Toxin:
\n\tAnti-Toxin Type 01P: Works against Grade A Plasma.
\n\t\tBest if injected directly into bloodstream.
\n\t\tA full injection is in every regular Med-Kit.
\n\t\tSpecial toxin Kits hold around 7.
\n
\nKnown Onboard Chemicals (other):
\n\tRejuvenation T#001:
\n\t\tEven 1 unit injected directly into the bloodstream
\n\t\t\twill cure unconscious and sleep toxins.
\n\t\tIf administered to a dying patient it will prevent
\n\t\t\tfurther damage for about units*3 seconds.
\n\t\t\tit will not cure them or allow them to be cured.
\n\t\tIt can be administeredd to a non-dying patient
\n\t\t\tbut the chemicals disappear just as fast.
\n\tMorphine T#054:
\n\t\t5 units wilkl induce precisely 1 minute of sleep.
\n\t\t\tThe effect are cumulative.
\n\t\tWARNING: It is a crime to use this without authorization"
-
/*
* Stations
*/
diff --git a/code/modules/power/cable.dm b/code/modules/power/cable.dm
index 5c2d5a5899..03852caf46 100644
--- a/code/modules/power/cable.dm
+++ b/code/modules/power/cable.dm
@@ -76,7 +76,7 @@ By design, d1 is the smallest direction and d2 is the highest
d2 = text2num( copytext( icon_state, dash+1 ) )
- var/turf/T = src.loc // hide if turf is not intact
+ var/turf/T = get_turf(src) // hide if turf is not intact
if(level==1) hide(T.intact)
GLOB.cable_list += src //add it to the global cable list
@@ -115,14 +115,8 @@ By design, d1 is the smallest direction and d2 is the highest
else
icon_state = "[d1]-[d2]"
-
-// Items usable on a cable :
-// - Wirecutters : cut it duh !
-// - Cable coil : merge cables
-// - Multitool : get the power currently passing through the cable
-//
-/obj/structure/cable/attackby(obj/item/W, mob/user, params)
- var/turf/T = src.loc
+/obj/structure/cable/proc/handlecable(obj/item/W, mob/user, params)
+ var/turf/T = get_turf(src)
if(T.intact)
return
if(istype(W, /obj/item/weapon/wirecutters))
@@ -141,6 +135,12 @@ By design, d1 is the smallest direction and d2 is the highest
return
coil.cable_join(src, user)
+ else if(istype(W, /obj/item/weapon/twohanded/rcl))
+ var/obj/item/weapon/twohanded/rcl/R = W
+ if(R.loaded)
+ R.loaded.cable_join(src, user)
+ R.is_empty(user)
+
else if(istype(W, /obj/item/device/multitool))
if(powernet && (powernet.avail > 0)) // is it powered?
to_chat(user, "[powernet.avail]W in power network.")
@@ -150,6 +150,15 @@ By design, d1 is the smallest direction and d2 is the highest
src.add_fingerprint(user)
+// Items usable on a cable :
+// - Wirecutters : cut it duh !
+// - Cable coil : merge cables
+// - Multitool : get the power currently passing through the cable
+//
+/obj/structure/cable/attackby(obj/item/W, mob/user, params)
+ handlecable(W, user, params)
+
+
// shock the user with probability prb
/obj/structure/cable/proc/shock(mob/user, prb, siemens_coeff = 1)
if(!prob(prb))
@@ -507,6 +516,7 @@ GLOBAL_LIST_INIT(cable_coil_recipes, list (new/datum/stack_recipe("cable restrai
// General procedures
///////////////////////////////////
+
//you can use wires to heal robotics
/obj/item/stack/cable_coil/attack(mob/living/carbon/human/H, mob/user)
if(!istype(H))
@@ -564,11 +574,11 @@ GLOBAL_LIST_INIT(cable_coil_recipes, list (new/datum/stack_recipe("cable restrai
return new path (location)
// called when cable_coil is clicked on a turf
-/obj/item/stack/cable_coil/proc/place_turf(turf/T, mob/user)
+/obj/item/stack/cable_coil/proc/place_turf(turf/T, mob/user, dirnew)
if(!isturf(user.loc))
return
- if(!T.can_have_cabling())
+ if(!isturf(T) || T.intact || !T.can_have_cabling())
to_chat(user, "You can only lay cables on catwalks and plating!")
return
@@ -580,47 +590,50 @@ GLOBAL_LIST_INIT(cable_coil_recipes, list (new/datum/stack_recipe("cable restrai
to_chat(user, "You can't lay cable at a place that far away!")
return
- else
- var/dirn
-
+ var/dirn
+ if(!dirnew) //If we weren't given a direction, come up with one! (Called as null from catwalk.dm and floor.dm)
if(user.loc == T)
- dirn = user.dir // if laying on the tile we're on, lay in the direction we're facing
+ dirn = user.dir //If laying on the tile we're on, lay in the direction we're facing
else
dirn = get_dir(T, user)
+ else
+ dirn = dirnew
- for(var/obj/structure/cable/LC in T)
- if(LC.d2 == dirn && LC.d1 == 0)
- to_chat(user, "There's already a cable at that position!")
- return
+ for(var/obj/structure/cable/LC in T)
+ if(LC.d2 == dirn && LC.d1 == 0)
+ to_chat(user, "There's already a cable at that position!")
+ return
- var/obj/structure/cable/C = get_new_cable(T)
+ var/obj/structure/cable/C = get_new_cable(T)
- //set up the new cable
- C.d1 = 0 //it's a O-X node cable
- C.d2 = dirn
- C.add_fingerprint(user)
- C.update_icon()
+ //set up the new cable
+ C.d1 = 0 //it's a O-X node cable
+ C.d2 = dirn
+ C.add_fingerprint(user)
+ C.update_icon()
- //create a new powernet with the cable, if needed it will be merged later
- var/datum/powernet/PN = new()
- PN.add_cable(C)
+ //create a new powernet with the cable, if needed it will be merged later
+ var/datum/powernet/PN = new()
+ PN.add_cable(C)
- C.mergeConnectedNetworks(C.d2) //merge the powernet with adjacents powernets
- C.mergeConnectedNetworksOnTurf() //merge the powernet with on turf powernets
+ C.mergeConnectedNetworks(C.d2) //merge the powernet with adjacents powernets
+ C.mergeConnectedNetworksOnTurf() //merge the powernet with on turf powernets
- if(C.d2 & (C.d2 - 1))// if the cable is layed diagonally, check the others 2 possible directions
- C.mergeDiagonalsNetworks(C.d2)
+ if(C.d2 & (C.d2 - 1))// if the cable is layed diagonally, check the others 2 possible directions
+ C.mergeDiagonalsNetworks(C.d2)
+ use(1)
- use(1)
+ if(C.shock(user, 50))
+ if(prob(50)) //fail
+ new /obj/item/stack/cable_coil(get_turf(C), 1, C.color)
+ C.deconstruct()
- if (C.shock(user, 50))
- if (prob(50)) //fail
- C.deconstruct()
+ return C
// called when cable_coil is click on an installed obj/cable
// or click on a turf that already contains a "node" cable
-/obj/item/stack/cable_coil/proc/cable_join(obj/structure/cable/C, mob/user)
+/obj/item/stack/cable_coil/proc/cable_join(obj/structure/cable/C, mob/user, var/showerror = TRUE)
var/turf/U = user.loc
if(!isturf(U))
return
@@ -644,7 +657,8 @@ GLOBAL_LIST_INIT(cable_coil_recipes, list (new/datum/stack_recipe("cable restrai
// one end of the clicked cable is pointing towards us
if(C.d1 == dirn || C.d2 == dirn)
if(!U.can_have_cabling()) //checking if it's a plating or catwalk
- to_chat(user, "You can only lay cables on catwalks and plating!")
+ if (showerror)
+ to_chat(user, "You can only lay cables on catwalks and plating!")
return
if(U.intact) //can't place a cable if it's a plating with a tile on it
to_chat(user, "You can't lay cable there unless the floor tiles are removed!")
@@ -657,7 +671,8 @@ GLOBAL_LIST_INIT(cable_coil_recipes, list (new/datum/stack_recipe("cable restrai
for(var/obj/structure/cable/LC in U) // check to make sure there's not a cable there already
if(LC.d1 == fdirn || LC.d2 == fdirn)
- to_chat(user, "There's already a cable at that position!")
+ if (showerror)
+ to_chat(user, "There's already a cable at that position!")
return
var/obj/structure/cable/NC = get_new_cable (U)
@@ -701,7 +716,9 @@ GLOBAL_LIST_INIT(cable_coil_recipes, list (new/datum/stack_recipe("cable restrai
if(LC == C) // skip the cable we're interacting with
continue
if((LC.d1 == nd1 && LC.d2 == nd2) || (LC.d1 == nd2 && LC.d2 == nd1) ) // make sure no cable matches either direction
- to_chat(user, "There's already a cable at that position!")
+ if (showerror)
+ to_chat(user, "There's already a cable at that position!")
+
return
diff --git a/code/modules/power/singularity/collector.dm b/code/modules/power/singularity/collector.dm
index b7000d3535..5c01b60416 100644
--- a/code/modules/power/singularity/collector.dm
+++ b/code/modules/power/singularity/collector.dm
@@ -18,6 +18,9 @@ GLOBAL_LIST_EMPTY(rad_collectors)
var/locked = FALSE
var/drainratio = 1
+/obj/machinery/power/rad_collector/anchored
+ anchored = TRUE
+
/obj/machinery/power/rad_collector/New()
..()
GLOB.rad_collectors += src
diff --git a/code/modules/power/singularity/emitter.dm b/code/modules/power/singularity/emitter.dm
index a14b45599f..194c00fc0f 100644
--- a/code/modules/power/singularity/emitter.dm
+++ b/code/modules/power/singularity/emitter.dm
@@ -33,6 +33,19 @@
var/datum/effect_system/spark_spread/sparks
+/obj/machinery/power/emitter/anchored
+ anchored = TRUE
+
+/obj/machinery/power/emitter/ctf
+ name = "Energy Cannon"
+ active = TRUE
+ active_power_usage = FALSE
+ idle_power_usage = FALSE
+ locked = TRUE
+ req_access_txt = "100"
+ state = 2
+ use_power = FALSE
+
/obj/machinery/power/emitter/New()
..()
var/obj/item/weapon/circuitboard/machine/B = new /obj/item/weapon/circuitboard/machine/emitter(null)
diff --git a/code/modules/surgery/organ_manipulation.dm.rej b/code/modules/surgery/organ_manipulation.dm.rej
deleted file mode 100644
index 8a77b0aade..0000000000
--- a/code/modules/surgery/organ_manipulation.dm.rej
+++ /dev/null
@@ -1,10 +0,0 @@
-diff a/code/modules/surgery/organ_manipulation.dm b/code/modules/surgery/organ_manipulation.dm (rejected hunks)
-@@ -78,7 +78,7 @@
- current_type = "extract"
- var/list/organs = target.getorganszone(target_zone)
- if(!organs.len)
-- to_chat(user, "There are no removeable organs in [target]'s [parse_zone(target_zone)]!")
-+ to_chat(user, "There are no removable organs in [target]'s [parse_zone(target_zone)]!")
- return -1
- else
- for(var/obj/item/organ/O in organs)
diff --git a/icons/mob/actions.dmi b/icons/mob/actions.dmi
index 6b13ec2e2e97fcbab33230fc96fd0d15427a91a1..0255204f603bde62a9f6ee4fddf0e67c9519557b 100644
GIT binary patch
literal 196416
zcmX_n1ymH@`~I+WNOyNhNh94Ur6M3DE!_>flt?2W-AJQ^gmi;6NOwusB3;XWKHqcx
zzjIh-XZFt7J8wMi^FH@(q_(E=Gb~Ch005q;swn6J00aiU%rMZvE0mFc@&N$d#_x^3
zhk}*6h1*9LkB`ny0N|5VZ#e2q-H0o_1ntX{yr{)E5*<^=llohTsXOg>M)*xRxNu`+
zLOqg5Z87$7uA}GWYR#6xq!0V7{d{LUU4cr}w+r|4okl#mCx=zzAc@sH*2H-uLEfBf
zYC6ZVVGH-kEJ!iMV~wZroR;L6o^Sm9gsjy5bZrhIt_0p
zRA}^MkJl^ZuC>`FLvV=?u)blYkG@RPH<67br6P2D7ycnFg-@A_Uviq)>mznFvv+6k
zV)G{ow=!ODn!c*T`!3?cif1hH!amPlS4LY>_EU4x_JhYr1ZmHv(M)=
zUgEkL+Od0;_^+Kmg_ii)9_Mk}Itwi-`Gm&FiogXEHCbi@;k1L_UhWpHlZ
zLriaJN5@qRZU`k@*P$1*+$~g~ncphi$4y?hrd?yrHgAV916wvl2tY9YY@7N~}tC
zMXfwleVURAF}nD*IOMQF_V*l7vtBeq(i+pgYOczc?aWvi;Zm-Ng}Js8zHe%z`>oxx
zZ-P0T_zdlyd4m3TX8$6KxiUi$d=Mjk6nR+OF3`o(H*<`(oVxc@aVg~^`Lhh&e+4wX
z4nLX}yFAIcPB>j-=TewXNI$+5CVDM{Jw-Fo?;eIZr4qPe7W5`^vzUNOnd^0@U`>~m
zm$o`@Mj8ayj+}$J7>1#=!4$&L+FEpe9scv2P;R9naAP^zZ@Jqo;!@>2=Zj8szFUrx
zN`&_{!AT59zF#DV{R?6Y$!G~A+>A0dXN<-r6FsaFhkYUl&R;UMx~VOuKJLDge0~g*
zO|+SY8Y*?XFO08BPn0Zm(tU%f#@`vH%=%)Yd37%Yb8A^oO=JH&d~;B!vWPJY&Rs4EnEuH^lvrec&
zt5d$zfC}+X;?M%&l52d&whXyd7@Hsj2A7v)x>M(KU_W6&&k)=O0~n=WvwZ-T`})B(G{(B{@@>2^6uXbGN=c1r*SYoC1x}dvVJw&zn7-xKK@tHlb9-W
zi^F0aC4ZhyjI;V=nw9qOuU%s0xzuZ;!U6<1dVK(u#2Q;7@G8J_y=C_y92BwzoJOcQzg1&Lz=w$)x(TO`ArApnPqzmFT6cP%{>qXSI_&r-2XmN;
zq$YelSXp7|kK3Fuk{dCkb6DkmeEku5VfIlKOT?6qrE)H}F>b0gLT^ysB&y*jI<8=n
zuq^BP4zlHPcXt;2Hrkgmu<6db-KHYR#^&dDg0WGmPsz`$HnQ_g{hcqWu77ha3I3UG
zouxO-{n8#soabA`7uMJMYwvpY_=#M=PFX6ccLz_KE@
z9;pLFgW`ObP0k&3qobzW{M=sye$EFr`8BaUg>F)|6uYrg)5RuEF*h~YYL34v*^SSU
zPR%>C+7;_%)TTf68vRt{Un5t=*T|TH7!<6+NW+mM^6C3wQ$2l!l-5BiXte04AQ0pp
zh4`3#z-_!nm*z>s`kuC2QZ8bRy+u`*ev%{~E!g&jR32A&qPbN=d^wb%b
z7eVm_=u>T#?B(_(IDV(qG1X<~$0TR{oF=Zi`%zU}94KE6U>*8VJa`1g*yVg_JS75m
zll2ZS{^2;Jx1MynK{~vW92}>*Vm^5tv@lxJ=;j}>@(I!kJbb2}$Or(>{;+?-a<)!M
z&Sxp63U#zL*PxkxVzL5nlbjpBp=c#}p>P!gsJut*`96&D_W^^0yMgw)ra8^rI(%W_
zz`?WOWs8;=mO8It6((!mOQmhBz=n~3*AsW@agwv}u+ZebDr32Z<=0LeUbXcFOLEIi
zLHi_KZHzY_LibXZU!o5r#!P4uBJ45~>cVmG+J)t4voD+yUW&%=)ppmdhyDC<9^iSO
zeyrf1O;}CU=_2Ss$R4s?hAQ?c*_e|1G#Zvg*26-Z@P$F18VhF+(yxmbsOu2ibh5ej
z1sgX=>blZ&{9XLR-IvtkKMb%B67#7==&l{KX%Zu>#l%&ezA4*{T=(5alj-+yJze(S
zl+{|OzL;h4`gvgyFKzo59+5Ln^^qK6?yce>ebXInZ_m7;fAGS*3kuvpH`W5
zOAys1$NPhwFhR*g){p8(34+YAL=d#2UNZ;2h8k|V#7cYXoHaUuaa+L@hryHpm{b*+
zzQDOH?Lvyp>Rmv5#Pr-8Q{ny$cjNLwcARf+;FW5`OKDWVWqEq+>7oh~n4X>e!;!83
zHZV{!Jg#{Jkmj166R`}+rLan#Oy0X{*uL1^RxUoy5LmbkkCYfJa(AHQ
z7nw*dYit~TNpen1GWx7HtK;zR8;$saCT#PQj{B2wt-*&W)GUfu8afl#JVX7|Ev)>)
z$e|QP>O4zK!~o@k>3HkFn9iuz4KgbRjH1Y-t<8A$=*WSXbSx6n#&58ex_*>}p!xVv
z+~WB7xR#Qky77=XYhmH$X3CyOYEI!I^;K12D=H>)$)ejsK+DMz_ZNMV#gdqG8(+Qf^SssTly6R@O`{ERUnjm
z?@K)wg9gCaT^NORE?rg51tB_q-4<~?A=D${Kc0JA^G@z`v^h34KwoY+G_ZdJEKf}3
z10`K&W_8~=a*zIkm3rD<*{u9=2!yza3r;w`a4V7YPg
z+#xuRRv!FDw!VI~cX@iews3J_=RV)v*~zPQdj=z$atmrB4bRC3T)JD&D({y{kDJV)
zqh^2q=tMuiDxri3&G8C9)DQR?Ud(&z^iy}?VB|<*B?89p+H{vz{rBjzoiHrp$5F{!
z9moCrB2>;YE4Y8{&(J$9{mcPbQwlC!A<1()M)3^Fk2Y6?1rgHpZMZ87>j)$YbQdKK
zHa0d#_&~2K_1(R{1?_N7ZtPrij&k!VDLUMy^7!%1^49el^oiY@cV=juw-XspB4J`a
zQij@J({;NKzl~dFSKz`SM26`BNoF)JK^G%t>ux`vH-|~oFUButVGk|n;_<1NRW@d^
zaqq`ZI==oy0t8@Yd^z+nymKGcUZkFCS3R}7EMaxN)?g#qRvXjv=bgO1pGNN=3&J0*
zixO7&qF4yvO=T%k1|>&z!1Rp=Y;gesl}YsWYr7w4w>IjW=Ey#wo6_Id1TF58MZ86;
z75-_^W!Yli<0;L}-JOuKk^KUPn|(BRy%fbTN3~q7>DNE=EYVdQpt@}LB^A9k9(3tB
zmEio+?B-%FCk8b#VhCrc#*&(7L2spV0SIQJeM?<59^}SNNx8IM&VgPdE)!@XacSG@
z_;St+yt(7$4UbfdTkMtRO9r@+E0BKPcrk-7HAB~3OGB8lt=3u5S<4cz$N&yqL(E*C
z(d9nAJGSqOqHO(h;cqnc6sa?=&cf&D{)-)dNhTeu$PW>NEE+0EL@nd2sg`wbjL7l0!3Y?
zK)dvHEw3PI4AOI*_z0!T@w*^+NrLZVxuw+nkZxm*GJn(kVg42Ca_bQUm}tN2-q;T?
z*p2Zr{h%~Mh(Hzqf~&Mf__H1s*OhFZb&!`=PHO#DxP88I<*ks;b-x
zQ@MVmEHPaA*W0L2JOJ+bND)#_GoMecwe_gyyD8>fQP?u~_b#Aiz_ZQr8Fl!-p6khSe_EBL)5qWau^#qX
zcwQp_MxFL^-rcCU^k^xM?sRD@p=P13;xoYyHRav6+w
z$$&`A-O*imBfZON0B(f34^AtMrvD2SFik_Q@b+74&k5kZ8~djrg9j);meUho@jd#t
zALM@>+@D|zyTBq+GIRsm)Mv$#ka{4#@iD)l!Am|cuuYJLx45AprQ`0P0{YX(_4e6D
z_1@#ccu)hW3>B;^GK+T$7{fuw*Y0#gP=}=8A;J`+QwuuWF@jzTIBaa7wCj%KCgs>O
zgi6aGNwc=B#AReqzI=<1!M@(uR=e?s1J+?_EFpEZQWV(`*J}t=1N?N61|YsU95Iobh}SuteAB(=(G1%nh-EAz0F#i#r_Noyi5G<V_T>v=dU={;IMw^Du3
zE#z~xZz>M_McT{S6BEE)A8`S+(nJV7IK^NMa6Ui7)!?<{SjA`}Y~)}p^*I9FCnO-&u}-|B!#-K_lsG{6HdhvL#m5{1%Ki_zR{K(4JH?*a$1
zU;+4Oqe`@q9|;+`KYP^UD~-*>LFq3?Sk-1~m<<%SuxM~5tIS^ysq;?JcGNt5cO4g4
zaDhAe&rWrF?xYR)h$D%o{E$n~pXtyr&}5shDPue{plRRa#mK0L#9++4D8>>F$TK-{9P5N?5X9(e#lI-FZKXTlD*e^RU62eh0Z
ze-2S*XJ@g%XY}{lMkQPJ*q!|@>h_Bwxfpl;KdZR`m*#!cei$gQh>jLyJgD~oJ3Gjq
zIF~xOOj^llcrrls#bHLGQ*VwlvHCOw#_lylYKioJ8HQ
zz6uv%R9~Om1hbk8r0zh0FC6mH&1Aw;Cv+~cc|YR+zWC1$xVUkPxiMF?FF$|X%@$z=
z?pO#w=uvFdK6CgYWkkhGP0f2$F&A9Ud0gW;o}=1U+}_6U*SO%}NK#orG*ubVzaX5e
zIMFB)=99lUSXy63a2tM}u#`$gCSyczE|6rSf
zklkP-ZQo1WE=xgalH?+iv(2$c!N7ELc-_rWh+
zqdmMOaz!%8$<=#|{_97CAe6bMdxFSdA_W4k1N{LemVnfHm
z{;SqALO*~17w9tM6C9P#d6ZsH-Fw&$T2VCGgqWY0mYO!PJ!_>=x)8J
zHH$^^#}APYUzMUuA3uZ+dJew4nN+UUe*WQYr^QF`*-!>n3;O!{ww{f$%RYnB+Z~(2
zCU2pw*|u-H9E>=PWxUrudRX%^RASAOqm8+}tS?`;zmpDr2lxM*Iuc8He*TZCa288b
z$>urAm>YURh%O`tpUdRUCpyG>$K=e6aqf==%`DNH`?ZcUXU`|Z=~}P$6d!w$3JaPw
zb!Yk^0Kq~*lVmIGZqv9MV2cy60BH>ZQv`+bd*J=mhs%Q*_-z2ZchB$i%tsLJf7*6U
zh)brW^w9*#aas54e|^%nZEt#SXt;BCp8M3gzeV?S<1YO$iRZjnd#NrOaAT`>4*bVS
zJb+7Im|ve81j%f2v&e8#g>x1u2!xZt#d>=V;ApWP+oXz&%-DmV?Cq20;o;%n8sbXi
zz(v$$H`{x&yyAx(X9XkG=e_dSvOatVqZ{EMZ{|Jm9KMZO)-7W7r57byVa)?7gs=t6s
zpI7ILWd81nQnorzkgX^Xh^Lc|6F;5SmT$@XZrqYm8_>Bm5N~m|*~gJdqz$WTuVr9G
z>BmNL7Kzc4<0xC4;b7VQ(*i4vl%a=VJWwom4E~;<7h4t6k|?i~J6q8DLGw22EZGm|
zbEla^4cfT4$FWIWRvX^?8af&NHq6WQfw4koh9nJ^>R2*zlsNH*(ozfq1B1Otq#RJ>
zX#Glm50M={v*0HU1+cg>utincr^T4`T99wkO15uaG_|xSh5Maj?{?XF+xmv?Pb{DW
z7oJ>|xjfCEPwheoUBdFd`QQd!cb|*;z&o80|57iy>0YBi_T4-DH*Pbf5Z-g0TbJgE
zl6gp$V2~dGJXng$9sV7+qoqm{XWg9+f$MKnPa*t$epO&W6)ifUOQPK&KcZObqJK9{
z-T7aqBP25c=ke{-oK{IcUw=?4
zP-{0^Whwp@2uUKbKXz+=?9myBfupnEhMXTA@Vf?b_+q~BY>-)Z@BlalT=~*R<~yFM
zN~@~0TFz~VLuJ&?vQ{=)KhA{Plk2}au+aKntmLhi_R6o_YK~M_xr)<7p$6CVf3uT%
zZ0_K~aX7j!!FxIwU_d=Yw)i(@tmcP#Agg&gGPBniPZNEa70LMp5(gT=B(JTY0}*m}k#q_ldeX30s}SPL)8ub_%5qDQv(;ML8{j@~l_VC%$)|B*f$N|06i1~(=(>gsA2z@z3-xMX0(@dO-
zp6|dZm-9NF;~9?`MkkCtYIQf~wjQKr4bmDy4=-L|5Tk5_$4fc1%MvT{!jLY7G*v*(
zVf_;37fW(ABdw{-WNUVWWtuylI#dSqRvpZ|L!%lP0pJ3hV6KP<%Nz-LPi;T+VIgaM
z6YVM8J`n2oQG(vG^=7QrLP)$R0dr
zo=;9sqgafYHXC;IhDbLA3d@^SK31-ouC3z7h(XJYP`?TItB$zWtU@cL^Gs?CJAg9e
zj)Mb|i-~+z2!I^n_vM{2iqC+*-a+!vtxYEK9`eN1&)mmKY8iYO^yPZIYItWRFc0Vh
zpAYP_68N(lOA%$8q_|#07mkM~n{T5t;5?F{g
zf%Q!!@%fB)nH;RzPRpf2sX3(%t!}Z4pzyW>e0+Az|KgXxC+Ma5fDIuEg6G-p-?yx%
zOH@&dIh-|cC;QhHmi}lec-B9yf{vYX?LfzULJD~+m0U+u*uaZ{uzj^1OPuvpJmm~nFBh>wZ`V|#U
zSbS2$3s%C95h87V@sXP|eTWu%Ru22W_C};dAxa>|oM-KyO%8*f+0u6&>_#J+#(*qT
zq)jA~@-E)Om|{bmYNH>dixb*qZMm0lD+yt$9WvNO6I5fWMhWil2F!m0T>7bQArYzu
zvR;ZZ(Xh%pk+0llVIcnUqTJP+d*Js|153LP&
z43}5@YqNT3`rF{!!-Hh$kM?w7LD(-N?&)I_g0KFmnm6jZ4`AYHRzH
zj6$&x3Kq6!5G3;ME{#Z0Skx@L#kk&0G)seZb&aS6V^lped+0B!Cph{aU|nhD#t|3Y
z$aFEF{5duzrKBzSD&AY0+
z+gtyH|IHhcAhoMi6>~1q9!GQk+fZMWZD-~s1v~Zd_8}%q3h>ETvefOO2y-c+@G}Y?$lUjb=4TPD{NFn7%2mJ^B2l5t)+4~
z-Va_+1){=U+mw36#Uzp;H;6tW5n&(a^!-@#F$bBq=FV+L%Lba?2Nl(SYdfEr7fi{q
zklvZTLNe>Bs3L4j8gN64FSWSLo6|PcYS($Mp57u#wbD@&CBqN*zAA6_3;)+ug4Dac
zNOUXn*DhZMd-)_&$N2l-f?_5-zU*@w>Q0J+f`X=CaB0LI3at{#KF62Sej_LXNw3BE
z%or85Q_$Fm?Jv?nyPF>QZqbu|RSaD5Fa|ys@HdvzJ*-1ruUB$&r#WdN574D=*1`s?
z={0o<`e@5cuy}@^q3}8V+!G@3h8u-T7hC3Q@uE2^MU1mc{*FyO6iGMgq{n1Vp3ZeY
z;?DRX%qQb9Otyva7!@N*9?^9vb3pDPu9#;^G2yt8d|6{TjaXV@U40%;V$4oYy0UEQ
zx|&hvh-QD}OO)=+xjPQ56`qLnGp1OxUh>^h6$SN^Zdd;_<0XD+
zTZ)i{h?3M?{;9*81eCqzgRfh0?`zCafxI$~NBp!O?&AvoF*t4`8(ME_sw6uMF0lSQ
z*PD)6g!(VJ-KllGaC}cSHLX%8pwF}gb_M;6*nPgQ*Q1fhLce>6!9XDn88%gElN(+OFo%%%<{XIksjWXsn?`Lsuz*JsgV#5Y^M>oMyXlgm(H)V
zHoRvS5_A|hnizLo`Ijr5o^rkZ^XZD^Uwk7}cuLuU^71hE=^zVn5B=*OuLIoNiL|TD
z3;S2nB_(A>i#G;1E$6;nDG{Dr8JGSZ8|~Tt-=f)-eb3#ii}2K(oawcOO+a&Qo1yFd
z>13gD8C_P?3Y-mY3q
zV|W8DYi)RwKTf869wKQh&uQL&eEat8bWKkL9`emWasV&5E~jHx_u-Kh3pfLu!O428
z)O*Kb25)5}PlUs$4wAe#S(Ehl%U6W47Nu_1k>xNLvKYaC65~Xfqx}Zo^>XmL)f1V2
z*J?1U7HqhPat+tcPfs(eCiaez;h}K=6hPa02sVGGDDq6pbstAM8?B2;(~-q%{wFGB
z)66gDrb3G6r_lmWP2~f*^Rg!`*9>=^^4E5Ae@49>W`5{+<}NBoniOFnGAgR3uEc4+
z*m*Z}v^}EyXu5lO;PIEfgC6e|)t4_vJcagle8ATIXQIZ5$4;kpeYcZ01h~8N|M1gr
z0}rLHs;Ee<-Nj~C)ki{}-IUk>cg(!rZs20~>{bGfo-DXK5Onhx^E_Qg>BWDxxceRf
z4M#t{by(gy{LzN}&ZLR5a~}T&yehPFMv;VE+MV0!nq`2Gk~C;Zh$6d=YSqJt5fZy4
z8qKUq3bb+!C+kuId=PpW49wSREC4@)LI@-vS@+nF0~rGu0}Ag#-@rl9)a1FIvz13c
zi;fsqTdox?-&M(MSiOrA*TYrb&2nLV-F<%1c8TV9-7bm+DZy%=H&VjLJh?5wLd+Xc
zV8qO}{s}LX8C{WvHETH*fKDYpyGH^H8h%p>Fa=51Itb4ns~s{FhL-+<4*9}tO9Mdv
zE6~w;U0-+azk$`(c_4)Z!_eG{im=y(FK|7tuNgb?RF6bJH5E^--^B7q_u%x_fwt5Vh207o~@?gi+%vIV(!V5B^Y{H
zF+zH*e=dN*T`4jC9+P2FTCL0=#fqpXxg^;w3_o(~7eU-s2oRF|hmV0-0|S#lE(GYV
z=sI`=`7I0o`epuc@^>zQlU#0ViTr+1K
zEAoU54OH@P-S`))>O7uuJFd9meJbx^@{yT%jQ&6CMDw=ez#v`*!cWZWV9+XdbOX7DSo;|G?}!O@up9R2@Y0-KT4&?*H!v&=+nd6rKIGfE%pA)myPP5QK(<
zAZOR(s-O_^`Y##92f_fp8Ti1mw46%Hf`gYRbsY82g)DiF(L}2S#^Ks@UCz=cAAq_j
zxiC3o_tqi0k8wDPg`Gf-IcHZfXE!h`;e$a+TLJr>e7?3mv7)ReN+?|bJXmzexHBT?
z?!6iY(x7hpvqAN<@8ZJW9!F2zps}@8WgbZGDZDh>Cq;%?gJB4f0}I+rC%#CLr#0XK
z+kFph%y#K1@IvSUFRSbA!4}lu>IHrOl|wqTVL#u$aq_jXjf_>)02FbE`A8!HpJ>Y<
zY6PLG&U{d}^?d9-Kn(x6^z%cbP0ucslK=e+eJ)sy;9uWA3WcoptAV3NaY@Kqw
z``mo&^?D|6Xea!r!SEKu_)9vX93QD1=Z(@OBjfL+L^K6kbB4fvw98Qe#}O35B$=+b
zt(#D!{OT6#Ri)#W!om;_>E_yD~Xkn#Op!Te3jL>oU;JNU}fz77K
zP87f;vqv$wPXC5_z_oS3p&?D9*ufyhomsVZxYl8^iw;=^0wn7)Vn9HU(63CzmwRi&
z$BYq@x_c{Ykg~$W#MEO_<;_fu8=d^8?ASZeT=HUSO?RxT%OnjsIQ}BG7&j^+Hz0V`
z-Tsb&k4CNJexNsf>-uL#8Sc8`=f9(lzXB|#h5g4AKkZV1wtV=h*fD>LA^9hOS`k(A
zP4ZU&a9VkzOk*&M8BCAeQ!9r{4{>S>l+^#_LIAEqB$u7!j*G;Y@j?6)!~1kBkZd*c
zO+YZ6uRl-quyw(&bP1!eaH72*5-cgz50&)NpgVYGZWl|U+p`WA*3vm6q>
z*Rjny5_l!z;&s`Xo*moJU?IA6u_2HCE*E+_bmP51JlKyZ49FYlk3`@C^448gEaj-c
zysn8&L?VP_exc#L-u0Jk#}=FVjTbBYq;L0D`W3Kv5_OdCrCO0tFIN4}_jLwh;WotL
zvy<(3pp&A+wf+F0?oGyl`^Z1Y*_!?a?mkp|lwh?0k;zNW05HPv@#PfcK5KAni^d7a
z-b#IL?oC(WxOAsh)?iHjCP&)frtVK
zo8eMR{Ue#)*R97M$6ubWX#)T4uMi>pZJniq)p?t!Wl%QLDjHoj7;lsx_Kpu_ot&h0
zQbwkhWmE8e3knLtva%#%ZXP*_X~BfR1U^HgSyOt@0UJO6Iyro=7>|G^#ty{8#TVgmM0PQyoZDt)d*612QJ1qj3X>=Zx9enE@3`J#uc!U4=S+o=Z1
zw|ONk>Y5A?B-t+Lnxt~0zVZbY8)PpbI9@5-@G^d&V(68g1rjaHHQv~F+fG94lLZzt
zCT!pBiRafk#1FnMO96akjwDl@RKgfUGTRl^)E?BN4@<*jfQ+9r#BD*eqhuXwxiW#z
ziOi@hs)QUxD6mL;^AN}iimzPmWGVX0^3^zu`lvEzYjfDk6
zrl0|+Vm-9nTKL*Voey8=15VpY#6DGW`UoS_w``;?Mo;d)4mycRDs#)8JvHb^1B
z1u^>Pf)jswRtUZ2nZ$V6k6f?b0{R%7*I|1g%l)I$e(80d6r>UpDtOD~J
zWTg3H&0qKa9~#9$=Y6vAArE|P`>pf74ZNmPO6o)Ij+&X7SyzB>k><it1ynyS
zi0@Eb_vu!;-USkUUEMF^Dwm7=4oJo2%^SkT8m8E}bFWcg$w=!HWw)&d@NFc04ElF+
zqBwAMFznLkU@SmTokrv)ERE|uIzrQged|V-I+%hey%?0T}}i#^(gRG=kH7P3GedPOQ)9z
zFWqy#iBZoKK)bsWFssoQ?6mk`jOKHfi#kkXxv>U%-Byy4Dn_JoO@Ro~$pMoFU|hpl
z>`|;b#Q(W>CDcqJ#cpxgZ7>N2nGk=)Jwe1neT
z6SsP>v;{VK$69=1qOalaw80hWytkC^xD2B7HO&yp-}SNbZjZgqUSt+>LXW-Jz!>3r
zktNZx64{P0NlxLJh*C>S;V}*#8%rW82ijW;iskVFQ{PSZ9veAPU(e0xZEo+Eo{m1>TXmPqf6rZvJ`0SH{RV$=ZxvsC5)92s=xF7yc&K!f!sIbn|i8hzP^HPsbz>K|+$xk}xe8g$Hl
zHeZU`QHmf7#TQP7r){y7lbQHsJRCMW6;#;6y1R8(zHIqa)d+m&Hfz>u_^4?rfu3-z
zrDV}&GvDO&7*Vx3_~efRX1V=2`3x92uuVkG*>`2Ce3<2t@0_v!+{ivM2I@z!fm0Es
zPEpjsk;T0K$C?yLgn|Te9J?-M{X}L>V#RXdXlt=RQdxY|xyX@6s_R(bs?9^`8#UO$QOnJh(l9SXM4+
zqSN4@G!A8^Zlk?$o4VOxLJK)cxLnAF>kC
zA%ojL-Mz}N`uUOj{ROx=q&(oKgYe&-9VQUvVVhWbZ{9$(ySoD0B;mK8blNt%OV9Vt
zkuPUD&n%^65DOvDj>fi2V&bfI2Q9V6)qPa&<9|sR5t#>`V@M--X6EZ+kGjK3j}15_7R
zedbdlGYZ%buwH}$y@NYXO-9^x`T2=_))Air?n*zqT0TPmc>)O
zMm4fpBBWqp$QE~228D=E5fL?3!{d{F7v8@dw~Rd|rm{)#jl93>#@dh8=U>_u&c+p)
z8$2_N7cQ^__lanF+G(ea_{QS@Hj)V(PPP0-M|ZfJKW;-!29yjvx{Fc^5@V@qcQ+TX
zM}f@;OWYP18SB2ZA@p#G@nJjB`7%=Xw7ff0>H!_KvflGn5N;@7VDHB{%#Tel9ESfK
z5P;DqVifZr<|)&-)Ot45o$n#v)&g*8fr_dp#u00*Q!_RVQX*2Q!z(qWxaAy$+{>ZJ->FbMaI-_koj@*O#JBmx7#P%E+}yYW0rPRp%N72
znFqHZxm+g0Mq5zin!II04t2VwSKIkpxP7DgclYHw?Hd`bQ^69GXp6LrCNW}Cm5LqiBH2S;}yUQG|I5E=@5pvbqt5-ib>=z
zB@NHW1yjn{xH!5y7M=$)=a4Z9AKd
z#oMp9m4#$19^vE)H7^DcQWqWak4#sA
z8-qW5Sl8b$^{TwI-AaR_kK}!o*%{3oc!r0E9V`QrsVQes<6s-+FA;X#nf@xJz)sR*
zowJKsG%bfwgD(e$P%YQ66xiNkgqX2}rCAzW@h61U@?#u6|BV@v;KD;(afp$BE5a;5a&%A~nUz?}5;yqUN(`NK*G_$p43uND$U1*+x;sVwKDlr+p_Hw(~
z1SoBxybu0Ixoz-vj$duJ7FkpRu-uIesuXp#aXG{@oib`FzAD`6PJN-wN*gnJaZB+)
zgE^;rB}#BZWsitl%{zCeS$u~U3>2)#)0}#<&7Gf|v3cP?COU&9N-jSS&6lZ}ln+n}
z_iAa;DlDxg4_EBlJ3Q|CycQ42bD+|Xuhch$WI2|j10sn%YEPDUCeKA?mHUH!1$p#L
z6j2|li~$Ga+2lSF*c7-FH=;+{O2GYZtDx0ZzrbBy?hMVf~^1F4j;AK
zA-W833wGq(AqjgCY222m4zX1|ya&XQ1xtQciScvlfx+ZIdF)ZO&4d`^uGCd}_y4E|
zR9TZ$8x|b0K#5L`gID#>XRcxGdvq*dBw06!Yghq4aceCwU)ntA#BsgWexiO~2yTui
znoqve-cBNo7$3JV-6P}M*i1$^OwSzSWB4$^l|$k85pcRpDcSb(BRWQIN81CpC;gwh
zK8mzkB+!`a2mP0+G@VDS7&n%?NF{N|=VZ?{m!Drd_JXf4JA9;LWg;wrYHS-WazDha
zv&P}W#OU}=tdKOabRo9r!Yxs_3@PH+Q+fB|1;#XVrh
zK_Kns=03SJ7n+}sgoE2$uQbuXl{tIRcY4i4{w72AX9^!s$5$gIov;m1G9+|muP#{J
z1^@-+J_ee3ZDiPWWGU&+(|rElZm?^sJ9;*ju&~gZsb2@
zT+jV*s@0+(0d{`#6Lc})tUm+nk#LZIp{RWs=mzVR&F7H_V4oj|kd=}75DfV`$X3Lt
z`+IVtGfT3RXFXg0_3Kb?d#|z)Ass*
z-4P~%Hn{zEOO%oQ%vfN+HF?(;{I!K{Axka4QznI&RD1AkmFgh?noeV{9Hr|)`Em3r@S0_P%Z=t&_7ep6UI`-4T;l0yb~aBiDtQaupIOLAr9+lR=;@Y
zBfx0h3AQP4`?o6nKuXGO7)HdV+56D!Q1(Z8%;&63UyrCU389f=dWtBrLntsz9Mi`5
zYn0j}J_FIllB122!1h}YQ
zo-2-xQ!71EC+YCxr(x9#HEs}*nM8|-CmT)VbkTAdH(`yU;ApkH???};Ww^nFdb
zM|fx&o2mO|Q^2TTGT=5BHC=Q7v-358_ySu~W*|Y{LrEA&{|jU8!ZnjZzXdw0P^-la
zuH!G^?!R)r3B?M@jBddUmxD7#0j~{X8TUJY-Aupms6ux1TLtVg-&AJMX4o^u?2;t2
z4r{Lawn$&!iv$#pKH~Th@7ABbVT*zH(XwGd{XSc0<{%b}o&Y-(P05E?5xUF)axCk6
z^mxsYSHeLZHS2gPj3`-}7~hiRQmhJoOvt{$_)9z$zombp_Y9SYty6%wP
z&3baTS=?&|9l(qs>^Jqmf=^DPYNF*QLxIf7?qDG30&X)|v#Y+??py!l{7*XUg~utG
zv?@@F+)&dujn%l$>E)`Xt(rwC7i|g;cJG
zc)62qXD4?N&g2!4K@&U2UiJ@Xq}-
zYCT0M{j=Idb+EP6BslQX#6d>Ja6N6v9b>{nh{VWqV{+7BaASD&z+xkHwaahr_ozz*
zEJO+Qejjc_<|G@4R*bX3)q_3G=ZervtdXZZ(I{!V@C65@Mi53)(D1*Cq!xhhXntesvxMul>#<
znTtL54NsmSjxLHBW^#ax^jBuU2Te_-5v!9{%@&g#f!0UxmnAYI|KhxJf$x->dX)*m!D&HOG5@I{
z;v@^!TUa`j_0Ejvl-UwqkG7JFQPQS
zCy`Et`USoq=i9d(4pw+qqUpPR;wi2G(G=ZDw5WsqsoyK){3D4rI!`n%g9xN}XQ
zbt3CLa>aXhY)KCfjyPd)@NEDkud~#v)cX3s^blE=-uE?@WwTeP+SKi}wJf5G%V9!7
zsrI+f$~|OY)pxf_hotKSf%KQ`?+05K?dOC@$#93;0<4QNRC=!#BCyWHREp9u0efYd
zX7izmO+|1VJo_eSzBa}!sv>!<&4<12xA02CNGDmDh5_`SbJ70|IdnrOGRE^+;?~Og
zk@b#J;GrU-)hGV4JnP+J&2b8wrdAze+6rICQy1^qvvV3-r#pd^s$T?FB<}z9TfuQW
zE(<7n6*O7_a47l3rP&IJch|>T6(2umtEsZz8#>)U7!$(rypx#v&VCoiy?#>=C5zG9!!9jkOj)^zq(FJk38uAh#7hmPq
zv;OTr9{_D}Vg@B@e$ulzcl%A155@H&O?KzmqmwbB*KlMCFyKn_vg_*d%=C)_vMulU
z`(XCTx^nf7CezINMArsh_Q-T)wBC_$Q(vNLx?3t&sRyf0+YB$
z%|0W1*_D9nun?KuUmYWoi#=tGvGle8Denjw1r1Q?r&m=vF&L9V6WNd>ADjoQegYk#
zXBoCUINAqfzjpmZ@BiGzcN>W&Vw%lzfXP_A#j_X4d(QCV15>YxDF8Lo6U+RKuTg$a
zY@CFK0Q=kGL0bEAIa|LVE^~6AnHW9Mv840!*;*IvG>=ssLa~Q(ysf~b?#TB5R>HiL&2kZb
z(7H_RPwOx*jf`OFG~XIDQuQZTi%DoHon2TwG}VI)mLE6pyx{)sCtHO=D-NVkDC;az
z%xn(~-%~pk4>__l9?o-R6cXjvp>YtO7vGi+@cw!6w6F{Z>&vq#xD6iqye)}yi&t@Z
zCvN$38mz0~WD*+gwEDAr?|TThoJDv#$zS}AwP4*I0a#>SEdlaIH~ktf&iv&AGMpVu
z7Xq1|GFGh${1sphN8{@SELb#bSG8a<>(j|(IBnCcL9noJoP|$^M~RHWHsO?<4o2OO
zT%eMWnQJqkZ~Bv~Z`mR?4ZXWG>{R0V0`6b&yZ(%bKDfx(Ml~6us5MrP=f|-BV($iB
zg`;26Hkil3j(hmw(cVoAheye1he>fu$n~V~vIzgTP^31ef>qafa6>x|7D;|`D4QzT
z^U1+{svzxm%|_6Iso?J(IRpiJpD~bc>ASy~n}4r~WKLxJ00PBg6!&y?*(UN)HSt($
z?_C0A;ov}HQsRi+{<6pk23w!*4vmsN!A*L4ic+4d$-(WRgwaG8kAEKW1uH10QhuKA
zsPnIqgdGr#|tS260FVz%Y(W+=KBTegcQT-+I*b=5!YYl~Gh=H#9N=qD?L)>mIl`
zXOU5PNF+;2PB@qUcv6vTSa|O}Q02i(aM{gCH1%u7cgW
zhwobAFocD@sDUXprkG;U>`$UJdAI5nuOB@%2<$d^4L?{FH9q_=7a;cB?^6e?j8csy
zlG1r)Cxf0{uD@9d!K{79))Vdv!mLUz(m$*_W)T
zog8d-&_oCQH3R>Mz2aC7S~&cR_LS9Z1>277QZ=SDp4thM2zrRROgJ+iOv|F+=cw`h#?
zOVpk7?f#4!JxoN5B6K-yEvVphEc
z#jp&S!`wA)FEtTe&wj$ca*S?7i
zoD}Wg#8&Lx!t3N(Pv~tkm{{X{^eUS&t~{PUY5wmR=H+9L_v0K%r4liPU}(_k)OU}WKKIG2#|;RSo&lHS$@EBimUcYk
zQ+5G@!+G#P7$l^%=`eK8Ojy)d2{617I6skFB_Afws3M@!--Wj=}F*M{9l#D*W}z}tM%E%$BDu%i?P
zj->`I5xee}>!s*m85TEMW)c}a+xOZx`R6NzeK_)NaIdI`a~3%xRDfpvACC{Mp22iLeZvs`%52Da|Yi2LLq
zoP!r6d@oxFh^kX?;c}p
zee3t{v=|t-U~+P>5L
zgbi?My!biS_>*3Wir1PXy^n-H+c(|7fU0@WYt_Ug1@#+2AdZ1ih~Yx9;lx#zlwG_*
z8bEeWny3KC&(f8~4EP6&156nMBdNy{+{qN*E}NqhwS#LDvt?i2)LNhLW*=#0TT|20
zIooD(Cv&Icl@=vobXwONqs7@4Ak!|nL?PGn
zh9H+9ONM7tQg9JR#ticO}90WglRj)^Zl&WJ%J~`ERVcA~lWL)Nd@|70l
zQB5q8TPq$nkP$OV0jCUEh{c5F)$=wBze;SWdBcKF70C%tHpKsp;WgKK+a~{jhymDO
zgk|aCRZ0qOn1YuSV{#gw?28vvz>*6AP4V~d6O3V9B<;+kZP_rJKb(i+RKQM(X?)oE
zIXQ@?3zWGt)6#)GDTZR&WJM>&j7urQET@yp%jdr^JbyGGB(|lbscE9OOD%)PSNUM5
z(F2|Mk9Xk|9xK6Fz-~33{x;1!Ib?Rt5Ci;@YKM3MWKLrc}Kp10Eq6rQYN~i
zl3^1{bC3KsGtgin4;*G0K!U_(;Olx4PG(aXRX>&;c;y==`gnS^ACZAL9Jg{mP@~m
zBhFT*)!4ihKWW2D)>(Eod0%ROA;Z;h_cIsaCH+sgk}x9Sgnv~Exr@C$KX}{06z4|*
zlc&5qxvyl-QU
zhYeRE^lqp=pg6|z0CwanhA34BC^Cs36pv$u!0HBPkFN@
zpAdwx(h(JsV>pSnFY{w#U+X-7E@jQjWIr^}d3*yD%%qiILlq{@W1LoVi*JpdxpB$m
zFcC3$o4OH06xOkvS}eFr3@U^k;*{6d<7wK&ZY*J8Kpe-3YOa;*Y1^&r@Nwdwzh$hD
zl6K7cz5i>ZRJyA9hSAlRHDCsqv97j@|ER%!sL;v8Pq`WS?&Q>ae&)CE!VdA#gx6DD
zbKte7GIN+@8^N!bN<8`=?CTicoba>1oAKO*x2oC!;$kI
ztH(|PaxFId-7iM)HzE
zqpsx0^m|tgT=xrNvx}3yu4|Bao5!thQdELYu&Ok_n?;OAiUI6tak5!pEF#0jY0lr<
z;@u=)cbeEQyahUH`sxQR#Y(@`a>7<-woh)SzB7uanS>^(_XXs^at$sdZ*m^+9Oy?X
z?s*iR&t*4+82cyw&gRI~3-kZTa?rT=>w}C)YP~?x7M4oRX~UT3CD>yN_%Qy~oDvG*
zd>^cxCZ!l{^6}e<$fQUgr~_EA)rj@B?Si|HbZ%#-j@o3upG-uK5lr9vX*dK76PfYY
zV#aH?yybcGBXFxU?Rv-N1+++BrcE+zHA=R%BF}48IN3!=jqP@MMPuetXa1%eY!`vxXz3pij?apqm!TSKk^oECKewAB#4G5WE5DgFiG;`mMz)+ot
zw(CQVo8&o=hjSp(B35$3`U}wpT@<$#SQCl5vvdok_>NalRZ5@f4$K3{_y=v;sw&RbxNi$23CJ3(PtTB+dXY<
z!3Xxp%_F5+SGNmdkST%5+q~xbkC-{*Hti<4kW;i-YW#k=X!G%urQi!-SH20zjT8;C
zlMN$ABEP3_ieHOKiy`^MCm`M7
zDHsmDhg>GUg7V(qW6t@{!q`<4#nir02E^z-
z1hPZo`3r>hE^fqQS5Z_^U418#%3OqMi9#gzK3w}sFM?x}sK0`TIVLN5q<|&*&+QYV
zhXIf-2xhzpb^J4ijLJ5M(D!e*wt7Jo=w~)Ommed*aOXOe5OkbBf`|YmC8cc7trm3k
zT{gjr?*eJM8kUz-q!bv&GV{S<7#OU$QOuTBR&S8qbDiJ6+esdqE)Xe@ukl(Vu^Rx6w$Xx7d`Mnp91_#p@yT3=IOg>9Kr$>GpaSt@f9jOnq
z`EZ(J?3X2FktHp~|1*ATY4~Vai|@r=jweZAc!$`8uDb(|&))|71GTz!J)Zl^qt<^q
z{-vPp6dWIKw!vt_y-oV)k)Rv16Lld;v)8h0Hqgh%GFesQRdfX|;1
z53G%RnW~(vr&O??q$ANu-}224Q){sz#M;pA#KUU%69iO(|+0sX-{KWus)o$K|&D
z3RE+G^rFxzU$&EaH3U^3;3-SD*a8Tk+d;Hv4;9{*THR%wX4i&xYdD)AN-~>
zDNexhqkprzfHe~T-Sfe_m~W`7eV$h&v;c3@p>o~L!krc1%m~|FD9H0e86wtbw4|#;
zAxo3{-1!qVRIOyZReE;9)Xb9ak1^ftsy(&C>&Xvg%?q6$if5Gdd+tp|hh+lA6RDka-$9iK>3b2_CKByeXXwFO7Jti+4je7I
zOxk2XqAbjWL~^b6H{I22_akxxwi{LPmT3p;cM_lR13sG5C?XK8eWKrMYs<>YCao*$
z=bb$7VI%o|U(6lES-t$wy{aSjS@Uaa>*8w0ZQkJOk(i$wPNPBUJHSQri{w=mYI1nn
zWJgg0EA5Z$Y`2kOo||igs;X>Tfg5z<;QI~c`YLaPI)#h=Jcq#9q@A1jfizx;$fUDW
zL@Zw0;-3aBepXGia~Cc;{~A`ds7m>iAszqniu%jhjYC4Ing1UXPtRHyN#dr^UP6uB
zkn$!3eV%~xkpq2ble)H_kkDXB*9?Q9w*pz~^}3vnGa2=chl1nEpZ<;snr}rS_vqQE
z`B_<$=y0I~$!?S?gq`B=uEK|O(+St6)^>mlR|D3FDLK4sNKhF)n)D`Tv
z6~g}gWTDBC)qTip+WxsY58BNg}l?wx7A*&iw%)?x+%KDnuQgp9Zfb#b8hb&Cr
zamlQSYGTT&s;c|}s!;RH7M{Q>v9zi%uI4Fu2y6r1fKK@f&A-9s
zWE>Uc?%a}ATkt{boyyLs7$Ncfv4aB(Ht#=JWL``7;*%D@A{89oW@Z*+j_G{)YS#TD
zT}CB-nnqT)B5b?VbVPF}*`1(&hnyB~l_PFrZH?clHUok@KRv~4ssS4lL4AcTkGih0
zL(7vMJe7FF>SvSWqP7d!E{AkvX(v?JoX2{88Y{$?g)#bu{O;)?o7arg#8-qSsqN?`8H_zLU=Oeb
z;=x>)>0?{lJR6o}Zp0P|FHVB=3y*6iUO^f{V5Gq8a?uUd#y6j8-IgdW_c~fBZ)`GI
zkHEbKBitB>*V9#HPXYDCZv1O1e6RLBcudhOU;I3{F1(iC>q7zkvI71;IHAg0FPJTx8;oSt6PO
zL<<8o18$FJ_iY^=yDA5H&wNne20bQY+2VFua{u5*Tv65Z&=#|Jj_OxDr~RS!2EgU$
z&|PQOMeRpwREi{`=Xjjq=rDTXPXCqLbfK#VN2_O|+CwhH)lxs78WqO&nRi**m(7kg
zGmU)+ISOS#6d;6p^(;q2&Wz;4v*42J47S4l
z;YN4<`z$Yy(?gJ3V_vVhpE$j~Uu#@jh8-OCTh(MVU(=rSlADWbdE%X?XNQAG)IM1P
z&b;C-$KuXP(`%=cfZD*~K9s#0d$#3TqI5-U`){U!
z;NPnA!XFI?)WT>s{#!Cfp9>feFs*+ZeS+0Q+Uj_K#<)XGuGXEU`qZ7D4v?%F{0xG(
z^ql%7>}fIa(%x1q(~3}$^n~$w`*GqXVMMYXaU3f1^%Dki>z7*Y>+L_OHjDvVpM8F-
zt*}&9WShQt-QZ_5&4&5lorGH1WH2Tg7X>o+r}jNwE^7@W`D-o>Zo9TGyY}ECplEXl
z6XMI02JWY}M3O8}goV1U7%ocdox`T@(~#Upa$M|C{oAL)IHmwfM%9ju_Y*j0>ge$o*A?nV;4r$_i7Ppk-_SXEdhL
z>Yd&n>(Brg43~A>?_$22ikfvgX(`hCTvEk_QyA0@o!P55LttoH(Rb`xy#1OoYU1<`>!@3=MWg@{?UYF*w*@
zI&@DnxXm#GvjoF`+FcqBh;ika_<;o4*!=n7GBW
zAd8ceb3kUkg*H0FAT%|VJfBXit&I0uey%>tGO^6u5^+3k016uJ{!_L=#oVVuRTh`+
zP;}?`P7nu<;!;m7*t&>=la04dAp8b{EBv=dg2`=3rcbt&TCJF62(W@txb(f1CsD;$
z8^(mytxGM^sxiQ?*(?=YXo03PD+TkK>516^25e#tsPmFBlSCdc_v?FNMzwcI5c3bC
ztH6iY(d4>%Fs-aK&>o!C99B&Fa%+2gxyHuIiuvF%H{*Q)d}1drVtW&*+hyVazR9u=
zj`sVC{>x%j)#tg{{H&$o0ZMrSOO4}Z{A{;LXj0X($&NMk=%go`T9F*L#^;%>Be
zIg>?Ou4;2MhH11b{>@9kStt^_(`e-LZe{Sy|@GOWqy0-H@3T
zUJw>2+>GY_Xd1ns_xs%ITWYEM_pgLA-G~X#F}0JZUsJAEVQ?oCkI7+*Ey6I$Bhc_4HTjQqv{)=paoAC`zGK33r{7W{V0DWACuNvsi?adZig=
zDfnR8dcUu3^C^P;V|*f!CZJk@H^G#V&(Y6so~owufd$E$RFQCsDwG=4#)5c4UkdlC
z$+e<`QLZbny3Ch9c&z#QPqeuIAr7D%$JhmGdU>@CH&yT2yYFlCM2sR~0vV9cr5}Vd
zqSC#<_7nV{Ml1!*!N&n&5dvZH`FGRHrq5q=LB5bw;k9MbEMYx~P1kt-faowJ`zh{5
zC%`xLHh>?9M}ATI*wMzwPvXeD8~nTbeu@9xR8r#1?KOJ5;&S+G3-@&I%H0B)iFlpc
z7ZZveW(oJ`;_NC
zwab9t*}I?uot6E#+5^IOR{-Xpiz&x9zc`$oRwN-yF`|>^eIYQcJ?g#m#DQQ=Qb5TE
zem-R}cYJ%XIQZ*YID|Gpwl)eYgncH9>hqvY?d(stO-%}FALRpKVd1xfo`2`?B-E&%
zGBWjw`|g(1^1nZ}9M0?j0~ce@`F9nY^bMbVUINBzWd-Y)60?T!MnGyb?t`m9u0Bg;s83>UZ+f)
zOkQ%0uNE@`>fl>Wjv)n&(VZFja<8rAFf8r&tcW1yj>8{bV9BmDLAl}!vGVI+c9!vE
zu4h5$UgpFTT(7pxk(Zu1O}-EH(=;E-I4sm8Fe6SC{=6nFYRYU6Xa)6e$nniN-FzR8
zL*jwbm!uxLI|Iy?%U5-Uk*)EU7ja4-gSp84Lqr#h!^-RymY1~h2Jjk8iyU=x-Pj_P
zfoRk)Kc^Lf%dtzLX?A8t`_(J35K+YV{d!8GsXSZaJ=265`1tJ`QWB#Yhx?5V(}FKb
zURbPLe6+Q*lXG-@
ztO43=B9zLFfvx%~m5_)?yRA@eT^)^5UP5rIR}qM}W8Fr<{Ka_D#1WZy@^2;n2_Og^
zV-zWWz!RoW3eT-Ww?)F$u_Q)P|I!joh)@8ovusd?H|m~*IF9y-+PI&vDgD`$G=7G_
zfy<>};`l7EMXjx~b2p{FaUikuB>=c|QR??NhAp!{);5u*Z1mV)W>U7(ggyFuEgW8p
zCn6RUFxq_}6{E9y>Q7n*{+;vIg=q;LW5e>#gyr$?>b?G%fGBD{^KFa7t>eiX_{9lF
zzvYwnCI9xB`oEV)`cOQ@JiNX-0SA!t%4p-?_CO3Aet(n~5%M*|hdi+K;a41NP%18k
zLNhWj;LLQZbK_v_deL;)jxVT;jufjqQ3R$zUkHTC7TO;v0{t$R<)f3OAKpE=
zs1S(2+zEX2Rc7kj`%-MH+7!G!rZNvJn>=Gc`)v<>OqL#t9zImo
z1Ld&3PIuUdld52R;SA0-f^P1OFW>ksZq}_uQrZ?RVi`G$CVx|N7ZqlO``}J~ZTxn>
zPmkT9c^*9WLA}%jjq)vp@~)%xyEI{FPK
zPhWc9Z5mUbDn7Hupb1y-zp`=wdmkgEn|FDQjZKL5W+>f&RiE1G>bFbx`3~|?IIpT|
zYUD~@tmeitUy7~Lj7iz~rcPq`{P1j?cj~rzFGY`fHS>h*M#%uv?V>%!u!JZ89?&N~
z*C70T^(4he8?&-L{N@X7_$g&h5pMCcacBB(&C38{z)XZ%pdQQ2LNHyIcudc`@l*fz
z*TlZQ^R9OezSVw$wY~>97eI>l(g*6*6X<1hGBT$z^qFH1<68rGy}ccA%Kte0R%
zrjZrmzd$GJ`<&yOc5y0FgbNN6V=sQnBFDNxZfmDdXF@pjXIm}hx40yU`$DMR1ZTz5
zvq@8oL%A>7Y=_`XC$)qwofxsc{tN=N`k3Jb^yI3neIn{(WUl)R6Miys$)KjBiChjo
z$ZekXajdMuqCuc}goO8H_0_puBk$=LOH$&ryeHm&N@%N$;a&2X^S(Hw@!~*fd&vy~
z5OicOU)qSF=ONJyhLNw{1?Kd4UCSf0CRV!Cr?yA=6pW1Mz}`0tWwTQod+qF_n{R{R
zD%TL8biOBnRa;w|=}j}a;eWXRv{(fCzCcImtGc=-`V3LW$nzod_ZaAeR?xCJEVf8J
zXc_h>P@?;wUWF)|1&H`
z!~_bM>!2m`fA6nv{1&TLgC$_N9Tou&n$4KYr(Fk(20@Ebl52k4ekl~*47C6xszm~QOvwn?g!5IJq=(4FNQ&GLQ68S-T#SO1k_qAMa
z?d%HCC=wt6dZo*MZaV-&eL>go?|H&o$7jB9(85}vyX@&BEkxC
zRdsN8;UppWnhoG$$}#cBhi4_}(8mYBxGyo9NM*PX!{K0nJ>3=;PLN4Ti=}~k+|
zWN&5Q4}D19y9YzT?ja*&03TBfy*SHv<1uYO$rXILg#j=%D1Czoly`2*H`O{X#&VZ6
zk>L>0BcF=Shh#W4;1R|!yoIIsK6p4MOHJN7*a@bz>RUnA;W}Iwk>O;;h(b$&jwQm|
zC3N0N`Td|Jks!q7@a4kemlL>538IUGKPcAOcq?q`92j+zlW0DdcJYlU*QObnEYa14
zm>fRNd7#eRR?=tW@1GYoedkN7VUjeJ
zJ+y}xNAir$A^b$Stp2V_cOiN&pWWv#moKu{x5X^iZgeRq8^a;kBiWguq=oQ|#q#y`
z8k};zNDS9P%|FrFvd&swW
zYsWvvWSDRQWI~mq+}~jv?zBRH{2z~({<>uspy|Lh;MC0#-!)XG%{xA4n1!#91U$R$
zhQ4RWR?+lX?rj9o-O}$3TgNjG)ihHt@!A+(Idl-(m*??E)C75nX)7a82kXVaAqqLA
zBqubZ+Ze=IA~qW|eb2s7RNT4oG~@6x3DE|dkYt;cs&rjf!{*k{?KU&Z0E~||GHe@<
z)p&P$;-rZfGO3dwT+7Mk38SJ3XkDCF#-P9Wp=1(Nokh5YdXEzTh=WbcE3Epbs7+%0
z&9L7~HCEWkvIGWD-y63R_Q*-Kr!JueS_S#6Ph|8yBflKwJ*AO!h&7F60-N54XqA6<
ze59h&M~8I^T|^QaJ-x3@)yinb3%xwsj5F)|K6tobbC7E@*h(^~sY8o?(0#Br{plNx
z_pA=Rx0M~TCP#E%_QdU3Af3ext?d-K4{un|`o)oY3$7x1%kgzL-dD3LKU5;0TmsxX
zW9lt{2dHRaDBtxQ@0OA#OtZ2uFtzFH>x*JjDvNYB{rK^u_}qSCE@=B%^L)=wDBLVN
zUEr{J(OUwCPb(uPwdTPZ6~V7VS*y#xTbtV4)muMnm$NBBUsDMR}*?ELkq
zcoP3rkU-sNp6ok&a+9H~I2#I))_uU`%qpt>qk-?^Acf->s@UcGC!4D=?@ta7u1+kV
zW-pakM=klw@9MV52LV4HP{5O4Tk1%uj40eli-w}IlK<9aTeO7lDh$GNM>BXfLd=@9YPR-7?em~6(hNH!xCxX
zZ9{P+op#S(PCP(&_C#uXQ@2fv6Gz+5XXY6N(5qrXi@vma)w87zCfP+cksi=M_xtx%
zZPrI$-FX(85j}UF75IC#gSCm{fHMy76hnx>|TEA0b#^0rUO*Zj-(`R99_8vZY{qZRhCqIXyRA)paEIxpCqr_2Zz9g{AsgiCEfX*loXjt{o1TDD~G
zyGF@uto357tAOs=Dh~bew_>#BWc&3}90UnjUhdFTDh%d(C^n!^U5*RpXw9Qxj;~b{
zY{gB9IYwo;(!F+DzzXJW?q93V0q)Y1jkT|)C&s>}A$UNaSO3vyue_8$YoHcmBr%HA
z(VC{!m46rsTMEwM=Ub`fGsQ2M$Y@!wk~lhFsbxKn?rgQRj>tmX#$Jb`upsf^iLk(&
zLhn5L^}}G@iJ`@f?Kbt?do~;y@#-R
z8|@t(*MVs4DxEx~UXzTt^XxP$(LieGcD?`Z`8d*n_qED5YF(DEM+$`MGYR!U>k~7I
z_8*^@6~D%?TZV8pmJoohA!d8iK6<#P$(iO)jfPb;Py(2k6}SHH?Zi&<#WMB*b&IH0;ZxvU-tWq4Jh
zazr@scefHbf6V}fNyeHulf1u6gA|9c!kXi_E9K7f;@-GTW$PBof781MHIoGU7=!bM
zuUf6~QB{YHgT1aG_MozlRCq|C^5C7f%1$=^$P3#=`7k2$`G$7_^~A5S{Mz*Nga~3d
zYAPgN-3Oeh->yc`I!P}XM9DBACgKb_V8b+d34v`$|H=zWAb{*B5Y9pb#hU2u$dbt(
zy7syx$E7fY5hGX%$GI*g)7>Q)1_W>WImr+uO87s1!x5vz0ABepiLx`XaC=(oXPNBZ
z+m9H?37~kHq=%~=(}T`menSs#_8*@ce_lL3=D4jL?apDYEGilz<|ofV<;X)D0zO!;
zFjbtsjMvwO7LG>xr{OzQ<8yJnacOLh`}XFI_6BiSK_TVG?T@l?7W>t>PU=-~ety~;
zuUpO5n}}E-@l3A2(GwAoz^d%Bdm@0D_NPJJmBNtMD=*INYkT&X)AZ;x{F5wo1W@G_
z9($O8o8#G6cgbl|&hgc&?MwO!me1=*>b(e6rzw09>az3&6O;&*lSz*hG5crDF!0@B
zL_onGES|5|3}>95U-f~zOO&DpPBn-C#ZBl}9M2)Qh0rI|{PU^wS{k6)yZ=B>@9$Mw
zjpEtY6IuR*d8Ci@JnlOWGubsWx1$+)5wCQ;)0d4)9*qD1enstk&Lvlg_{79e_Y(5d
zFPdTufv<|$uCakgisj?Dh;t4WF03k0*d)&iz3;{c2Nl`-pB1L!DFM9{uDX=?xX~M8
zs_Z65H12ODR2ZMx^X!}6
zTsD#J$cHNC;roW}qWo{v;}{=w<5LAjP{*^Ap;X-Q1I(yhif}X43KTxEP&?J)gU`PF
z^ktKd*qIE4WG{o8GKjg&>ZH{knV#eB}U6Dp)=%z{F&}7hTSJSG?en{~jHfSAzH01%b
zBXLn&qamZEm^gt$@S^;D{Hx*H%jQB^rcf#dtDNPy1yQatm5YrHN4k$7MCszfzyrkr
zHoj=)b3H$-lj6T{cir7qp$B-OHsH|Fd9!3rlkOvtqg$A_$i8s<$@VTVIgmG=>q^@H
z;EhI$8Nt1K_W*){yoTL=;(Fx_&YRIX&v&9Bd=!)A9}9t^Q$k*
z{f12V9YOLK>lX;1;vX_grx_`?baegMYxVcLISr=CLDSy-!7zAYHf&IkyRf3O0TCgm
zv^=)GKrd-R!7KcTkjMv?mWBg-Y>*V&^IPx}`UtAd(82wKJGPeZQ3xHZ@bG
zVe2f`tC-4R3K&Z_X41{8%fpsF-(NePUiUw&1#yq98X=2gEQ`b0MYKpRn9n6>=9ze5
z*I4;<*|_7`OB?P}_LQ+{CTB;7Q1iWN7xDF!+(L6{Jkbyjm`oHaX`CcnilPtK*EYD@VxGT-}E+0F8
zw7UG=ja^;)5HRHR+TH;l&XJ-QU1gV2mQRGGD1j&dbe_tHQ-Uhx44x!n9M1u;dwJwgYV
z=+Efl%^7xc{%@nQ;QNHEUX&PijmT_tt3sIT%_=>-3ia`8J|7TXG6~6|qlazjvzNsB
z51{{0I@P;;#K>Lov8XYk`32m!?y{$xrq3Pa_4O!5v^YZIPT?l&-T`6+{u3Q-QU?Da
zpZ%W;;M-ZJTGt%l^)?x;)Ifyzonn`oZ!37K|9|A)iE}6%SD>Dn+`=tsFbYlbNC{e=t5&Lc9iRHmvE2ot=FyOS6#N5f%}&V20O%?mf{uz49?Nerv*b
zQ8*qxsS&Lr3p^g))LP;zD+ljj*>i)&!O(yruHJXenKleunDQevF3&EcHYlmx5VR!&
zlcw$V>QkG8IEXIA_j6ey@*9JuBuKWyG|{5;o21)o90+*vd#tXxtOu{G@0bEqmz=fV
z{`+5jKDWUT>s+vq@5ED6;G(cMZhun?a(VHXdXo|Z$mHeV@k>R@1-UkpB>4Z;UQs@0
znSZchs;dh{K3TK@-}@rNtX$8wk+ro8`*Wo~fxF3~unMjv^_H)nYN2kjZ~&JE)mbbxk6)kC11zhSz4*U#u1pn}-W`
z=Tjz#HbZ93G;*ReR_jAjwKf@E#){ef^4Wa>pA&g5P|TSpaoErV*k+!uD9d5XQphUFx0op?&TauIv=?^IXu
z&o1KRp0}@fvk=ise94)b)R{#31K=8&-`(2-a9>=i83R(GJuKeNP9s;FX1m5rZ7qYC
z4SkLO8NomFqxhS`^Oq?OXt_;3OmDl-wBS!crTSaTS<-0~`5l^r2p!OwgwdkFpLluIT|TQHi70X^j7#Nd+xUPl;JKL(&-=35@0fg{Km{d4a;WhHCthA(x#MGg%iMLy#?R^~R*L7E*F_USt5-
z7&R={h-C~8^^J=@6injTmpv1?vt4%9=+&VAzDRn6j)+DeW)(mo%KP
zE@gYb
zK4kw^i7-$uH>dP#1(|gtLz?4Mz^6Vn;~H}eoM5Zx&*xn8NjTYPcOIU3r|)|-)ga*D
z+P?)(@bd@cwe(z=*yMy>lM7dZ$##!2J-8SAt$*&B$mK%HEax=-w6^fNZi&qcJu`(m
zhLQpCA9Io^fxPjYYX%*8rs0j*re;6+%F3V`ZlAfk3+EF@e1VJltx*B%v=p`Dvg@I&
zpWxbSqnN72PCXg#eLChMe4Im6Ec=U`Pr5HZnp8Qc=g+nu6?SoU7S^nFz}}Sg=|#w8
zXQF*C^KQGC_>B=P(tC>c5W2TrVD|^TL+b4-43nW;*r48BS6uV&cXxe+fx0Nqy^_ra
z#Cj;wwiLef0bcSVB3gqTC#ace@?)wgfyP@`TnE2@t(x~TnRh!Pl
zSb@XFh#b!Bp$4;Iq%G=0ZorlNFKlnj2y7*vJH;Q5d$X`x1lS+zWFGkO1<7Vp+^H}-
z*?PQC!A)M_qg)9=$;&bwoGbY&^rg@>5&ed;mIpUl$XM0!i+
z&i)a)Gmy>JLvWGwRPfL!p94pQ&1mJuAQBDqgP=ZSsz<`Gj(u0|k
zZNCRek~7?i
zOK~bcp1WQlqy!f$U(eUeX;baeBel`48^FCldWKupNVa>NigHZK%6FIOpFLP?+G*c(
zU6I|?%?m5xPc<1CZb#oV``^O~9&k@F&2V7}9FB}V9wwpTPTA^GzDzW*mVCueVV@5xE-
z&d$z0GtbPgduJXdVd$GT7`ygY--iQW)|gP>x}$L&*Gb`ajY*<3LYHwpgB}CrlzZud
zMj8n_?joTfuOno8b5?tlew1mtAWI+|pHnQ;V=8FDlgQGDt>U{%U+5JxvILud5xuf7
zHyMU3E}*RNy`D1XD}uP+biuNpr1hraUNhlGV_+%(Z571DL}sM{bXkgHKoiT>w^kWc
zHEFxg29p;`@^U5;=%E+wUjLMHDMO?~8E*YI&*@1}6py&kf=m?v1hje8#&xIivX3Dy
z5ujA_f7M0GUrOjCK~&ty-J}F+deC0Vq?8Z)P-dCug@fzep=>W5i@d!ai@-ENq9)9qlT@F@HtN6PFOU3Oiy)940z$s2{)UJ+y%~
zQ;Fi^P0_D)<;^DrPq{?qz?BFqFldaSP*4|yLkU^?l+QFM0LhJ9u-qd}UALNKRZ+ez
zY>yBJVpVbfkoJ#_B^dj2OqlX`4&KcGCM^FG!zM8<90ANngpPD22tm&_O-}oXhIi<5
zwFgG8->h(9hhP0jqaDb7UVcu<&WY=~lhU;Vye9%uE*r;@2U>quek2W0wfH<$Mk9`l
z5IiR?{KZ+*SbN)4#HQ@9?4A&fBIK@9XYSu
z9q83uozP9W*8SN9ZgWW=IHd?J+=ab*Ou{f}d;?rtVZ7=i`;WfJ(8BnjPm)^^IY@Y;F%+
zk<@{&`vQSjE^~n0=;~N&;gwJAdBg}a5E)uf1@vl*Ho&cGi$ol^_z;fnZ49XY%@8B+
zIg*twF+za=`*|`!z;4u(4-vW~V37-EOBAq3KDrA=Z?gJ3(rHx(fH>|0_Wu(Lp!~m~
zN35Trw5Pw(0+m1U1V$^N@R0T}(jhHQuFYd
z2ms@aBwi>7`Z3z;p`0_=9xi}3A3Zo>&t$D9u?vo}pI?PcS_TSgwK)bT9#LbX70m-;
z26J$O-r{1Z&iTn&Kno*c(bVbRJ5$`eR_?E<9|9nvI(0I}{{(
z1_uYKsX~x~K2~XUyVu?22$=$7n7rFGiXN22h%y)3z%TS!n5qt036M$39urHW!vix>
zh|4Tmj3we1DL<0%k#HxjIpC)64EgL1OET;kheAX49)|b0naJ;g6<*9l)xh(U9A~0{
z;R}+o2RvnV%7os!p
zyHd1VQs~l{M=9SIunr~g>wnO_mFpr*RuC|-8Gm=soOt}Ca=O3QZ(MjVL4pGTK(mpz
zFPMiO2{0Pn-K2Liq8H|;dcR^ZiH;*&0SOS6hZ#G8+GU4NkLU!zu6S4rN?S~ia-+d{
zcPhpOXNyH}Za0%0mcEnQIS2^K2XAs47AP41xTnVPmEZL)1yZ{hK*;YR{#>ggO9|+4
zI%s)!!5=@#u(m>6)*;Z++#jo;uix=$~Q|S0Hbt0sVxT)*nWiJ?EKO2=m
zKLwEhF&I>~0QylrQjRdp@SqB=u*N^$_!q~v7?iZkC=iz{5Ks~y=Li06(lzweVWLg$
zkJ22i0vRiW_dc*L6WfU8iuvI2+jsR{wWK@+A4Mia?+wZ4HpS?h|6BnDx452eHLDAt
z)u~SMD&l`>X_SHT$JCB#B&`#mRX*-zY#hE{|0n^2)PrU&;$3o-h4(YWM!Ir@s3X
zELdaO|Hhy@k1xy&AG^+9obJ0}2v&!kpkC=TT@AsHL&r@pg8)Hcyg!HwrAh6tQLBcP9vt=@kxa
zzND19eKdO^2zdFWS6DW_e!XC2llz(J?7C#iF0uH->g_@y^Sp7zoOGF3bT|BJpayc&
zF!BxW@$yS?WC{x2XC83$K$A{n$75t0kggN?cNPvrC%>m__=s3Q#OZfv-L(O;yL9_JihGhdW^z(X)rRAz6P5na!S+w!X+21dWy@9tuiy9AN^SnF#~YLz$N$~+vN1($3_;-b)ezSi-Mg2R312t_qXPyr>|y$&7r$WF
zfX1|@IWZ&UWSa>;gGuFot)tN!w&g?
zqI>}`pRYk7Qf<^yWSajMzx_X7
zO|1kOv=LzH%b1yl>t-e-G5cJebMxovXX&*)-dWcJe|)Zp>$qtaZ>N`-@BF7{;CM=@
z95=m>EoUEDGLw2%GzfY^p3d-@dn6
zihfVQ&$E)Ytsz4FAdWH}&zQB%^znMt
z_u{DmbP!PJ*!4n26&MLnMD`-=K?Z0FZ@~UGbHAL9*N(=N*gHQSULKrrq`laCBEkt!
z0aj}6Z^a+C=_~0J`n^`;=D*fpj~V+#;{aAoJ_B+Ou1}Zy(nci!o7Mb9MKLql!fAHa
z0BQJ?8n>j<42DfKfEe84TVU%jcKC5P6hE-wkwsM`8r3*St70$v!0MZ?BFsg7=>5^G
zrpAv3SNZbonBC4q1pc4Z`5raU_JOHCxbeE(WPBLem172MZ`gU66M!d@A6iud3X)-E
zJ#m%$wh7Y98gj$m{EvS6-WkP163am(G?HS_e1l-CE0y<&Js(8>O3dO(8vJs#H=6Qp
zX(OojA0Vpq3n!bv-Md@J-IBF2M$=39-b6zI+P{}%W60e>4EL2VQI9C#89nf^=iZAO
zus7BWYG7Vf&i&Q!CM~7f<<9T6j_IzW6*XGp;&pU9
z`*-qlGr97|W5-YXKj5SnEuHQRLz(9ul%Pt=>YNrVz)^Y}e{s^j%4{}4OI|nexy?k#
zz*c*f!>KeTkH=q|P4wtZdp0)mmd30%1A<}kL~&gmoxzh&5!_BKHo#5bJB>iHY)q?GWbkqVF9qQ$5P)^_ntD)xw`Z6z-WnbWdMU#K
zgpo9m$W<|9w?Bw0pqB(
zWYXoxA!_f#dJs>M8w)ik=kzhb*GNR1*Zf<2+Sz=w?-ZrW4N;Xy@u;I()AwG1;%)_M46IE>Xiya;DP6&=u`iza@T
zb^Mh3R3VUTd3l&_8~}sOQ~kYLfLs2d!nJs7olxeoZQ{yZ{4p(}t=}Dx1Z1ZKa)+Pg
ze|_;r&CtUv_0xE{OW!16Q{@~`|1#g>1LFg@O>|*~#Lo5m4ZZfE{j1NWv!>Qj`$Jsn
zZw0CKUK70|=K}K2jy%I$+A&k426Ig4?ErtsimoW#Q90IZD`IO(i$@x}mt$}(h^~&P0
z%UCSlBuu>>MlZeWS2-aWo|m}U!1fpfBOQYiyLF1r{_j%y?1Y5dGw3%6}B%M+ZGwTS+Qw}76&pslo}%2lw3
zA)JpG;MjdjA`)}n8ytq{4X7blk&mJskP4e
zQ4Q_mw9r~hiZl&j*Qu!zFpJoJgjPfF%=iU#w*h}FI$?!(9(PH0Lk~^EWE0V(ry9D$
z$Fc?1`ky-H3YhA@`g)dFsHL9)0oTIDg-7E#^G^S)fkkXZCiUwxllM#10f*X#wRiCu
zT*uQ;BCAtpYz6TsK0d&_uN@R+D*Gc52Y>~>XLxopn5kZqH3e3K001i)sr{=lRjvB9
z+3Vd?>b$tggYfhbtENc>x$TPnydDAfgZCzu%Pp?
z={!Um0WU=M6nxn$N=M$A@86@O4#=Sd9PY_WtB3XWXi>yE-%BEvooeT;B|)~q58NBQ
zpmn1jJ5&kB%x6o2{ZMFAj1dYf&a2z;GNh(quU@?7ClOL4qIyX$u8AMqFyO!)fJd+?
zK{0@8x*U6)4y<$~*RtU2c`cl}@7SM3BF;OnXJhb&heaNE_XX|m(`Q2HAQF+vCNAKq
z{>uj=HY<cAu_%)n$FpSt2Ppg;gFQhywhohw@2ZOFo>u0yTC
ze{RKTu2GV$J3(7_gE0#WlDs_HH$zTHfB?aBZr7aUo9M9{F+kuYj${3R@!0d|D(9fE
zkZ-ENmpn58gET5-B{VTpbn|99!=FI{Dafx&M$dm)j8#}+pp*-1^M7UvJ6u9Is5X14
zW|H)K_hDH2a~bp@IpfHE#~@f82~;S)+l#!@=y6BQ6S=4896i{i#oH@?t!d-bQt2aW
z$kO@xZR97j@5uv<>v!{W6jGbEuL~PRzSsgWbQ0rU`mtc#j#Kp=(mDX
zi0nwU@k|&Gc*=*UXMXbz0pw=tic)sfd~>RMx3$8hLWoDoa=#tY?YbG=(<%0_#3_7s
zD{FFXWM7913k+hR`Oj*?V)*f`PFHMkOZ%m!GjAyJzM3sy^XL-GZ>>qVri*^h>ZZD^
zHQfSV&f*Opfm#T1iAB%GHu7
z`%F7Fg;Q9HWTZCVVONY!#Idhco7k5@IrIjpDN9@XB*4Fr1j>dD3LCRh(zd3U=5O?(
zTEDf`hP3$(io@_&1aZ~gH-ELZCPCDkxQPC^9?#`{a&q$B?`=uB>NgCNusfor%1TTX
zD`2;mTQ1G9@!QfqwveEzvNHK!?ui?M2TJYvkpT+ZIX1)Iu*=!mkcy?hWzDZS&UMF_
z$dQ~3pFm!P?N}lKt5`v=(bY9W^;2NDM)0G{)aQl#*PJ#at9O#B0IPRlpx`KKOTy0_
zCf5#{0Dut1g6|+1vEi`Qfy2Dm5@v-`;>u2ay+2>ANa7#VAQ!uXIihyBBy`)BM713sFu8V$%9S$u+O?Ugs7NCrJ8z)d`BLD4hG$hm
zBF|CZ#{_dc>vty9ksB)pW#;_%Wi@eOd1I}pp@=R78+y3$uXu(QNx7dyqZnP^{7O;_
zsZ>^1muQ}xWcc0;f#fwP_&p#8BBlaOI(OEl*kJN`f&?CCt^!A=2j(^qOxihD)?z^5
zL!eD9R9J|fYMOpq!t0M0ikxSgD~xQUHb_^!`~O%(3*cpdTtN=An?EwYoF%aU?t|K^
zkJslqKZ@PpAJ9K&_z*U=4M*_*7q#H95^^X;XU9U)NMVaE;r>uz?xU#o_TpFZEPwQfdKux0TY*IK}sNTsjD*H)Xih
z38C)9_1#|l8Cqbs<8Tm$t&6fTn{s87Nzwa*LyCLWT_h@EHBy%
zWqol)BEq~QV~UING9n7Cq3UN6fE48wvFjuILLIO`mjKK*V)tQswe@PuOf`
zh1$jrGAt2QlKUpOGfVW@afdpjawk9FqHp`%m!VtL&18XCG@)cvN~^`(P&BSU)Xz(s
z@Lnp%U^B)Kq4SR82u{yVBa-f@9XB`KKT0LcYY{y_wtzC4^~n=
z7p}i+lB-W0GW}EP&qVgFZM?g||LP5+`+`j=JBWzAAo@+F_o!x?8-|
zzrUw=)KNHc#fzdK1)2`Tzl=|K$=z%!`5M4R+&QTEY^k0-x~Uz=tLCtSq_0S^@H(Ko
z?hblwd?uYU%jllkpqQkl!IP&Uge>S`lq83>pxgRgX7YfvwQ`u@J!CGu58MLI93>TY*=
zV~A#Pd|sQNpFntg1J
zF~n~H;xs&R15ih*HMJcM=+J>kIcyT8{m`vL>EHP4OTeB}(-Xp9KDBaW=(*A&eEDY_
z6S@PlgPzp&9MS;W3O>dBS-XEH=qs~C2nf{siRMe4`>D8Z|KyvPB$eDa6*A!AD9O%a
zn~^B^?G}Qg`!-1QTfcaxv1u>QS!=@KsRd%v31|x-J^zS+m3)ctPovhg@UyjcHN1<@
zEFI?kmGePl2BhJ=h_oj-Jy>Qg2zThqeT@J2G#{{F^tA4Uj($*a&E_yi5LMvuAK&k2
zA%7$nEoX{9p5(yK^;S(OQ74Wkwztu<X)j988~FopR8e|w
z$nQf@gHB#ihBgGhRGV<_S#NeAOR^sOOP;oM$AkUXG5PeZ+X{E;{s9bs_9w5@Ut&_N
zLXiaC9N;sFG$p0lPmEmY@thpLDXHmG_B*w{T34hn>!(dO)Ii*IzfC?6f_P~uz3$i3
zX#*>u?v!2jZhjz&e2p1|85aDhOjA9`k`kN#eW3Pj7JR?`-^PRgO*Nm|8noJR!k~&x
zFn+_RVi*M(-R)mb^eu^(ck)NM^hc4!0Mzc*oZujXjsl4Mf0BSByc#H{6R(sFp#t!@
z?tl23DXM`7vq6Nq%)yt&RoOE_tFxtcEsFa0!7@qNuZaW2zP!rlUl~}RoB8&sU?}$q
zw6YXsUyXecHJgJbb!CvJtak17WB@(jBFRAOQCKe5B>V1?H?%xR7r`&J7aWW7F>caFi&Dk$jqq1A+`B9tLI}8*MPgLpyd)5_eU#m)Y#YwZdp%M`IggYD`UQ1IL7@
zrFsW|A#izst;IqZbDP0EqqWhBG1S!N_)xQd*d1m>A9-eIncYSPSf4vhdq#-RYQ;1DV&gO8`wWE8peSo!^|!)S$?VgZ`8`JIQ|;RHe9pr>B+)uvlOcd8}2$m{tFD
zk;>(EG&dr)E%F98u(K{j!3U9O83(1+{M72MO#Hwk++So}gG%X+@F7IrMDJ}HtznPSO9ZWLCqHM6k~0F(5P{1
zTr3(=&9Siu5}>;EMC_&~iU8;1A!sUE;unRjGD5>O-ucicEa!2p`mFI4(x9evLT3oh
z4;AIY%<(E2y4MphXU5_0m9DbeheK7Iaql*gunK{^<)&{lmv>;LZ)ok4P(D
zaUAxIKZ4cm*_EQ9AFvh53y{ZrrxW*Vgrs&@cq;KaXb`*{%!!-cfAA&o>j##jXE+GN
z?`!Q!je>usFVlnEh$$~K5cMl6-wf;5mkNc`g@P*3OVjq;a{2AC%&(`@yswg_UO&op
zG=obS4O}8a!DucU!&VbZk5E`@mSw|IsDU(eJ|(`Tfj?*BK$3#5p~kzjCMmF5-gO|x
zUW4JuhJi;WqnX9cgx#$S`;XT0oQ|U$(s2;y{u@ul?8=uLdKK8slAdGwN}HY6aJ}w|
zOSR;6eTh6yB@^(&v~Y#v6}w0DcLo_;ySDSRQ*J+if$r0AltNlH`6@=OvgW(O4+$a3
zf#Di~iU;p#A}==0AxW&m9w&F2NI;MR#U0J$D_dGLY#r89;#k*z24TmXdYwk$xMU*;
zn)C9>#PEm}$c-X)ev`>4S_^KRNZS>;
zfWf|;HRe&jpC>5_gu*ow3upW1s0LCwHQ0Y#TbDtFh=Kc*I7V7Gw0QE^rzsoky9koW2b%&an0f&ng1EZ}-l3w)DD==dG#JB#x`=Y|j4wx=x4n
z7DR|gv5F1lNwb`IGeB3K0)35}GD`SNF;UC=b5N<7M3h%_LA+S1$GopP3Z1v|&JEfy
zr~{5{ImAnBb{ogup}!J~V@U`=68YXI;ykJD#scEu)Y<*rJGRkEkDI&MydkFPwG0wt
z2qMO+*QH};)N%VQU4eHx?c}$xVMexy4>R=-f6|`oFBvB;l3{wRC~gt{w!xyqfpQ}8
zXfe-JaN;1_o!4b@`Ain3!j008YJdi$F+m%hldq56ai$~cDM;wP?0N1%WdOhOl&aQe
zxX44<<&HX+YAfF62AP^DSxR?3AErmesc|lIRmXAVD-UN^W;zG5oE04pVbD#{nfC9KjB81&_DU8)KN?<9Vtp+fP0
zJN=zjTI@AY*(u{m4p-_78EY^a>zY*h+sDlDQ4`NepRjStNg!iw(v!UnwOhSFpS3;IN7@=NEVi=B%|
zi)&fFJLl^u_iG-aAf_DGzFUcl`-zsla-_G2&@2(cysJ
zjZy5fJS^ARQu(ecY3JYNhO{wW?K+EdCu2}&-D#OEQ_Q%+-(7E`A|h@*>@h4QSW=*3
zs>uh<_IDU#r`aYROC53~94$Y5$Y0@cU=e=#xRR;YyH$*LHVbGgro{`Ln&MQS+GS+^
zqW)!8VvLuwx%7KFA1J6}*z<4hCN2pz8|BYM#!3bfsVR)@XrBCaTo2aUp$e?zrpF=`
zsA;_1tqAn#*V|~AuJTOuYHU}zU_8lDT9`@^62bk+)?OjuzD0pRVPDfxu>Sbb**Db*
zGO$5_m~^m^)2G88+GS7fXeIQW5BSPV33Fq{DinVAQ-a**tV^+ti|R>y3B(k>?>(;9
zlol99P|o;5@$hMw2Z{g^cl%$RzN#)=n_SY{&T#pld_NO?$$@=AU-vm}Sm>m7fM#9w
zCWBZwf67)aUu5e1GA(-mU*~X;ap96=x{*!F7Rv?l<5ZfcIBT2}*mNoOsA$-;8z;{P
zn@O5cXW2s@-6}25O%((A6;51S6uhr1%T&VWd_m*(4O!2BauQo6wzhv*6nT0oX%)()
zO=RnCX^^lb>nhgvwV~N@rpu@uL8Bu;5>;zA$`-z-JF?k~hf;xpgcv5GP|-ao7Yl%9
zrf$KZ82EkPy2m_V!AYzbW5-tqsU?PxLw&6Mq>pG?m6qC9A3LIQq-%-do5_k=i3X14
zZlCJBUPRJE4u1t;piFhhbUfG=l2HfM)5xek^)3;fbPJe@{X#XN*>29=Xw=}bm?izX
zh0^*(Q|>0z5dPdf?S9?2A89<_=$9^@@1eOj2__JqlR=FJO>SXgrU=awLJxN)rJWmQ
zcR@292*DkX3Z}?H#>zRb%>he1$zX3b6C`v?$u=6UYDC5boL|Hn!(CxXb?s)~MFAL6
zS1p-Wnqc#o~34;hkw%U|#s
z4tcr176dT+CAb&rFXIW%+OUcM?88HDepob}h~+;hv%W#69KJsVi
zJ30DmQrUyKg%{bQHu+B|c!O31642v4iL0JDgU*ZBk4GxqM1YiuZdIg?x)ZgvE;5wY
zWV=o`hpYmEO`IRZtSS?|+uK`2+G@(`lBWtvYGWEo7>_Wg4Fv>z3*@WWCjZc=2@U@n
zgy{(QKs8ZgpxIB!((OBvL2Jpu{ic4AznT30+j^tGI(k`(e~l|DzG#H@Pn*?T4h+H5
zj!}ZgPUqv5AX=&OHHH|1!&3CB0U|Z{mMTIFCo1Fp6`Ax9LM4}*95#h?8DUUTaPtW90pY-@EBB&9*E~ORp$yA19AFDDJgPR_z!~4p5*Es63%w
zYGf$H>E&qmCNN5`IDfy4c_~)5!?_lqNhsAI)x4<`zsLB^y3EwxXR+LRkE^R_8Xr@r
zmFl(sf`-~Ke;3Ek3{t0w${)ixlo$GcUO(DqnagA(YJ*jH!@AiU*8D~xKe6*2FJ$ay
zWWBzuz6(P|g#{~r?Jd}n9|GLb|9w(@G=quR{Ntb-rUYd`Mvgx1#AKUg{RBQPL3@sj
zxmUENro=8UW>X?7T^+IJ{EaMDAoJkXeQE^y8maNp0gsw<15)gspDO59(~s$wyUTnh
zf{umn*76;@AWLA?N
zsrUT)`*(-_^XS!^qLfUa_wK