diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS
index fd3d755f2c..67f66a2d22 100644
--- a/.github/CODEOWNERS
+++ b/.github/CODEOWNERS
@@ -8,10 +8,10 @@
/code/__DEFINES/clockcult.dm @ChangelingRain
/code/datums/antagonists/datum_clockcult.dm @ChangelingRain
-/code/game/gamemodes/blob/* @ChangelingRain
-/code/game/gamemodes/clock_cult/* @ChangelingRain
-/code/game/gamemodes/miniantags/revenant* @ChangelingRain
-/code/game/objects/effects/temporary_visuals/* @ChangelingRain
+/code/game/gamemodes/blob/ @ChangelingRain
+/code/game/gamemodes/clock_cult/ @ChangelingRain
+/code/game/gamemodes/miniantags/revenant/ @ChangelingRain
+/code/game/objects/effects/temporary_visuals/ @ChangelingRain
/code/modules/reagents/chemistry/reagents/blob_reagents.dm @ChangelingRain
# Cyberboss
@@ -24,14 +24,14 @@
/code/controllers/subsystem/mapping.dm @Cyberboss
/code/controllers/globals.dm @Cyberboss
/code/datums/helper_datums/getrev.dm @Cyberboss
-/code/datums/components/* @Cyberboss
+/code/datums/components/ @Cyberboss
/code/datums/map_config.dm @Cyberboss
/code/datums/forced_movement.dm @Cyberboss
/code/datums/holocall.dm @Cyberboss
/code/modules/admin/verbs/adminhelp.dm @Cyberboss
/code/modules/admin/verbs/adminpm.dm @Cyberboss
-/code/modules/server_tools/* @Cyberboss
-/code/modules/mapping/* @Cyberboss
+/code/modules/server_tools/ @Cyberboss
+/code/modules/mapping/ @Cyberboss
# duncathan
@@ -40,9 +40,9 @@
# Jordie0608
-/SQL/* @Jordie0608
+/SQL/ @Jordie0608
/code/controllers/subsystem/dbcore.dm @Jordie0608
-/tools/SQLAlertEmail/* @Jordie0608
+/tools/SQLAlertEmail/ @Jordie0608
# MrStonedOne
@@ -57,9 +57,10 @@
# ninjanomnom
/code/controllers/subsystem/shuttle.dm @ninjanomnom
-/code/modules/shuttle/* @ninjanomnom
+/code/modules/shuttle/ @ninjanomnom
# ShizCalev
+
/_maps/ @ShizCalev
/sound/ @ShizCalev
diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md
index fc1ee4d47a..78755fc69c 100644
--- a/.github/CONTRIBUTING.md
+++ b/.github/CONTRIBUTING.md
@@ -306,6 +306,12 @@ Like all languages, Dream Maker has its quirks, some of them are beneficial to u
HOWEVER, if either ```some_value``` or ```i``` changes within the body of the for (underneath the ```for(...)``` header) or if you are looping over a list AND changing the length of the list then you can NOT use this type of for-loop!
+### for(var/A in list) VS for(var/i in 1 to list.len)
+The former is faster than the latter, as shown by the following profile results:
+https://file.house/zy7H.png
+Code used for the test in a readable format:
+https://pastebin.com/w50uERkG
+
#### Istypeless for loops
A name for a differing syntax for writing for-each style loops in DM. It's NOT DM's standard syntax, hence why this is considered a quirk. Take a look at this:
@@ -314,7 +320,7 @@ var/list/bag_of_items = list(sword, apple, coinpouch, sword, sword)
var/obj/item/sword/best_sword
for(var/obj/item/sword/S in bag_of_items)
if(!best_sword || S.damage > best_sword.damage)
- best_sword = S
+ best_sword = S
```
The above is a simple proc for checking all swords in a container and returning the one with the highest damage, and it uses DM's standard syntax for a for-loop by specifying a type in the variable of the for's header that DM interprets as a type to filter by. It performs this filter using ```istype()``` (or some internal-magic similar to ```istype()``` - this is BYOND, after all). This is fine in its current state for ```bag_of_items```, but if ```bag_of_items``` contained ONLY swords, or only SUBTYPES of swords, then the above is inefficient. For example:
```DM
@@ -322,7 +328,7 @@ var/list/bag_of_swords = list(sword, sword, sword, sword)
var/obj/item/sword/best_sword
for(var/obj/item/sword/S in bag_of_swords)
if(!best_sword || S.damage > best_sword.damage)
- best_sword = S
+ best_sword = S
```
specifies a type for DM to filter by.
@@ -334,7 +340,7 @@ var/obj/item/sword/best_sword
for(var/s in bag_of_swords)
var/obj/item/sword/S = s
if(!best_sword || S.damage > best_sword.damage)
- best_sword = S
+ best_sword = S
```
Of course, if the list contains data of a mixed type then the above optimisation is DANGEROUS, as it will blindly typecast all data in the list as the specified type, even if it isn't really that type, causing runtime errors.
@@ -355,9 +361,9 @@ DM has a var keyword, called global. This var keyword is for vars inside of type
```DM
mob
- var
- global
- thing = TRUE
+ var
+ global
+ thing = TRUE
```
This does NOT mean that you can access it everywhere like a global var. Instead, it means that that var will only exist once for all instances of its type, in this case that var will only exist once for all mobs - it's shared across everything in its type. (Much more like the keyword `static` in other languages like PHP/C++/C#/Java)
@@ -385,7 +391,7 @@ There is no strict process when it comes to merging pull requests. Pull requests
If you are porting features/tools from other codebases, you must give them credit where it's due. Typically, crediting them in your pull request and the changelog is the recommended way of doing it. Take note of what license they use though, porting stuff from AGPLv3 and GPLv3 codebases are allowed.
-Regarding sprites & sounds, you must credit the artist and possibly the codebase. All /tg/station assets including icons and sound are under a [Creative Commons 3.0 BY-SA license](https://creativecommons.org/licenses/by-sa/3.0/) license unless otherwise indicated. However if you are porting assets from GoonStation or usually any assets under the [Creative Commons 3.0 BY-NC-SA license](https://creativecommons.org/licenses/by-nc-sa/3.0/) license are to go into the 'goon' folder of the /tg/station codebase.
+Regarding sprites & sounds, you must credit the artist and possibly the codebase. All /tg/station assets including icons and sound are under a [Creative Commons 3.0 BY-SA license](https://creativecommons.org/licenses/by-sa/3.0/) unless otherwise indicated. However if you are porting assets from GoonStation or usually any assets under the [Creative Commons 3.0 BY-NC-SA license](https://creativecommons.org/licenses/by-nc-sa/3.0/) are to go into the 'goon' folder of the /tg/station codebase.
## Banned content
Do not add any of the following in a Pull Request or risk getting the PR closed:
diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md
index 10f60767bb..949f1c4c44 100644
--- a/.github/ISSUE_TEMPLATE.md
+++ b/.github/ISSUE_TEMPLATE.md
@@ -1,9 +1,9 @@
-[Directions]: # (If you discovered this issue from playing tgstation hosted servers
+[Round ID]: # (If you discovered this issue from playing tgstation hosted servers:)
+[Round ID]: # (**INCLUDE THE ROUND ID**)
+[Round ID]: # (It can be found in the Status panel or retrieved from https://atlantaned.space/statbus/round.php ! The round id let's us look up valuable information and logs for the round the bug happened.)
+[Testmerges]: # (If you believe the issue to be caused by a test merge [OOC tab -> Show Server Revision], report it in the pull request's comment section instead.)
-INCLUDE THE ROUND ID
+[Reproduction]: # (Explain your issue in detail, including the steps to reproduce it. Issues without proper reproduction steps or explanation are open to being ignored/closed by maintainers.)
-
-from the Status panel or retrieve it from https://atlantaned.space/statbus/round.php ! If you believe the issue to be caused by a test merge [OOC tab -> Show Server Revision], report it in the pull request's comment section instead. Explain your issue in detail, including the steps to reproduce it.)
-
-[For Admins]: # (Oddities induced by var-edits and other admin tools are not necessarily bugs. Verify that your issues occur under regular circumstances before reporting them.)
+[For Admins]: # (Oddities induced by var-edits and other admin tools are not necessarily bugs. Verify that your issues occur under regular circumstances before reporting them.)
\ No newline at end of file
diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md
index 1332358e04..7855fd5782 100644
--- a/.github/PULL_REQUEST_TEMPLATE.md
+++ b/.github/PULL_REQUEST_TEMPLATE.md
@@ -1,5 +1,4 @@
-[Changelogs]: # (Please make a changelog if you're adding, removing or changing content that'll affect players. This includes, but is not limited to, new features, sprites, sounds; balance changes; map edits and important fixes. An example changelog has been provided below for you to edit or remove. If you need help, read https://github.com/tgstation/tgstation/wiki/Changelogs)
-
+[Changelogs]: # (Your PR should contain a detailed changelog of notable changes, titled and categorized appropriately. This includes, new features, sprites, sounds, balance changes, admin tools, map edits, removals, big refactors, config changes, hosting changes and important fixes. An example changelog has been provided below for you to edit. If you need additional help, read https://github.com/tgstation/tgstation/wiki/Changelogs)
:cl: optional name here
add: Added new things
@@ -8,13 +7,16 @@ del: Removed old things
tweak: tweaked a few things
balance: rebalanced something
fix: fixed a few things
-wip: added a few works in progress
soundadd: added a new sound thingy
sounddel: removed an old sound thingy
imageadd: added some icons and images
imagedel: deleted some icons and images
spellcheck: fixed a few typos
-experiment: added an experimental thingy
+code: changed some code
+refactor: refactored some code
+config: changed some config setting
+admin: messed with admin stuff
+server: something server ops should know
/:cl:
[why]: # (Please add a short description [two lines down] of why you think these changes would benefit the game. If you can't justify it in words, it might not be worth adding.)
diff --git a/README.md b/README.md
index 1bdc45fa63..159cab53cd 100644
--- a/README.md
+++ b/README.md
@@ -2,9 +2,9 @@
##Citadel Station 13
Based and maintained from /tg/station.
-[](https://travis-ci.org/tgstation/tgstation) [](https://www.krihelinator.xyz)
-[](https://isitmaintained.com/project/tgstation/tgstation "Percentage of issues still open") [](https://isitmaintained.com/project/tgstation/tgstation "Average time to resolve an issue") 
-[](https://forthebadge.com) [](https://forthebadge.com) [](https://www.reddit.com/r/SS13/comments/5oplxp/what_is_the_main_problem_with_byond_as_an_engine/dclbu1a)
+[](https://forthebadge.com) [](https://forthebadge.com) [](http://forthebadge.com)
+
+[](https://www.reddit.com/r/SS13/comments/5oplxp/what_is_the_main_problem_with_byond_as_an_engine/dclbu1a)
[](https://travis-ci.org/Citadel-Station-13/Citadel-Station-13) [](http://www.krihelinator.xyz)
diff --git a/_maps/RandomRuins/LavaRuins/lavaland_biodome_beach.dmm b/_maps/RandomRuins/LavaRuins/lavaland_biodome_beach.dmm
index 40f5bfb987..56bc9a0548 100644
--- a/_maps/RandomRuins/LavaRuins/lavaland_biodome_beach.dmm
+++ b/_maps/RandomRuins/LavaRuins/lavaland_biodome_beach.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)
@@ -146,7 +146,7 @@
/area/ruin/powered/beach)
"aF" = (
/obj/machinery/vending/boozeomat{
- emagged = 1;
+ set_obj_flags = "EMAGGED";
req_access_txt = "0"
},
/turf/open/floor/wood,
diff --git a/_maps/RandomRuins/LavaRuins/lavaland_biodome_clown_planet.dmm b/_maps/RandomRuins/LavaRuins/lavaland_biodome_clown_planet.dmm
index ab405c0927..e1a0283aad 100644
--- a/_maps/RandomRuins/LavaRuins/lavaland_biodome_clown_planet.dmm
+++ b/_maps/RandomRuins/LavaRuins/lavaland_biodome_clown_planet.dmm
@@ -833,15 +833,18 @@
},
/area/ruin/powered/clownplanet)
"eX" = (
+/obj/effect/mapping_helpers/no_lava,
/turf/open/floor/noslip{
initial_gas_mix = "o2=14;n2=23;TEMP=300"
},
/area/lavaland/surface/outdoors/explored)
"gX" = (
+/obj/effect/mapping_helpers/no_lava,
/turf/open/chasm/lavaland,
/area/lavaland/surface/outdoors/explored)
"hY" = (
/obj/machinery/light,
+/obj/effect/mapping_helpers/no_lava,
/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
/area/ruin/powered/clownplanet)
"pv" = (
@@ -856,6 +859,7 @@
"CB" = (
/obj/item/paper/crumpled/bloody/ruins/lavaland/clown_planet/hope,
/obj/effect/decal/cleanable/blood/old,
+/obj/effect/mapping_helpers/no_lava,
/turf/open/floor/noslip{
initial_gas_mix = "o2=14;n2=23;TEMP=300"
},
@@ -865,6 +869,7 @@
color = "#2F3000";
name = "stealth banana peel"
},
+/obj/effect/mapping_helpers/no_lava,
/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
/area/lavaland/surface/outdoors/explored)
"LH" = (
@@ -874,11 +879,13 @@
name = "THE TRIAL OF HONKITUDE"
},
/obj/structure/disposalpipe/trunk,
+/obj/effect/mapping_helpers/no_lava,
/turf/open/floor/noslip{
initial_gas_mix = "o2=14;n2=23;TEMP=300"
},
/area/ruin/powered/clownplanet)
"Mv" = (
+/obj/effect/mapping_helpers/no_lava,
/mob/living/simple_animal/hostile/retaliate/clown,
/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
/area/lavaland/surface/outdoors/explored)
@@ -886,6 +893,7 @@
/obj/machinery/light{
dir = 8
},
+/obj/effect/mapping_helpers/no_lava,
/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
/area/ruin/powered/clownplanet)
"TD" = (
@@ -893,27 +901,32 @@
/obj/structure/disposaloutlet{
dir = 1
},
+/obj/effect/mapping_helpers/no_lava,
/turf/open/floor/noslip{
initial_gas_mix = "o2=14;n2=23;TEMP=300"
},
/area/ruin/powered/clownplanet)
"Xm" = (
/obj/item/clothing/head/cone,
+/obj/effect/mapping_helpers/no_lava,
/turf/open/floor/noslip{
initial_gas_mix = "o2=14;n2=23;TEMP=300"
},
/area/lavaland/surface/outdoors/explored)
"XO" = (
+/obj/effect/mapping_helpers/no_lava,
/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
/area/lavaland/surface/outdoors/explored)
"Yf" = (
/obj/machinery/light{
dir = 1
},
+/obj/effect/mapping_helpers/no_lava,
/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
/area/ruin/powered/clownplanet)
"YI" = (
/obj/machinery/light/small,
+/obj/effect/mapping_helpers/no_lava,
/turf/open/floor/noslip{
initial_gas_mix = "o2=14;n2=23;TEMP=300"
},
diff --git a/_maps/RandomRuins/LavaRuins/lavaland_surface_animal_hospital.dmm b/_maps/RandomRuins/LavaRuins/lavaland_surface_animal_hospital.dmm
index 9ad1915924..b75d7c5233 100644
--- a/_maps/RandomRuins/LavaRuins/lavaland_surface_animal_hospital.dmm
+++ b/_maps/RandomRuins/LavaRuins/lavaland_surface_animal_hospital.dmm
@@ -3,6 +3,7 @@
/turf/template_noop,
/area/template_noop)
"ab" = (
+/obj/effect/mapping_helpers/no_lava,
/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
/area/lavaland/surface/outdoors)
"ac" = (
@@ -491,7 +492,7 @@
},
/area/ruin/powered/animal_hospital)
"bI" = (
-/obj/structure/sign/bluecross_2{
+/obj/structure/sign/departments/medbay/alt{
name = "animal hospital"
},
/turf/closed/wall/mineral/titanium/nodiagonal,
@@ -558,14 +559,17 @@
"bT" = (
/obj/item/pickaxe,
/obj/effect/decal/cleanable/blood/old,
+/obj/effect/mapping_helpers/no_lava,
/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
/area/lavaland/surface/outdoors)
"bU" = (
/obj/effect/decal/remains/human,
+/obj/effect/mapping_helpers/no_lava,
/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
/area/lavaland/surface/outdoors)
"bV" = (
/obj/effect/decal/cleanable/blood/old,
+/obj/effect/mapping_helpers/no_lava,
/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
/area/lavaland/surface/outdoors)
"bW" = (
@@ -686,6 +690,7 @@
/obj/machinery/light{
dir = 4
},
+/obj/effect/mapping_helpers/no_lava,
/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
/area/lavaland/surface/outdoors)
"cq" = (
@@ -765,6 +770,7 @@
/obj/machinery/light{
dir = 1
},
+/obj/effect/mapping_helpers/no_lava,
/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
/area/lavaland/surface/outdoors)
"cG" = (
diff --git a/_maps/RandomRuins/LavaRuins/lavaland_surface_ash_walker1.dmm b/_maps/RandomRuins/LavaRuins/lavaland_surface_ash_walker1.dmm
index 4ce05157f3..b1830b2ad4 100644
--- a/_maps/RandomRuins/LavaRuins/lavaland_surface_ash_walker1.dmm
+++ b/_maps/RandomRuins/LavaRuins/lavaland_surface_ash_walker1.dmm
@@ -496,6 +496,7 @@
dir = 8
},
/obj/item/pickaxe,
+/obj/effect/mapping_helpers/no_lava,
/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
/area/lavaland/surface/outdoors)
"bp" = (
@@ -613,6 +614,7 @@
/obj/structure/stone_tile/block{
dir = 8
},
+/obj/effect/mapping_helpers/no_lava,
/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
/area/lavaland/surface/outdoors)
"bB" = (
@@ -640,11 +642,13 @@
/obj/structure/stone_tile/surrounding_tile{
dir = 8
},
+/obj/effect/mapping_helpers/no_lava,
/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
/area/lavaland/surface/outdoors)
"bF" = (
/obj/structure/stone_tile/slab,
/obj/effect/decal/cleanable/blood,
+/obj/effect/mapping_helpers/no_lava,
/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
/area/lavaland/surface/outdoors)
"bG" = (
@@ -674,22 +678,27 @@
/obj/structure/stone_tile{
dir = 4
},
+/obj/effect/mapping_helpers/no_lava,
/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
/area/lavaland/surface/outdoors)
"bM" = (
+/obj/effect/mapping_helpers/no_lava,
/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
/area/lavaland/surface/outdoors)
"bN" = (
/obj/structure/stone_tile,
+/obj/effect/mapping_helpers/no_lava,
/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
/area/lavaland/surface/outdoors)
"bO" = (
/obj/structure/stone_tile/cracked,
+/obj/effect/mapping_helpers/no_lava,
/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
/area/lavaland/surface/outdoors)
"bP" = (
/obj/structure/stone_tile/block,
/obj/item/twohanded/spear,
+/obj/effect/mapping_helpers/no_lava,
/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
/area/lavaland/surface/outdoors)
"bQ" = (
@@ -700,6 +709,7 @@
/obj/structure/stone_tile{
dir = 1
},
+/obj/effect/mapping_helpers/no_lava,
/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
/area/lavaland/surface/outdoors)
"bR" = (
@@ -711,10 +721,12 @@
dir = 4
},
/obj/structure/stone_tile/center,
+/obj/effect/mapping_helpers/no_lava,
/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
/area/lavaland/surface/outdoors)
"bS" = (
/obj/structure/stone_tile/slab,
+/obj/effect/mapping_helpers/no_lava,
/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
/area/lavaland/surface/outdoors)
"bT" = (
@@ -729,6 +741,7 @@
},
/obj/structure/stone_tile/center,
/obj/effect/decal/cleanable/blood,
+/obj/effect/mapping_helpers/no_lava,
/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
/area/lavaland/surface/outdoors)
"bU" = (
@@ -739,27 +752,32 @@
/obj/structure/stone_tile{
dir = 4
},
+/obj/effect/mapping_helpers/no_lava,
/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
/area/lavaland/surface/outdoors)
"bV" = (
/obj/structure/stone_tile/block/cracked,
+/obj/effect/mapping_helpers/no_lava,
/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
/area/lavaland/surface/outdoors)
"bW" = (
/obj/structure/stone_tile/surrounding_tile/cracked,
/obj/structure/ore_box,
+/obj/effect/mapping_helpers/no_lava,
/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
/area/lavaland/surface/outdoors)
"bX" = (
/obj/structure/stone_tile/cracked{
dir = 1
},
+/obj/effect/mapping_helpers/no_lava,
/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
/area/lavaland/surface/outdoors)
"bY" = (
/obj/structure/stone_tile{
dir = 8
},
+/obj/effect/mapping_helpers/no_lava,
/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
/area/lavaland/surface/outdoors)
"bZ" = (
@@ -769,12 +787,14 @@
/obj/structure/stone_tile/cracked{
dir = 8
},
+/obj/effect/mapping_helpers/no_lava,
/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
/area/lavaland/surface/outdoors)
"cb" = (
/obj/structure/stone_tile{
dir = 1
},
+/obj/effect/mapping_helpers/no_lava,
/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
/area/lavaland/surface/outdoors)
"cd" = (
@@ -782,6 +802,7 @@
/obj/structure/stone_tile{
dir = 8
},
+/obj/effect/mapping_helpers/no_lava,
/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
/area/lavaland/surface/outdoors)
"ce" = (
@@ -791,6 +812,7 @@
/obj/structure/stone_tile/block/cracked{
dir = 4
},
+/obj/effect/mapping_helpers/no_lava,
/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
/area/lavaland/surface/outdoors)
"cf" = (
@@ -804,12 +826,14 @@
/obj/item/pickaxe,
/obj/item/pickaxe,
/obj/item/pickaxe,
+/obj/effect/mapping_helpers/no_lava,
/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
/area/lavaland/surface/outdoors)
"cg" = (
/obj/structure/stone_tile/cracked{
dir = 4
},
+/obj/effect/mapping_helpers/no_lava,
/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
/area/lavaland/surface/outdoors)
"ch" = (
@@ -821,6 +845,7 @@
/obj/structure/stone_tile/surrounding_tile/cracked{
dir = 8
},
+/obj/effect/mapping_helpers/no_lava,
/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
/area/lavaland/surface/outdoors)
"ci" = (
@@ -832,6 +857,7 @@
/obj/structure/stone_tile/surrounding_tile/cracked{
dir = 4
},
+/obj/effect/mapping_helpers/no_lava,
/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
/area/lavaland/surface/outdoors)
"cj" = (
@@ -847,6 +873,7 @@
/obj/structure/stone_tile{
dir = 4
},
+/obj/effect/mapping_helpers/no_lava,
/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
/area/lavaland/surface/outdoors)
"cl" = (
@@ -857,12 +884,14 @@
dir = 8
},
/obj/item/twohanded/spear,
+/obj/effect/mapping_helpers/no_lava,
/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
/area/lavaland/surface/outdoors)
"cm" = (
/obj/structure/stone_tile/block{
dir = 4
},
+/obj/effect/mapping_helpers/no_lava,
/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
/area/lavaland/surface/outdoors)
"cn" = (
@@ -870,6 +899,7 @@
/obj/structure/stone_tile/block/cracked{
dir = 1
},
+/obj/effect/mapping_helpers/no_lava,
/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
/area/lavaland/surface/outdoors)
"co" = (
@@ -877,6 +907,7 @@
/obj/structure/stone_tile/block{
dir = 1
},
+/obj/effect/mapping_helpers/no_lava,
/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
/area/lavaland/surface/outdoors)
"cp" = (
@@ -890,6 +921,7 @@
/obj/structure/stone_tile/cracked{
dir = 8
},
+/obj/effect/mapping_helpers/no_lava,
/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
/area/lavaland/surface/outdoors)
"cr" = (
@@ -901,12 +933,14 @@
/obj/structure/stone_tile/surrounding_tile/cracked{
dir = 1
},
+/obj/effect/mapping_helpers/no_lava,
/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
/area/lavaland/surface/outdoors)
"cs" = (
/obj/structure/stone_tile/block/cracked{
dir = 1
},
+/obj/effect/mapping_helpers/no_lava,
/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
/area/lavaland/surface/outdoors)
"ct" = (
@@ -920,12 +954,14 @@
/obj/structure/stone_tile/surrounding_tile/cracked{
dir = 4
},
+/obj/effect/mapping_helpers/no_lava,
/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
/area/lavaland/surface/outdoors)
"cu" = (
/obj/structure/stone_tile/block/cracked{
dir = 8
},
+/obj/effect/mapping_helpers/no_lava,
/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
/area/lavaland/surface/outdoors)
"cv" = (
@@ -940,6 +976,7 @@
},
/obj/structure/stone_tile/cracked,
/obj/effect/decal/cleanable/blood,
+/obj/effect/mapping_helpers/no_lava,
/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
/area/lavaland/surface/outdoors)
"cz" = (
@@ -1005,6 +1042,7 @@
/obj/structure/stone_tile/cracked{
dir = 1
},
+/obj/effect/mapping_helpers/no_lava,
/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
/area/lavaland/surface/outdoors)
"cJ" = (
@@ -1012,6 +1050,7 @@
/obj/structure/stone_tile/cracked{
dir = 8
},
+/obj/effect/mapping_helpers/no_lava,
/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
/area/lavaland/surface/outdoors)
"cK" = (
@@ -1019,6 +1058,7 @@
/obj/structure/stone_tile/block/cracked{
dir = 1
},
+/obj/effect/mapping_helpers/no_lava,
/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
/area/lavaland/surface/outdoors)
"cL" = (
@@ -1126,10 +1166,12 @@
/obj/structure/stone_tile/block{
dir = 4
},
+/obj/effect/mapping_helpers/no_lava,
/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
/area/lavaland/surface/outdoors)
"dd" = (
/obj/structure/stone_tile/surrounding_tile/cracked,
+/obj/effect/mapping_helpers/no_lava,
/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
/area/lavaland/surface/outdoors)
"de" = (
@@ -1139,6 +1181,7 @@
/obj/structure/stone_tile/block{
dir = 8
},
+/obj/effect/mapping_helpers/no_lava,
/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
/area/lavaland/surface/outdoors)
"df" = (
@@ -1149,11 +1192,13 @@
/obj/structure/stone_tile/cracked{
dir = 4
},
+/obj/effect/mapping_helpers/no_lava,
/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
/area/lavaland/surface/outdoors)
"dg" = (
/obj/structure/bonfire/dense,
/obj/structure/stone_tile/center,
+/obj/effect/mapping_helpers/no_lava,
/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
/area/lavaland/surface/outdoors)
"di" = (
@@ -1165,6 +1210,7 @@
/obj/structure/stone_tile/cracked{
dir = 1
},
+/obj/effect/mapping_helpers/no_lava,
/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
/area/lavaland/surface/outdoors)
"dj" = (
@@ -1172,6 +1218,7 @@
/obj/structure/stone_tile/block{
dir = 1
},
+/obj/effect/mapping_helpers/no_lava,
/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
/area/lavaland/surface/outdoors)
"dk" = (
@@ -1179,6 +1226,7 @@
dir = 1
},
/obj/structure/stone_tile/block,
+/obj/effect/mapping_helpers/no_lava,
/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
/area/lavaland/surface/outdoors)
"dl" = (
@@ -1189,6 +1237,7 @@
/obj/structure/stone_tile/cracked{
dir = 8
},
+/obj/effect/mapping_helpers/no_lava,
/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
/area/lavaland/surface/outdoors)
"dn" = (
@@ -1198,6 +1247,7 @@
/obj/structure/stone_tile/block/cracked{
dir = 8
},
+/obj/effect/mapping_helpers/no_lava,
/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
/area/lavaland/surface/outdoors)
"do" = (
@@ -1205,6 +1255,7 @@
dir = 8
},
/obj/structure/reagent_dispensers/watertank,
+/obj/effect/mapping_helpers/no_lava,
/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
/area/lavaland/surface/outdoors)
"dp" = (
@@ -1212,6 +1263,7 @@
/obj/structure/stone_tile/cracked{
dir = 1
},
+/obj/effect/mapping_helpers/no_lava,
/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
/area/lavaland/surface/outdoors)
"dq" = (
@@ -1219,6 +1271,7 @@
/obj/structure/stone_tile{
dir = 4
},
+/obj/effect/mapping_helpers/no_lava,
/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
/area/lavaland/surface/outdoors)
"dr" = (
@@ -1230,10 +1283,12 @@
dir = 8
},
/obj/structure/stone_tile/center,
+/obj/effect/mapping_helpers/no_lava,
/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
/area/lavaland/surface/outdoors)
"ds" = (
/obj/structure/stone_tile/block,
+/obj/effect/mapping_helpers/no_lava,
/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
/area/lavaland/surface/outdoors)
"dt" = (
@@ -1245,6 +1300,7 @@
dir = 8
},
/obj/structure/stone_tile/center,
+/obj/effect/mapping_helpers/no_lava,
/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
/area/lavaland/surface/outdoors)
"du" = (
@@ -1269,11 +1325,13 @@
/obj/structure/stone_tile/block/cracked{
dir = 4
},
+/obj/effect/mapping_helpers/no_lava,
/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
/area/lavaland/surface/outdoors)
"dx" = (
/obj/item/device/flashlight/lantern,
/obj/structure/stone_tile/center,
+/obj/effect/mapping_helpers/no_lava,
/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
/area/lavaland/surface/outdoors)
"dy" = (
@@ -1281,6 +1339,7 @@
/obj/structure/stone_tile/block{
dir = 8
},
+/obj/effect/mapping_helpers/no_lava,
/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
/area/lavaland/surface/outdoors)
"dz" = (
@@ -1300,6 +1359,7 @@
dir = 4
},
/obj/structure/stone_tile/center,
+/obj/effect/mapping_helpers/no_lava,
/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
/area/lavaland/surface/outdoors)
"dB" = (
diff --git a/_maps/RandomRuins/LavaRuins/lavaland_surface_biodome_winter.dmm b/_maps/RandomRuins/LavaRuins/lavaland_surface_biodome_winter.dmm
index b870db266c..2eab6d5f27 100644
--- a/_maps/RandomRuins/LavaRuins/lavaland_surface_biodome_winter.dmm
+++ b/_maps/RandomRuins/LavaRuins/lavaland_surface_biodome_winter.dmm
@@ -303,6 +303,7 @@
/obj/machinery/light/built{
dir = 1
},
+/obj/effect/mapping_helpers/no_lava,
/turf/open/floor/pod/dark{
initial_gas_mix = "o2=14;n2=23;TEMP=300"
},
@@ -312,6 +313,10 @@
/obj/structure/fans/tiny,
/turf/open/floor/pod/dark,
/area/ruin/powered/snow_biodome)
+"tb" = (
+/obj/effect/mapping_helpers/no_lava,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/lavaland/surface/outdoors/explored)
"tl" = (
/turf/open/floor/pod/light,
/area/ruin/powered/snow_biodome)
@@ -385,6 +390,11 @@
/obj/item/paper_bin,
/turf/open/floor/pod/dark,
/area/ruin/powered/snow_biodome)
+"Qa" = (
+/obj/effect/mapping_helpers/no_lava,
+/obj/effect/mapping_helpers/no_lava,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/lavaland/surface/outdoors/explored)
"QI" = (
/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
/area/lavaland/surface/outdoors/explored)
@@ -572,7 +582,7 @@ ak
Wg
Wg
QI
-QI
+tb
aa
"}
(6,1,1) = {"
@@ -604,7 +614,7 @@ ak
ak
Wg
QI
-QI
+tb
aa
"}
(7,1,1) = {"
@@ -636,7 +646,7 @@ ak
bM
Wg
Wg
-QI
+tb
aa
"}
(8,1,1) = {"
@@ -668,8 +678,8 @@ ak
az
ak
Wg
-QI
-QI
+tb
+tb
"}
(9,1,1) = {"
aa
@@ -701,7 +711,7 @@ ak
ak
Wg
hA
-QI
+tb
"}
(10,1,1) = {"
Wg
@@ -732,8 +742,8 @@ ak
ak
ak
Wg
-QI
-QI
+tb
+tb
"}
(11,1,1) = {"
Wg
@@ -765,7 +775,7 @@ Wg
Wg
Wg
Wg
-QI
+tb
"}
(12,1,1) = {"
Wg
@@ -797,7 +807,7 @@ Wg
Dd
Dd
Wg
-QI
+tb
"}
(13,1,1) = {"
Wg
@@ -829,7 +839,7 @@ Wg
Mp
dS
Wg
-QI
+tb
"}
(14,1,1) = {"
Wg
@@ -861,7 +871,7 @@ Wg
tl
tl
Wg
-QI
+tb
"}
(15,1,1) = {"
Wg
@@ -893,7 +903,7 @@ aO
tl
tl
Ez
-QI
+Qa
"}
(16,1,1) = {"
Wg
@@ -925,7 +935,7 @@ aP
tl
tl
aP
-QI
+Qa
"}
(17,1,1) = {"
Wg
@@ -957,7 +967,7 @@ Wg
tl
tl
Wg
-QI
+tb
"}
(18,1,1) = {"
Wg
@@ -989,7 +999,7 @@ Wg
HP
dS
Wg
-QI
+tb
"}
(19,1,1) = {"
Wg
@@ -1021,7 +1031,7 @@ Wg
QK
AM
Wg
-QI
+tb
"}
(20,1,1) = {"
Wg
@@ -1053,7 +1063,7 @@ Wg
Wg
Wg
Wg
-QI
+tb
"}
(21,1,1) = {"
Wg
@@ -1084,8 +1094,8 @@ ak
ak
ak
Wg
-QI
-QI
+tb
+tb
"}
(22,1,1) = {"
aa
@@ -1117,7 +1127,7 @@ ak
ak
Wg
hA
-QI
+tb
"}
(23,1,1) = {"
aa
@@ -1148,8 +1158,8 @@ ak
ak
ak
Wg
-QI
-QI
+tb
+tb
"}
(24,1,1) = {"
aa
@@ -1180,7 +1190,7 @@ ak
bM
Wg
Wg
-QI
+tb
aa
"}
(25,1,1) = {"
@@ -1212,7 +1222,7 @@ aC
ak
Wg
QI
-QI
+tb
aa
"}
(26,1,1) = {"
diff --git a/_maps/RandomRuins/LavaRuins/lavaland_surface_blooddrunk1.dmm b/_maps/RandomRuins/LavaRuins/lavaland_surface_blooddrunk1.dmm
index 398c4b6c98..430c211c87 100644
--- a/_maps/RandomRuins/LavaRuins/lavaland_surface_blooddrunk1.dmm
+++ b/_maps/RandomRuins/LavaRuins/lavaland_surface_blooddrunk1.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
"a" = (
/turf/template_noop,
/area/template_noop)
diff --git a/_maps/RandomRuins/LavaRuins/lavaland_surface_blooddrunk2.dmm b/_maps/RandomRuins/LavaRuins/lavaland_surface_blooddrunk2.dmm
index 3143123d32..82fc034946 100644
--- a/_maps/RandomRuins/LavaRuins/lavaland_surface_blooddrunk2.dmm
+++ b/_maps/RandomRuins/LavaRuins/lavaland_surface_blooddrunk2.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
"a" = (
/turf/template_noop,
/area/template_noop)
diff --git a/_maps/RandomRuins/LavaRuins/lavaland_surface_blooddrunk3.dmm b/_maps/RandomRuins/LavaRuins/lavaland_surface_blooddrunk3.dmm
index adc8bf05dd..138cefc338 100644
--- a/_maps/RandomRuins/LavaRuins/lavaland_surface_blooddrunk3.dmm
+++ b/_maps/RandomRuins/LavaRuins/lavaland_surface_blooddrunk3.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
"a" = (
/turf/template_noop,
/area/template_noop)
diff --git a/_maps/RandomRuins/LavaRuins/lavaland_surface_cube.dmm b/_maps/RandomRuins/LavaRuins/lavaland_surface_cube.dmm
index 59d066dacf..56b68ef60f 100644
--- a/_maps/RandomRuins/LavaRuins/lavaland_surface_cube.dmm
+++ b/_maps/RandomRuins/LavaRuins/lavaland_surface_cube.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
"a" = (
/turf/closed/mineral/volcanic/lava_land_surface,
/area/lavaland/surface/outdoors)
@@ -14,6 +14,7 @@
/area/lavaland/surface/outdoors)
"e" = (
/obj/machinery/wish_granter,
+/obj/effect/mapping_helpers/no_lava,
/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
/area/lavaland/surface/outdoors)
diff --git a/_maps/RandomRuins/LavaRuins/lavaland_surface_cultaltar.dmm b/_maps/RandomRuins/LavaRuins/lavaland_surface_cultaltar.dmm
index b2145363fa..eee442825e 100644
--- a/_maps/RandomRuins/LavaRuins/lavaland_surface_cultaltar.dmm
+++ b/_maps/RandomRuins/LavaRuins/lavaland_surface_cultaltar.dmm
@@ -89,9 +89,6 @@
"s" = (
/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
/area/ruin/unpowered)
-"t" = (
-/turf/closed/wall/mineral/cult,
-/area/ruin/unpowered)
(1,1,1) = {"
a
@@ -186,7 +183,7 @@ c
b
b
l
-t
+d
k
b
b
diff --git a/_maps/RandomRuins/LavaRuins/lavaland_surface_envy.dmm b/_maps/RandomRuins/LavaRuins/lavaland_surface_envy.dmm
index 68f86cc20c..62485f8581 100644
--- a/_maps/RandomRuins/LavaRuins/lavaland_surface_envy.dmm
+++ b/_maps/RandomRuins/LavaRuins/lavaland_surface_envy.dmm
@@ -101,6 +101,10 @@
/obj/machinery/door/airlock/hatch,
/turf/open/floor/plating,
/area/ruin/unpowered)
+"A" = (
+/obj/effect/mapping_helpers/no_lava,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/lavaland/surface/outdoors)
(1,1,1) = {"
a
@@ -209,7 +213,7 @@ i
i
i
d
-a
+A
a
"}
(6,1,1) = {"
@@ -231,7 +235,7 @@ i
i
i
p
-a
+A
a
"}
(7,1,1) = {"
diff --git a/_maps/RandomRuins/LavaRuins/lavaland_surface_golem_ship.dmm b/_maps/RandomRuins/LavaRuins/lavaland_surface_golem_ship.dmm
index b3b73379ff..14a190040f 100644
--- a/_maps/RandomRuins/LavaRuins/lavaland_surface_golem_ship.dmm
+++ b/_maps/RandomRuins/LavaRuins/lavaland_surface_golem_ship.dmm
@@ -234,6 +234,11 @@
/obj/machinery/light/small,
/turf/open/floor/mineral/titanium/purple,
/area/ruin/powered/golem_ship)
+"T" = (
+/obj/structure/fans/tiny,
+/obj/machinery/door/airlock/titanium,
+/turf/open/floor/mineral/titanium/purple,
+/area/ruin/powered/golem_ship)
"U" = (
/obj/effect/mob_spawn/human/golem/adamantine,
/obj/machinery/light/small,
@@ -288,12 +293,12 @@ a
a
b
b
-b
+H
b
r
l
G
-b
+T
b
b
a
@@ -517,7 +522,7 @@ f
b
"}
(16,1,1) = {"
-b
+T
e
I
b
@@ -532,10 +537,10 @@ B
b
V
f
-b
+T
"}
(17,1,1) = {"
-b
+T
f
f
b
@@ -550,7 +555,7 @@ C
b
f
f
-b
+T
"}
(18,1,1) = {"
b
diff --git a/_maps/RandomRuins/LavaRuins/lavaland_surface_greed.dmm b/_maps/RandomRuins/LavaRuins/lavaland_surface_greed.dmm
index c0789e84d1..1422cde1a4 100644
--- a/_maps/RandomRuins/LavaRuins/lavaland_surface_greed.dmm
+++ b/_maps/RandomRuins/LavaRuins/lavaland_surface_greed.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
"a" = (
/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
/area/lavaland/surface/outdoors)
@@ -55,7 +55,7 @@
/area/ruin/powered/greed)
"k" = (
/obj/machinery/computer/arcade/battle{
- emagged = 1
+ set_obj_flags = "EMAGGED"
},
/turf/open/floor/engine/cult,
/area/ruin/powered/greed)
diff --git a/_maps/RandomRuins/LavaRuins/lavaland_surface_hierophant.dmm b/_maps/RandomRuins/LavaRuins/lavaland_surface_hierophant.dmm
index 2e7e02b73e..cad120c3f2 100644
--- a/_maps/RandomRuins/LavaRuins/lavaland_surface_hierophant.dmm
+++ b/_maps/RandomRuins/LavaRuins/lavaland_surface_hierophant.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
"a" = (
/turf/closed/indestructible/riveted/hierophant,
/area/ruin/unpowered/hierophant)
diff --git a/_maps/RandomRuins/LavaRuins/lavaland_surface_random_ripley.dmm b/_maps/RandomRuins/LavaRuins/lavaland_surface_random_ripley.dmm
index 833d619e62..809e520279 100644
--- a/_maps/RandomRuins/LavaRuins/lavaland_surface_random_ripley.dmm
+++ b/_maps/RandomRuins/LavaRuins/lavaland_surface_random_ripley.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
"a" = (
/turf/template_noop,
/area/lavaland/surface/outdoors)
@@ -21,64 +21,36 @@
(1,1,1) = {"
a
-a
-a
-a
-a
-a
+b
+b
+b
a
"}
(2,1,1) = {"
-a
-a
b
+c
b
+c
b
-a
-a
"}
(3,1,1) = {"
-a
-b
-c
-b
-c
-b
-a
-"}
-(4,1,1) = {"
-a
b
c
d
e
b
-a
+"}
+(4,1,1) = {"
+b
+c
+c
+b
+b
"}
(5,1,1) = {"
-a
b
-c
-c
+b
b
b
a
"}
-(6,1,1) = {"
-a
-b
-b
-b
-b
-a
-a
-"}
-(7,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-"}
diff --git a/_maps/RandomRuins/LavaRuins/lavaland_surface_syndicate_base1.dmm b/_maps/RandomRuins/LavaRuins/lavaland_surface_syndicate_base1.dmm
index a63b837e54..b0df3f7fbb 100644
--- a/_maps/RandomRuins/LavaRuins/lavaland_surface_syndicate_base1.dmm
+++ b/_maps/RandomRuins/LavaRuins/lavaland_surface_syndicate_base1.dmm
@@ -44,7 +44,7 @@
/obj/machinery/airalarm{
dir = 4;
pixel_x = -24;
- req_access = 150
+ req_access = list(150)
},
/turf/open/floor/plasteel/red/side{
dir = 8
@@ -96,9 +96,6 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel/floorgrime,
/area/ruin/unpowered/syndicate_lava_base/chemistry)
-"cO" = (
-/turf/closed/wall/mineral/plastitanium/explosive,
-/area/ruin/unpowered/syndicate_lava_base/chemistry)
"dc" = (
/obj/machinery/light/small{
dir = 8
@@ -169,7 +166,7 @@
dir = 8;
name = "Chemistry APC";
pixel_x = -24;
- req_access = 150
+ req_access = list(150)
},
/obj/structure/cable/yellow{
icon_state = "0-2"
@@ -266,7 +263,7 @@
"dL" = (
/obj/machinery/airalarm{
pixel_y = 24;
- req_access = 150
+ req_access = list(150)
},
/obj/structure/closet/crate,
/obj/item/extinguisher{
@@ -327,7 +324,7 @@
/turf/closed/wall/mineral/plastitanium/explosive,
/area/ruin/unpowered/syndicate_lava_base/cargo)
"dQ" = (
-/obj/structure/sign/securearea,
+/obj/structure/sign/warning/securearea,
/turf/closed/wall/mineral/plastitanium/nodiagonal,
/area/ruin/unpowered/syndicate_lava_base/testlab)
"dR" = (
@@ -416,7 +413,7 @@
/obj/machinery/airalarm{
dir = 8;
pixel_x = 24;
- req_access = 150
+ req_access = list(150)
},
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel/white/side{
@@ -508,7 +505,7 @@
dir = 1;
name = "Cargo Bay APC";
pixel_y = 24;
- req_access = 150
+ req_access = list(150)
},
/obj/structure/closet/emcloset/anchored,
/obj/effect/decal/cleanable/dirt,
@@ -1171,7 +1168,7 @@
dir = 1;
name = "Virology APC";
pixel_y = 24;
- req_access = 150
+ req_access = list(150)
},
/obj/structure/cable/yellow{
icon_state = "0-2"
@@ -1204,7 +1201,7 @@
dir = 2;
name = "Experimentation Lab APC";
pixel_y = -24;
- req_access = 150
+ req_access = list(150)
},
/obj/structure/cable/yellow{
icon_state = "0-4"
@@ -1358,7 +1355,7 @@
/obj/machinery/airalarm{
dir = 4;
pixel_x = -24;
- req_access = 150
+ req_access = list(150)
},
/obj/structure/table,
/obj/item/clothing/suit/hazardvest,
@@ -1393,7 +1390,7 @@
/turf/open/floor/plasteel,
/area/ruin/unpowered/syndicate_lava_base/cargo)
"fx" = (
-/obj/structure/sign/securearea,
+/obj/structure/sign/warning/securearea,
/turf/closed/wall/mineral/plastitanium/nodiagonal,
/area/ruin/unpowered/syndicate_lava_base/cargo)
"fy" = (
@@ -1453,7 +1450,7 @@
},
/area/ruin/unpowered/syndicate_lava_base/virology)
"fD" = (
-/obj/structure/sign/biohazard,
+/obj/structure/sign/warning/biohazard,
/turf/closed/wall/mineral/plastitanium/nodiagonal,
/area/ruin/unpowered/syndicate_lava_base/virology)
"fE" = (
@@ -1464,7 +1461,7 @@
},
/obj/machinery/airalarm{
pixel_y = 24;
- req_access = 150
+ req_access = list(150)
},
/turf/open/floor/plasteel/floorgrime,
/area/ruin/unpowered/syndicate_lava_base/main)
@@ -1583,17 +1580,17 @@
/turf/open/floor/plating,
/area/ruin/unpowered/syndicate_lava_base/cargo)
"gf" = (
-/obj/structure/sign/vacuum{
+/obj/structure/sign/warning/vacuum{
pixel_y = -32
},
/obj/machinery/light/small,
/turf/open/floor/plating,
/area/ruin/unpowered/syndicate_lava_base/cargo)
"gg" = (
-/obj/structure/sign/fire{
+/obj/structure/sign/warning/fire{
pixel_y = 32
},
-/obj/structure/sign/xeno_warning_mining{
+/obj/structure/sign/warning/xeno_mining{
pixel_y = -32
},
/turf/open/floor/plating,
@@ -1962,7 +1959,7 @@
},
/area/ruin/unpowered/syndicate_lava_base/main)
"gO" = (
-/obj/structure/sign/cargo,
+/obj/structure/sign/departments/cargo,
/turf/closed/wall/mineral/plastitanium/nodiagonal,
/area/ruin/unpowered/syndicate_lava_base/cargo)
"gP" = (
@@ -2014,7 +2011,7 @@
/obj/machinery/airalarm{
dir = 4;
pixel_x = -24;
- req_access = 150
+ req_access = list(150)
},
/obj/structure/sink{
dir = 8;
@@ -2263,7 +2260,7 @@
/area/ruin/unpowered/syndicate_lava_base/virology)
"hv" = (
/obj/machinery/disposal/bin,
-/obj/structure/sign/deathsposal{
+/obj/structure/sign/warning/deathsposal{
pixel_x = 32
},
/obj/effect/turf_decal/stripes/red/box,
@@ -2286,7 +2283,7 @@
/obj/machinery/airalarm{
dir = 4;
pixel_x = -24;
- req_access = 150
+ req_access = list(150)
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -2376,7 +2373,7 @@
/turf/open/floor/plating,
/area/ruin/unpowered/syndicate_lava_base/virology)
"hI" = (
-/obj/structure/sign/vacuum{
+/obj/structure/sign/warning/vacuum{
pixel_x = -32
},
/turf/open/floor/plating,
@@ -2389,7 +2386,7 @@
/obj/machinery/light/small{
dir = 4
},
-/obj/structure/sign/fire{
+/obj/structure/sign/warning/fire{
pixel_x = 32
},
/obj/structure/closet/emcloset/anchored,
@@ -2423,7 +2420,7 @@
/obj/item/ammo_box/magazine/sniper_rounds,
/obj/machinery/airalarm{
pixel_y = 24;
- req_access = 150
+ req_access = list(150)
},
/turf/open/floor/plasteel/grimy,
/area/ruin/unpowered/syndicate_lava_base/dormitories)
@@ -2457,7 +2454,7 @@
/obj/item/ammo_box/magazine/m10mm,
/obj/machinery/airalarm{
pixel_y = 24;
- req_access = 150
+ req_access = list(150)
},
/turf/open/floor/plasteel/grimy,
/area/ruin/unpowered/syndicate_lava_base/dormitories)
@@ -2597,6 +2594,7 @@
/obj/effect/turf_decal/stripes/line{
dir = 9
},
+/obj/effect/mapping_helpers/no_lava,
/turf/open/floor/plating{
baseturfs = /turf/open/lava/smooth/lava_land_surface;
initial_gas_mix = "o2=14;n2=23;TEMP=300"
@@ -2606,6 +2604,7 @@
/obj/effect/turf_decal/stripes/line{
dir = 1
},
+/obj/effect/mapping_helpers/no_lava,
/turf/open/floor/plating{
baseturfs = /turf/open/lava/smooth/lava_land_surface;
initial_gas_mix = "o2=14;n2=23;TEMP=300"
@@ -2680,7 +2679,7 @@
/turf/open/floor/plasteel,
/area/ruin/unpowered/syndicate_lava_base/main)
"iq" = (
-/obj/structure/sign/securearea,
+/obj/structure/sign/warning/securearea,
/turf/closed/wall/mineral/plastitanium/nodiagonal,
/area/ruin/unpowered/syndicate_lava_base/main)
"ir" = (
@@ -2711,6 +2710,7 @@
/obj/effect/turf_decal/stripes/line{
dir = 8
},
+/obj/effect/mapping_helpers/no_lava,
/turf/open/floor/plating{
baseturfs = /turf/open/lava/smooth/lava_land_surface;
initial_gas_mix = "o2=14;n2=23;TEMP=300"
@@ -2718,6 +2718,7 @@
/area/lavaland/surface/outdoors)
"iv" = (
/obj/effect/decal/cleanable/dirt,
+/obj/effect/mapping_helpers/no_lava,
/turf/open/floor/plating{
baseturfs = /turf/open/lava/smooth/lava_land_surface;
initial_gas_mix = "o2=14;n2=23;TEMP=300"
@@ -2775,7 +2776,7 @@
"iB" = (
/obj/machinery/airalarm{
pixel_y = 24;
- req_access = 150
+ req_access = list(150)
},
/obj/machinery/atmospherics/components/unary/vent_pump/on,
/obj/effect/decal/cleanable/dirt,
@@ -2864,7 +2865,7 @@
/obj/machinery/airalarm{
dir = 8;
pixel_x = 24;
- req_access = 150
+ req_access = list(150)
},
/turf/open/floor/circuit/red,
/area/ruin/unpowered/syndicate_lava_base/main)
@@ -3001,7 +3002,7 @@
dir = 2;
name = "Dormitories APC";
pixel_y = -24;
- req_access = 150
+ req_access = list(150)
},
/obj/structure/cable/yellow{
icon_state = "0-8"
@@ -3097,6 +3098,7 @@
/obj/effect/turf_decal/stripes/corner{
dir = 4
},
+/obj/effect/mapping_helpers/no_lava,
/turf/open/floor/plating{
baseturfs = /turf/open/lava/smooth/lava_land_surface;
initial_gas_mix = "o2=14;n2=23;TEMP=300"
@@ -3151,7 +3153,7 @@
dir = 8;
name = "Primary Hallway APC";
pixel_x = -24;
- req_access = 150
+ req_access = list(150)
},
/turf/open/floor/plasteel/red/side{
dir = 8
@@ -3161,6 +3163,7 @@
/turf/open/floor/plasteel,
/area/ruin/unpowered/syndicate_lava_base/main)
"jk" = (
+/obj/effect/mapping_helpers/no_lava,
/turf/open/floor/plating{
baseturfs = /turf/open/lava/smooth/lava_land_surface;
initial_gas_mix = "o2=14;n2=23;TEMP=300"
@@ -3184,7 +3187,7 @@
},
/obj/machinery/airalarm{
pixel_y = 24;
- req_access = 150
+ req_access = list(150)
},
/turf/open/floor/plasteel/grimy,
/area/ruin/unpowered/syndicate_lava_base/dormitories)
@@ -3219,7 +3222,7 @@
},
/obj/machinery/airalarm{
pixel_y = 24;
- req_access = 150
+ req_access = list(150)
},
/turf/open/floor/plasteel/grimy,
/area/ruin/unpowered/syndicate_lava_base/dormitories)
@@ -3414,7 +3417,7 @@
/obj/machinery/airalarm{
dir = 8;
pixel_x = 24;
- req_access = 150
+ req_access = list(150)
},
/obj/structure/cable/yellow{
icon_state = "2-8"
@@ -3531,7 +3534,7 @@
},
/area/ruin/unpowered/syndicate_lava_base/main)
"jU" = (
-/obj/structure/sign/engineering,
+/obj/structure/sign/departments/engineering,
/turf/closed/wall/mineral/plastitanium/nodiagonal,
/area/ruin/unpowered/syndicate_lava_base/engineering)
"jV" = (
@@ -3566,14 +3569,6 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel,
/area/ruin/unpowered/syndicate_lava_base/engineering)
-"jX" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/turf/closed/wall/mineral/plastitanium/explosive,
-/area/ruin/unpowered/syndicate_lava_base/engineering)
"jY" = (
/obj/structure/chair{
dir = 1
@@ -3796,7 +3791,7 @@
/obj/machinery/airalarm{
dir = 8;
pixel_x = 24;
- req_access = 150
+ req_access = list(150)
},
/obj/machinery/vending/coffee{
extended_inventory = 1
@@ -3899,7 +3894,7 @@
dir = 1;
name = "Engineering APC";
pixel_y = 24;
- req_access = 150
+ req_access = list(150)
},
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -4064,7 +4059,7 @@
/turf/open/floor/plasteel/white,
/area/ruin/unpowered/syndicate_lava_base/medbay)
"kT" = (
-/obj/structure/sign/bluecross_2,
+/obj/structure/sign/departments/medbay/alt,
/turf/closed/wall/mineral/plastitanium/nodiagonal,
/area/ruin/unpowered/syndicate_lava_base/medbay)
"kU" = (
@@ -4076,7 +4071,7 @@
},
/obj/machinery/power/smes/engineering,
/obj/structure/cable/yellow,
-/obj/structure/sign/electricshock{
+/obj/structure/sign/warning/electricshock{
pixel_x = -32
},
/obj/effect/decal/cleanable/dirt,
@@ -4331,6 +4326,7 @@
/obj/effect/turf_decal/stripes/line{
dir = 10
},
+/obj/effect/mapping_helpers/no_lava,
/turf/open/floor/plating{
baseturfs = /turf/open/lava/smooth/lava_land_surface;
initial_gas_mix = "o2=14;n2=23;TEMP=300"
@@ -4338,6 +4334,7 @@
/area/lavaland/surface/outdoors)
"lw" = (
/obj/effect/turf_decal/stripes/line,
+/obj/effect/mapping_helpers/no_lava,
/turf/open/floor/plating{
baseturfs = /turf/open/lava/smooth/lava_land_surface;
initial_gas_mix = "o2=14;n2=23;TEMP=300"
@@ -4462,7 +4459,7 @@
/obj/machinery/airalarm{
dir = 4;
pixel_x = -24;
- req_access = 150
+ req_access = list(150)
},
/obj/machinery/light/small{
dir = 8
@@ -4549,7 +4546,7 @@
/obj/machinery/airalarm{
dir = 4;
pixel_x = -24;
- req_access = 150
+ req_access = list(150)
},
/obj/structure/chair/stool,
/turf/open/floor/plasteel/vault{
@@ -4641,7 +4638,6 @@
/turf/open/floor/plasteel/dark,
/area/ruin/unpowered/syndicate_lava_base/bar)
"mc" = (
-/obj/structure/closet/crate,
/obj/item/storage/box/donkpockets{
pixel_x = -2;
pixel_y = 6
@@ -4665,6 +4661,9 @@
icon_state = "1-8"
},
/obj/effect/decal/cleanable/dirt,
+/obj/structure/closet/secure_closet/freezer/kitchen/maintenance{
+ req_access = null
+ },
/turf/open/floor/plasteel/dark,
/area/ruin/unpowered/syndicate_lava_base/bar)
"md" = (
@@ -4690,7 +4689,7 @@
/obj/machinery/airalarm{
dir = 8;
pixel_x = 24;
- req_access = 150
+ req_access = list(150)
},
/turf/open/floor/plasteel/floorgrime,
/area/ruin/unpowered/syndicate_lava_base/medbay)
@@ -4766,7 +4765,7 @@
/turf/open/floor/plating,
/area/ruin/unpowered/syndicate_lava_base/telecomms)
"mq" = (
-/obj/structure/sign/vacuum{
+/obj/structure/sign/warning/vacuum{
pixel_x = -32
},
/turf/open/floor/plating,
@@ -4778,7 +4777,7 @@
/obj/machinery/light/small{
dir = 4
},
-/obj/structure/sign/fire{
+/obj/structure/sign/warning/fire{
pixel_x = 32
},
/obj/structure/closet/emcloset/anchored,
@@ -4809,7 +4808,7 @@
dir = 2;
name = "Bar APC";
pixel_y = -24;
- req_access = 150
+ req_access = list(150)
},
/turf/open/floor/wood,
/area/ruin/unpowered/syndicate_lava_base/bar)
@@ -4955,7 +4954,7 @@
/turf/open/floor/circuit/green,
/area/ruin/unpowered/syndicate_lava_base/telecomms)
"mN" = (
-/obj/structure/sign/securearea,
+/obj/structure/sign/warning/securearea,
/turf/closed/wall/mineral/plastitanium/nodiagonal,
/area/ruin/unpowered/syndicate_lava_base/telecomms)
"mP" = (
@@ -5115,7 +5114,7 @@
/turf/open/floor/plasteel/floorgrime,
/area/ruin/unpowered/syndicate_lava_base/engineering)
"nf" = (
-/obj/structure/sign/fire,
+/obj/structure/sign/warning/fire,
/turf/closed/wall/mineral/plastitanium/nodiagonal,
/area/ruin/unpowered/syndicate_lava_base/engineering)
"ng" = (
@@ -5258,7 +5257,7 @@
dir = 1;
name = "Arrival Hallway APC";
pixel_y = 24;
- req_access = 150
+ req_access = list(150)
},
/obj/structure/cable/yellow{
icon_state = "0-4"
@@ -5431,7 +5430,7 @@
/obj/machinery/airalarm{
dir = 4;
pixel_x = -24;
- req_access = 150
+ req_access = list(150)
},
/obj/machinery/light/small{
dir = 8
@@ -5448,13 +5447,6 @@
/area/ruin/unpowered/syndicate_lava_base/telecomms)
"nJ" = (
/obj/structure/table/reinforced,
-/obj/item/device/radio/intercom{
- broadcasting = 0;
- dir = 8;
- freerange = 1;
- listening = 1;
- name = "Pirate Radio Listening Channel"
- },
/turf/open/floor/plasteel/vault{
dir = 5
},
@@ -5644,7 +5636,7 @@
},
/obj/machinery/airalarm{
pixel_y = 24;
- req_access = 150
+ req_access = list(150)
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -5714,7 +5706,7 @@
dir = 4;
name = "Medbay APC";
pixel_x = 24;
- req_access = 150
+ req_access = list(150)
},
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel/white/side{
@@ -5782,11 +5774,8 @@
"oj" = (
/obj/structure/table/reinforced,
/obj/item/device/radio/intercom{
- broadcasting = 1;
- dir = 8;
freerange = 1;
- listening = 0;
- name = "Pirate Radio Broadcast Channel"
+ name = "Syndicate Radio Intercom"
},
/turf/open/floor/plasteel/vault{
dir = 5
@@ -5801,7 +5790,7 @@
dir = 2;
name = "Telecommunications APC";
pixel_y = -24;
- req_access = 150
+ req_access = list(150)
},
/turf/open/floor/plasteel/vault{
dir = 5
@@ -5904,9 +5893,6 @@
/obj/item/pen,
/turf/open/floor/plasteel/dark,
/area/ruin/unpowered/syndicate_lava_base/telecomms)
-"ow" = (
-/turf/closed/wall/mineral/plastitanium/explosive,
-/area/ruin/unpowered/syndicate_lava_base/arrivals)
"ox" = (
/obj/structure/grille,
/obj/structure/window/plastitanium,
@@ -5916,9 +5902,6 @@
},
/turf/open/floor/plating,
/area/ruin/unpowered/syndicate_lava_base/arrivals)
-"oy" = (
-/turf/closed/wall/mineral/plastitanium/explosive,
-/area/ruin/unpowered/syndicate_lava_base/medbay)
"oz" = (
/turf/open/floor/engine{
initial_gas_mix = "o2=14;n2=23;TEMP=300"
@@ -5943,9 +5926,7 @@
frequency = 1441;
id = "syndie_lavaland_inc_in"
},
-/obj/structure/sign/vacuum{
- desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
- name = "EXTERNAL AIRLOCK";
+/obj/structure/sign/warning/vacuum/external{
pixel_y = -32
},
/turf/open/floor/engine{
@@ -5962,10 +5943,10 @@
},
/area/ruin/unpowered/syndicate_lava_base/engineering)
"oD" = (
-/obj/structure/sign/xeno_warning_mining{
+/obj/structure/sign/warning/xeno_mining{
pixel_x = -32
},
-/obj/structure/sign/fire{
+/obj/structure/sign/warning/fire{
pixel_x = 32
},
/turf/open/floor/plating,
@@ -5986,7 +5967,7 @@
},
/area/ruin/unpowered/syndicate_lava_base/engineering)
"oF" = (
-/obj/structure/sign/securearea,
+/obj/structure/sign/warning/securearea,
/turf/closed/wall/mineral/plastitanium/nodiagonal,
/area/ruin/unpowered/syndicate_lava_base/arrivals)
"oG" = (
@@ -6009,7 +5990,7 @@
},
/area/ruin/unpowered/syndicate_lava_base/engineering)
"oI" = (
-/obj/structure/sign/vacuum{
+/obj/structure/sign/warning/vacuum{
pixel_x = -32
},
/obj/machinery/light/small{
@@ -6018,7 +5999,7 @@
/turf/open/floor/plating,
/area/ruin/unpowered/syndicate_lava_base/arrivals)
"oP" = (
-/obj/structure/sign/chemistry,
+/obj/structure/sign/departments/chemistry,
/turf/closed/wall/mineral/plastitanium/nodiagonal,
/area/ruin/unpowered/syndicate_lava_base/testlab)
@@ -6320,7 +6301,7 @@ eh
eh
eh
eh
-gj
+eh
eh
ab
ab
@@ -6338,7 +6319,7 @@ ab
ab
ab
mn
-mo
+mn
mN
nj
mn
@@ -6574,8 +6555,8 @@ dG
dG
lS
mn
-mo
mn
+mo
nL
mn
mn
@@ -6711,7 +6692,7 @@ je
jk
jx
jx
-jP
+jy
jy
jy
ms
@@ -6719,7 +6700,7 @@ mT
no
nN
ol
-ow
+mT
ab
ab
ab
@@ -6740,7 +6721,7 @@ ac
ac
ae
ae
-aL
+ae
ae
fC
gw
@@ -6782,7 +6763,7 @@ ab
ae
ae
ae
-aL
+ae
ae
ae
ae
@@ -6792,7 +6773,7 @@ ae
fD
ad
eh
-gj
+eh
eh
hW
dG
@@ -6938,10 +6919,10 @@ hK
ha
ha
ha
-iN
ha
ha
-jy
+ha
+jP
jM
jN
jZ
@@ -6954,7 +6935,7 @@ jy
jy
nS
on
-ow
+mT
ab
ab
ab
@@ -6981,7 +6962,7 @@ ae
gB
hb
ha
-ha
+iN
ha
ii
iw
@@ -7045,7 +7026,7 @@ lB
lY
lA
mW
-jy
+jP
nT
op
ox
@@ -7111,12 +7092,12 @@ ab
ae
ae
ae
+ae
+ae
aL
ae
ae
ae
-ae
-ae
oP
fH
gG
@@ -7130,7 +7111,7 @@ iR
hz
jn
jA
-jP
+jy
jy
jy
jy
@@ -7236,7 +7217,7 @@ jy
nu
nX
om
-ow
+mT
ab
ab
ab
@@ -7263,7 +7244,7 @@ fO
gG
hg
hz
-hO
+hz
hz
hz
iB
@@ -7277,7 +7258,7 @@ jy
jy
jy
jy
-jP
+jy
jy
mX
nv
@@ -7393,13 +7374,13 @@ ab
ab
ab
as
-cO
+as
as
dI
dZ
ew
as
-cO
+as
as
gJ
hh
@@ -7412,7 +7393,7 @@ iX
hz
jq
jA
-hO
+hz
kg
kt
kQ
@@ -7441,7 +7422,7 @@ ab
ab
ab
ac
-cO
+as
as
as
as
@@ -7457,7 +7438,7 @@ hz
iF
iY
hz
-hz
+hO
hz
hz
kh
@@ -7471,7 +7452,7 @@ na
nz
ob
os
-oy
+kQ
ac
ab
ab
@@ -7501,7 +7482,7 @@ hz
hz
hz
hz
-hO
+hz
hz
hz
jr
@@ -7588,7 +7569,7 @@ ec
ez
eY
ft
-dy
+dP
gN
hj
hj
@@ -7650,15 +7631,15 @@ jF
jT
ju
ju
+ju
+ju
+ju
kU
ju
ju
ju
ju
ju
-kU
-ju
-ju
ju
ju
ab
@@ -7678,7 +7659,7 @@ ab
ab
ac
dy
-dP
+dy
eA
fa
dy
@@ -7835,7 +7816,7 @@ ha
ha
ju
jJ
-jX
+kl
kl
kA
kY
@@ -7916,7 +7897,7 @@ ab
dy
eF
eF
-dP
+dy
gf
dy
eF
@@ -7980,7 +7961,7 @@ ab
ju
kD
lb
-kU
+ju
kD
lb
ju
diff --git a/_maps/RandomRuins/SpaceRuins/DJstation.dmm b/_maps/RandomRuins/SpaceRuins/DJstation.dmm
index c12eef522e..905e795de5 100644
--- a/_maps/RandomRuins/SpaceRuins/DJstation.dmm
+++ b/_maps/RandomRuins/SpaceRuins/DJstation.dmm
@@ -85,10 +85,7 @@
icon_state = "4-8"
},
/obj/item/storage/box/lights/mixed,
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'HIGH VOLTAGE'";
- icon_state = "shock";
- name = "HIGH VOLTAGE";
+/obj/structure/sign/warning/electricshock{
pixel_y = -32
},
/turf/open/floor/plating,
@@ -333,11 +330,7 @@
/turf/open/floor/plasteel/cafeteria,
/area/ruin/space/djstation)
"bh" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
- icon_state = "space";
- layer = 4;
- name = "EXTERNAL AIRLOCK";
+/obj/structure/sign/warning/vacuum/external{
pixel_y = -32
},
/turf/open/floor/plasteel/cafeteria,
diff --git a/_maps/RandomRuins/SpaceRuins/TheDerelict.dmm b/_maps/RandomRuins/SpaceRuins/TheDerelict.dmm
index 52a5bb9a29..16def0b934 100644
--- a/_maps/RandomRuins/SpaceRuins/TheDerelict.dmm
+++ b/_maps/RandomRuins/SpaceRuins/TheDerelict.dmm
@@ -1081,11 +1081,11 @@
/turf/closed/wall,
/area/ruin/space/derelict/bridge)
"dA" = (
-/obj/structure/sign/electricshock,
+/obj/structure/sign/warning/electricshock,
/turf/closed/wall/r_wall,
/area/ruin/space/derelict/singularity_engine)
"dB" = (
-/obj/structure/sign/securearea,
+/obj/structure/sign/warning/securearea,
/turf/closed/wall/r_wall,
/area/ruin/space/derelict/singularity_engine)
"dC" = (
@@ -1099,7 +1099,7 @@
/turf/open/floor/plating/airless,
/area/ruin/space/derelict/gravity_generator)
"dD" = (
-/obj/structure/sign/securearea{
+/obj/structure/sign/warning/securearea{
name = "ENGINEERING ACCESS"
},
/turf/closed/wall/r_wall,
@@ -1292,10 +1292,7 @@
/area/ruin/space/derelict/gravity_generator)
"ek" = (
/obj/structure/closet/radiation,
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'RADIOACTIVE AREA'";
- icon_state = "radiation";
- name = "RADIOACTIVE AREA";
+/obj/structure/sign/warning/radiation/rad_area{
pixel_x = 32
},
/turf/open/floor/plasteel,
diff --git a/_maps/RandomRuins/SpaceRuins/abandonedteleporter.dmm b/_maps/RandomRuins/SpaceRuins/abandonedteleporter.dmm
index 1403cfdd16..cdbdab34b5 100644
--- a/_maps/RandomRuins/SpaceRuins/abandonedteleporter.dmm
+++ b/_maps/RandomRuins/SpaceRuins/abandonedteleporter.dmm
@@ -122,10 +122,6 @@
/obj/structure/girder,
/turf/open/floor/plating/airless,
/area/ruin/space/abandoned_tele)
-"C" = (
-/obj/structure/lattice,
-/turf/open/space,
-/area/space/nearstation)
(1,1,1) = {"
a
@@ -248,7 +244,7 @@ r
v
m
h
-C
+c
c
a
c
diff --git a/_maps/RandomRuins/SpaceRuins/bigderelict1.dmm b/_maps/RandomRuins/SpaceRuins/bigderelict1.dmm
index 74a5d543ff..ff048c3b3c 100644
--- a/_maps/RandomRuins/SpaceRuins/bigderelict1.dmm
+++ b/_maps/RandomRuins/SpaceRuins/bigderelict1.dmm
@@ -18,7 +18,7 @@
/turf/open/floor/plating,
/area/ruin/space/has_grav/derelictoutpost/cargobay)
"af" = (
-/obj/structure/sign/vacuum{
+/obj/structure/sign/warning/vacuum{
pixel_y = 32
},
/obj/effect/decal/cleanable/cobweb,
@@ -31,7 +31,7 @@
/turf/open/floor/plating,
/area/ruin/space/has_grav/derelictoutpost/cargobay)
"ah" = (
-/obj/structure/sign/vacuum{
+/obj/structure/sign/warning/vacuum{
pixel_y = 32
},
/turf/open/floor/plasteel,
@@ -364,7 +364,7 @@
/turf/open/floor/plasteel,
/area/ruin/space/has_grav/derelictoutpost)
"bk" = (
-/obj/structure/sign/vacuum{
+/obj/structure/sign/warning/vacuum{
pixel_y = 32
},
/turf/open/floor/plasteel,
@@ -410,7 +410,7 @@
name = "gelatinous floor"
},
/obj/structure/glowshroom/single,
-/obj/structure/sign/vacuum{
+/obj/structure/sign/warning/vacuum{
pixel_y = 32
},
/obj/effect/decal/cleanable/blood/old{
diff --git a/_maps/RandomRuins/SpaceRuins/caravanambush.dmm b/_maps/RandomRuins/SpaceRuins/caravanambush.dmm
index 2f3a1eb42c..e42bd71814 100644
--- a/_maps/RandomRuins/SpaceRuins/caravanambush.dmm
+++ b/_maps/RandomRuins/SpaceRuins/caravanambush.dmm
@@ -3,173 +3,260 @@
/turf/template_noop,
/area/template_noop)
"ab" = (
-/turf/closed/wall/mineral/plastitanium,
-/area/ruin/powered)
+/obj/structure/girder/displaced,
+/turf/template_noop,
+/area/template_noop)
"ac" = (
-/obj/machinery/door/airlock/external{
- icon_state = "door_locked";
- locked = 1
- },
-/turf/open/floor/plasteel,
-/area/ruin/powered)
+/obj/item/stack/sheet/mineral/plastitanium,
+/turf/template_noop,
+/area/template_noop)
"ad" = (
-/turf/closed/wall,
-/area/ruin/powered)
+/obj/item/wallframe/camera,
+/turf/template_noop,
+/area/template_noop)
"ae" = (
-/turf/closed/wall/mineral/plastitanium{
- dir = 1;
- icon_state = "diagonalWall3"
+/obj/structure/fluff/broken_flooring{
+ icon_state = "plating";
+ dir = 4
},
-/area/ruin/powered)
+/turf/template_noop,
+/area/template_noop)
"af" = (
-/obj/machinery/suit_storage_unit,
-/turf/open/floor/plasteel,
-/area/ruin/powered)
+/obj/structure/lattice/catwalk,
+/turf/template_noop,
+/area/template_noop)
"ag" = (
-/turf/open/floor/plasteel,
-/area/ruin/powered)
+/obj/structure/lattice/catwalk,
+/obj/structure/closet/crate/secure/weapon,
+/obj/item/gun/ballistic/automatic/pistol/APS,
+/turf/template_noop,
+/area/template_noop)
"ah" = (
-/turf/open/floor/plating/airless,
-/area/ruin/powered)
-"ai" = (
-/obj/machinery/door/airlock/external,
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"aj" = (
-/obj/structure/statue/silver/medborg,
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"ak" = (
-/mob/living/simple_animal/hostile/pirate/ranged{
+/obj/structure/lattice/catwalk,
+/mob/living/simple_animal/hostile/pirate/space{
environment_smash = 0
},
-/turf/open/floor/plasteel,
-/area/ruin/powered)
+/turf/template_noop,
+/area/template_noop)
+"ai" = (
+/obj/structure/lattice,
+/obj/structure/fluff/broken_flooring{
+ dir = 2;
+ icon_state = "plating"
+ },
+/turf/template_noop,
+/area/template_noop)
+"aj" = (
+/obj/machinery/door/airlock/external{
+ cyclelinkeddir = 2;
+ id_tag = "caravanpirate_bolt_port";
+ locked = 1
+ },
+/obj/docking_port/stationary{
+ dir = 2;
+ dwidth = 14;
+ height = 13;
+ id = "caravanpirate_ambush";
+ name = "Trade Route";
+ width = 22
+ },
+/obj/docking_port/mobile{
+ callTime = 150;
+ dir = 2;
+ dwidth = 14;
+ height = 13;
+ id = "caravanpirate";
+ movement_force = list("KNOCKDOWN" = 0, "THROW" = 0);
+ name = "Pirate Cutter";
+ port_direction = 8;
+ preferred_direction = 4;
+ width = 22
+ },
+/turf/open/floor/plating,
+/area/shuttle/caravan/pirate)
+"ak" = (
+/turf/open/floor/plating/airless{
+ icon_state = "platingdmg2"
+ },
+/area/shuttle/caravan/freighter3)
"al" = (
-/obj/structure/closet/emcloset,
-/turf/open/floor/plasteel,
-/area/ruin/powered)
+/obj/structure/lattice,
+/obj/structure/fluff/broken_flooring{
+ icon_state = "singular"
+ },
+/turf/template_noop,
+/area/shuttle/caravan/freighter1)
"am" = (
-/obj/structure/closet{
- name = "pirate outfits"
- },
-/obj/item/clothing/head/collectable/pirate,
-/obj/item/clothing/suit/pirate,
-/obj/item/clothing/under/pirate,
-/obj/item/clothing/shoes/jackboots,
-/obj/item/clothing/head/bandana,
-/turf/open/floor/plasteel,
-/area/ruin/powered)
+/obj/structure/lattice,
+/turf/template_noop,
+/area/shuttle/caravan/freighter1)
"an" = (
-/obj/structure/table,
-/obj/item/stack/sheet/mineral/gold{
- amount = 25
+/obj/structure/lattice,
+/obj/structure/fluff/broken_flooring{
+ icon_state = "plating";
+ dir = 4
},
-/obj/item/coin/plasma,
-/turf/open/floor/plasteel,
-/area/ruin/powered)
+/turf/template_noop,
+/area/template_noop)
"ao" = (
-/obj/structure/table,
-/obj/item/stack/sheet/mineral/gold{
- amount = 25
- },
-/obj/item/coin/gold,
-/obj/item/coin/gold,
-/obj/item/coin/mythril,
-/obj/item/coin/plasma,
-/turf/open/floor/plasteel,
-/area/ruin/powered)
+/obj/item/stack/sheet/mineral/titanium,
+/turf/template_noop,
+/area/template_noop)
"ap" = (
-/obj/structure/table,
-/obj/item/coin/gold,
-/obj/item/coin/gold,
-/obj/item/coin/gold,
-/obj/item/coin/mythril,
-/obj/item/coin/plasma,
-/turf/open/floor/plasteel,
-/area/ruin/powered)
+/obj/structure/lattice,
+/obj/structure/fluff/broken_flooring{
+ icon_state = "pile";
+ dir = 8
+ },
+/turf/template_noop,
+/area/template_noop)
"aq" = (
-/obj/structure/table,
-/mob/living/simple_animal/parrot{
- faction = list("pirate");
- name = "Pegwing"
- },
-/turf/open/floor/plasteel,
-/area/ruin/powered)
+/turf/template_noop,
+/area/shuttle/caravan/freighter1)
"ar" = (
-/obj/structure/shuttle/engine/propulsion/burst{
- dir = 8
- },
-/turf/open/floor/plating/airless,
-/area/ruin/powered)
+/obj/structure/lattice,
+/obj/item/stack/sheet/mineral/titanium,
+/turf/template_noop,
+/area/shuttle/caravan/freighter1)
"as" = (
-/obj/structure/shuttle/engine/heater{
- dir = 8
+/obj/structure/fluff/broken_flooring{
+ dir = 4;
+ icon_state = "singular"
},
-/turf/closed/wall/mineral/plastitanium,
-/area/ruin/powered)
+/turf/template_noop,
+/area/template_noop)
"at" = (
-/obj/structure/bed,
-/obj/item/bedsheet/brown,
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"au" = (
-/obj/structure/chair{
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
dir = 1
},
/turf/open/floor/plasteel,
-/area/ruin/powered)
+/area/shuttle/caravan/pirate)
+"au" = (
+/mob/living/simple_animal/hostile/pirate,
+/turf/open/floor/plasteel,
+/area/shuttle/caravan/pirate)
"av" = (
-/obj/structure/rack,
-/obj/item/storage/bag/money/vault,
-/turf/open/floor/plasteel,
-/area/ruin/powered)
+/obj/effect/turf_decal/bot_white/right,
+/obj/structure/cable/yellow{
+ icon_state = "0-2"
+ },
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "Tiny Freighter APC";
+ pixel_x = -24;
+ req_access = null;
+ start_charge = 0
+ },
+/obj/machinery/button/door{
+ id = "caravantrade3_cargo_port";
+ name = "Cargo Blast Door Control";
+ pixel_y = 24
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/airless/dark,
+/area/shuttle/caravan/freighter3)
"aw" = (
-/obj/structure/closet/crate/secure/loot,
-/turf/open/floor/plasteel,
-/area/ruin/powered)
+/obj/structure/rack,
+/obj/item/storage/toolbox/mechanical,
+/obj/item/device/flashlight,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/darkblue/side{
+ dir = 4;
+ initial_gas_mix = "TEMP=2.7"
+ },
+/area/shuttle/caravan/freighter3)
"ax" = (
-/obj/structure/table,
-/turf/open/floor/plasteel,
-/area/ruin/powered)
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/structure/cable/yellow,
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "Small Freighter APC";
+ pixel_x = 24;
+ req_access = null;
+ start_charge = 0
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plating/airless,
+/area/shuttle/caravan/freighter1)
"ay" = (
-/obj/machinery/computer,
-/turf/open/floor/plasteel,
-/area/ruin/powered)
+/obj/effect/turf_decal/bot,
+/obj/machinery/space_heater,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/open/floor/plating/airless{
+ icon_state = "platingdmg3"
+ },
+/area/shuttle/caravan/freighter1)
"az" = (
-/obj/structure/table,
-/obj/item/storage/bag/money/vault,
-/turf/open/floor/plasteel,
-/area/ruin/powered)
+/obj/machinery/door/airlock{
+ id_tag = "caravantrade1_cabin2";
+ name = "Cabin 2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/vault/airless,
+/area/shuttle/caravan/freighter1)
"aA" = (
-/obj/structure/closet/crate{
- icon_state = "crateopen";
- opened = 1
+/obj/machinery/door/airlock{
+ id_tag = "caravantrade1_cabin1";
+ name = "Cabin 1"
},
-/obj/item/stack/sheet/mineral/gold{
- amount = 25
- },
-/obj/item/stack/sheet/mineral/bananium{
- amount = 5
- },
-/obj/item/stack/sheet/mineral/silver{
- amount = 25
- },
-/obj/item/stack/sheet/mineral/uranium{
- amount = 10
- },
-/obj/item/stack/sheet/mineral/diamond{
- amount = 5
- },
-/turf/open/floor/plasteel,
-/area/ruin/powered)
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/vault/airless,
+/area/shuttle/caravan/freighter1)
"aB" = (
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/ruin/powered)
+/obj/machinery/light/small,
+/obj/structure/bed,
+/obj/item/bedsheet,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/airalarm/all_access{
+ dir = 8;
+ pixel_x = 24
+ },
+/obj/machinery/button/door{
+ id = "caravantrade1_cabin2";
+ name = "Cabin Bolt Control";
+ normaldoorcontrol = 1;
+ pixel_x = -25;
+ pixel_y = 6;
+ specialfunctions = 4
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/open/floor/plasteel/vault/airless,
+/area/shuttle/caravan/freighter1)
"aC" = (
-/turf/closed/mineral,
-/area/ruin/unpowered/no_grav)
+/obj/machinery/light/small,
+/obj/structure/bed,
+/obj/item/bedsheet,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/airalarm/all_access{
+ dir = 8;
+ pixel_x = 24
+ },
+/obj/machinery/button/door{
+ id = "caravantrade1_cabin1";
+ name = "Cabin Bolt Control";
+ normaldoorcontrol = 1;
+ pixel_x = -25;
+ pixel_y = 6;
+ specialfunctions = 4
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/open/floor/plasteel/vault/airless,
+/area/shuttle/caravan/freighter1)
"aD" = (
/obj/item/stack/rods,
/turf/template_noop,
@@ -182,73 +269,151 @@
/turf/template_noop,
/area/template_noop)
"aF" = (
-/mob/living/simple_animal/hostile/pirate,
-/turf/open/floor/plasteel,
-/area/ruin/powered)
+/obj/structure/toilet{
+ dir = 4
+ },
+/obj/structure/sink{
+ pixel_y = 24
+ },
+/obj/machinery/light/small,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/showroomfloor{
+ initial_gas_mix = "TEMP=2.7"
+ },
+/area/shuttle/caravan/freighter1)
"aG" = (
-/obj/structure/chair{
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/darkblue/corner{
+ dir = 4;
+ initial_gas_mix = "TEMP=2.7"
+ },
+/area/shuttle/caravan/freighter3)
+"aH" = (
+/obj/machinery/door/airlock{
+ name = "Restroom"
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/showroomfloor{
+ initial_gas_mix = "TEMP=2.7"
+ },
+/area/shuttle/caravan/freighter1)
+"aI" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/frame/computer{
+ dir = 8
+ },
+/obj/item/shard,
+/turf/open/floor/plasteel/darkblue/side{
+ dir = 8;
+ initial_gas_mix = "TEMP=2.7"
+ },
+/area/shuttle/caravan/freighter3)
+"aJ" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/obj/effect/decal/cleanable/blood,
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 8
+ },
+/mob/living/simple_animal/hostile/syndicate/ranged/space{
+ environment_smash = 0;
+ name = "Syndicate Salvage Worker"
+ },
+/turf/open/floor/plasteel/yellow/corner{
+ dir = 4;
+ initial_gas_mix = "TEMP=2.7"
+ },
+/area/shuttle/caravan/freighter1)
+"aK" = (
+/obj/machinery/button/door{
+ id = "caravantrade1_bolt";
+ name = "External Bolt Control";
+ normaldoorcontrol = 1;
+ pixel_x = -25;
+ pixel_y = 8;
+ specialfunctions = 4
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on,
+/turf/open/floor/plasteel/blue/corner{
+ initial_gas_mix = "TEMP=2.7"
+ },
+/area/shuttle/caravan/freighter1)
+"aL" = (
+/obj/machinery/airalarm/all_access{
+ dir = 4;
+ pixel_x = -24
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/blood,
+/obj/machinery/atmospherics/components/unary/vent_pump/on,
+/turf/open/floor/plasteel/airless/dark,
+/area/shuttle/caravan/freighter1)
+"aM" = (
+/obj/effect/decal/cleanable/blood,
+/turf/open/floor/plasteel/darkblue/corner{
+ initial_gas_mix = "TEMP=2.7"
+ },
+/area/shuttle/caravan/freighter3)
+"aN" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on,
+/turf/open/floor/plasteel/airless/floorgrime,
+/area/shuttle/caravan/freighter3)
+"aO" = (
+/obj/machinery/airalarm/all_access{
+ dir = 4;
+ pixel_x = -24
+ },
+/obj/effect/decal/cleanable/blood,
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
dir = 1
},
-/mob/living/simple_animal/hostile/pirate,
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"aH" = (
-/turf/open/floor/plating/asteroid/airless,
-/area/ruin/unpowered/no_grav)
-"aI" = (
-/turf/closed/wall/mineral/plastitanium,
-/area/ruin/unpowered/no_grav)
-"aJ" = (
-/obj/machinery/door/airlock/external{
- icon_state = "door_locked";
- locked = 1
- },
-/turf/open/floor/plating,
-/area/ruin/unpowered/no_grav)
-"aK" = (
-/turf/closed/wall/mineral/iron,
-/area/ruin/unpowered/no_grav)
-"aL" = (
-/obj/item/coin/mythril,
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"aM" = (
-/obj/structure/chair,
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"aN" = (
-/obj/structure/shuttle/engine/propulsion/burst{
- dir = 8
- },
-/turf/open/floor/plating/airless,
-/area/ruin/unpowered/no_grav)
-"aO" = (
-/obj/structure/shuttle/engine/heater{
- dir = 8
- },
-/turf/closed/wall/mineral/plastitanium,
-/area/ruin/unpowered/no_grav)
+/turf/open/floor/plasteel/airless/dark,
+/area/shuttle/caravan/freighter3)
"aP" = (
-/obj/structure/chair,
-/obj/item/shard,
-/obj/item/stack/sheet/metal,
-/turf/open/floor/mineral/plastitanium/airless,
-/area/ruin/unpowered/no_grav)
-"aQ" = (
-/obj/structure/chair,
-/obj/effect/decal/cleanable/shreds,
-/turf/open/floor/mineral/plastitanium/airless,
-/area/ruin/unpowered/no_grav)
-"aR" = (
-/obj/item/shard,
-/turf/open/floor/mineral/plastitanium/airless,
-/area/ruin/unpowered/no_grav)
-"aS" = (
-/turf/open/floor/plating/airless{
- icon_plating = "platingdmg1";
- icon_state = "platingdmg1"
+/obj/machinery/atmospherics/components/unary/vent_pump/on,
+/mob/living/simple_animal/hostile/pirate/space{
+ environment_smash = 0
},
-/area/ruin/unpowered/no_grav)
+/turf/open/floor/plasteel/airless/floorgrime,
+/area/shuttle/caravan/freighter2)
+"aQ" = (
+/obj/structure/rack,
+/obj/item/tank/jetpack/carbondioxide,
+/obj/item/tank/internals/emergency_oxygen/engi,
+/obj/item/clothing/mask/gas,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/darkblue/side{
+ dir = 4;
+ initial_gas_mix = "TEMP=2.7"
+ },
+/area/shuttle/caravan/freighter3)
+"aR" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/open/floor/plasteel/airless,
+/area/shuttle/caravan/freighter3)
+"aS" = (
+/obj/machinery/power/smes{
+ charge = 5e+006
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/obj/structure/cable/yellow{
+ icon_state = "0-4"
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/shuttle/caravan/syndicate3)
"aT" = (
/obj/structure/fluff/broken_flooring{
icon_state = "singular"
@@ -256,138 +421,205 @@
/turf/template_noop,
/area/template_noop)
"aU" = (
-/obj/structure/rack,
-/obj/item/tank/internals/plasma/full,
-/obj/item/tank/internals/plasma/full,
-/obj/item/tank/internals/plasma/full,
-/turf/open/floor/plasteel,
-/area/ruin/powered)
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/structure/closet/crate,
+/obj/machinery/power/terminal{
+ dir = 1
+ },
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
+/obj/item/stack/sheet/metal/twenty,
+/obj/item/stack/sheet/glass{
+ amount = 10
+ },
+/obj/item/stack/sheet/mineral/plastitanium{
+ amount = 20
+ },
+/obj/item/storage/box/lights/bulbs,
+/obj/item/storage/toolbox/mechanical,
+/obj/item/stack/sheet/mineral/plasma{
+ amount = 20
+ },
+/turf/open/floor/plating,
+/area/shuttle/caravan/syndicate3)
"aV" = (
-/obj/structure/fluff/broken_flooring{
- icon_state = "singular"
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
},
-/obj/effect/decal/cleanable/shreds,
-/turf/open/floor/mineral/plastitanium/airless,
-/area/ruin/unpowered/no_grav)
+/obj/structure/cable,
+/obj/machinery/power/port_gen/pacman{
+ anchored = 1
+ },
+/obj/item/wrench,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/shuttle/caravan/syndicate3)
"aW" = (
-/obj/effect/gibspawner/human,
-/turf/open/floor/mineral/plastitanium/airless,
-/area/ruin/unpowered/no_grav)
-"aX" = (
-/turf/open/floor/plating/airless{
- icon = 'icons/obj/smooth_structures/lattice.dmi';
- icon_plating = "lattice";
- icon_state = "lattice";
- name = "anchor chain"
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
},
-/area/template_noop)
-"aY" = (
-/obj/structure/statue/gold/cmo,
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"aZ" = (
-/obj/structure/table,
-/obj/item/paper_bin,
-/obj/item/pen,
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"ba" = (
-/obj/structure/table,
-/obj/item/stack/sheet/mineral/gold{
- amount = 25
- },
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"bb" = (
-/turf/closed/wall/mineral/plastitanium{
- dir = 4;
- icon_state = "diagonalWall3"
- },
-/area/ruin/powered)
-"bc" = (
-/obj/structure/chair{
- dir = 1
- },
-/obj/item/stack/rods,
-/obj/effect/gibspawner/human,
-/turf/open/floor/mineral/plastitanium/airless,
-/area/ruin/unpowered/no_grav)
-"bd" = (
-/obj/structure/chair{
- dir = 1
- },
-/obj/item/shard,
-/obj/item/stack/sheet/metal,
-/obj/effect/decal/cleanable/shreds,
-/turf/open/floor/mineral/plastitanium/airless,
-/area/ruin/unpowered/no_grav)
-"be" = (
-/turf/open/floor/mineral/plastitanium/airless,
-/area/ruin/unpowered/no_grav)
-"bf" = (
-/obj/item/stack/sheet/metal,
-/turf/open/floor/plating/asteroid/airless,
-/area/ruin/unpowered/no_grav)
-"bg" = (
-/turf/open/floor/wood/airless,
-/area/ruin/unpowered/no_grav)
-"bh" = (
-/obj/structure/closet/crate/secure/weapon,
-/obj/item/gun/ballistic/automatic/pistol/APS,
-/turf/open/floor/wood/airless,
-/area/ruin/unpowered/no_grav)
-"bi" = (
-/mob/living/simple_animal/hostile/pirate/space{
- environment_smash = 0
- },
-/turf/open/floor/wood/airless,
-/area/ruin/unpowered/no_grav)
-"bj" = (
-/obj/structure/closet/crate/secure/weapon,
-/obj/item/gun/ballistic/shotgun/automatic/dual_tube,
-/turf/open/floor/wood/airless,
-/area/ruin/unpowered/no_grav)
-"bk" = (
-/obj/structure/girder,
-/turf/template_noop,
-/area/template_noop)
-"bl" = (
-/turf/closed/wall/mineral/titanium,
-/area/ruin/unpowered)
-"bm" = (
-/obj/machinery/door/poddoor{
- id = "caravantrade1";
- name = "cargo blastdoor"
- },
-/turf/open/floor/plating/airless{
- icon_plating = "platingdmg2";
- icon_state = "platingdmg2"
- },
-/area/ruin/unpowered)
-"bn" = (
-/turf/open/floor/plating/airless{
- icon_plating = "platingdmg1";
- icon_state = "platingdmg1"
- },
-/area/ruin/unpowered)
-"bo" = (
-/obj/structure/door_assembly/door_assembly_titanium{
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/door_assembly/door_assembly_com{
+ anchored = 1;
density = 0;
name = "broken airlock"
},
-/turf/open/floor/plating/airless{
- icon_plating = "platingdmg2";
- icon_state = "platingdmg2"
+/turf/open/floor/plasteel/airless/dark,
+/area/shuttle/caravan/freighter3)
+"aX" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/door_assembly/door_assembly_min{
+ anchored = 1;
+ density = 0;
+ name = "broken airlock"
},
-/area/ruin/unpowered)
-"bp" = (
-/turf/closed/wall/mineral/titanium/overspace,
-/area/ruin/unpowered)
-"bq" = (
-/obj/structure/fluff/broken_flooring{
- icon_state = "pile";
+/turf/open/floor/plasteel/airless/floorgrime,
+/area/shuttle/caravan/freighter1)
+"aY" = (
+/obj/effect/turf_decal/bot_white/right,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable/yellow{
+ icon_state = "0-2"
+ },
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "Tiny Freighter APC";
+ pixel_x = -24;
+ req_access = null;
+ start_charge = 0
+ },
+/obj/machinery/button/door{
+ id = "caravantrade2_cargo_port";
+ name = "Cargo Blast Door Control";
+ pixel_y = 24
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/open/floor/plasteel/airless/dark,
+/area/shuttle/caravan/freighter2)
+"aZ" = (
+/obj/machinery/door/firedoor,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/door_assembly/door_assembly_com{
+ anchored = 1;
+ density = 0;
+ name = "broken airlock"
+ },
+/turf/open/floor/plasteel/airless/dark,
+/area/shuttle/caravan/freighter2)
+"ba" = (
+/obj/machinery/door/airlock/hatch{
+ id_tag = "caravansyndicate3_bolt_starboard";
+ name = "External Airlock";
+ normalspeed = 0;
+ req_access_txt = "150"
+ },
+/turf/open/floor/plating,
+/area/shuttle/caravan/syndicate3)
+"bb" = (
+/obj/machinery/porta_turret/syndicate/pod{
+ dir = 5;
+ faction = "pirate"
+ },
+/turf/closed/wall/mineral/plastitanium,
+/area/shuttle/caravan/pirate)
+"bc" = (
+/obj/machinery/porta_turret/syndicate/pod{
+ dir = 6;
+ faction = "pirate"
+ },
+/turf/closed/wall/mineral/plastitanium,
+/area/shuttle/caravan/pirate)
+"bd" = (
+/turf/open/floor/plating/airless{
+ icon_state = "platingdmg3"
+ },
+/area/shuttle/caravan/freighter3)
+"be" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/open/floor/plasteel/vault/airless,
+/area/shuttle/caravan/freighter1)
+"bf" = (
+/obj/effect/turf_decal/bot_white,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/open/floor/plasteel/vault/airless,
+/area/shuttle/caravan/freighter1)
+"bg" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/airalarm/all_access{
+ dir = 4;
+ pixel_x = -24
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/open/floor/plating/airless,
+/area/shuttle/caravan/freighter2)
+"bh" = (
+/obj/structure/chair{
+ dir = 4
+ },
+/obj/effect/gibspawner/human,
+/turf/open/floor/plating/airless{
+ icon_state = "platingdmg3"
+ },
+/area/shuttle/caravan/freighter2)
+"bi" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
dir = 8
},
+/turf/open/floor/plasteel/airless{
+ icon_state = "floorscorched1"
+ },
+/area/shuttle/caravan/freighter2)
+"bj" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/machinery/button/door{
+ id = "caravansyndicate3_bolt_port";
+ name = "External Bolt Control";
+ normaldoorcontrol = 1;
+ pixel_x = -24;
+ pixel_y = 6;
+ req_access_txt = "150";
+ specialfunctions = 4
+ },
+/turf/open/floor/plasteel/dark,
+/area/shuttle/caravan/syndicate3)
+"bk" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/machinery/button/door{
+ id = "caravansyndicate3_bolt_starboard";
+ name = "External Bolt Control";
+ normaldoorcontrol = 1;
+ pixel_x = -24;
+ pixel_y = -6;
+ req_access_txt = "150";
+ specialfunctions = 4
+ },
+/turf/open/floor/plasteel/dark,
+/area/shuttle/caravan/syndicate3)
+"bl" = (
+/mob/living/simple_animal/hostile/carp,
/turf/template_noop,
/area/template_noop)
"br" = (
@@ -398,758 +630,3253 @@
/obj/structure/lattice,
/turf/template_noop,
/area/template_noop)
-"bu" = (
-/obj/item/stack/sheet/metal,
-/obj/effect/decal/cleanable/dirt,
-/obj/item/stack/rods,
-/turf/open/floor/plating/airless{
- icon_plating = "platingdmg3";
- icon_state = "platingdmg3"
- },
-/area/ruin/unpowered)
-"bv" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/mineral/titanium/blue/airless,
-/area/ruin/unpowered)
-"bw" = (
-/turf/open/floor/mineral/titanium/blue/airless,
-/area/ruin/unpowered)
-"bx" = (
-/obj/machinery/button/door{
- pixel_x = 24
- },
-/turf/open/floor/mineral/titanium/blue/airless,
-/area/ruin/unpowered)
-"by" = (
-/obj/structure/bed,
-/obj/item/bedsheet/black,
-/turf/open/floor/mineral/titanium/blue/airless,
-/area/ruin/unpowered)
-"bz" = (
-/turf/closed/wall/mineral/titanium/interior,
-/area/ruin/unpowered)
-"bA" = (
-/obj/structure/fluff/broken_flooring{
- icon_state = "pile"
- },
-/turf/template_noop,
-/area/template_noop)
-"bB" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating/airless{
- icon_plating = "platingdmg1";
- icon_state = "platingdmg1"
- },
-/area/ruin/unpowered)
-"bC" = (
-/turf/open/floor/plating/airless{
- icon_plating = "platingdmg3";
- icon_state = "platingdmg3"
- },
-/area/ruin/unpowered)
-"bD" = (
-/obj/structure/closet/crate/secure/gear,
-/obj/item/ammo_casing/shotgun/techshell,
-/obj/item/ammo_casing/shotgun/techshell,
-/obj/item/ammo_casing/shotgun/techshell,
-/obj/item/ammo_casing/shotgun/pulseslug,
-/obj/item/storage/box/lethalshot,
-/turf/open/floor/mineral/titanium/yellow/airless,
-/area/ruin/unpowered)
-"bE" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/mineral/titanium/yellow/airless,
-/area/ruin/unpowered)
-"bF" = (
-/mob/living/simple_animal/hostile/pirate/space/ranged{
- environment_smash = 0
- },
-/turf/open/floor/mineral/titanium/yellow/airless,
-/area/ruin/unpowered)
-"bG" = (
-/turf/open/floor/mineral/titanium/yellow/airless,
-/area/ruin/unpowered)
-"bH" = (
-/mob/living/simple_animal/hostile/pirate/space{
- environment_smash = 0
- },
-/turf/open/floor/mineral/titanium/blue/airless,
-/area/ruin/unpowered)
-"bI" = (
-/obj/structure/table,
-/obj/item/storage/firstaid/regular,
-/turf/open/floor/mineral/titanium/blue/airless,
+"bt" = (
+/turf/closed/mineral/random,
/area/ruin/unpowered)
"bJ" = (
-/obj/effect/spawner/structure/window/shuttle,
-/turf/open/floor/plating/airless{
- icon_plating = "platingdmg2";
- icon_state = "platingdmg2"
- },
+/turf/closed/wall/mineral/plastitanium,
/area/ruin/unpowered)
-"bK" = (
-/obj/structure/fluff/broken_flooring{
- icon_state = "plating";
- dir = 1
- },
-/turf/template_noop,
-/area/template_noop)
-"bL" = (
-/obj/machinery/door/airlock/titanium,
-/turf/open/floor/mineral/titanium/yellow/airless,
-/area/ruin/unpowered)
-"bM" = (
-/obj/effect/decal/cleanable/blood,
-/turf/open/floor/mineral/titanium/blue/airless,
-/area/ruin/unpowered)
-"bN" = (
-/obj/structure/table,
-/obj/item/paper_bin,
-/obj/item/pen,
-/turf/open/floor/mineral/titanium/blue/airless,
-/area/ruin/unpowered)
-"bO" = (
-/obj/machinery/door/airlock/titanium,
-/turf/open/floor/plating/airless{
- icon_plating = "platingdmg3";
- icon_state = "platingdmg3"
- },
-/area/ruin/unpowered)
-"bP" = (
-/turf/closed/wall/mineral/plastitanium{
- dir = 8;
- icon_state = "diagonalWall3"
- },
-/area/ruin/powered)
-"bQ" = (
-/obj/structure/fluff/broken_flooring{
- icon_state = "plating";
- dir = 1
- },
-/obj/structure/lattice,
-/turf/template_noop,
-/area/template_noop)
-"bR" = (
-/obj/structure/girder,
-/turf/open/floor/plating/airless{
- icon_plating = "platingdmg3";
- icon_state = "platingdmg3"
- },
-/area/ruin/unpowered)
-"bS" = (
-/obj/structure/girder,
-/turf/open/floor/plating/airless{
- icon_plating = "platingdmg2";
- icon_state = "platingdmg2"
- },
-/area/ruin/unpowered)
-"bT" = (
-/obj/item/stack/sheet/metal,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating/airless{
- icon_plating = "platingdmg1";
- icon_state = "platingdmg1"
- },
-/area/ruin/unpowered)
-"bU" = (
-/obj/item/stack/rods,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating/airless{
- icon_plating = "platingdmg3";
- icon_state = "platingdmg3"
- },
-/area/ruin/unpowered)
-"bV" = (
-/obj/structure/closet/crate/secure/gear,
-/obj/item/ammo_casing/shotgun/frag12,
-/obj/item/ammo_casing/shotgun/frag12,
-/obj/item/ammo_casing/shotgun/frag12,
-/obj/item/ammo_casing/shotgun/frag12,
-/obj/item/storage/box/beanbag,
-/obj/item/storage/box/rubbershot,
-/turf/open/floor/mineral/titanium/yellow/airless,
-/area/ruin/unpowered)
-"bW" = (
-/obj/structure/closet/crate/secure/gear,
-/obj/item/ammo_box/c10mm,
-/obj/item/ammo_casing/shotgun/meteorslug,
-/obj/item/ammo_casing/shotgun/meteorslug,
-/obj/item/ammo_casing/shotgun/meteorslug,
-/turf/open/floor/mineral/titanium/yellow/airless,
-/area/ruin/unpowered)
-"bX" = (
-/obj/structure/closet/crate/secure/gear,
-/obj/item/ammo_box/a40mm,
-/obj/item/ammo_box/a40mm,
-/turf/open/floor/mineral/titanium/yellow/airless,
-/area/ruin/unpowered)
-"bY" = (
-/obj/structure/chair{
- dir = 4
- },
-/obj/effect/mob_spawn/human/corpse/nanotrasensoldier,
-/obj/effect/decal/cleanable/blood,
-/turf/open/floor/mineral/titanium/blue/airless,
-/area/ruin/unpowered)
-"bZ" = (
-/obj/machinery/computer{
- dir = 8
- },
-/turf/open/floor/mineral/titanium/blue/airless,
-/area/ruin/unpowered)
-"ca" = (
-/obj/structure/shuttle/engine/propulsion/burst/left{
- dir = 8
- },
-/turf/open/floor/plating/airless,
-/area/ruin/unpowered)
-"cb" = (
-/obj/structure/shuttle/engine/heater{
- dir = 8
- },
-/turf/closed/wall/mineral/titanium,
-/area/ruin/unpowered)
-"cc" = (
-/obj/structure/table,
-/turf/open/floor/mineral/titanium/blue/airless,
-/area/ruin/unpowered)
-"cd" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/bed,
-/obj/item/bedsheet/black,
-/turf/open/floor/mineral/titanium/blue/airless,
-/area/ruin/unpowered)
-"ce" = (
-/obj/structure/table,
-/turf/open/floor/mineral/plastitanium,
-/area/ruin/powered)
-"cf" = (
-/obj/machinery/computer,
-/turf/open/floor/mineral/plastitanium,
-/area/ruin/powered)
-"cg" = (
-/obj/structure/fluff/broken_flooring{
- icon_state = "plating";
- dir = 4
- },
-/obj/structure/lattice,
-/turf/template_noop,
-/area/template_noop)
"ch" = (
-/obj/item/stack/rods,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating/airless{
- icon_plating = "platingdmg2";
- icon_state = "platingdmg2"
- },
-/area/ruin/unpowered)
-"ci" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating/airless{
- icon_plating = "platingdmg3";
- icon_state = "platingdmg3"
- },
-/area/ruin/unpowered)
-"cj" = (
-/turf/open/floor/plating/airless,
-/area/ruin/unpowered)
-"ck" = (
-/obj/structure/closet/crate/secure/weapon,
-/obj/item/gun/ballistic/revolver/grenadelauncher/unrestricted,
-/turf/open/floor/mineral/titanium/yellow/airless,
-/area/ruin/unpowered)
-"cl" = (
-/mob/living/simple_animal/hostile/pirate/space{
- environment_smash = 0
- },
-/turf/open/floor/mineral/titanium/yellow/airless,
-/area/ruin/unpowered)
-"cm" = (
-/obj/structure/door_assembly/door_assembly_titanium{
- density = 0;
- name = "broken airlock"
- },
-/turf/open/floor/mineral/titanium/yellow/airless,
-/area/ruin/unpowered)
-"cn" = (
-/obj/structure/table,
-/obj/item/device/gps{
- gpstag = "Distress Signal"
- },
-/turf/open/floor/mineral/titanium/blue/airless,
-/area/ruin/unpowered)
-"co" = (
-/obj/structure/shuttle/engine/propulsion/burst{
- dir = 8
- },
-/turf/open/floor/plating/airless,
-/area/ruin/unpowered)
-"cp" = (
-/obj/structure/closet/crate/secure/engineering,
-/obj/item/storage/toolbox/mechanical,
-/obj/item/storage/toolbox/mechanical,
-/obj/item/storage/toolbox/electrical,
-/obj/item/storage/toolbox/electrical,
-/obj/item/clothing/gloves/color/yellow,
-/turf/open/floor/mineral/titanium/yellow/airless,
-/area/ruin/unpowered)
-"cq" = (
-/obj/item/shard,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/mineral/titanium/blue/airless,
-/area/ruin/unpowered)
-"cr" = (
-/obj/structure/table_frame,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/mineral/titanium/blue/airless,
-/area/ruin/unpowered)
-"cs" = (
-/turf/open/floor/mineral/plastitanium,
-/area/ruin/powered)
-"ct" = (
-/obj/structure/chair{
- dir = 1
- },
-/mob/living/simple_animal/hostile/syndicate{
- environment_smash = 0;
- name = "Syndicate Salvage Pilot"
- },
-/turf/open/floor/mineral/plastitanium,
-/area/ruin/powered)
-"cu" = (
-/obj/structure/closet/crate/secure/engineering,
-/obj/item/wrench/caravan,
-/obj/item/screwdriver/caravan,
-/obj/item/wirecutters/caravan,
-/obj/item/crowbar/red/caravan,
-/turf/open/floor/mineral/plastitanium,
-/area/ruin/powered)
-"cv" = (
-/obj/effect/decal/cleanable/dirt,
-/mob/living/simple_animal/hostile/syndicate/ranged/space{
- environment_smash = 0;
- name = "Syndicate Salvage Worker"
- },
-/turf/open/floor/mineral/titanium/blue/airless,
-/area/ruin/unpowered)
-"cw" = (
-/obj/item/stack/rods,
-/turf/open/floor/plating/airless{
- icon_plating = "platingdmg3";
- icon_state = "platingdmg3"
- },
-/area/ruin/unpowered)
-"cx" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating/airless{
- icon_plating = "platingdmg2";
- icon_state = "platingdmg2"
- },
-/area/ruin/unpowered)
-"cy" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/girder,
-/turf/open/floor/plating/airless{
- icon_plating = "platingdmg3";
- icon_state = "platingdmg3"
- },
-/area/ruin/unpowered)
-"cz" = (
-/obj/item/stack/sheet/metal,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating/airless{
- icon_plating = "platingdmg3";
- icon_state = "platingdmg3"
- },
-/area/ruin/unpowered)
-"cA" = (
-/obj/structure/closet/crate/secure/weapon,
-/obj/item/gun/ballistic/shotgun/riot,
-/obj/item/gun/ballistic/shotgun/riot,
-/turf/open/floor/mineral/titanium/yellow/airless,
-/area/ruin/unpowered)
-"cB" = (
-/obj/structure/closet/crate/secure/weapon,
-/obj/item/gun/syringe/syndicate,
-/obj/item/gun/syringe/rapidsyringe,
-/turf/open/floor/mineral/titanium/yellow/airless,
-/area/ruin/unpowered)
-"cC" = (
-/obj/structure/closet/crate/secure/weapon,
-/obj/item/gun/ballistic/automatic/c20r/toy/unrestricted/riot,
-/obj/item/gun/ballistic/automatic/c20r/toy/unrestricted/riot,
-/turf/open/floor/mineral/titanium/yellow/airless,
-/area/ruin/unpowered)
-"cD" = (
-/mob/living/simple_animal/hostile/pirate/space/ranged{
- environment_smash = 0
- },
-/turf/open/floor/mineral/titanium/blue/airless,
-/area/ruin/unpowered)
-"cE" = (
-/obj/structure/table,
-/obj/item/clipboard,
-/turf/open/floor/mineral/titanium/blue/airless,
-/area/ruin/unpowered)
-"cF" = (
-/obj/structure/shuttle/engine/propulsion/burst/right{
- dir = 8
- },
-/turf/open/floor/plating/airless,
-/area/ruin/unpowered)
-"cG" = (
-/mob/living/simple_animal/hostile/syndicate/melee/space{
- environment_smash = 0;
- name = "Syndicate Salvage Worker"
- },
-/turf/open/floor/mineral/titanium/yellow/airless,
-/area/ruin/unpowered)
-"cH" = (
-/obj/item/stack/rods,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating/airless{
- icon_plating = "platingdmg1";
- icon_state = "platingdmg1"
- },
-/area/ruin/unpowered)
-"cI" = (
-/obj/structure/grille/broken,
-/obj/item/shard,
-/turf/open/floor/plating/airless{
- icon_plating = "platingdmg1";
- icon_state = "platingdmg1"
- },
-/area/ruin/unpowered)
-"cJ" = (
-/obj/structure/closet/crate/secure/engineering,
-/obj/item/clothing/gloves/color/yellow,
-/obj/item/clothing/gloves/color/yellow,
-/turf/open/floor/mineral/plastitanium,
-/area/ruin/powered)
-"cK" = (
-/obj/structure/closet/crate,
-/obj/item/stack/sheet/plasteel/twenty,
-/obj/item/stack/sheet/plasteel/twenty,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/mineral/titanium/yellow/airless,
-/area/ruin/unpowered)
-"cL" = (
-/obj/item/stack/sheet/metal,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/mineral/titanium/yellow/airless,
-/area/ruin/unpowered)
-"cM" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating/airless{
- icon_plating = "platingdmg3";
- icon_state = "platingdmg3"
- },
-/area/ruin/unpowered)
-"cN" = (
-/obj/structure/closet/crate/secure/plasma,
-/obj/item/tank/internals/plasma/full,
-/obj/item/tank/internals/plasma/full,
-/obj/item/stack/sheet/mineral/plasma{
- amount = 25
- },
-/turf/open/floor/mineral/titanium/yellow/airless,
-/area/ruin/unpowered)
-"cO" = (
-/obj/item/shard,
-/turf/open/floor/mineral/titanium/blue/airless,
-/area/ruin/unpowered)
-"cP" = (
-/obj/item/chair,
-/obj/effect/mob_spawn/human/corpse/nanotrasensoldier,
-/obj/effect/decal/cleanable/blood,
-/turf/open/floor/mineral/titanium/blue/airless,
-/area/ruin/unpowered)
-"cQ" = (
-/obj/item/stack/rods,
-/obj/item/stack/sheet/metal,
-/turf/open/floor/plating/airless{
- icon_plating = "platingdmg1";
- icon_state = "platingdmg1"
- },
-/area/ruin/unpowered)
-"cR" = (
-/obj/structure/fluff/broken_flooring{
- icon_state = "plating";
- dir = 8
- },
-/obj/structure/lattice,
-/turf/template_noop,
-/area/template_noop)
-"cS" = (
-/obj/machinery/door/airlock/external{
- icon_state = "door_locked";
- locked = 1
- },
-/turf/open/floor/plating,
-/area/ruin/powered)
-"cT" = (
-/obj/machinery/porta_turret/syndicate/pod,
-/turf/open/floor/plating/airless,
-/area/ruin/powered)
-"cU" = (
-/obj/effect/decal/cleanable/dirt,
-/mob/living/simple_animal/hostile/syndicate/melee/space/stormtrooper{
- environment_smash = 0;
- name = "Syndicate Salvage Leader"
- },
-/turf/open/floor/mineral/titanium/yellow/airless,
-/area/ruin/unpowered)
-"cV" = (
-/obj/structure/chair{
- dir = 4
- },
-/obj/effect/decal/cleanable/blood,
-/turf/open/floor/mineral/titanium/blue/airless,
-/area/ruin/unpowered)
-"cW" = (
-/obj/structure/closet/crate/secure/plasma,
-/obj/item/tank/internals/plasma/full,
-/obj/item/stack/sheet/mineral/plasma{
- amount = 25
- },
-/turf/open/floor/mineral/titanium/yellow/airless,
-/area/ruin/unpowered)
-"cX" = (
-/obj/structure/closet/crate/secure/engineering,
-/obj/item/organ/cyberimp/arm/toolset,
-/obj/item/organ/cyberimp/arm/toolset,
-/turf/open/floor/mineral/titanium/yellow/airless,
-/area/ruin/unpowered)
-"cY" = (
-/obj/structure/closet/crate/secure/plasma,
-/obj/item/mecha_parts/mecha_equipment/weapon/energy/plasma,
-/turf/open/floor/mineral/titanium/yellow/airless,
-/area/ruin/unpowered)
-"cZ" = (
-/mob/living/simple_animal/hostile/syndicate/ranged/space/stormtrooper{
- environment_smash = 0;
- name = "Syndicate Salvage Leader"
- },
-/turf/open/floor/mineral/titanium/yellow/airless,
-/area/ruin/unpowered)
-"da" = (
-/obj/item/stack/rods,
-/obj/item/shard,
-/mob/living/simple_animal/hostile/syndicate/melee/space{
- environment_smash = 0;
- name = "Syndicate Salvage Worker"
- },
-/turf/open/floor/mineral/titanium/blue/airless,
-/area/ruin/unpowered)
-"db" = (
-/obj/item/shard,
-/turf/open/floor/plating/airless{
- icon_plating = "platingdmg1";
- icon_state = "platingdmg1"
- },
-/area/ruin/unpowered)
+/turf/closed/wall/mineral/plastitanium,
+/area/shuttle/caravan/pirate)
"dc" = (
/obj/item/shard,
/turf/template_noop,
/area/template_noop)
-"dd" = (
+"dB" = (
+/turf/closed/wall/mineral/plastitanium/nodiagonal,
+/area/shuttle/caravan/pirate)
+"dD" = (
+/turf/open/floor/plating/asteroid/airless,
+/area/ruin/unpowered)
+"dE" = (
+/turf/closed/wall/mineral/plastitanium/nodiagonal,
+/area/ruin/unpowered)
+"dF" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/frame/computer,
+/obj/item/shard,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/mineral/plastitanium/airless,
+/area/ruin/unpowered)
+"dG" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/structure/sign/warning/vacuum{
+ pixel_x = -32
+ },
+/turf/open/floor/plating,
+/area/shuttle/caravan/pirate)
+"dH" = (
+/obj/structure/grille,
+/obj/structure/window/plastitanium,
+/obj/machinery/door/poddoor{
+ id = "caravanpirate_bridge"
+ },
+/turf/open/floor/plating,
+/area/shuttle/caravan/pirate)
+"dI" = (
+/obj/machinery/atmospherics/components/unary/tank/air,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plating,
+/area/shuttle/caravan/pirate)
+"dJ" = (
+/obj/machinery/suit_storage_unit/open,
+/turf/open/floor/plasteel/vault{
+ dir = 5
+ },
+/area/shuttle/caravan/pirate)
+"dK" = (
+/obj/machinery/door/airlock/external{
+ cyclelinkeddir = 1;
+ id_tag = "caravanpirate_bolt_port";
+ locked = 1
+ },
+/turf/open/floor/plating,
+/area/shuttle/caravan/pirate)
+"dL" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/door_assembly/door_assembly_hatch{
+ density = 0;
+ name = "broken airlock"
+ },
+/turf/open/floor/plating/airless,
+/area/ruin/unpowered)
+"dN" = (
+/obj/structure/shuttle/engine/propulsion/burst/left{
+ dir = 8
+ },
+/turf/open/floor/plating/airless,
+/area/shuttle/caravan/pirate)
+"dO" = (
+/obj/structure/shuttle/engine/heater{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/open/floor/plating/airless,
+/area/shuttle/caravan/pirate)
+"dP" = (
+/obj/structure/reagent_dispensers/watertank,
+/obj/item/reagent_containers/glass/bucket,
+/obj/item/mop,
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/turf/open/floor/plating,
+/area/shuttle/caravan/pirate)
+"dQ" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 8
+ },
+/obj/machinery/meter,
+/turf/open/floor/plating,
+/area/shuttle/caravan/pirate)
+"dR" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/engineering{
+ name = "Engineering"
+ },
+/turf/open/floor/plating,
+/area/shuttle/caravan/pirate)
+"dS" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white/side{
+ dir = 9
+ },
+/area/shuttle/caravan/pirate)
+"dT" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white/side{
+ dir = 1
+ },
+/area/shuttle/caravan/pirate)
+"dU" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
+ },
+/turf/open/floor/plasteel/white/side{
+ dir = 1
+ },
+/area/shuttle/caravan/pirate)
+"dV" = (
+/obj/machinery/button/door{
+ id = "caravanpirate_bolt_port";
+ name = "External Bolt Control";
+ normaldoorcontrol = 1;
+ pixel_x = -4;
+ pixel_y = 25;
+ specialfunctions = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white/side{
+ dir = 1
+ },
+/area/shuttle/caravan/pirate)
+"dW" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 10
+ },
+/turf/open/floor/plasteel/white/side{
+ dir = 1
+ },
+/area/shuttle/caravan/pirate)
+"dX" = (
+/obj/structure/sign/departments/medbay/alt,
+/turf/closed/wall/mineral/plastitanium/nodiagonal,
+/area/shuttle/caravan/pirate)
+"dY" = (
+/obj/structure/closet{
+ name = "pirate outfits"
+ },
+/obj/item/clothing/head/collectable/pirate,
+/obj/item/clothing/suit/pirate,
+/obj/item/clothing/under/pirate,
+/obj/item/clothing/shoes/jackboots,
+/obj/item/clothing/head/bandana,
+/turf/open/floor/plasteel/dark/side{
+ dir = 5
+ },
+/area/shuttle/caravan/pirate)
+"dZ" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/structure/bed,
+/obj/item/bedsheet/brown,
+/turf/open/floor/plasteel/dark,
+/area/shuttle/caravan/pirate)
+"ea" = (
+/obj/structure/shuttle/engine/propulsion/burst{
+ dir = 8
+ },
+/turf/open/floor/plating/airless,
+/area/shuttle/caravan/pirate)
+"eb" = (
+/obj/structure/reagent_dispensers/fueltank,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/shuttle/caravan/pirate)
+"ec" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plating,
+/area/shuttle/caravan/pirate)
+"ed" = (
+/obj/structure/sign/departments/engineering,
+/turf/closed/wall/mineral/plastitanium/nodiagonal,
+/area/shuttle/caravan/pirate)
+"ee" = (
+/obj/structure/table,
+/obj/item/circular_saw,
+/obj/item/scalpel{
+ pixel_y = 12
+ },
+/obj/item/cautery{
+ pixel_x = 4
+ },
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/open/floor/plasteel/white/side{
+ dir = 8
+ },
+/area/shuttle/caravan/pirate)
+"ef" = (
+/turf/open/floor/plasteel/floorgrime,
+/area/shuttle/caravan/pirate)
+"eh" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 5
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/shuttle/caravan/pirate)
+"ei" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/medical/glass{
+ name = "Medbay"
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/shuttle/caravan/pirate)
+"ej" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/dark/side{
+ dir = 4
+ },
+/area/shuttle/caravan/pirate)
+"ek" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 10
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 5
+ },
+/area/shuttle/caravan/pirate)
+"el" = (
+/obj/structure/table,
+/obj/machinery/microwave{
+ pixel_y = 5
+ },
+/turf/open/floor/plasteel/dark,
+/area/shuttle/caravan/pirate)
+"em" = (
+/obj/structure/shuttle/engine/propulsion/burst/right{
+ dir = 8
+ },
+/turf/open/floor/plating/airless,
+/area/shuttle/caravan/pirate)
+"en" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/machinery/space_heater,
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/turf/open/floor/plating,
+/area/shuttle/caravan/pirate)
+"eo" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/shuttle/caravan/pirate)
+"ep" = (
+/obj/structure/table,
+/obj/item/retractor,
+/obj/item/hemostat,
+/turf/open/floor/plasteel/white,
+/area/shuttle/caravan/pirate)
+"eq" = (
+/obj/structure/table/optable,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel/white,
+/area/shuttle/caravan/pirate)
+"er" = (
+/obj/structure/table,
+/obj/item/storage/firstaid/brute{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/storage/firstaid/fire,
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -24
+ },
+/turf/open/floor/plasteel/white,
+/area/shuttle/caravan/pirate)
+"es" = (
+/obj/machinery/sleeper{
+ dir = 1
+ },
+/obj/effect/turf_decal/delivery,
+/obj/machinery/airalarm/all_access{
+ dir = 1;
+ pixel_y = -24
+ },
+/turf/open/floor/plasteel/white,
+/area/shuttle/caravan/pirate)
+"et" = (
+/obj/structure/closet/crate/freezer/surplus_limbs,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel/white,
+/area/shuttle/caravan/pirate)
+"eu" = (
/obj/structure/chair{
dir = 4
},
-/turf/open/floor/mineral/plastitanium,
-/area/ruin/powered)
-"de" = (
-/obj/structure/closet/crate/secure/plasma,
-/obj/item/stack/sheet/mineral/plasma{
- amount = 25
+/obj/effect/decal/cleanable/blood,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/mineral/plastitanium/airless,
+/area/ruin/unpowered)
+"ew" = (
+/obj/effect/gibspawner/human,
+/turf/open/floor/plating/asteroid/airless,
+/area/ruin/unpowered)
+"ex" = (
+/obj/item/stack/sheet/metal,
+/turf/open/floor/plating/asteroid/airless,
+/area/ruin/unpowered)
+"ez" = (
+/obj/structure/bed,
+/obj/item/bedsheet/brown,
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -26
},
-/obj/item/stack/sheet/mineral/plasma{
- amount = 25
+/turf/open/floor/plasteel/dark/side{
+ dir = 6
},
-/obj/item/tank/internals/plasma/full,
-/obj/item/tank/internals/plasma/full,
-/turf/open/floor/mineral/plastitanium,
-/area/ruin/powered)
-"df" = (
-/obj/structure/chair{
+/area/shuttle/caravan/pirate)
+"eB" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/vault{
+ dir = 5
+ },
+/area/shuttle/caravan/pirate)
+"eC" = (
+/obj/structure/table,
+/obj/item/storage/fancy/donut_box{
+ pixel_y = 18
+ },
+/obj/item/storage/box/donkpockets{
+ pixel_x = -3;
+ pixel_y = 7
+ },
+/obj/item/storage/box/donkpockets{
+ pixel_x = -6
+ },
+/obj/item/reagent_containers/food/drinks/bottle/rum{
+ pixel_x = 8;
+ pixel_y = 3
+ },
+/obj/structure/sign/poster/contraband/red_rum{
+ pixel_x = 32
+ },
+/turf/open/floor/plasteel/dark,
+/area/shuttle/caravan/pirate)
+"eD" = (
+/obj/structure/table,
+/obj/item/reagent_containers/food/drinks/bottle/rum{
+ pixel_x = 3;
+ pixel_y = 6
+ },
+/obj/item/reagent_containers/food/drinks/bottle/rum,
+/turf/open/floor/plasteel/dark,
+/area/shuttle/caravan/pirate)
+"eE" = (
+/obj/structure/table,
+/obj/item/coin/gold,
+/obj/item/coin/silver,
+/obj/item/coin/silver,
+/turf/open/floor/plasteel/dark,
+/area/shuttle/caravan/pirate)
+"eF" = (
+/obj/structure/closet/crate/secure/loot,
+/obj/machinery/airalarm/all_access{
+ pixel_y = 24
+ },
+/turf/open/floor/plasteel/dark,
+/area/shuttle/caravan/pirate)
+"eG" = (
+/obj/item/stack/cable_coil/yellow{
+ amount = 1
+ },
+/turf/open/floor/plating/airless{
+ icon_state = "platingdmg3"
+ },
+/area/ruin/unpowered)
+"eI" = (
+/obj/structure/rack,
+/obj/item/storage/toolbox/emergency,
+/obj/item/weldingtool,
+/turf/open/floor/plasteel/darkred/corner{
+ dir = 4
+ },
+/area/shuttle/caravan/pirate)
+"eJ" = (
+/obj/machinery/computer/camera_advanced/shuttle_docker/caravan/pirate,
+/turf/open/floor/plasteel/darkred/side{
+ dir = 1
+ },
+/area/shuttle/caravan/pirate)
+"eK" = (
+/obj/structure/cable/yellow{
+ icon_state = "0-2"
+ },
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "Pirate Cutter APC";
+ pixel_x = -24;
+ req_access = null
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/airalarm/all_access{
+ dir = 8;
+ pixel_x = 24
+ },
+/turf/open/floor/plating,
+/area/shuttle/caravan/pirate)
+"eL" = (
+/obj/machinery/light/small{
dir = 8
},
-/turf/open/floor/mineral/plastitanium,
-/area/ruin/powered)
-"dg" = (
-/obj/structure/closet/crate,
-/obj/item/stack/sheet/rglass{
- amount = 20
+/obj/structure/closet/crate/secure/loot,
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 4
},
-/obj/item/stack/sheet/rglass{
- amount = 20
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -27
},
-/turf/open/floor/mineral/titanium/yellow/airless,
-/area/ruin/unpowered)
-"dh" = (
-/obj/structure/closet/crate{
- icon_state = "crateopen";
- opened = 1
+/turf/open/floor/plasteel/dark,
+/area/shuttle/caravan/pirate)
+"eM" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 4
},
+/turf/open/floor/plasteel/vault{
+ dir = 5
+ },
+/area/shuttle/caravan/pirate)
+"eO" = (
/obj/item/stack/sheet/mineral/gold{
amount = 25
},
/obj/item/stack/sheet/mineral/bananium{
amount = 5
},
-/turf/open/floor/mineral/titanium/yellow/airless,
-/area/ruin/unpowered)
-"di" = (
-/obj/structure/closet/crate{
- icon_state = "crateopen";
- opened = 1
- },
/obj/item/stack/sheet/mineral/silver{
amount = 25
},
/obj/item/stack/sheet/mineral/uranium{
amount = 10
},
-/turf/open/floor/mineral/titanium/yellow/airless,
-/area/ruin/unpowered)
-"dj" = (
-/obj/effect/mob_spawn/human/corpse/nanotrasensoldier,
-/obj/effect/decal/cleanable/blood,
-/turf/open/floor/mineral/titanium/yellow/airless,
-/area/ruin/unpowered)
-"dk" = (
-/obj/structure/table,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/mineral/titanium/blue/airless,
-/area/ruin/unpowered)
-"dl" = (
-/obj/structure/closet/crate/secure/plasma,
-/obj/item/stack/sheet/mineral/plasma{
- amount = 25
- },
-/obj/item/tank/internals/plasma/full,
-/turf/open/floor/mineral/plastitanium,
-/area/ruin/powered)
-"dm" = (
-/obj/structure/chair,
-/turf/open/floor/mineral/plastitanium,
-/area/ruin/powered)
-"dn" = (
-/obj/structure/closet/crate,
-/obj/item/stack/sheet/mineral/gold{
- amount = 25
- },
-/obj/item/stack/sheet/mineral/silver{
- amount = 25
- },
-/turf/open/floor/mineral/plastitanium,
-/area/ruin/powered)
-"do" = (
-/obj/structure/closet/crate,
-/obj/item/stack/sheet/metal/fifty,
-/obj/item/stack/sheet/metal/fifty,
-/obj/item/stack/sheet/glass/fifty,
-/obj/item/stack/sheet/glass/fifty,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/mineral/titanium/yellow/airless,
-/area/ruin/unpowered)
-"dp" = (
-/obj/structure/closet/crate,
-/obj/item/stack/sheet/mineral/silver{
- amount = 25
- },
-/turf/open/floor/mineral/titanium/yellow/airless,
-/area/ruin/unpowered)
-"dq" = (
-/mob/living/simple_animal/hostile/syndicate/ranged/space{
- environment_smash = 0;
- name = "Syndicate Salvage Worker"
- },
-/turf/open/floor/mineral/titanium/blue/airless,
-/area/ruin/unpowered)
-"dr" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/item/clipboard,
-/turf/open/floor/mineral/titanium/blue/airless,
-/area/ruin/unpowered)
-"ds" = (
-/obj/structure/shuttle/engine/heater,
-/turf/closed/wall/mineral/plastitanium,
-/area/ruin/powered)
-"dt" = (
-/obj/structure/closet/crate{
- icon_state = "crateopen";
- opened = 1
- },
/obj/item/stack/sheet/mineral/diamond{
amount = 5
},
-/obj/item/stack/sheet/mineral/gold{
- amount = 25
+/obj/structure/closet/crate,
+/obj/item/coin/silver,
+/obj/item/coin/silver,
+/obj/item/coin/silver,
+/obj/item/coin/gold,
+/obj/item/coin/gold,
+/turf/open/floor/plasteel/darkblue/corner,
+/area/shuttle/caravan/pirate)
+"eP" = (
+/obj/structure/table,
+/obj/machinery/light/small{
+ brightness = 3;
+ dir = 8
},
-/turf/open/floor/mineral/plastitanium,
-/area/ruin/powered)
-"du" = (
-/obj/structure/chair{
+/obj/item/stack/spacecash/c200,
+/turf/open/floor/plasteel/dark,
+/area/shuttle/caravan/pirate)
+"eQ" = (
+/obj/structure/chair/office/dark{
+ dir = 8
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 5
+ },
+/area/shuttle/caravan/pirate)
+"eR" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on,
+/turf/open/floor/plasteel/vault{
+ dir = 5
+ },
+/area/shuttle/caravan/pirate)
+"eS" = (
+/turf/open/floor/plasteel/vault{
+ dir = 5
+ },
+/area/shuttle/caravan/pirate)
+"eT" = (
+/obj/structure/chair/office/dark{
dir = 4
},
+/obj/machinery/turretid{
+ icon_state = "control_kill";
+ lethal = 1;
+ locked = 0;
+ pixel_y = -30;
+ req_access = null
+ },
+/mob/living/simple_animal/hostile/pirate/ranged{
+ environment_smash = 0
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 5
+ },
+/area/shuttle/caravan/pirate)
+"eU" = (
+/obj/machinery/computer/shuttle/caravan/pirate{
+ dir = 8
+ },
+/turf/open/floor/plasteel/darkred/side{
+ dir = 8
+ },
+/area/shuttle/caravan/pirate)
+"eV" = (
+/obj/machinery/power/smes{
+ charge = 5e+006
+ },
+/obj/structure/cable/yellow{
+ icon_state = "0-4"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/turf/open/floor/plating,
+/area/shuttle/caravan/pirate)
+"eW" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plating,
+/area/shuttle/caravan/pirate)
+"eX" = (
+/obj/structure/table,
+/obj/item/storage/box/lethalshot,
+/turf/open/floor/plasteel/vault{
+ dir = 5
+ },
+/area/shuttle/caravan/pirate)
+"eY" = (
+/obj/structure/table,
+/obj/item/grenade/smokebomb{
+ pixel_x = -4
+ },
+/obj/item/grenade/smokebomb{
+ pixel_x = 2
+ },
+/obj/machinery/airalarm/all_access{
+ pixel_y = 24
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 5
+ },
+/area/shuttle/caravan/pirate)
+"eZ" = (
+/obj/structure/tank_dispenser/oxygen,
+/obj/machinery/firealarm{
+ dir = 2;
+ pixel_y = 24
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 5
+ },
+/area/shuttle/caravan/pirate)
+"fa" = (
+/obj/structure/table,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/machinery/door/window/southleft{
+ name = "Weapon Storage"
+ },
+/obj/item/gun/ballistic/shotgun/automatic/combat,
+/turf/open/floor/plasteel/vault{
+ dir = 5
+ },
+/area/shuttle/caravan/pirate)
+"fb" = (
+/obj/structure/table,
+/obj/item/gun/energy/laser{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/item/gun/energy/laser,
+/obj/machinery/door/window/southleft{
+ base_state = "right";
+ icon_state = "right";
+ name = "Weapon Storage"
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 5
+ },
+/area/shuttle/caravan/pirate)
+"fc" = (
+/obj/structure/bed,
+/obj/item/bedsheet/brown,
+/obj/machinery/airalarm/all_access{
+ dir = 4;
+ pixel_x = -24
+ },
+/turf/open/floor/plasteel/darkred/corner{
+ dir = 8
+ },
+/area/shuttle/caravan/pirate)
+"fd" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 5
+ },
+/area/shuttle/caravan/pirate)
+"fe" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/darkblue/side{
+ dir = 4
+ },
+/area/shuttle/caravan/pirate)
+"ff" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/command{
+ name = "Bridge"
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 5
+ },
+/area/shuttle/caravan/pirate)
+"fg" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/dark,
+/area/shuttle/caravan/pirate)
+"fh" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 9
+ },
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -24
+ },
+/turf/open/floor/plasteel/dark,
+/area/shuttle/caravan/pirate)
+"fi" = (
+/obj/structure/table/reinforced,
+/obj/machinery/recharger,
+/obj/item/melee/classic_baton,
+/turf/open/floor/plasteel/darkred/corner,
+/area/shuttle/caravan/pirate)
+"fj" = (
+/obj/structure/table/reinforced,
+/obj/machinery/button/door{
+ id = "caravanpirate_bridge";
+ name = "Bridge Blast Door Control";
+ pixel_x = -16
+ },
+/turf/open/floor/plasteel/darkred/side,
+/area/shuttle/caravan/pirate)
+"fk" = (
+/obj/machinery/power/terminal{
+ dir = 1
+ },
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
+/obj/structure/closet/crate,
+/obj/item/stack/sheet/metal/twenty,
+/obj/item/stack/sheet/glass{
+ amount = 10
+ },
+/obj/item/storage/toolbox/mechanical,
+/obj/item/device/flashlight{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/stack/sheet/mineral/plasma{
+ amount = 20
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/shuttle/caravan/pirate)
+"fl" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/structure/closet/crate/secure/weapon,
+/obj/item/gun/ballistic/revolver/grenadelauncher/unrestricted,
+/turf/open/floor/plasteel/red/side{
+ dir = 8
+ },
+/area/shuttle/caravan/pirate)
+"fm" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on,
+/turf/open/floor/plasteel/floorgrime,
+/area/shuttle/caravan/pirate)
+"fo" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 6
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/shuttle/caravan/pirate)
+"fp" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/security,
+/turf/open/floor/plasteel/floorgrime,
+/area/shuttle/caravan/pirate)
+"fq" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/darkred/side{
+ dir = 8
+ },
+/area/shuttle/caravan/pirate)
+"fr" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 9
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 5
+ },
+/area/shuttle/caravan/pirate)
+"fs" = (
+/obj/structure/rack,
+/obj/item/storage/bag/money/vault,
+/mob/living/simple_animal/parrot{
+ faction = list("pirate");
+ name = "Pegwing"
+ },
+/turf/open/floor/plasteel/darkblue/corner{
+ dir = 4
+ },
+/area/shuttle/caravan/pirate)
+"ft" = (
+/obj/structure/cable,
+/obj/machinery/power/port_gen/pacman{
+ anchored = 1
+ },
+/obj/item/wrench,
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/turf/open/floor/plating,
+/area/shuttle/caravan/pirate)
+"fu" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 5
+ },
+/turf/open/floor/plating,
+/area/shuttle/caravan/pirate)
+"fv" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 10
+ },
+/area/shuttle/caravan/pirate)
+"fw" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/red/side,
+/area/shuttle/caravan/pirate)
+"fx" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
+/turf/open/floor/plasteel/red/side,
+/area/shuttle/caravan/pirate)
+"fy" = (
+/obj/machinery/button/door{
+ id = "caravanpirate_bolt_starboard";
+ name = "External Bolt Control";
+ normaldoorcontrol = 1;
+ pixel_x = -4;
+ pixel_y = -25;
+ specialfunctions = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/red/side,
+/area/shuttle/caravan/pirate)
+"fz" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 9
+ },
+/turf/open/floor/plasteel/red/side,
+/area/shuttle/caravan/pirate)
+"fA" = (
+/obj/structure/closet{
+ name = "pirate outfits"
+ },
+/obj/item/clothing/head/collectable/pirate,
+/obj/item/clothing/suit/pirate,
+/obj/item/clothing/under/pirate,
+/obj/item/clothing/shoes/jackboots,
+/obj/item/clothing/head/bandana,
+/turf/open/floor/plasteel/darkred/corner{
+ dir = 1
+ },
+/area/shuttle/caravan/pirate)
+"fB" = (
+/obj/machinery/light/small,
+/obj/structure/bed,
+/obj/item/bedsheet/brown,
+/turf/open/floor/plasteel/dark,
+/area/shuttle/caravan/pirate)
+"fC" = (
+/obj/structure/table,
+/obj/machinery/cell_charger,
+/obj/item/stack/cable_coil/yellow,
+/obj/item/stock_parts/cell/high,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plating,
+/area/shuttle/caravan/pirate)
+"fD" = (
+/obj/machinery/door/airlock/external{
+ cyclelinkeddir = 2;
+ id_tag = "caravanpirate_bolt_starboard";
+ locked = 1
+ },
+/turf/open/floor/plating,
+/area/shuttle/caravan/pirate)
+"fF" = (
+/obj/machinery/door/airlock/external{
+ cyclelinkeddir = 1;
+ id_tag = "caravanpirate_bolt_starboard";
+ locked = 1
+ },
+/turf/open/floor/plating,
+/area/shuttle/caravan/pirate)
+"fG" = (
+/turf/closed/wall/mineral/titanium,
+/area/shuttle/caravan/freighter1)
+"fH" = (
+/turf/closed/wall/mineral/titanium/nodiagonal,
+/area/shuttle/caravan/freighter1)
+"fI" = (
+/obj/effect/spawner/structure/window/shuttle,
+/obj/machinery/door/poddoor{
+ id = "caravantrade1_bridge"
+ },
+/turf/open/floor/plating,
+/area/shuttle/caravan/freighter1)
+"fJ" = (
+/obj/structure/chair{
+ dir = 1
+ },
+/obj/machinery/turretid{
+ ailock = 1;
+ control_area = null;
+ desc = "A specially designed set of turret controls. Looks to be covered in protective casing to prevent AI interfacing.";
+ icon_state = "control_kill";
+ lethal = 1;
+ name = "Shuttle turret control";
+ pixel_x = 32;
+ pixel_y = 32;
+ req_access = list(150)
+ },
+/obj/structure/cable/yellow{
+ icon_state = "0-4"
+ },
/mob/living/simple_animal/hostile/syndicate{
environment_smash = 0;
name = "Syndicate Salvage Pilot"
},
/turf/open/floor/mineral/plastitanium,
-/area/ruin/powered)
-"dv" = (
-/obj/structure/shuttle/engine/propulsion/burst,
+/area/shuttle/caravan/syndicate2)
+"fK" = (
+/obj/structure/shuttle/engine/propulsion/burst/left{
+ dir = 8
+ },
/turf/open/floor/plating/airless,
-/area/ruin/powered)
-"dw" = (
-/obj/structure/chair{
+/area/shuttle/caravan/freighter1)
+"fL" = (
+/obj/structure/shuttle/engine/heater{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/open/floor/plating/airless,
+/area/shuttle/caravan/freighter1)
+"fN" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 1
},
-/turf/open/floor/mineral/plastitanium,
-/area/ruin/powered)
-"dx" = (
-/obj/structure/closet/crate,
-/obj/item/stack/sheet/mineral/diamond{
- amount = 5
+/turf/open/floor/plating/airless,
+/area/shuttle/caravan/freighter1)
+"fO" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
},
-/obj/item/stack/sheet/mineral/uranium{
+/obj/machinery/door/airlock/engineering{
+ name = "Engine Room"
+ },
+/turf/open/floor/plating/airless,
+/area/shuttle/caravan/freighter1)
+"fP" = (
+/obj/machinery/firealarm{
+ dir = 2;
+ pixel_y = 24
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
+ },
+/turf/open/floor/plasteel/airless,
+/area/shuttle/caravan/freighter1)
+"fQ" = (
+/obj/machinery/light/small,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/airless,
+/area/shuttle/caravan/freighter1)
+"fR" = (
+/obj/machinery/airalarm/all_access{
+ pixel_y = 24
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
+ },
+/turf/open/floor/plasteel/airless,
+/area/shuttle/caravan/freighter1)
+"fS" = (
+/obj/machinery/door/airlock{
+ name = "Crew Cabins"
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/airless/floorgrime,
+/area/shuttle/caravan/freighter1)
+"fT" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/yellow/corner{
+ dir = 4;
+ initial_gas_mix = "TEMP=2.7"
+ },
+/area/shuttle/caravan/freighter1)
+"fU" = (
+/obj/machinery/light/small,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/yellow/side{
+ dir = 1;
+ initial_gas_mix = "TEMP=2.7"
+ },
+/area/shuttle/caravan/freighter1)
+"fV" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 10
+ },
+/obj/effect/decal/cleanable/blood,
+/turf/open/floor/plasteel/yellow/side{
+ dir = 1;
+ initial_gas_mix = "TEMP=2.7"
+ },
+/area/shuttle/caravan/freighter1)
+"fW" = (
+/obj/structure/closet/secure_closet/freezer{
+ locked = 0;
+ name = "fridge"
+ },
+/obj/item/reagent_containers/food/drinks/beer{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/item/reagent_containers/food/drinks/beer,
+/obj/item/reagent_containers/food/drinks/beer{
+ pixel_x = 3;
+ pixel_y = -3
+ },
+/obj/item/reagent_containers/glass/beaker/waterbottle{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/item/reagent_containers/glass/beaker/waterbottle,
+/obj/item/reagent_containers/glass/beaker/waterbottle{
+ pixel_x = 3;
+ pixel_y = -3
+ },
+/obj/item/reagent_containers/food/snacks/pizzaslice/margherita{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/item/reagent_containers/food/snacks/pizzaslice/margherita,
+/obj/item/reagent_containers/food/snacks/chocolatebar,
+/turf/open/floor/plasteel/yellow/side{
+ dir = 5;
+ initial_gas_mix = "TEMP=2.7"
+ },
+/area/shuttle/caravan/freighter1)
+"fX" = (
+/obj/structure/table,
+/obj/machinery/microwave{
+ pixel_y = 5
+ },
+/turf/open/floor/plasteel/vault/airless,
+/area/shuttle/caravan/freighter1)
+"fY" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/structure/sign/warning/vacuum{
+ pixel_x = 32
+ },
+/turf/open/floor/plating,
+/area/shuttle/caravan/freighter1)
+"fZ" = (
+/turf/closed/wall/mineral/titanium,
+/area/shuttle/caravan/freighter3)
+"ga" = (
+/turf/closed/wall/mineral/titanium/nodiagonal,
+/area/shuttle/caravan/freighter3)
+"gb" = (
+/obj/machinery/door/poddoor{
+ id = "caravantrade3_cargo_port";
+ name = "Cargo Blast Door"
+ },
+/turf/open/floor/plating/airless,
+/area/shuttle/caravan/freighter3)
+"gc" = (
+/obj/machinery/door/airlock/external{
+ cyclelinkeddir = 8;
+ req_access_txt = "13"
+ },
+/turf/open/floor/plating/airless,
+/area/shuttle/caravan/freighter3)
+"gd" = (
+/obj/effect/spawner/structure/window/shuttle,
+/turf/open/floor/plating,
+/area/shuttle/caravan/freighter3)
+"ge" = (
+/obj/structure/shuttle/engine/propulsion/burst{
+ dir = 8
+ },
+/turf/open/floor/plating/airless,
+/area/shuttle/caravan/freighter1)
+"gf" = (
+/obj/machinery/power/smes{
+ charge = 0
+ },
+/obj/structure/cable/yellow{
+ icon_state = "0-4"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating/airless,
+/area/shuttle/caravan/freighter1)
+"gg" = (
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plating/airless,
+/area/shuttle/caravan/freighter1)
+"gj" = (
+/obj/machinery/airalarm/all_access{
+ dir = 4;
+ pixel_x = -24
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/effect/mob_spawn/human/corpse/cargo_tech,
+/obj/effect/decal/cleanable/blood,
+/turf/open/floor/plasteel/airless/floorgrime,
+/area/shuttle/caravan/freighter1)
+"gk" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/fluff/broken_flooring{
+ icon_state = "singular"
+ },
+/obj/effect/decal/cleanable/blood,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating/airless,
+/area/ruin/unpowered)
+"gl" = (
+/obj/structure/chair/stool,
+/turf/open/floor/plasteel/yellow/side{
+ dir = 4;
+ initial_gas_mix = "TEMP=2.7"
+ },
+/area/shuttle/caravan/freighter1)
+"gm" = (
+/obj/structure/table,
+/obj/item/storage/box/donkpockets{
+ pixel_x = 6;
+ pixel_y = 6
+ },
+/obj/item/trash/plate{
+ pixel_x = -5;
+ pixel_y = -3
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/vault/airless,
+/area/shuttle/caravan/freighter1)
+"gn" = (
+/obj/machinery/door/airlock/external{
+ cyclelinkeddir = 1;
+ id_tag = "caravantrade1_bolt";
+ locked = 1
+ },
+/turf/open/floor/plating,
+/area/shuttle/caravan/freighter1)
+"go" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/rack,
+/obj/item/storage/firstaid/regular,
+/turf/open/floor/plasteel/darkblue/side{
+ dir = 10;
+ initial_gas_mix = "TEMP=2.7"
+ },
+/area/shuttle/caravan/freighter1)
+"gp" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/table/reinforced,
+/obj/item/paper_bin{
+ pixel_x = 6;
+ pixel_y = 6
+ },
+/obj/item/pen{
+ pixel_x = 6;
+ pixel_y = 6
+ },
+/obj/item/folder/yellow{
+ pixel_x = -6
+ },
+/obj/item/device/gps{
+ gpstag = "Distress Signal"
+ },
+/turf/open/floor/plasteel/darkblue/side{
+ dir = 6;
+ initial_gas_mix = "TEMP=2.7"
+ },
+/area/shuttle/caravan/freighter1)
+"gq" = (
+/obj/structure/shuttle/engine/propulsion/burst/left{
+ dir = 8
+ },
+/turf/open/floor/plating/airless,
+/area/shuttle/caravan/freighter3)
+"gs" = (
+/obj/effect/turf_decal/bot_white,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/airless/dark,
+/area/shuttle/caravan/freighter3)
+"gt" = (
+/obj/effect/turf_decal/bot_white,
+/turf/open/floor/plasteel/airless/dark,
+/area/shuttle/caravan/freighter3)
+"gv" = (
+/obj/effect/turf_decal/bot_white,
+/obj/structure/closet/crate/secure/engineering,
+/obj/item/storage/toolbox/mechanical,
+/obj/item/storage/toolbox/mechanical,
+/obj/item/storage/toolbox/electrical,
+/obj/item/storage/toolbox/electrical,
+/obj/item/clothing/gloves/color/yellow,
+/obj/item/clothing/gloves/color/yellow,
+/obj/item/device/multitool,
+/obj/item/device/multitool,
+/turf/open/floor/plasteel/airless/dark,
+/area/shuttle/caravan/freighter3)
+"gw" = (
+/obj/effect/turf_decal/bot_white,
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/machinery/button/door{
+ id = "caravantrade3_cargo_port";
+ name = "Cargo Blast Door Control";
+ pixel_y = 24
+ },
+/turf/open/floor/plasteel/airless/dark,
+/area/shuttle/caravan/freighter3)
+"gy" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/structure/sign/warning/vacuum{
+ pixel_x = -32;
+ pixel_y = 32
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/airless/dark,
+/area/shuttle/caravan/freighter3)
+"gD" = (
+/obj/machinery/power/terminal{
+ dir = 1
+ },
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
+/obj/structure/closet/crate,
+/obj/item/stack/sheet/metal/twenty,
+/obj/item/stack/sheet/glass{
amount = 10
},
-/obj/item/stack/sheet/mineral/silver{
+/obj/item/stack/rods/ten,
+/obj/item/storage/box/lights/bulbs,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating/airless,
+/area/shuttle/caravan/freighter1)
+"gJ" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel/airless,
+/area/shuttle/caravan/freighter1)
+"gN" = (
+/obj/effect/decal/cleanable/blood,
+/mob/living/simple_animal/hostile/syndicate/melee/space/stormtrooper{
+ environment_smash = 0;
+ name = "Syndicate Salvage Leader"
+ },
+/turf/open/floor/plasteel/darkblue/corner{
+ dir = 4;
+ initial_gas_mix = "TEMP=2.7"
+ },
+/area/shuttle/caravan/freighter1)
+"gO" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/computer/camera_advanced/shuttle_docker/caravan/trade1{
+ dir = 8
+ },
+/turf/open/floor/plasteel/darkblue/side{
+ dir = 9;
+ initial_gas_mix = "TEMP=2.7"
+ },
+/area/shuttle/caravan/freighter1)
+"gP" = (
+/obj/structure/shuttle/engine/propulsion/burst{
+ dir = 8
+ },
+/turf/open/floor/plating/airless,
+/area/shuttle/caravan/freighter3)
+"gQ" = (
+/obj/structure/shuttle/engine/heater{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/open/floor/plating/airless,
+/area/shuttle/caravan/freighter3)
+"gR" = (
+/obj/machinery/power/smes{
+ charge = 0
+ },
+/obj/structure/cable/yellow,
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating/airless,
+/area/shuttle/caravan/freighter3)
+"gT" = (
+/mob/living/simple_animal/hostile/syndicate/melee/space{
+ environment_smash = 0;
+ name = "Syndicate Salvage Worker"
+ },
+/turf/open/floor/plasteel/airless/floorgrime,
+/area/shuttle/caravan/freighter3)
+"gU" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 6
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/airless,
+/area/shuttle/caravan/freighter3)
+"gV" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/airless{
+ icon_state = "floorscorched1"
+ },
+/area/shuttle/caravan/freighter3)
+"gW" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/blue/side{
+ dir = 4;
+ initial_gas_mix = "TEMP=2.7"
+ },
+/area/shuttle/caravan/freighter3)
+"gY" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 10
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/airless/dark,
+/area/shuttle/caravan/freighter3)
+"ha" = (
+/obj/structure/table/reinforced,
+/obj/item/folder/yellow,
+/obj/item/pen{
+ pixel_x = 6;
+ pixel_y = 6
+ },
+/turf/open/floor/plasteel/darkblue/side{
+ dir = 9;
+ initial_gas_mix = "TEMP=2.7"
+ },
+/area/shuttle/caravan/freighter3)
+"hb" = (
+/obj/structure/cable,
+/obj/machinery/power/port_gen/pacman{
+ anchored = 1
+ },
+/obj/item/wrench,
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/turf/open/floor/plating/airless,
+/area/shuttle/caravan/freighter1)
+"hc" = (
+/obj/machinery/airalarm/all_access{
+ dir = 8;
+ pixel_x = 24
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plating/airless{
+ icon_state = "platingdmg1"
+ },
+/area/shuttle/caravan/freighter1)
+"hd" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel/airless/floorgrime,
+/area/shuttle/caravan/freighter1)
+"he" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/airless,
+/area/shuttle/caravan/freighter1)
+"hf" = (
+/obj/machinery/door/airlock{
+ name = "Crew Quarters"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/airless/floorgrime,
+/area/shuttle/caravan/freighter1)
+"hg" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/machinery/airalarm/all_access{
+ pixel_y = 24
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/airless,
+/area/shuttle/caravan/freighter1)
+"hh" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
+/turf/open/floor/plasteel/blue/side{
+ dir = 4;
+ initial_gas_mix = "TEMP=2.7"
+ },
+/area/shuttle/caravan/freighter1)
+"hi" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/door/airlock/command{
+ name = "Bridge"
+ },
+/turf/open/floor/plasteel/airless/dark,
+/area/shuttle/caravan/freighter1)
+"hj" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 9
+ },
+/turf/open/floor/plasteel/airless/dark,
+/area/shuttle/caravan/freighter1)
+"hk" = (
+/obj/structure/chair{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/mob_spawn/human/corpse/cargo_tech,
+/obj/effect/decal/cleanable/blood,
+/turf/open/floor/plasteel/darkblue/corner{
+ initial_gas_mix = "TEMP=2.7"
+ },
+/area/shuttle/caravan/freighter1)
+"hl" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/computer/shuttle/caravan/trade1{
+ dir = 8
+ },
+/turf/open/floor/plasteel/darkblue/side{
+ dir = 10;
+ initial_gas_mix = "TEMP=2.7"
+ },
+/area/shuttle/caravan/freighter1)
+"hm" = (
+/turf/closed/wall/mineral/titanium,
+/area/shuttle/caravan/freighter2)
+"hn" = (
+/turf/closed/wall/mineral/titanium/nodiagonal,
+/area/shuttle/caravan/freighter2)
+"ho" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/door/poddoor/preopen{
+ id = "caravantrade2_cargo_port";
+ name = "Cargo Blast Door"
+ },
+/turf/open/floor/plating/airless{
+ icon_state = "platingdmg3"
+ },
+/area/shuttle/caravan/freighter2)
+"hp" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/door/poddoor/preopen{
+ id = "caravantrade2_cargo_port";
+ name = "Cargo Blast Door"
+ },
+/turf/open/floor/plating/airless,
+/area/shuttle/caravan/freighter2)
+"hq" = (
+/obj/machinery/door/poddoor/preopen{
+ id = "caravantrade2_cargo_port";
+ name = "Cargo Blast Door"
+ },
+/turf/open/floor/plating/airless{
+ icon_state = "platingdmg3"
+ },
+/area/shuttle/caravan/freighter2)
+"hr" = (
+/obj/machinery/door/poddoor/preopen{
+ id = "caravantrade2_cargo_port";
+ name = "Cargo Blast Door"
+ },
+/turf/open/floor/plating/airless,
+/area/shuttle/caravan/freighter2)
+"hs" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/door/airlock/external{
+ cyclelinkeddir = 8;
+ req_access_txt = "13"
+ },
+/turf/open/floor/plating/airless,
+/area/shuttle/caravan/freighter2)
+"ht" = (
+/obj/effect/spawner/structure/window/shuttle,
+/turf/open/floor/plating,
+/area/shuttle/caravan/freighter2)
+"hu" = (
+/obj/machinery/space_heater,
+/obj/machinery/power/terminal{
+ dir = 1
+ },
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating/airless,
+/area/shuttle/caravan/freighter3)
+"hv" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/airless,
+/area/shuttle/caravan/freighter3)
+"hw" = (
+/obj/effect/turf_decal/box/white/corners{
+ dir = 4
+ },
+/turf/open/floor/plasteel/airless/dark,
+/area/shuttle/caravan/freighter3)
+"hx" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/closet/crate/secure/plasma,
+/obj/item/tank/internals/plasma/full,
+/obj/item/stack/sheet/mineral/plasma{
amount = 25
},
-/turf/open/floor/mineral/plastitanium,
-/area/ruin/powered)
-"dy" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/airless/dark,
+/area/shuttle/caravan/freighter3)
+"hy" = (
+/obj/effect/turf_decal/box/white/corners{
+ dir = 1
+ },
+/turf/open/floor/plasteel/airless/dark,
+/area/shuttle/caravan/freighter3)
+"hz" = (
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/turf/open/floor/plasteel/blue/corner{
+ dir = 4;
+ initial_gas_mix = "TEMP=2.7"
+ },
+/area/shuttle/caravan/freighter3)
+"hB" = (
/mob/living/simple_animal/hostile/syndicate/ranged/space/stormtrooper{
environment_smash = 0;
name = "Syndicate Salvage Leader"
},
-/turf/open/floor/plating/asteroid/airless,
-/area/ruin/unpowered/no_grav)
-"dz" = (
+/turf/open/floor/plasteel/airless{
+ icon_state = "damaged2"
+ },
+/area/shuttle/caravan/freighter3)
+"hD" = (
+/obj/structure/shuttle/engine/propulsion/burst/right{
+ dir = 8
+ },
+/turf/open/floor/plating/airless,
+/area/shuttle/caravan/freighter1)
+"hE" = (
+/obj/effect/turf_decal/bot,
+/obj/machinery/atmospherics/components/unary/tank/air{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating/airless,
+/area/shuttle/caravan/freighter1)
+"hF" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
+/obj/machinery/meter,
+/turf/open/floor/plating/airless,
+/area/shuttle/caravan/freighter1)
+"hG" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 10
+ },
+/turf/open/floor/plasteel/airless/floorgrime,
+/area/shuttle/caravan/freighter1)
+"hH" = (
+/obj/structure/rack,
+/obj/item/storage/belt/utility,
+/obj/structure/extinguisher_cabinet{
+ pixel_y = 29
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/airless/floorgrime,
+/area/shuttle/caravan/freighter1)
+"hI" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/structure/table,
+/obj/item/stack/packageWrap,
+/obj/item/crowbar,
+/obj/item/device/flashlight{
+ pixel_x = 1;
+ pixel_y = 5
+ },
+/obj/machinery/airalarm/all_access{
+ pixel_y = 24
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/airless,
+/area/shuttle/caravan/freighter1)
+"hJ" = (
+/obj/structure/table,
+/obj/machinery/cell_charger,
+/obj/machinery/firealarm{
+ dir = 2;
+ pixel_y = 24
+ },
+/obj/item/stack/cable_coil/yellow{
+ pixel_x = 12;
+ pixel_y = 4
+ },
+/turf/open/floor/plasteel/airless,
+/area/shuttle/caravan/freighter1)
+"hK" = (
+/obj/structure/table,
+/obj/item/storage/toolbox/mechanical,
+/obj/item/device/multitool,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/airless,
+/area/shuttle/caravan/freighter1)
+"hM" = (
+/obj/machinery/suit_storage_unit/standard_unit,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/airless,
+/area/shuttle/caravan/freighter1)
+"hN" = (
+/obj/structure/rack,
+/obj/item/tank/internals/oxygen,
+/obj/item/device/radio,
+/obj/item/clothing/mask/gas,
+/turf/open/floor/plasteel/blue/corner{
+ dir = 4;
+ initial_gas_mix = "TEMP=2.7"
+ },
+/area/shuttle/caravan/freighter1)
+"hO" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/rack,
+/obj/item/storage/toolbox/emergency,
+/obj/item/wrench,
+/turf/open/floor/plasteel/darkblue/side{
+ dir = 9;
+ initial_gas_mix = "TEMP=2.7"
+ },
+/area/shuttle/caravan/freighter1)
+"hP" = (
+/obj/structure/table/reinforced,
+/obj/machinery/button/door{
+ id = "caravantrade1_bridge";
+ name = "Ship Blast Door Control"
+ },
+/turf/open/floor/plasteel/darkblue/side{
+ dir = 5;
+ initial_gas_mix = "TEMP=2.7"
+ },
+/area/shuttle/caravan/freighter1)
+"hQ" = (
+/obj/structure/shuttle/engine/propulsion/burst/left{
+ dir = 8
+ },
+/turf/open/floor/plating/airless,
+/area/shuttle/caravan/freighter2)
+"hS" = (
+/obj/effect/turf_decal/bot_white,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/airless{
+ icon_state = "damaged5"
+ },
+/area/shuttle/caravan/freighter2)
+"hT" = (
+/obj/effect/turf_decal/bot_white,
+/obj/structure/closet/crate/secure/gear,
+/obj/item/ammo_casing/shotgun/ion,
+/obj/item/ammo_casing/shotgun/pulseslug,
+/obj/item/ammo_casing/shotgun/dragonsbreath,
+/obj/item/ammo_casing/shotgun/techshell,
+/obj/item/ammo_casing/shotgun/techshell,
+/turf/open/floor/plasteel/airless/dark,
+/area/shuttle/caravan/freighter2)
+"hU" = (
+/obj/effect/turf_decal/bot_white,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/airless{
+ icon_state = "damaged2"
+ },
+/area/shuttle/caravan/freighter2)
+"hV" = (
+/obj/effect/turf_decal/bot_white,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/closet/crate/secure/gear,
+/obj/item/storage/box/lethalshot,
+/obj/item/ammo_casing/shotgun/frag12,
+/obj/item/ammo_casing/shotgun/frag12,
+/obj/item/ammo_casing/shotgun/frag12,
+/obj/item/ammo_casing/shotgun/frag12,
+/turf/open/floor/plasteel/airless/dark,
+/area/shuttle/caravan/freighter2)
+"hW" = (
+/obj/effect/turf_decal/bot_white,
+/obj/structure/closet/crate/secure/gear,
+/obj/machinery/button/door{
+ id = "caravantrade2_cargo_port";
+ name = "Cargo Blast Door Control";
+ pixel_y = 24
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/item/ammo_box/c10mm,
+/obj/item/ammo_box/magazine/m10mm{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/item/ammo_box/magazine/m10mm,
+/turf/open/floor/plasteel/airless/dark,
+/area/shuttle/caravan/freighter2)
+"hX" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/structure/sign/warning/vacuum{
+ pixel_x = -32;
+ pixel_y = 32
+ },
+/turf/open/floor/plating/airless,
+/area/shuttle/caravan/freighter2)
+"hY" = (
+/obj/structure/rack,
+/obj/item/weldingtool,
+/obj/item/crowbar,
+/obj/item/wirecutters,
+/obj/item/wrench,
+/obj/item/screwdriver{
+ pixel_y = 8
+ },
+/turf/open/floor/plating/airless,
+/area/shuttle/caravan/freighter2)
+"hZ" = (
+/obj/machinery/power/port_gen/pacman{
+ anchored = 1
+ },
+/obj/item/wrench,
+/obj/structure/cable,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plating/airless,
+/area/shuttle/caravan/freighter3)
+"ia" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/airless{
+ icon_state = "damaged2"
+ },
+/area/shuttle/caravan/freighter3)
+"ib" = (
+/obj/effect/turf_decal/box/white/corners{
+ dir = 8
+ },
+/obj/structure/closet/crate/secure/plasma,
+/obj/item/tank/internals/plasma/full,
+/obj/item/stack/sheet/mineral/plasma{
+ amount = 25
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating/airless,
+/area/shuttle/caravan/freighter3)
+"ic" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/airless{
+ icon_state = "damaged5"
+ },
+/area/shuttle/caravan/freighter3)
+"id" = (
+/obj/effect/turf_decal/box/white/corners,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/airless/dark,
+/area/shuttle/caravan/freighter3)
+"ie" = (
+/obj/machinery/airalarm/all_access{
+ dir = 8;
+ pixel_x = 24
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/airless/floorgrime,
+/area/shuttle/caravan/freighter3)
+"if" = (
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -26
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/airless/dark,
+/area/shuttle/caravan/freighter3)
+"ig" = (
+/obj/structure/chair{
+ dir = 4
+ },
+/obj/effect/mob_spawn/human/corpse/cargo_tech,
+/obj/effect/decal/cleanable/blood,
+/turf/open/floor/plasteel/airless/dark,
+/area/shuttle/caravan/freighter3)
+"ih" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/frame/computer{
+ dir = 8
+ },
+/obj/item/shard,
+/turf/open/floor/plasteel/airless{
+ icon_state = "damaged3"
+ },
+/area/shuttle/caravan/freighter3)
+"ii" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel/airless/floorgrime,
+/area/shuttle/caravan/freighter1)
+"ij" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/airless{
+ icon_state = "floorscorched1"
+ },
+/area/shuttle/caravan/freighter1)
+"ik" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
/mob/living/simple_animal/hostile/syndicate/ranged/space{
environment_smash = 0;
name = "Syndicate Salvage Worker"
},
-/turf/open/floor/plating/asteroid/airless,
-/area/ruin/unpowered/no_grav)
-"dA" = (
-/obj/machinery/computer{
+/turf/open/floor/plasteel/airless,
+/area/shuttle/caravan/freighter1)
+"il" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/airless/floorgrime,
+/area/shuttle/caravan/freighter1)
+"im" = (
+/obj/item/stack/sheet/mineral/titanium,
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/airless{
+ icon_state = "damaged1"
+ },
+/area/shuttle/caravan/freighter1)
+"in" = (
+/obj/effect/turf_decal/bot_white,
+/obj/structure/closet/emcloset,
+/turf/open/floor/plasteel/vault/airless,
+/area/shuttle/caravan/freighter1)
+"io" = (
+/obj/structure/shuttle/engine/propulsion/burst{
+ dir = 8
+ },
+/turf/open/floor/plating/airless,
+/area/shuttle/caravan/freighter2)
+"ip" = (
+/obj/structure/shuttle/engine/heater{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/open/floor/plating/airless,
+/area/shuttle/caravan/freighter2)
+"iq" = (
+/obj/machinery/power/smes{
+ charge = 0
+ },
+/obj/structure/cable/yellow,
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/turf/open/floor/plating/airless,
+/area/shuttle/caravan/freighter2)
+"is" = (
+/turf/open/floor/plasteel/airless{
+ icon_state = "damaged2"
+ },
+/area/shuttle/caravan/freighter2)
+"it" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 6
+ },
+/turf/open/floor/plasteel/airless,
+/area/shuttle/caravan/freighter2)
+"iu" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/airless{
+ icon_state = "damaged3"
+ },
+/area/shuttle/caravan/freighter2)
+"iv" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/blue/side{
+ dir = 4;
+ initial_gas_mix = "TEMP=2.7"
+ },
+/area/shuttle/caravan/freighter2)
+"ix" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 10
+ },
+/turf/open/floor/plasteel/airless{
+ icon_state = "floorscorched1"
+ },
+/area/shuttle/caravan/freighter2)
+"iy" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/fluff/broken_flooring{
+ icon_state = "pile"
+ },
+/turf/open/floor/plating/airless{
+ icon_state = "platingdmg1"
+ },
+/area/shuttle/caravan/freighter2)
+"iz" = (
+/obj/item/shard,
+/turf/open/floor/plating/airless{
+ icon_state = "platingdmg3"
+ },
+/area/shuttle/caravan/freighter3)
+"iA" = (
+/obj/machinery/meter,
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
+/turf/open/floor/plating/airless{
+ icon_state = "platingdmg1"
+ },
+/area/shuttle/caravan/freighter3)
+"iB" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating/airless,
+/area/shuttle/caravan/freighter3)
+"iC" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/airless{
+ icon_state = "floorscorched1"
+ },
+/area/shuttle/caravan/freighter3)
+"iD" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/mob/living/simple_animal/hostile/syndicate/melee/space{
+ environment_smash = 0;
+ name = "Syndicate Salvage Worker"
+ },
+/turf/open/floor/plasteel/airless/floorgrime,
+/area/shuttle/caravan/freighter3)
+"iF" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/airless/dark,
+/area/shuttle/caravan/freighter3)
+"iH" = (
+/obj/structure/table/reinforced,
+/obj/machinery/cell_charger,
+/turf/open/floor/plasteel/darkblue/side{
+ dir = 10;
+ initial_gas_mix = "TEMP=2.7"
+ },
+/area/shuttle/caravan/freighter3)
+"iI" = (
+/obj/effect/turf_decal/box/white/corners{
+ dir = 4
+ },
+/obj/structure/closet/crate,
+/obj/item/stack/sheet/mineral/uranium{
+ amount = 10
+ },
+/obj/item/stack/sheet/mineral/uranium{
+ amount = 10
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/airless/dark,
+/area/shuttle/caravan/freighter1)
+"iJ" = (
+/obj/effect/turf_decal/box/white/corners{
dir = 1
},
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"dC" = (
-/obj/machinery/computer{
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/closet/crate,
+/obj/item/stack/sheet/mineral/gold{
+ amount = 25
+ },
+/turf/open/floor/plasteel/airless/dark,
+/area/shuttle/caravan/freighter1)
+"iL" = (
+/obj/effect/turf_decal/box/white/corners{
+ dir = 4
+ },
+/obj/structure/closet/crate,
+/obj/item/stack/sheet/rglass{
+ amount = 20
+ },
+/obj/item/stack/sheet/rglass{
+ amount = 20
+ },
+/turf/open/floor/plasteel/airless/dark,
+/area/shuttle/caravan/freighter1)
+"iM" = (
+/obj/effect/turf_decal/box/white/corners{
+ dir = 1
+ },
+/turf/open/floor/plasteel/airless/dark,
+/area/shuttle/caravan/freighter1)
+"iN" = (
+/obj/item/stack/sheet/metal/fifty,
+/turf/open/floor/plasteel/airless{
+ icon_state = "floorscorched2"
+ },
+/area/shuttle/caravan/freighter1)
+"iO" = (
+/obj/effect/turf_decal/box/white/corners{
+ dir = 4
+ },
+/turf/open/floor/plasteel/airless{
+ icon_state = "damaged4"
+ },
+/area/shuttle/caravan/freighter1)
+"iP" = (
+/obj/effect/turf_decal/box/white/corners{
+ dir = 1
+ },
+/turf/open/floor/plasteel/airless{
+ icon_state = "damaged5"
+ },
+/area/shuttle/caravan/freighter1)
+"iR" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating/airless,
+/area/shuttle/caravan/freighter1)
+"iS" = (
+/obj/structure/girder,
+/turf/open/floor/plating/airless{
+ icon_state = "platingdmg1"
+ },
+/area/shuttle/caravan/freighter1)
+"iT" = (
+/obj/machinery/space_heater,
+/obj/machinery/power/terminal{
+ dir = 1
+ },
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plating/airless,
+/area/shuttle/caravan/freighter2)
+"iU" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/airless,
+/area/shuttle/caravan/freighter2)
+"iV" = (
+/obj/effect/turf_decal/box/white/corners{
+ dir = 4
+ },
+/obj/structure/closet/crate/secure/weapon,
+/obj/item/gun/ballistic/shotgun/riot{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/item/gun/ballistic/shotgun/riot,
+/turf/open/floor/plasteel/airless/dark,
+/area/shuttle/caravan/freighter2)
+"iW" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/closet/crate/secure/weapon,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/item/gun/syringe/rapidsyringe,
+/obj/item/gun/syringe/syndicate{
+ pixel_x = 3;
+ pixel_y = -3
+ },
+/turf/open/floor/plasteel/airless/dark,
+/area/shuttle/caravan/freighter2)
+"iX" = (
+/obj/effect/turf_decal/box/white/corners{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/airless/dark,
+/area/shuttle/caravan/freighter2)
+"iY" = (
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/turf/open/floor/plasteel/blue/corner{
+ dir = 4;
+ initial_gas_mix = "TEMP=2.7"
+ },
+/area/shuttle/caravan/freighter2)
+"ja" = (
+/obj/effect/turf_decal/bot_white,
+/obj/structure/closet/crate/secure/engineering,
+/obj/item/organ/cyberimp/arm/toolset,
+/obj/item/organ/cyberimp/eyes/hud/medical,
+/obj/item/organ/cyberimp/brain/anti_stun,
+/turf/open/floor/plasteel/airless/dark,
+/area/shuttle/caravan/freighter3)
+"jb" = (
+/obj/effect/turf_decal/bot_white,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/airless{
+ icon_state = "damaged3"
+ },
+/area/shuttle/caravan/freighter3)
+"jc" = (
+/obj/effect/turf_decal/bot_white,
+/obj/structure/closet/crate/secure/plasma,
+/obj/item/mecha_parts/mecha_equipment/weapon/energy/plasma,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/airless/dark,
+/area/shuttle/caravan/freighter3)
+"jd" = (
+/obj/effect/turf_decal/bot_white,
+/obj/machinery/light/small,
+/obj/machinery/button/door{
+ id = "caravantrade3_cargo_starboard";
+ name = "Cargo Blast Door Control";
+ pixel_y = -24
+ },
+/turf/open/floor/plasteel/airless/dark,
+/area/shuttle/caravan/freighter3)
+"je" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/structure/sign/warning/vacuum{
+ pixel_x = -32;
+ pixel_y = -32
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/airless/dark,
+/area/shuttle/caravan/freighter3)
+"jg" = (
+/obj/structure/closet/crate,
+/obj/item/stack/sheet/mineral/silver{
+ amount = 25
+ },
+/obj/item/stack/sheet/mineral/silver{
+ amount = 25
+ },
+/turf/open/floor/plasteel/airless/dark,
+/area/shuttle/caravan/freighter1)
+"jh" = (
+/turf/open/floor/plasteel/airless/dark,
+/area/shuttle/caravan/freighter1)
+"ji" = (
+/mob/living/simple_animal/hostile/syndicate/melee/space{
+ environment_smash = 0;
+ name = "Syndicate Salvage Worker"
+ },
+/turf/open/floor/plasteel/vault/airless,
+/area/shuttle/caravan/freighter1)
+"jj" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/airless/dark,
+/area/shuttle/caravan/freighter1)
+"jk" = (
+/obj/structure/closet/crate,
+/obj/item/stack/sheet/mineral/titanium{
+ amount = 20
+ },
+/obj/item/stack/sheet/mineral/titanium{
+ amount = 20
+ },
+/turf/open/floor/plasteel/vault/airless,
+/area/shuttle/caravan/freighter1)
+"jl" = (
+/obj/structure/closet/crate{
+ icon_state = "crateopen";
+ opened = 1
+ },
+/obj/item/stack/sheet/metal/fifty,
+/turf/open/floor/plasteel/airless/dark,
+/area/shuttle/caravan/freighter1)
+"jm" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/airless{
+ icon_state = "damaged2"
+ },
+/area/shuttle/caravan/freighter1)
+"jp" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/power/port_gen/pacman{
+ anchored = 1
+ },
+/obj/item/wrench,
+/obj/structure/cable,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plating/airless,
+/area/shuttle/caravan/freighter2)
+"jq" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/airless/floorgrime,
+/area/shuttle/caravan/freighter2)
+"jr" = (
+/obj/effect/turf_decal/box/white/corners{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/airless/dark,
+/area/shuttle/caravan/freighter2)
+"js" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/airless/dark,
+/area/shuttle/caravan/freighter2)
+"jt" = (
+/obj/effect/turf_decal/box/white/corners,
+/obj/structure/closet/crate/secure/weapon,
+/obj/item/gun/energy/e_gun/mini{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/item/gun/energy/e_gun/mini,
+/turf/open/floor/plasteel/airless/dark,
+/area/shuttle/caravan/freighter2)
+"ju" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/airalarm/all_access{
+ dir = 8;
+ pixel_x = 24
+ },
+/turf/open/floor/plasteel/airless,
+/area/shuttle/caravan/freighter2)
+"jv" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -26
+ },
+/turf/open/floor/plating/airless,
+/area/shuttle/caravan/freighter2)
+"jy" = (
+/obj/machinery/door/poddoor{
+ id = "caravantrade3_cargo_starboard";
+ name = "Cargo Blast Door"
+ },
+/turf/open/floor/plating/airless,
+/area/shuttle/caravan/freighter3)
+"jz" = (
+/obj/effect/turf_decal/box/white/corners{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/airless/dark,
+/area/shuttle/caravan/freighter1)
+"jA" = (
+/obj/effect/turf_decal/bot_white,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/closet/crate/secure/engineering,
+/obj/item/wrench/caravan,
+/obj/item/wirecutters/caravan,
+/obj/item/crowbar/red/caravan,
+/obj/item/screwdriver/caravan,
+/turf/open/floor/plasteel/airless/dark,
+/area/shuttle/caravan/freighter3)
+"jB" = (
+/turf/open/floor/plasteel/vault/airless,
+/area/shuttle/caravan/freighter1)
+"jC" = (
+/obj/effect/turf_decal/box/white/corners{
+ dir = 8
+ },
+/turf/open/floor/plasteel/airless/dark,
+/area/shuttle/caravan/freighter1)
+"jD" = (
+/obj/effect/turf_decal/box/white/corners,
+/obj/structure/closet/crate,
+/obj/item/stack/sheet/glass/fifty,
+/obj/item/stack/sheet/glass/fifty,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/airless/dark,
+/area/shuttle/caravan/freighter1)
+"jE" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/airless{
+ icon_state = "damaged3"
+ },
+/area/shuttle/caravan/freighter1)
+"jF" = (
+/obj/effect/turf_decal/box/white/corners{
+ dir = 8
+ },
+/obj/structure/closet/crate,
+/obj/item/stack/sheet/plasteel/twenty,
+/obj/item/stack/sheet/plasteel/twenty,
+/turf/open/floor/plasteel/airless{
+ icon_state = "damaged5"
+ },
+/area/shuttle/caravan/freighter1)
+"jH" = (
+/obj/machinery/atmospherics/components/unary/tank/air{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/turf/open/floor/plating/airless,
+/area/shuttle/caravan/freighter2)
+"jI" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/meter,
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
+/turf/open/floor/plasteel/airless,
+/area/shuttle/caravan/freighter2)
+"jJ" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/airless/floorgrime,
+/area/shuttle/caravan/freighter2)
+"jK" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
+/turf/open/floor/plasteel/airless{
+ icon_state = "floorscorched1"
+ },
+/area/shuttle/caravan/freighter2)
+"jL" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/mob/living/simple_animal/hostile/pirate/space/ranged{
+ environment_smash = 0
+ },
+/turf/open/floor/plasteel/airless/floorgrime,
+/area/shuttle/caravan/freighter2)
+"jN" = (
+/turf/open/floor/plasteel/airless{
+ icon_state = "floorscorched1"
+ },
+/area/shuttle/caravan/freighter2)
+"jO" = (
+/obj/effect/decal/cleanable/dirt,
+/mob/living/simple_animal/hostile/pirate/space/ranged{
+ environment_smash = 0
+ },
+/turf/open/floor/plating/airless,
+/area/shuttle/caravan/freighter2)
+"jP" = (
+/obj/structure/table/reinforced,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/item/paper_bin{
+ pixel_x = 6;
+ pixel_y = 6
+ },
+/obj/item/pen{
+ pixel_x = 6;
+ pixel_y = 6
+ },
+/obj/item/folder/yellow{
+ pixel_x = -6
+ },
+/turf/open/floor/plating/airless,
+/area/shuttle/caravan/freighter2)
+"jQ" = (
+/obj/machinery/door/poddoor{
+ id = "caravantrade1_cargo";
+ name = "Cargo Blast Door"
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating/airless,
+/area/shuttle/caravan/freighter1)
+"jR" = (
+/obj/machinery/door/poddoor{
+ id = "caravantrade1_cargo";
+ name = "Cargo Blast Door"
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating/airless{
+ icon_state = "platingdmg3"
+ },
+/area/shuttle/caravan/freighter1)
+"jS" = (
+/obj/machinery/door/poddoor{
+ id = "caravantrade1_cargo";
+ name = "Cargo Blast Door"
+ },
+/turf/open/floor/plating/airless,
+/area/shuttle/caravan/freighter1)
+"jT" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating/airless{
+ icon_state = "platingdmg3"
+ },
+/area/shuttle/caravan/freighter1)
+"jV" = (
+/obj/structure/shuttle/engine/propulsion/burst/right{
+ dir = 8
+ },
+/turf/open/floor/plating/airless,
+/area/shuttle/caravan/freighter2)
+"jW" = (
+/obj/effect/turf_decal/bot_white/left,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/button/door{
+ id = "caravantrade2_cargo_starboard";
+ name = "Cargo Blast Door Control";
+ pixel_y = -24
+ },
+/obj/machinery/light/small,
+/turf/open/floor/plasteel/airless/dark,
+/area/shuttle/caravan/freighter2)
+"jX" = (
+/obj/effect/turf_decal/bot_white,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/airless/dark,
+/area/shuttle/caravan/freighter2)
+"jY" = (
+/obj/effect/turf_decal/bot_white,
+/obj/structure/closet/crate/secure/gear,
+/obj/item/ammo_box/a40mm,
+/obj/item/ammo_box/a40mm,
+/turf/open/floor/plasteel/airless/dark,
+/area/shuttle/caravan/freighter2)
+"jZ" = (
+/obj/effect/turf_decal/bot_white,
+/turf/open/floor/plasteel/airless/dark,
+/area/shuttle/caravan/freighter2)
+"ka" = (
+/obj/effect/turf_decal/bot_white,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/button/door{
+ id = "caravantrade2_cargo_starboard";
+ name = "Cargo Blast Door Control";
+ pixel_y = -24
+ },
+/obj/machinery/light/small,
+/turf/open/floor/plasteel/airless/dark,
+/area/shuttle/caravan/freighter2)
+"kb" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/structure/sign/warning/vacuum{
+ pixel_x = -32;
+ pixel_y = -32
+ },
+/turf/open/floor/plasteel/airless/dark,
+/area/shuttle/caravan/freighter2)
+"kc" = (
+/obj/structure/rack,
+/obj/effect/decal/cleanable/dirt,
+/obj/item/tank/internals/oxygen,
+/obj/item/device/radio,
+/obj/item/clothing/mask/gas,
+/turf/open/floor/plasteel/airless{
+ icon_state = "damaged5"
+ },
+/area/shuttle/caravan/freighter2)
+"kd" = (
+/obj/structure/grille/broken,
+/turf/open/floor/plating/airless{
+ icon_state = "platingdmg2"
+ },
+/area/shuttle/caravan/freighter2)
+"ke" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/door/poddoor{
+ id = "caravantrade2_cargo_starboard";
+ name = "Cargo Blast Door"
+ },
+/turf/open/floor/plating/airless,
+/area/shuttle/caravan/freighter2)
+"kf" = (
+/obj/machinery/door/poddoor{
+ id = "caravantrade2_cargo_starboard";
+ name = "Cargo Blast Door"
+ },
+/turf/open/floor/plating/airless,
+/area/shuttle/caravan/freighter2)
+"kg" = (
+/obj/machinery/porta_turret/syndicate/energy{
+ dir = 1;
+ icon_state = "standard_lethal";
+ mode = 1
+ },
+/turf/closed/wall/mineral/plastitanium,
+/area/shuttle/caravan/syndicate2)
+"kh" = (
+/turf/closed/wall/mineral/plastitanium,
+/area/shuttle/caravan/syndicate1)
+"ki" = (
+/turf/closed/wall/mineral/plastitanium/nodiagonal,
+/area/shuttle/caravan/syndicate1)
+"kj" = (
+/obj/machinery/porta_turret/syndicate/energy{
+ dir = 4;
+ icon_state = "standard_lethal";
+ mode = 1
+ },
+/turf/closed/wall/mineral/plastitanium,
+/area/shuttle/caravan/syndicate1)
+"kk" = (
+/turf/closed/wall/mineral/plastitanium/nodiagonal,
+/area/shuttle/caravan/syndicate2)
+"kl" = (
+/turf/closed/wall/mineral/plastitanium,
+/area/shuttle/caravan/syndicate2)
+"km" = (
+/obj/machinery/camera/xray{
+ c_tag = "External View";
+ dir = 1;
+ network = list("caravansyndicate2");
+ pixel_y = 32
+ },
+/turf/closed/wall/mineral/plastitanium/nodiagonal,
+/area/shuttle/caravan/syndicate2)
+"kn" = (
+/obj/structure/shuttle/engine/propulsion/burst{
+ dir = 8
+ },
+/turf/closed/wall/mineral/plastitanium,
+/area/shuttle/caravan/syndicate1)
+"ko" = (
+/turf/closed/wall/mineral/plastitanium,
+/area/shuttle/caravan/syndicate3)
+"kp" = (
+/turf/closed/wall/mineral/plastitanium/nodiagonal,
+/area/shuttle/caravan/syndicate3)
+"kq" = (
+/obj/machinery/porta_turret/syndicate/energy{
+ dir = 1;
+ icon_state = "standard_lethal";
+ mode = 1
+ },
+/turf/closed/wall/mineral/plastitanium/nodiagonal,
+/area/shuttle/caravan/syndicate3)
+"kr" = (
+/obj/machinery/door/airlock/hatch{
+ id_tag = "caravansyndicate3_bolt_port";
+ name = "External Airlock";
+ normalspeed = 0;
+ req_access_txt = "150"
+ },
+/obj/docking_port/stationary{
+ dir = 2;
+ dwidth = 6;
+ height = 7;
+ id = "caravansyndicate3_ambush";
+ name = "Trade Route";
+ width = 15
+ },
+/obj/docking_port/mobile{
+ dir = 2;
+ dwidth = 6;
+ height = 7;
+ id = "caravansyndicate3";
+ name = "Syndicate Drop Ship";
+ port_direction = 8;
+ preferred_direction = 4;
+ width = 15
+ },
+/turf/open/floor/plating,
+/area/shuttle/caravan/syndicate3)
+"ks" = (
+/obj/structure/grille,
+/obj/structure/window/plastitanium,
+/obj/machinery/door/poddoor{
+ id = "caravansyndicate3_bridge"
+ },
+/turf/open/floor/plating,
+/area/shuttle/caravan/syndicate3)
+"kt" = (
+/obj/machinery/computer/shuttle/caravan/syndicate2,
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/caravan/syndicate2)
+"ku" = (
+/obj/structure/shuttle/engine/propulsion/burst/left{
+ dir = 8
+ },
+/turf/open/floor/plating/airless,
+/area/shuttle/caravan/syndicate3)
+"kv" = (
+/obj/structure/shuttle/engine/heater{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/open/floor/plating/airless,
+/area/shuttle/caravan/syndicate3)
+"kw" = (
+/obj/structure/chair,
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ icon_state = "0-2"
+ },
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "Syndicate Drop Ship APC";
+ pixel_x = -24;
+ req_access = list(150)
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/pod/dark,
+/area/shuttle/caravan/syndicate3)
+"kx" = (
+/obj/structure/chair,
+/obj/machinery/airalarm{
+ pixel_y = 24;
+ req_access = list(150)
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/pod/dark,
+/area/shuttle/caravan/syndicate3)
+"ky" = (
+/obj/structure/chair,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/pod/dark,
+/area/shuttle/caravan/syndicate3)
+"kz" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/structure/closet/syndicate/personal{
+ anchored = 1
+ },
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/caravan/syndicate3)
+"kB" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/structure/closet/syndicate{
+ anchored = 1
+ },
+/obj/structure/sign/warning/vacuum{
+ pixel_y = 32
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/caravan/syndicate3)
+"kC" = (
+/obj/structure/table/reinforced,
+/obj/machinery/recharger,
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/open/floor/plasteel/darkred/side{
+ dir = 10
+ },
+/area/shuttle/caravan/syndicate3)
+"kD" = (
+/obj/structure/table/reinforced,
+/obj/machinery/button/door{
+ id = "caravansyndicate3_bridge";
+ name = "Bridge Blast Door Control";
+ pixel_x = -16;
+ pixel_y = 5;
+ req_access_txt = "150"
+ },
+/obj/machinery/button/door{
+ id = "caravansyndicate3_bolt_bridge";
+ name = "Bridge Bolt Control";
+ normaldoorcontrol = 1;
+ pixel_x = -16;
+ pixel_y = -5;
+ req_access_txt = "150";
+ specialfunctions = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/darkred/side{
+ dir = 6
+ },
+/area/shuttle/caravan/syndicate3)
+"kE" = (
+/obj/structure/shuttle/engine/propulsion/burst,
+/turf/closed/wall/mineral/plastitanium,
+/area/shuttle/caravan/syndicate2)
+"kF" = (
+/obj/machinery/button/door{
+ id = "caravansyndicate2_bolt";
+ name = "External Bolt Control";
+ normaldoorcontrol = 1;
+ pixel_y = -25;
+ req_access_txt = "150";
+ specialfunctions = 4
+ },
+/obj/machinery/computer/camera_advanced/shuttle_docker/caravan/syndicate2{
+ dir = 4
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/caravan/syndicate2)
+"kG" = (
+/obj/machinery/door/airlock/hatch{
+ id_tag = "caravansyndicate1_bolt";
+ locked = 1;
+ name = "External Airlock";
+ normalspeed = 0;
+ req_access_txt = "150"
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/docking_port/stationary{
+ dir = 4;
+ dwidth = 4;
+ height = 5;
+ id = "caravansyndicate1_ambush";
+ name = "Trade Route";
+ width = 9
+ },
+/obj/docking_port/mobile{
+ callTime = 50;
+ dir = 4;
+ dwidth = 4;
+ height = 5;
+ id = "caravansyndicate1";
+ ignitionTime = 25;
+ name = "Syndicate Fighter";
+ port_direction = 2;
+ preferred_direction = 4;
+ width = 9
+ },
+/turf/open/floor/plating,
+/area/shuttle/caravan/syndicate1)
+"kH" = (
+/obj/machinery/computer/security{
+ dir = 8;
+ network = list("caravansyndicate2")
+ },
+/obj/machinery/power/apc/highcap/fifteen_k{
+ dir = 2;
+ name = "Syndicate Fighter APC";
+ pixel_y = -24;
+ req_access = list(150)
+ },
+/obj/structure/cable/yellow{
+ icon_state = "0-8"
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/caravan/syndicate2)
+"kI" = (
+/obj/machinery/button/door{
+ id = "caravansyndicate1_bolt";
+ name = "External Bolt Control";
+ normaldoorcontrol = 1;
+ pixel_x = -25;
+ req_access_txt = "150";
+ specialfunctions = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/computer/camera_advanced/shuttle_docker/caravan/syndicate1,
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/caravan/syndicate1)
+"kJ" = (
+/obj/structure/shuttle/engine/propulsion/burst{
+ dir = 8
+ },
+/turf/open/floor/plating/airless,
+/area/shuttle/caravan/syndicate3)
+"kL" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/darkred/side{
+ dir = 1
+ },
+/area/shuttle/caravan/syndicate3)
+"kM" = (
+/turf/open/floor/plasteel/darkred/side{
+ dir = 1
+ },
+/area/shuttle/caravan/syndicate3)
+"kN" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/closet/syndicate{
+ anchored = 1
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/caravan/syndicate3)
+"kO" = (
+/obj/machinery/airalarm{
+ dir = 4;
+ pixel_x = -24;
+ req_access = list(150)
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/dark,
+/area/shuttle/caravan/syndicate3)
+"kP" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/obj/structure/closet/syndicate{
+ anchored = 1
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/caravan/syndicate3)
+"kQ" = (
+/obj/machinery/airalarm{
+ dir = 4;
+ pixel_x = -24;
+ req_access = list(150)
+ },
+/turf/open/floor/plasteel/dark,
+/area/shuttle/caravan/syndicate3)
+"kR" = (
+/obj/structure/chair/office/dark{
+ dir = 4
+ },
+/obj/machinery/turretid{
+ ailock = 1;
+ control_area = null;
+ desc = "A specially designed set of turret controls. Looks to be covered in protective casing to prevent AI interfacing.";
+ icon_state = "control_kill";
+ lethal = 1;
+ name = "Shuttle turret control";
+ pixel_y = 34;
+ req_access = list(150)
+ },
+/turf/open/floor/plasteel/darkred/corner{
+ dir = 4
+ },
+/area/shuttle/caravan/syndicate3)
+"kS" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/computer/camera_advanced/shuttle_docker/caravan/syndicate3{
+ dir = 8
+ },
+/turf/open/floor/plasteel/darkred/side{
+ dir = 10
+ },
+/area/shuttle/caravan/syndicate3)
+"kT" = (
+/obj/machinery/door/airlock/hatch{
+ id_tag = "caravansyndicate2_bolt";
+ locked = 1;
+ name = "External Airlock";
+ normalspeed = 0;
+ req_access_txt = "150"
+ },
+/obj/docking_port/stationary{
+ dir = 1;
+ dwidth = 4;
+ height = 5;
+ id = "caravansyndicate2_ambush";
+ name = "Trade Route";
+ width = 9
+ },
+/obj/docking_port/mobile{
+ callTime = 50;
+ dir = 1;
+ dwidth = 4;
+ height = 5;
+ id = "caravansyndicate2";
+ ignitionTime = 25;
+ name = "Syndicate Fighter";
+ port_direction = 2;
+ preferred_direction = 1;
+ width = 9
+ },
+/turf/open/floor/plating,
+/area/shuttle/caravan/syndicate2)
+"kU" = (
+/obj/machinery/door/airlock/external{
+ cyclelinkeddir = 2;
+ id_tag = "caravantrade1_bolt";
+ locked = 1
+ },
+/obj/docking_port/stationary{
+ dir = 2;
+ dwidth = 11;
+ height = 11;
+ id = "caravantrade1_ambush";
+ name = "Trade Route";
+ width = 27
+ },
+/obj/docking_port/mobile{
+ callTime = 250;
+ dir = 2;
+ dwidth = 11;
+ height = 11;
+ id = "caravantrade1";
+ movement_force = list("KNOCKDOWN" = 0, "THROW" = 0);
+ name = "Small Freighter";
+ port_direction = 8;
+ preferred_direction = 4;
+ width = 27
+ },
+/turf/open/floor/plating,
+/area/shuttle/caravan/freighter1)
+"kV" = (
+/obj/structure/chair{
+ dir = 4
+ },
+/obj/machinery/turretid{
+ ailock = 1;
+ control_area = null;
+ desc = "A specially designed set of turret controls. Looks to be covered in protective casing to prevent AI interfacing.";
+ icon_state = "control_kill";
+ lethal = 1;
+ name = "Shuttle turret control";
+ pixel_x = 32;
+ pixel_y = -28;
+ req_access = list(150)
+ },
+/obj/structure/cable/yellow{
+ icon_state = "0-2"
+ },
+/mob/living/simple_animal/hostile/syndicate{
+ environment_smash = 0;
+ name = "Syndicate Salvage Pilot"
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/caravan/syndicate1)
+"kW" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/computer/shuttle/caravan/syndicate1{
dir = 8
},
/turf/open/floor/mineral/plastitanium,
-/area/ruin/powered)
+/area/shuttle/caravan/syndicate1)
+"kX" = (
+/obj/machinery/camera/xray{
+ c_tag = "External View";
+ dir = 4;
+ network = list("caravansyndicate1");
+ pixel_x = 32
+ },
+/turf/closed/wall/mineral/plastitanium/nodiagonal,
+/area/shuttle/caravan/syndicate1)
+"kZ" = (
+/turf/open/floor/plasteel/dark,
+/area/shuttle/caravan/syndicate3)
+"la" = (
+/turf/open/floor/plasteel/vault{
+ dir = 5
+ },
+/area/shuttle/caravan/syndicate3)
+"lb" = (
+/obj/machinery/door/airlock/hatch{
+ name = "Ready Room";
+ req_access_txt = "150"
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 5
+ },
+/area/shuttle/caravan/syndicate3)
+"lc" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/vault{
+ dir = 5
+ },
+/area/shuttle/caravan/syndicate3)
+"ld" = (
+/obj/machinery/door/airlock/hatch{
+ id_tag = "caravansyndicate3_bolt_bridge";
+ locked = 1;
+ name = "Bridge";
+ req_access_txt = "150"
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 5
+ },
+/area/shuttle/caravan/syndicate3)
+"le" = (
+/obj/structure/chair/office/dark{
+ dir = 4
+ },
+/mob/living/simple_animal/hostile/syndicate{
+ environment_smash = 0;
+ name = "Syndicate Salvage Pilot"
+ },
+/turf/open/floor/plasteel/dark,
+/area/shuttle/caravan/syndicate3)
+"lf" = (
+/obj/machinery/computer/shuttle/caravan/syndicate3{
+ dir = 8
+ },
+/turf/open/floor/plasteel/darkred/side{
+ dir = 8
+ },
+/area/shuttle/caravan/syndicate3)
+"lg" = (
+/obj/machinery/power/apc/highcap/fifteen_k{
+ dir = 8;
+ name = "Syndicate Fighter APC";
+ pixel_x = -24;
+ req_access = list(150)
+ },
+/obj/machinery/computer/security{
+ dir = 1;
+ network = list("caravansyndicate1")
+ },
+/obj/structure/cable/yellow,
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/caravan/syndicate1)
+"li" = (
+/turf/open/floor/plasteel/darkred/side,
+/area/shuttle/caravan/syndicate3)
+"lj" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/darkred/side,
+/area/shuttle/caravan/syndicate3)
+"lk" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/closet/syndicate{
+ anchored = 1
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/caravan/syndicate3)
+"ll" = (
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
+ },
+/turf/open/floor/plasteel/dark,
+/area/shuttle/caravan/syndicate3)
+"lm" = (
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/dark,
+/area/shuttle/caravan/syndicate3)
+"ln" = (
+/obj/structure/chair/office/dark{
+ dir = 4
+ },
+/turf/open/floor/plasteel/darkred/corner,
+/area/shuttle/caravan/syndicate3)
+"lo" = (
+/obj/machinery/computer/crew{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/darkred/side{
+ dir = 9
+ },
+/area/shuttle/caravan/syndicate3)
+"lp" = (
+/obj/structure/shuttle/engine/propulsion/burst/right{
+ dir = 8
+ },
+/turf/open/floor/plating/airless,
+/area/shuttle/caravan/syndicate3)
+"lq" = (
+/obj/structure/chair{
+ dir = 1
+ },
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/pod/dark,
+/area/shuttle/caravan/syndicate3)
+"lr" = (
+/obj/structure/chair{
+ dir = 1
+ },
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -26
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/pod/dark,
+/area/shuttle/caravan/syndicate3)
+"ls" = (
+/obj/structure/chair{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/pod/dark,
+/area/shuttle/caravan/syndicate3)
+"lt" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/closet/syndicate/personal{
+ anchored = 1
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/caravan/syndicate3)
+"lv" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/structure/sign/warning/vacuum{
+ pixel_y = -32
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/closet/syndicate{
+ anchored = 1
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/caravan/syndicate3)
+"lw" = (
+/obj/structure/table/reinforced,
+/obj/item/storage/toolbox/emergency,
+/obj/item/wrench,
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/darkred/side{
+ dir = 9
+ },
+/area/shuttle/caravan/syndicate3)
+"lx" = (
+/obj/structure/table/reinforced,
+/obj/item/storage/firstaid/regular,
+/obj/item/device/assembly/flash/handheld,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/darkred/side{
+ dir = 5
+ },
+/area/shuttle/caravan/syndicate3)
+"ly" = (
+/obj/machinery/porta_turret/syndicate/energy{
+ dir = 2;
+ icon_state = "standard_lethal";
+ mode = 1
+ },
+/turf/closed/wall/mineral/plastitanium/nodiagonal,
+/area/shuttle/caravan/syndicate3)
+"lB" = (
+/turf/closed/mineral/random/high_chance,
+/area/ruin/unpowered)
+"lD" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating/airless{
+ icon_state = "platingdmg1"
+ },
+/area/ruin/unpowered)
+"lE" = (
+/obj/machinery/light/small,
+/obj/effect/turf_decal/box/white/corners,
+/obj/machinery/button/door{
+ id = "caravantrade1_cargo";
+ name = "Cargo Blast Door Control";
+ pixel_y = -24
+ },
+/obj/structure/closet/crate,
+/obj/item/stack/sheet/mineral/diamond{
+ amount = 5
+ },
+/turf/open/floor/plasteel/airless/dark,
+/area/shuttle/caravan/freighter1)
+"tH" = (
+/obj/structure/shuttle/engine/propulsion/burst{
+ dir = 8
+ },
+/turf/closed/wall/mineral/plastitanium,
+/area/ruin/unpowered)
(1,1,1) = {"
aa
@@ -1167,6 +3894,11 @@ aa
aa
aa
aa
+bt
+bt
+bt
+aa
+aa
aa
aa
aa
@@ -1214,6 +3946,11 @@ aa
aa
aa
aa
+bt
+bt
+bt
+bt
+aa
aa
aa
aa
@@ -1260,7 +3997,12 @@ aa
aa
aa
aa
-aa
+bt
+bt
+lB
+lB
+bt
+bt
aa
aa
aa
@@ -1307,7 +4049,12 @@ aa
aa
aa
aa
-aa
+bt
+bt
+lB
+lB
+bt
+bt
aa
aa
aa
@@ -1350,11 +4097,16 @@ aa
aa
aa
aa
+bl
aa
aa
aa
-aa
-aa
+bt
+bt
+lB
+lB
+bt
+bt
aa
aa
aa
@@ -1401,7 +4153,12 @@ aa
aa
aa
aa
-aa
+bt
+bt
+lB
+bt
+bt
+bt
aa
aa
aa
@@ -1449,6 +4206,11 @@ aa
aa
aa
aa
+bt
+bt
+bt
+bt
+aa
aa
aa
aa
@@ -1510,17 +4272,22 @@ aa
aa
aa
aa
-ab
-ar
-ab
-ar
-ab
aa
aa
aa
aa
aa
aa
+kn
+ki
+kG
+ki
+kn
+aa
+aa
+aa
+aa
+aa
aa
aa
aa
@@ -1556,19 +4323,24 @@ aa
aa
aa
aa
-cT
-ab
-as
-ab
-as
-ab
-cT
aa
aa
aa
-aC
-aC
-aC
+aa
+aa
+aa
+kn
+ki
+kI
+kV
+lg
+ki
+kn
+aa
+aa
+aa
+aa
+aa
aa
aa
aa
@@ -1587,6 +4359,9 @@ aa
aa
aa
aa
+lB
+lB
+lB
aa
aa
aa
@@ -1604,18 +4379,20 @@ aa
aa
aa
aa
-ab
-dm
-dt
-dw
-ab
aa
-aC
-aC
+kh
+ki
+ki
+ki
+kW
+ki
+ki
+ki
+kh
+aa
+aa
+aa
aa
-aC
-aC
-aC
aa
aa
aa
@@ -1634,12 +4411,36 @@ aa
aa
aa
aa
+lB
+lB
+lB
+lB
+aa
+aa
+aa
+aa
+aa
+fK
+ge
+ge
+ge
+hD
+fG
aa
aa
aa
aa
aa
aa
+ki
+kh
+aa
+kj
+kX
+kj
+aa
+kh
+ki
aa
aa
aa
@@ -1648,25 +4449,6 @@ aa
aa
aa
aa
-aa
-aa
-aa
-ab
-dm
-cs
-dw
-ab
-aa
-aC
-aC
-aC
-aC
-aC
-aC
-aa
-aa
-aa
-aa
"}
(12,1,1) = {"
aa
@@ -1678,9 +4460,31 @@ aa
aa
aa
aa
-aC
-aC
-aC
+aa
+aa
+aa
+aa
+lB
+lB
+lB
+aa
+aa
+aa
+aa
+fG
+fL
+fL
+fL
+fL
+fL
+fH
+fK
+ge
+hD
+aa
+aa
+aa
+kj
aa
aa
aa
@@ -1688,6 +4492,7 @@ aa
aa
aa
aa
+kj
aa
aa
aa
@@ -1696,24 +4501,6 @@ aa
aa
aa
aa
-aa
-aa
-cS
-cs
-cs
-cs
-cS
-aa
-aa
-aC
-aC
-aC
-aC
-aa
-aa
-aa
-aa
-aa
"}
(13,1,1) = {"
aa
@@ -1721,13 +4508,7 @@ aa
aa
aa
aa
-aa
-aa
-aa
-aa
-aC
-aC
-aC
+bl
aa
aa
aa
@@ -1742,19 +4523,30 @@ aa
aa
aa
aa
+fH
+ay
+gf
+gD
+hb
+hE
+fH
+fL
+fL
+fL
+fG
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
aa
aa
aa
-ab
-dn
-cs
-dx
-ab
aa
aa
-aC
-aC
-aC
aa
aa
aa
@@ -1771,12 +4563,6 @@ aa
aa
aa
aa
-aH
-aH
-aC
-aC
-aC
-aC
aa
aa
aa
@@ -1789,14 +4575,25 @@ aa
aa
aa
aa
+fH
+fN
+gg
+ax
+hc
+hF
+fH
+iI
+jg
+jz
+fH
+aa
+aa
+aa
+aa
+aa
aa
aa
aa
-ab
-cs
-du
-cs
-ab
aa
aa
aa
@@ -1818,13 +4615,6 @@ aa
aa
aa
aa
-aH
-aH
-aC
-aC
-aC
-aC
-aC
aa
aa
aa
@@ -1837,13 +4627,25 @@ aa
aa
aa
aa
+fH
+fO
+fH
+fH
+fH
+fO
+fH
+iJ
+jh
+lE
+fH
+aa
+aa
+aa
+aa
+aa
+aa
aa
aa
-ab
-ce
-dC
-ce
-ab
aa
aa
aa
@@ -1864,14 +4666,6 @@ aa
aa
aa
aa
-aC
-aH
-aH
-aC
-aC
-aC
-aC
-aC
aa
aa
aa
@@ -1885,12 +4679,17 @@ aa
aa
aa
aa
-aa
-ae
+fH
+fP
+az
aB
-aB
-aB
-bb
+fH
+hG
+ii
+be
+ji
+jB
+jQ
aa
aa
aa
@@ -1902,6 +4701,14 @@ aa
aa
aa
aa
+aa
+aa
+aa
+aa
+bt
+bt
+aa
+aa
"}
(17,1,1) = {"
aa
@@ -1911,30 +4718,30 @@ aa
aa
aa
aa
-aC
-aH
-aH
-aC
-aC
-aC
-aC
-aC
-aH
-aH
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
+aa
+aa
+aa
+aa
+aD
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+fI
+fQ
+fH
+fH
+fH
+hH
+ij
+iL
+jj
+jC
+jR
aa
aa
aa
@@ -1948,6 +4755,11 @@ aa
aa
aa
aa
+bt
+bt
+bt
+bt
+bt
aa
"}
(18,1,1) = {"
@@ -1958,30 +4770,30 @@ aa
aa
aa
aa
+aa
+aa
+br
+aa
+aa
+aa
+aa
+bt
+aa
+aa
+aa
+aa
+aa
+fH
+fR
+aA
aC
-aH
-aH
-aC
-aC
-aC
-aC
-aC
-aH
-aH
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
+fG
+hI
+he
+iM
+jj
+jD
+jS
aa
aa
aa
@@ -1995,6 +4807,11 @@ aa
aa
aa
aa
+bt
+bt
+lB
+bt
+bt
aa
"}
(19,1,1) = {"
@@ -2003,18 +4820,11 @@ aa
aa
aa
aa
-aa
-aa
-aC
-aC
-aH
-aH
-aC
-aC
-aC
-aC
-aH
-aH
+tH
+dE
+dL
+dE
+bJ
aa
aa
aa
@@ -2022,15 +4832,20 @@ aa
aa
aa
aa
-bl
aa
aa
aa
-bl
-aa
-aa
-aa
-bl
+fH
+fS
+fH
+fH
+fH
+hJ
+ik
+iN
+jk
+jE
+jQ
aa
aa
aa
@@ -2043,25 +4858,28 @@ aa
aa
aa
aa
+bt
+bt
+lB
+lB
+bt
+bt
+aa
"}
(20,1,1) = {"
aa
aa
aa
aa
+tH
+dE
+dF
+eu
+eG
+bJ
+bJ
aa
-aa
-aa
-aC
-aC
-aC
-aH
-aH
-aC
-aC
-aC
-aH
-aH
+bt
aa
aa
aa
@@ -2069,15 +4887,17 @@ aa
aa
aa
aa
-bl
-ca
-co
-cF
-bl
-ca
-co
-cF
-bl
+fH
+fT
+fH
+aF
+fH
+hK
+il
+iO
+jl
+jF
+jS
aa
aa
aa
@@ -2090,41 +4910,48 @@ aa
aa
aa
aa
+bt
+bt
+lB
+lB
+bt
+aa
+aa
"}
(21,1,1) = {"
aa
aa
aa
+bJ
+dE
+dE
+dE
+gk
+lD
+bs
+bJ
+aa
+bt
+bt
aa
aa
aa
aa
-aC
-aC
-aC
-aH
-aH
-aC
-aC
-aC
-aH
+aa
+aa
+fI
+fU
+fH
aH
+fH
+fH
+ij
+iP
+jm
+am
+jT
aa
-aa
-aa
-aa
-aa
-aa
-aa
-bl
-cb
-cb
-cb
-bl
-cb
-cb
-cb
-bl
+aD
aa
aa
aa
@@ -2135,6 +4962,11 @@ aa
aa
aa
aa
+bt
+bt
+bt
+bt
+bt
aa
aa
"}
@@ -2142,36 +4974,34 @@ aa
aa
aa
aa
+dE
+bJ
+aa
+bJ
+bs
+bs
+aa
+ae
aa
aa
aa
aa
-aC
-aC
-aC
-aC
-aH
-aH
-aC
-aC
+bt
+aa
+aa
+aa
+aa
+fI
+fV
+gj
+gJ
+hd
+aX
+im
bf
-aH
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-bl
-bv
-bw
-bw
-bw
-bw
-bw
-bw
-bl
+al
+aq
+ar
aa
aa
aa
@@ -2184,41 +5014,53 @@ aa
aa
aa
aa
+aa
+aa
+bt
+bt
+aa
+aa
+aa
"}
(23,1,1) = {"
aa
aa
aa
+bJ
aa
aa
aa
-aa
-aa
-aC
-aC
-aC
-aC
-aH
-aC
-aH
-aH
-aH
-aa
-aa
-aa
-aa
-aa
-aa
+ab
aa
bs
-bC
-cv
-cK
-bG
-bG
-bw
-bw
-bl
+ac
+aD
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+fI
+fW
+gl
+aJ
+he
+fH
+in
+iR
+am
+aq
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
aa
aa
aa
@@ -2235,6 +5077,35 @@ aa
(24,1,1) = {"
aa
aa
+br
+aa
+aa
+aa
+aa
+aa
+ac
+aa
+dD
+ex
+bt
+bt
+aa
+aa
+aa
+aa
+aa
+aa
+fH
+fX
+gm
+fH
+hf
+fH
+fH
+iS
+br
+aa
+aD
aa
aa
aa
@@ -2242,30 +5113,6 @@ aa
aa
aa
aa
-aC
-aC
-aC
-aH
-aC
-aH
-aH
-aa
-aa
-aa
-aa
-aa
-aa
-bA
-aa
-aa
-cg
-ci
-bE
-bG
-dg
-bG
-cc
-bl
aa
aa
aa
@@ -2282,6 +5129,36 @@ aa
(25,1,1) = {"
aa
aa
+bt
+bt
+aa
+aa
+aa
+aa
+ad
+bt
+dD
+bt
+bt
+bt
+bt
+bt
+aa
+aa
+aa
+aa
+fH
+fH
+fH
+fH
+hg
+hM
+fH
+aa
+aa
+aE
+aa
+ao
aa
aa
aa
@@ -2289,37 +5166,12 @@ aa
aa
aa
aa
-aC
-aC
-aC
-aH
-aH
-aH
-aH
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aD
-aT
-br
-ci
-cL
-bG
-dh
-cG
-bw
-bm
-aa
-aa
-aa
-aa
-aa
aa
aa
+bt
+bt
+bt
+bt
aa
aa
aa
@@ -2328,6 +5180,32 @@ aa
"}
(26,1,1) = {"
aa
+bt
+bt
+bt
+aa
+aa
+aa
+ew
+bt
+bt
+dD
+bt
+bt
+bt
+bt
+bt
+aa
+aa
+aa
+aa
+kU
+fY
+gn
+aK
+hh
+hN
+fI
aa
aa
aa
@@ -2338,36 +5216,15 @@ aa
aa
aa
aa
-aC
-aC
-aH
-aH
-aC
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-cw
-ci
-bE
-bG
-do
-bw
-bm
-aa
-aa
-aa
-aa
-aa
-aa
aa
aa
+bt
+bt
+bt
+bt
+bt
+bt
+bt
aa
aa
aa
@@ -2381,32 +5238,26 @@ aa
aa
aa
aa
+bt
+bt
+bt
+bt
+bt
+bt
+bt
+bt
+bt
+bt
aa
aa
aa
-aa
-aC
-aC
-aC
-aC
-aa
-aa
-aa
-aa
-aa
-aa
-bq
-aa
-aa
-aa
-bs
-cx
-cM
-cU
-bG
-bG
-bw
-bm
+fG
+fH
+fH
+fH
+hi
+fH
+fH
aa
aa
aa
@@ -2417,10 +5268,48 @@ aa
aa
aa
aa
+as
+bt
+bt
+bt
+bt
+bt
+bt
+bt
+bt
+aa
+aa
aa
aa
"}
(28,1,1) = {"
+bt
+aa
+aa
+aa
+dD
+dD
+bt
+bt
+bt
+lB
+lB
+bt
+bt
+bt
+bt
+bt
+bt
+aa
+aa
+aa
+aa
+fH
+go
+aL
+hj
+hO
+fH
aa
aa
aa
@@ -2431,11 +5320,101 @@ aa
aa
aa
aa
+bt
+bt
+bt
+dD
+dD
+dD
+dD
+bt
+bt
+bt
+bt
+aa
+aa
+"}
+(29,1,1) = {"
+aa
+aa
+aa
+dD
+bt
+bt
+bt
+bt
+lB
+lB
+lB
+lB
+bt
+bt
+bt
+bt
+bt
+aa
+aa
+aa
+aa
+fI
+gp
+gN
+hk
+hP
+fI
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+bt
+bt
+bt
+dD
+dD
+bt
+dD
+dD
+bt
+bt
+bt
+aa
+aa
+"}
+(30,1,1) = {"
+aa
+aa
+aa
+bt
+bt
+bt
+bt
+lB
+lB
+lB
+lB
+lB
+bt
+bt
+bt
+bt
+aa
+aa
+aa
+aa
+aa
+fI
+fI
+gO
+hl
+fI
+fI
aa
-aC
-aC
-aC
-aC
aa
aa
aa
@@ -2445,119 +5424,17 @@ aa
aa
aa
br
-aa
-bs
-ci
-cL
-bG
-di
-dp
-bx
-bm
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(29,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ch
-cy
-bE
-bl
-cm
-bl
-bl
-bl
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(30,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aI
-aN
-aI
-aN
-aI
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-bq
-aa
-bB
-cz
-bG
-bG
-dj
-dq
-bw
-bO
-aa
-aa
-aa
-aa
-aC
-aa
-aa
-aC
-aa
-aa
+bt
+bt
+dD
+dD
+bt
+bt
+bt
+dD
+bt
+bt
+bt
aa
aa
"}
@@ -2565,36 +5442,29 @@ aa
aa
aa
aa
+bt
+bt
+bt
+lB
+lB
+lB
+lB
+lB
+bt
+bt
+bt
+bt
aa
aa
aa
aa
aa
-aI
-aO
-aI
-aO
-aI
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-bQ
-ci
-ci
-bw
-cV
-bw
-bw
-bw
-bl
+aa
+aa
+fI
+fI
+fI
+fI
aa
aa
aa
@@ -2605,6 +5475,18 @@ aa
aa
aa
aa
+bt
+bt
+bt
+dD
+dD
+bt
+bt
+bt
+dD
+dD
+bt
+bt
aa
aa
"}
@@ -2612,16 +5494,18 @@ aa
aa
aa
aa
-aa
-aa
-aa
-aa
-aa
-aI
-aP
-aV
-bc
-aI
+bt
+bt
+bt
+bt
+lB
+lB
+lB
+bt
+bt
+bt
+bt
+bt
aa
aa
aa
@@ -2633,42 +5517,47 @@ aa
aa
aa
aa
-bR
-bz
-cc
-bN
-bZ
-cc
-cE
-bz
-bp
aa
aa
aa
aa
aa
aa
-aC
aa
aa
aa
aa
+bt
+bt
+bt
+bt
+dD
+bt
+bt
+bt
+bt
+dD
+bt
+bt
+bt
aa
"}
(33,1,1) = {"
aa
aa
-aa
-aa
-aa
-aa
-aa
-aa
-aI
-aQ
-aW
-bd
-aI
+bt
+bt
+bt
+bt
+bt
+bt
+bt
+bt
+bt
+bt
+bt
+bt
+bt
aa
aa
aa
@@ -2681,15 +5570,6 @@ aa
aa
aa
aa
-bp
-bJ
-bJ
-bJ
-bJ
-bJ
-bp
-aa
-aa
aa
aa
aa
@@ -2700,22 +5580,35 @@ aa
aa
aa
aa
+bt
+bt
+bt
+dD
+bt
+bt
+bt
+bt
+dD
+dD
+dD
+bt
aa
"}
(34,1,1) = {"
aa
aa
-aa
-aa
-aa
-aa
-aa
-aa
-aJ
-aR
-aK
-be
-aJ
+bt
+bt
+bt
+bt
+bt
+bt
+bt
+bt
+bt
+bt
+bt
+bt
aa
aa
aa
@@ -2739,30 +5632,34 @@ aa
aa
aa
aa
-aa
-aC
-aC
-aC
-aC
-aa
-aa
-aa
+bt
+bt
+bt
+dD
+dD
+bt
+bt
+bt
+bt
+dD
+dD
+dD
aa
"}
(35,1,1) = {"
aa
aa
aa
-aa
-aa
-aa
-aa
-aa
-aI
-aK
-aK
-aK
-aI
+bt
+bt
+bt
+bt
+bt
+bt
+bt
+bt
+bt
+bt
aa
aa
aa
@@ -2788,12 +5685,17 @@ aa
aa
aa
aa
-aa
-aC
-aC
-aa
-aa
-aa
+bt
+bt
+dD
+dD
+bt
+bt
+bt
+bt
+bt
+bt
+bt
aa
"}
(36,1,1) = {"
@@ -2801,16 +5703,9 @@ aa
aa
aa
aa
-aa
-aa
-aa
-aa
-aK
-aS
-aK
-be
-aK
-aD
+bt
+bt
+bt
aa
aa
aa
@@ -2835,13 +5730,25 @@ aa
aa
aa
aa
-aC
-aC
aa
aa
aa
aa
aa
+aa
+aa
+aa
+aa
+dD
+dD
+bt
+bt
+bt
+bt
+bt
+bt
+bt
+aa
"}
(37,1,1) = {"
aa
@@ -2851,12 +5758,6 @@ aa
aa
aa
aa
-aD
-aa
-aT
-aK
-aS
-aI
aa
aa
aa
@@ -2889,6 +5790,17 @@ aa
aa
aa
aa
+aa
+dD
+bt
+bt
+bt
+bt
+bt
+bt
+bt
+bt
+aa
"}
(38,1,1) = {"
aa
@@ -2900,10 +5812,6 @@ aa
aa
aa
aa
-aD
-aK
-aa
-aa
aa
aa
aa
@@ -2935,6 +5843,15 @@ aa
aa
aa
aa
+bt
+bt
+bt
+bt
+bt
+bt
+bt
+bt
+bt
aa
"}
(39,1,1) = {"
@@ -2945,13 +5862,6 @@ aa
aa
aa
aa
-aE
-aa
-aa
-aX
-aD
-aa
-aT
aa
aa
aa
@@ -2983,6 +5893,18 @@ aa
aa
aa
aa
+aa
+aa
+bt
+bt
+bt
+bt
+bt
+bt
+bt
+bt
+aa
+aa
"}
(40,1,1) = {"
aa
@@ -2991,12 +5913,13 @@ aa
aa
aa
aa
+dN
+ea
+em
aa
-aa
-aa
-aa
-aX
-aa
+dN
+ea
+em
aa
aa
aa
@@ -3027,6 +5950,10 @@ aa
aa
aa
aa
+bt
+bt
+bt
+bt
aa
aa
aa
@@ -3037,12 +5964,15 @@ aa
aa
aa
aa
-aa
-aa
-aa
-aa
-aa
-aX
+ch
+dO
+dO
+dO
+dB
+dO
+dO
+dO
+ch
aa
aa
aa
@@ -3073,6 +6003,8 @@ aa
aa
aa
aa
+bt
+bt
aa
aa
aa
@@ -3083,20 +6015,17 @@ aa
aa
aa
aa
-aa
-aa
-aa
-aa
-aa
-aa
-aX
-aa
-aa
-aa
-aa
-aa
-aa
-aa
+ch
+dB
+dP
+eb
+en
+dB
+eV
+fk
+ft
+dB
+ch
aa
aa
aa
@@ -3106,6 +6035,14 @@ aa
aa
aa
aa
+hm
+hQ
+io
+io
+io
+io
+jV
+hm
aa
aa
aa
@@ -3130,20 +6067,17 @@ aa
aa
aa
aa
-aa
-aa
-aa
-aa
-aa
-aa
-aX
-aX
-aa
-aa
-aa
-aa
-aa
-aa
+dB
+dI
+dQ
+ec
+eo
+eK
+eW
+ec
+fu
+fC
+dB
aa
aa
aa
@@ -3153,6 +6087,14 @@ aa
aa
aa
aa
+hn
+hn
+ip
+ip
+ip
+ip
+hn
+hn
aa
aa
aa
@@ -3177,6 +6119,17 @@ aa
aa
aa
aa
+dB
+dB
+dR
+ed
+dB
+dB
+dB
+ed
+dR
+dB
+dB
aa
aa
aa
@@ -3184,23 +6137,16 @@ aa
aa
aa
aa
-aX
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
+aa
+aa
+hn
+aY
+iq
+iT
+jp
+jH
+jW
+hn
aa
aa
aa
@@ -3213,6 +6159,7 @@ aa
aa
aa
aa
+bl
aa
aa
aa
@@ -3224,20 +6171,17 @@ aa
aa
aa
aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aX
-aa
-aa
-aa
-aa
-aa
-aa
+dB
+dJ
+dS
+ee
+ep
+dB
+eX
+fl
+fv
+dJ
+dB
aa
aa
aa
@@ -3247,6 +6191,14 @@ aa
aa
aa
aa
+ho
+hS
+aP
+iU
+jq
+jI
+jX
+ke
aa
aa
aa
@@ -3270,6 +6222,35 @@ aa
aa
aa
aa
+ch
+dB
+dB
+dT
+ef
+eq
+dB
+eY
+ef
+fw
+dB
+dB
+ch
+bs
+bs
+bs
+bs
+bs
+bs
+bs
+bs
+hp
+hT
+is
+iV
+jr
+jJ
+jY
+kf
aa
aa
aa
@@ -3278,30 +6259,6 @@ aa
aa
aa
aa
-aX
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aT
-aa
-aa
-bl
-aa
-aa
-aa
-bl
-aa
-aa
-aa
-aa
-aa
-aa
aa
aa
aa
@@ -3317,6 +6274,35 @@ aa
aa
aa
aa
+aj
+dG
+dK
+dU
+at
+er
+dB
+eZ
+fm
+fx
+fD
+dG
+fF
+af
+af
+af
+ag
+ah
+af
+af
+af
+hq
+hU
+it
+iW
+js
+jK
+jZ
+ke
aa
aa
aa
@@ -3325,7 +6311,6 @@ aa
aa
aa
aa
-aX
aa
aa
aa
@@ -3334,29 +6319,6 @@ aa
aa
aa
aa
-aT
-br
-aa
-bs
-bS
-cj
-co
-cF
-bl
-aa
-aa
-aa
-aa
-aa
-aC
-aC
-aC
-aC
-aa
-aa
-aa
-aa
-aa
aa
aa
"}
@@ -3364,6 +6326,35 @@ aa
aa
aa
aa
+ch
+dB
+dB
+dV
+ef
+es
+dB
+fa
+au
+fy
+dB
+dB
+ch
+bs
+bs
+bs
+bs
+bs
+bs
+bs
+bs
+hr
+hV
+iu
+iX
+jt
+jL
+jX
+kf
aa
aa
aa
@@ -3372,7 +6363,6 @@ aa
aa
aa
aa
-aX
aa
aa
aa
@@ -3381,29 +6371,6 @@ aa
aa
aa
aa
-bk
-aa
-aE
-aa
-bl
-cb
-cb
-cb
-bl
-aa
-aa
-aa
-aa
-aa
-aC
-aC
-aC
-aC
-aa
-aa
-aa
-aa
-aa
aa
aa
"}
@@ -3412,14 +6379,34 @@ aa
aa
aa
aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aX
+dH
+dJ
+dW
+eh
+et
+dB
+fb
+fo
+fz
+dJ
+dH
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+hn
+hW
+iv
+iY
+ju
+bi
+ka
+hn
aa
aa
aa
@@ -3428,24 +6415,9 @@ aa
aa
aa
aa
-bl
-bs
-aD
-bK
-bT
-ci
-bw
-bw
-bl
aa
aa
aa
-aC
-aC
-aC
-aC
-aC
-aC
aa
aa
aa
@@ -3459,14 +6431,35 @@ aa
aa
aa
aa
-aa
-ab
-aa
-aa
-aa
-aa
-ab
-aX
+ch
+dB
+dX
+ei
+dB
+dB
+dB
+fp
+dB
+dB
+ch
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+hn
+hn
+aZ
+hn
+hn
+hn
+hn
+hn
+aa
aa
aa
aa
@@ -3475,25 +6468,9 @@ aa
aa
aa
aa
-bl
-ci
-bB
-bB
-bU
-bE
-bw
-bH
-bl
aa
aa
aa
-aC
-aC
-aC
-aC
-aC
-aC
-aC
aa
aa
aa
@@ -3507,13 +6484,41 @@ aa
aa
aa
aa
-ad
-ar
-ar
-ar
-ar
-ad
-aX
+dB
+dY
+ej
+ez
+eL
+fc
+fq
+fA
+dB
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+hs
+hX
+ix
+bg
+jv
+jN
+kb
+hs
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
aa
aa
aa
@@ -3523,29 +6528,6 @@ aa
aa
aa
bl
-bu
-bC
-bC
-bV
-bG
-cA
-cc
-bl
-aa
-aa
-aC
-aC
-aC
-aC
-aC
-aC
-aC
-aC
-aa
-aa
-aa
-aa
-aa
aa
"}
(52,1,1) = {"
@@ -3553,14 +6535,38 @@ aa
aa
aa
aa
-ab
-ad
-as
-as
-as
-as
-ad
-ad
+aa
+dB
+dZ
+ek
+eB
+eM
+fd
+fr
+fB
+dB
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ht
+hY
+iy
+bs
+bh
+jO
+kc
+ht
+aa
+aa
+aa
+aa
aa
aa
aa
@@ -3569,27 +6575,8 @@ aa
aa
aa
aa
-bm
-bv
-bD
-bE
-bG
-ck
-cB
-bw
-bm
aa
aa
-aC
-aC
-aC
-aC
-aC
-aC
-aC
-aC
-aC
-aC
aa
aa
aa
@@ -3597,46 +6584,51 @@ aa
"}
(53,1,1) = {"
aa
-ab
-ad
-ab
-ab
-aj
-at
-aw
-aw
-at
-aY
-ad
-ab
-ab
-ab
+aa
+aa
+aa
+aa
+bb
+dB
+el
+eC
+eO
+fe
+fs
+dB
+bc
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+bs
+dc
+aa
+an
+jP
+ht
+ht
+aa
+aa
+aa
+aa
+aa
+aa
+aa
aa
aa
aa
aa
aa
-bm
-bw
-bE
-bG
-bF
-bG
-bG
-bw
-bm
aa
aa
-aH
-aC
-aC
-aC
-aC
-aC
-aC
-aC
-aC
-aC
aa
aa
aa
@@ -3644,46 +6636,51 @@ aa
"}
(54,1,1) = {"
aa
-ab
-af
-af
-ab
-ag
-at
-aF
-aL
-at
-ag
-ab
-af
-af
-ad
aa
aa
aa
aa
aa
-bn
-bw
-bF
-bG
-bW
-cl
-bG
-bw
-bm
+ch
+dB
+dB
+dB
+ff
+dB
+ch
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aD
+aa
+aa
+bs
+aa
+bs
+kd
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
aa
aa
-aH
-aC
-aC
-aC
-aC
-aH
-aH
-dz
-aH
-aC
aa
aa
aa
@@ -3691,46 +6688,51 @@ aa
"}
(55,1,1) = {"
aa
-ac
-ag
-ag
-ai
-ak
-ag
-ag
-ag
-ak
-ag
-ai
-ag
-ag
-ac
-bg
-bg
-bg
-bj
-bg
-bn
-bx
-bG
-bG
-bX
-bG
-cC
-bx
-bm
aa
aa
-aH
-aH
-aC
-aC
-aH
-aH
-aH
-aH
-aH
-aC
+aa
+aa
+aa
+aa
+dB
+eD
+eP
+fg
+dB
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aT
+aa
+aD
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
aa
aa
aa
@@ -3738,46 +6740,51 @@ aa
"}
(56,1,1) = {"
aa
-ac
-ag
-ag
-ai
-ag
-at
-ag
-ag
-at
-ag
-ai
-ag
-ag
-ac
-bg
-bh
-bi
-bg
-bg
-bl
-bl
-bl
-bL
-bl
-cm
-bl
-bl
-bl
aa
aa
-aC
-aH
-aH
-aH
-dz
-aC
-aC
-aH
-dz
-aC
+aa
+aa
+aa
+aa
+dB
+eE
+eQ
+fg
+dB
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+dc
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
aa
aa
aa
@@ -3785,46 +6792,51 @@ aa
"}
(57,1,1) = {"
aa
-ad
-af
-af
-ad
-al
-at
-ag
-ag
-at
-al
-ab
-af
-af
-ad
aa
aa
aa
aa
aa
-bo
-bw
-bw
-bM
-bw
-bw
-bw
-bw
-bO
+aa
+dB
+eF
+eR
+fh
+dB
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+br
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
aa
aa
-aC
-aC
-dy
-aH
-aC
-aC
-aC
-aH
-aH
-aC
aa
aa
aa
@@ -3832,46 +6844,51 @@ aa
"}
(58,1,1) = {"
aa
-ae
-ab
-ab
-ad
-am
-ag
-ag
-ag
-ag
-am
-ad
-ab
-ab
-bb
aa
aa
aa
aa
aa
-bl
-by
-bH
-bw
-bY
-bw
-cD
-bw
-bl
+aa
+dB
+eI
+eS
+fi
+dB
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
aa
aa
-aC
-aC
-aC
-aC
-aC
-aC
-aC
-aH
-aC
-aC
aa
aa
aa
@@ -3881,16 +6898,35 @@ aa
aa
aa
aa
-ah
-ad
-an
-at
-ag
-ag
-at
-az
-ad
-ah
+aa
+aa
+aa
+aa
+dH
+eJ
+eT
+fj
+dH
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
aa
aa
aa
@@ -3898,26 +6934,12 @@ aa
aa
aa
aa
-bp
-bz
-bI
-bN
-bZ
-cn
-cE
-bz
-bp
aa
aa
aa
aa
aa
aa
-aC
-aC
-aH
-aH
-aC
aa
aa
aa
@@ -3928,16 +6950,33 @@ aa
aa
aa
aa
-ad
-ab
-ao
-at
-ag
-ag
-at
-aZ
-ab
-ad
+aa
+aa
+aa
+aa
+dH
+dH
+eU
+dH
+dH
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
aa
aa
aa
@@ -3946,13 +6985,6 @@ aa
aa
aa
aa
-bp
-bJ
-bJ
-bJ
-bJ
-bJ
-bp
aa
aa
aa
@@ -3960,11 +6992,6 @@ aa
aa
aa
aa
-aC
-aC
-aH
-aC
-aC
aa
aa
aa
@@ -3975,16 +7002,21 @@ aa
aa
aa
aa
-ah
-ab
-ap
-ag
-ak
-ag
-aF
-ba
-ab
-ah
+aa
+aa
+aa
+aa
+aa
+dH
+dH
+dH
+aa
+aa
+aa
+aa
+aa
+aa
+aa
aa
aa
aa
@@ -4022,16 +7054,21 @@ aa
aa
aa
aa
-ad
-ab
-aq
-au
-ag
-ag
-aM
-az
-ab
-ad
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
aa
aa
aa
@@ -4069,16 +7106,21 @@ aa
aa
aa
aa
-ae
-ab
-ab
-ab
-ag
-ag
-ab
-ab
-ab
-bb
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
aa
aa
aa
@@ -4117,14 +7159,6 @@ aa
aa
aa
aa
-ae
-ad
-av
-ag
-ag
-aU
-ad
-bb
aa
aa
aa
@@ -4149,11 +7183,24 @@ aa
aa
aa
aa
-ab
-ar
-ab
-ar
-ab
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ku
+kJ
+kJ
+kJ
+lp
+aa
+aa
+aa
+aa
+aa
+aa
aa
aa
aa
@@ -4165,12 +7212,6 @@ aa
aa
aa
aa
-ab
-aw
-ag
-ag
-aw
-ad
aa
aa
aa
@@ -4195,13 +7236,24 @@ aa
aa
aa
aa
-cT
-ab
-as
-ab
-as
-ab
-cT
+aa
+aa
+aa
+aa
+aa
+ko
+kv
+kv
+kv
+kv
+kv
+ko
+aa
+aa
+aa
+aa
+aa
+aa
aa
aa
aa
@@ -4212,12 +7264,6 @@ aa
aa
aa
aa
-ab
-ax
-ag
-ag
-ax
-ab
aa
aa
aa
@@ -4243,11 +7289,22 @@ aa
aa
aa
aa
-ab
-dm
-cs
-dw
-ab
+aa
+aa
+aa
+aa
+kp
+kp
+aS
+aU
+aV
+kp
+kp
+aa
+aa
+aa
+aa
+aa
aa
aa
aa
@@ -4259,12 +7316,6 @@ aa
aa
aa
aa
-ab
-ay
-aG
-aM
-dA
-ab
aa
aa
aa
@@ -4290,11 +7341,22 @@ aa
aa
aa
aa
-ab
-dm
-cs
-dw
-ab
+aa
+aa
+aa
+aa
+kp
+kw
+kL
+kZ
+li
+lq
+kp
+aa
+aa
+aa
+aa
+aa
aa
aa
aa
@@ -4306,12 +7368,6 @@ aa
aa
aa
aa
-ab
-az
-ag
-ag
-ax
-ab
aa
aa
aa
@@ -4337,15 +7393,26 @@ aa
aa
aa
aa
-cS
-cs
-cs
-cs
-cS
aa
aa
aa
aa
+kp
+kx
+kM
+la
+li
+lr
+kp
+aa
+aa
+aa
+aa
+bt
+bt
+bt
+aa
+aa
"}
(69,1,1) = {"
aa
@@ -4353,12 +7420,9 @@ aa
aa
aa
aa
-ad
-aA
-ag
-ag
-ag
-ad
+bt
+bt
+bt
aa
aa
aa
@@ -4384,14 +7448,22 @@ aa
aa
aa
aa
-ab
-cs
-cs
-cs
-ab
+aa
+kp
+ky
+kM
+la
+lj
+ls
+kp
aa
aa
aa
+bt
+bt
+bt
+bt
+bt
aa
"}
(70,1,1) = {"
@@ -4399,13 +7471,11 @@ aa
aa
aa
aa
-aa
-ae
-aB
-aB
-aB
-aB
-bb
+bt
+bt
+bt
+bt
+bt
aa
aa
aa
@@ -4418,34 +7488,46 @@ aa
aa
aa
aa
-bl
-aa
-aa
-aa
-bl
-aa
-aa
-aa
-bl
aa
aa
aa
aa
-ab
-cs
-du
-cs
-ab
aa
aa
aa
aa
+aa
+aa
+aa
+aa
+aa
+kp
+kz
+kN
+la
+lk
+lt
+kp
+aa
+aa
+bt
+bt
+bt
+lB
+bt
+bt
+aa
"}
(71,1,1) = {"
aa
aa
aa
aa
+bt
+bt
+bt
+bt
+bt
aa
aa
aa
@@ -4465,34 +7547,40 @@ aa
aa
aa
aa
-bl
-ca
-co
-cF
-bl
-ca
-co
-cF
-bl
aa
aa
aa
aa
-ab
-ce
-dC
-ce
-ab
aa
aa
+kq
+kp
+kp
+lb
+kp
+kp
+ly
aa
aa
+bt
+bt
+lB
+lB
+lB
+bt
+bt
"}
(72,1,1) = {"
aa
aa
aa
aa
+bt
+bt
+lB
+lB
+bt
+bt
aa
aa
aa
@@ -4512,34 +7600,39 @@ aa
aa
aa
aa
-bl
-cb
-cb
-cb
-bl
-cb
-cb
-cb
-bl
aa
aa
aa
aa
-ae
-aB
-aB
-aB
-bb
-aa
-aa
+aa
+kr
+bj
+kO
+la
+ll
+bk
+ba
aa
aa
+bt
+bt
+lB
+lB
+lB
+bt
+bt
"}
(73,1,1) = {"
aa
aa
aa
aa
+bt
+bt
+lB
+lB
+bt
+bt
aa
aa
aa
@@ -4558,29 +7651,28 @@ aa
aa
aa
aa
-aa
-bl
-bw
-bw
-bw
-bw
-bw
-bw
-bw
-bl
-aa
-aa
-aa
-aa
-aa
-aa
+ao
aa
aa
aa
aa
aa
+kp
+kB
+kP
+lc
+lk
+lv
+kp
aa
aa
+bt
+bt
+bt
+lB
+lB
+bt
+bt
"}
(74,1,1) = {"
aa
@@ -4588,33 +7680,11 @@ aa
aa
aa
aa
-aa
-aa
-aa
-aa
-aa
-aa
-aC
-aC
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-bl
-bw
-bw
-bG
-bG
-cW
-bw
-bw
-bl
+bt
+bt
+lB
+lB
+bt
aa
aa
aa
@@ -4628,6 +7698,33 @@ aa
aa
aa
aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aT
+aa
+aa
+aa
+kp
+kp
+kp
+ld
+kp
+kp
+kp
+aa
+aa
+aa
+bt
+bt
+bt
+bt
+bt
+aa
"}
(75,1,1) = {"
aa
@@ -4635,33 +7732,12 @@ aa
aa
aa
aa
-aa
-aa
-aa
-aa
-aa
-aC
-aC
-aC
-aC
-aH
-aH
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-bl
-cc
-bG
-bG
-cN
-bG
-bG
-cc
-bl
+bt
+bt
+lB
+lB
+bt
+bt
aa
aa
aa
@@ -4672,9 +7748,35 @@ aa
aa
aa
aa
+fZ
+gq
+gP
+gP
+gP
+bs
+ab
+aE
aa
aa
aa
+aa
+aa
+kp
+kC
+kQ
+la
+lm
+lw
+kp
+aa
+aa
+aa
+aa
+aa
+bt
+bt
+bt
+aa
"}
(76,1,1) = {"
aa
@@ -4683,16 +7785,11 @@ aa
aa
aa
aa
-aa
-aa
-aa
-aa
-aC
-aC
-aC
-aC
-aH
-aH
+bt
+bt
+bt
+bt
+bt
aa
aa
aa
@@ -4700,19 +7797,29 @@ aa
aa
aa
aa
-bm
-bw
-bG
-bG
-bG
-cX
-bG
-bw
-bm
+aa
+aa
+aa
+ga
+ga
+gQ
+gQ
+gQ
+iz
+bs
+aa
+aD
aa
aa
aa
aa
+ks
+kD
+kR
+le
+ln
+lx
+ks
aa
aa
aa
@@ -4731,35 +7838,40 @@ aa
aa
aa
aa
-aa
-aa
-aC
-aC
-aC
-aC
-aC
-aH
-aH
-aH
+bt
+bt
+bt
+bt
aa
aa
aa
aa
aa
aa
-bm
-bw
-bG
-cG
-bG
-bG
-bG
-bw
-bm
aa
aa
aa
aa
+ga
+av
+gR
+hu
+hZ
+ai
+aT
+aa
+aa
+aa
+aa
+aa
+aa
+ks
+ks
+kS
+lf
+lo
+ks
+ks
aa
aa
aa
@@ -4778,37 +7890,42 @@ aa
aa
aa
aa
-aC
-aC
-aC
-aC
-aC
-aC
-aC
-aC
-aH
-aH
-aH
+aa
+bt
+bt
aa
aa
aa
aa
aa
-bm
-bw
-cp
-bG
-cG
-cY
-bG
-bw
-bm
aa
aa
aa
aa
aa
aa
+gb
+gs
+aN
+hv
+ia
+iA
+ak
+ap
+aa
+aa
+br
+aa
+aa
+aa
+ks
+ks
+ks
+ks
+ks
+aa
+aa
+aa
aa
aa
aa
@@ -4825,31 +7942,36 @@ aa
aa
aa
aa
-aC
-aC
-aC
-aC
-aC
-aC
-aC
-aC
-aH
-aH
-aH
aa
aa
aa
aa
aa
-bm
-bx
-bG
-bG
-bG
-cZ
-bG
-bx
-bm
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+gb
+jA
+gT
+hw
+ib
+iB
+ja
+bd
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
aa
aa
aa
@@ -4871,32 +7993,37 @@ aa
aa
aa
aa
-aa
-aC
-aC
-aC
-aC
-aC
-aC
-aC
-aC
-aH
-aH
-aH
+lB
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+gb
+gt
+gU
+hx
+ic
+iC
+jb
+jy
+aa
+aa
+aa
aa
aa
aa
aa
aa
-bl
-bl
-bl
-cm
-bl
-cm
-bl
-bl
-bl
aa
aa
aa
@@ -4917,42 +8044,47 @@ aa
aa
aa
aa
-aa
-aa
-aC
-aC
-aC
-aC
-aC
-aC
-aC
-aC
-aH
-aH
-aH
-aa
-aa
-aa
-aa
-aa
-bO
-bw
-bw
-bw
-cO
-bM
-bw
-dr
-bO
+lB
+lB
+lB
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+gb
+gv
+gV
+hy
+id
+iD
+jc
+jy
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
aa
aa
aa
aa
aa
aa
-aC
-aC
-aC
aa
aa
aa
@@ -4965,41 +8097,46 @@ aa
aa
aa
aa
-aa
-aC
-aC
-aC
-aC
-aC
-aC
-aC
-aC
-aH
-aH
-aH
+lB
+lB
+lB
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ga
+gw
+gW
+hz
+ie
+aR
+jd
+ga
+aa
+aa
+aa
+kg
+kk
+kl
+aa
aa
aa
aa
aa
aa
-bl
-cd
-cq
-bv
-cP
-da
-bv
-bw
-bl
aa
aa
aa
aa
aa
-aC
-aC
-aC
-aC
aa
aa
aa
@@ -5012,41 +8149,46 @@ aa
aa
aa
aa
-aa
-aC
-aC
-aC
-aC
-aC
-aC
-aC
-aC
-aH
-aH
-aH
+lB
+lB
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ga
+ga
+aW
+ga
+ga
+ga
+ga
+ga
+aa
+aa
+aa
+aa
+kl
+kk
+kE
+aa
aa
aa
aa
aa
aa
-bp
-bz
-cr
-cH
-cQ
-db
-dk
-bz
-bp
aa
aa
aa
aa
-aC
-aC
-aC
-aC
-aC
aa
aa
aa
@@ -5060,40 +8202,45 @@ aa
aa
aa
aa
-aH
-aH
-aC
-aC
-aC
-aC
-aC
-aC
-aH
-aC
-aH
aa
aa
aa
aa
aa
aa
-bp
-bn
-cI
-cR
-bs
-bn
-bp
aa
aa
aa
aa
-aC
-aC
-aC
-aC
-aC
-aC
+aa
+aa
+aa
+aa
+gc
+gy
+gY
+aO
+if
+iF
+je
+gc
+aa
+aa
+aa
+aa
+aa
+kk
+kk
+kE
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
aa
aa
aa
@@ -5107,17 +8254,6 @@ aa
aa
aa
aa
-aH
-aH
-aH
-aC
-aC
-aC
-aC
-aH
-aH
-aC
-aH
aa
aa
aa
@@ -5132,14 +8268,30 @@ aa
aa
aa
aa
+gd
+aw
+aG
+hB
+ig
+aM
+aQ
+gd
+aa
+aa
+aa
+aa
+kg
+kk
+kF
+kk
+aa
+aa
+aa
+aa
+aa
aa
aa
aa
-aC
-aC
-aC
-aC
-aC
aa
aa
aa
@@ -5155,16 +8307,35 @@ aa
aa
aa
aa
-aH
-aH
-aC
-aH
-aH
-aH
-aH
-aH
-aC
-aC
+aa
+aa
+aa
+bt
+bt
+bt
+bt
+aa
+aa
+aa
+aa
+aa
+aa
+gd
+gd
+ha
+aI
+ih
+iH
+gd
+gd
+aa
+aa
+aa
+aa
+km
+kt
+fJ
+kT
aa
aa
aa
@@ -5175,20 +8346,6 @@ aa
aa
aa
aa
-dc
-aa
-cT
-aa
-aa
-aa
-aa
-aC
-aC
-aC
-aC
-aa
-aa
-aa
aa
aa
aa
@@ -5202,36 +8359,41 @@ aa
aa
aa
aa
-aH
-aH
-aH
-aH
-aC
-aC
-aC
-aC
-aC
-aC
+aa
+aa
+bt
+bt
+bt
+bt
+bt
+bt
+bt
+bt
+aa
+aa
+aa
+aa
+gd
+gd
+gd
+gd
+gd
+gd
aa
aa
aa
aa
aa
-bP
-ab
-ab
-ab
-cS
-ab
-ab
-ab
-ab
+kg
+kk
+kH
+kk
+aa
+aa
aa
aa
aa
aa
-aC
-aC
aa
aa
aa
@@ -5249,30 +8411,35 @@ aa
aa
aa
aa
-aH
-aH
-aH
-aC
-aC
-aC
-aC
-aC
-aC
-aC
+aa
+bt
+bt
+bt
+bt
+bt
+bt
+bt
+bt
+dD
+dD
aa
aa
aa
aa
aa
-aB
-ce
-cs
-cs
-cs
-dd
-dd
-ds
-dv
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+kk
+kk
+kE
aa
aa
aa
@@ -5291,35 +8458,40 @@ aa
aa
aa
aa
+bl
aa
aa
aa
aa
aa
-aH
-aH
-aH
-aC
-aC
-aC
-aC
-aC
-aC
-aC
+bt
+bt
+bt
+bt
+bt
+bt
+dD
+dD
+dD
+dD
aa
aa
aa
aa
aa
-aB
-cf
-ct
-cJ
-cs
-de
-dl
-ab
-ab
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+kl
+kk
+kE
+aa
aa
aa
aa
@@ -5343,12 +8515,17 @@ aa
aa
aa
aa
-aH
-aH
-aH
-aC
-aC
-aC
+aa
+aa
+bt
+bt
+bt
+dD
+dD
+dD
+dD
+bt
+bt
aa
aa
aa
@@ -5358,15 +8535,15 @@ aa
aa
aa
aa
-aB
-ce
-cu
-cs
-cs
-df
-df
-ds
-dv
+aa
+aa
+aa
+aa
+kg
+kk
+kl
+aa
+aa
aa
aa
aa
@@ -5393,6 +8570,20 @@ aa
aa
aa
aa
+dD
+dD
+dD
+dD
+bt
+bt
+bt
+bt
+aa
+aa
+aa
+aa
+aa
+aa
aa
aa
aa
@@ -5405,15 +8596,6 @@ aa
aa
aa
aa
-ae
-ab
-ab
-ab
-cS
-ab
-ab
-ab
-ab
aa
aa
aa
@@ -5441,6 +8623,13 @@ aa
aa
aa
aa
+bt
+bt
+bt
+bt
+bt
+bt
+bt
aa
aa
aa
@@ -5459,8 +8648,6 @@ aa
aa
aa
aa
-cT
-aa
aa
aa
aa
@@ -5488,7 +8675,12 @@ aa
aa
aa
aa
-aa
+bt
+bt
+bt
+bt
+bt
+bt
aa
aa
aa
@@ -5535,7 +8727,12 @@ aa
aa
aa
aa
-aa
+bt
+bt
+bt
+bt
+bt
+bt
aa
aa
aa
@@ -5582,7 +8779,12 @@ aa
aa
aa
aa
-aa
+bt
+bt
+bt
+bt
+bt
+bt
aa
aa
aa
@@ -5629,6 +8831,11 @@ aa
aa
aa
aa
+bt
+bt
+bt
+bt
+bt
aa
aa
aa
@@ -5663,3 +8870,55 @@ aa
aa
aa
"}
+(97,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+bt
+bt
+bt
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
\ No newline at end of file
diff --git a/_maps/RandomRuins/SpaceRuins/crashedship.dmm b/_maps/RandomRuins/SpaceRuins/crashedship.dmm
index c1566ae6b6..a0157a0720 100644
--- a/_maps/RandomRuins/SpaceRuins/crashedship.dmm
+++ b/_maps/RandomRuins/SpaceRuins/crashedship.dmm
@@ -16,7 +16,7 @@
"ag" = (
/obj/machinery/porta_turret{
dir = 8;
- emagged = 1;
+ set_obj_flags = "EMAGGED";
installation = /obj/item/gun/energy/lasercannon
},
/turf/open/floor/engine,
@@ -243,7 +243,7 @@
/turf/open/floor/plating,
/area/awaymission/BMPship/Fore)
"aY" = (
-/obj/structure/sign/vacuum,
+/obj/structure/sign/warning/vacuum,
/turf/closed/wall/mineral/titanium,
/area/awaymission/BMPship/Fore)
"bb" = (
@@ -524,7 +524,7 @@
equipment = 3;
locked = 0;
pixel_y = 32;
- req_access = ""
+ req_access = null
},
/turf/open/floor/carpet,
/area/awaymission/BMPship/Fore)
@@ -786,7 +786,7 @@
equipment = 3;
locked = 0;
pixel_y = 32;
- req_access = ""
+ req_access = null
},
/turf/open/floor/plating,
/area/awaymission/BMPship/Aft)
@@ -1054,7 +1054,7 @@
dir = 1;
locked = 0;
pixel_y = 28;
- req_access = ""
+ req_access = null
},
/turf/open/floor/plasteel/bar,
/area/awaymission/BMPship/Midship)
@@ -1860,7 +1860,7 @@
"gl" = (
/obj/machinery/porta_turret{
dir = 8;
- emagged = 1;
+ set_obj_flags = "EMAGGED";
installation = /obj/item/gun/energy/lasercannon
},
/turf/open/floor/engine,
diff --git a/_maps/RandomRuins/SpaceRuins/deepstorage.dmm b/_maps/RandomRuins/SpaceRuins/deepstorage.dmm
index 462de914e7..9fa52e5d2f 100644
--- a/_maps/RandomRuins/SpaceRuins/deepstorage.dmm
+++ b/_maps/RandomRuins/SpaceRuins/deepstorage.dmm
@@ -2391,7 +2391,7 @@
/obj/machinery/light/small{
dir = 1
},
-/obj/structure/sign/securearea{
+/obj/structure/sign/warning/securearea{
pixel_y = 32
},
/obj/effect/turf_decal/stripes/corner{
@@ -2415,7 +2415,7 @@
/obj/machinery/camera{
network = list("Bunker1")
},
-/obj/structure/sign/securearea{
+/obj/structure/sign/warning/securearea{
pixel_y = 32
},
/obj/effect/turf_decal/stripes/corner{
@@ -2443,7 +2443,7 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
dir = 4
},
-/obj/structure/sign/electricshock{
+/obj/structure/sign/warning/electricshock{
pixel_y = 32
},
/turf/open/floor/plating,
@@ -2595,7 +2595,7 @@
/obj/structure/cable/yellow{
icon_state = "0-8"
},
-/obj/structure/sign/electricshock{
+/obj/structure/sign/warning/electricshock{
pixel_y = -32
},
/turf/open/floor/plating,
@@ -2792,7 +2792,7 @@
dir = 5
},
/obj/machinery/autolathe,
-/obj/structure/sign/radiation{
+/obj/structure/sign/warning/radiation{
pixel_x = -32
},
/turf/open/floor/plasteel/floorgrime,
diff --git a/_maps/RandomRuins/SpaceRuins/derelict6.dmm b/_maps/RandomRuins/SpaceRuins/derelict6.dmm
index a44ec59184..c3497f45e8 100644
--- a/_maps/RandomRuins/SpaceRuins/derelict6.dmm
+++ b/_maps/RandomRuins/SpaceRuins/derelict6.dmm
@@ -29,7 +29,7 @@
"af" = (
/obj/structure/fluff/broken_flooring{
icon_state = "pile";
- dir = 8;
+ dir = 8
},
/turf/template_noop,
/area/template_noop)
diff --git a/_maps/RandomRuins/SpaceRuins/listeningstation.dmm b/_maps/RandomRuins/SpaceRuins/listeningstation.dmm
index b022d6b6e8..06af6c20c6 100644
--- a/_maps/RandomRuins/SpaceRuins/listeningstation.dmm
+++ b/_maps/RandomRuins/SpaceRuins/listeningstation.dmm
@@ -3,7 +3,7 @@
/turf/template_noop,
/area/template_noop)
"ab" = (
-/turf/closed/mineral,
+/turf/closed/mineral/random,
/area/ruin/unpowered/no_grav)
"ac" = (
/turf/closed/wall,
@@ -14,7 +14,7 @@
},
/obj/machinery/airalarm{
pixel_y = 24;
- req_access = 150
+ req_access = list(150)
},
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
@@ -23,14 +23,12 @@
/area/ruin/space/has_grav/listeningstation)
"ae" = (
/obj/structure/table/reinforced,
-/obj/item/paper_bin,
/obj/machinery/firealarm{
dir = 2;
pixel_y = 24
},
/obj/effect/decal/cleanable/dirt,
-/obj/item/paper/fluff/ruins/listeningstation/reports/november,
-/obj/item/pen,
+/obj/machinery/computer/libraryconsole/bookmanagement,
/turf/open/floor/plasteel/dark,
/area/ruin/space/has_grav/listeningstation)
"af" = (
@@ -53,6 +51,14 @@
dir = 4
},
/obj/effect/decal/cleanable/dirt,
+/obj/machinery/newscaster{
+ pixel_y = 32
+ },
+/obj/item/device/radio/intercom{
+ freerange = 1;
+ name = "Syndicate Radio Intercom";
+ pixel_x = -30
+ },
/turf/open/floor/plasteel/dark,
/area/ruin/space/has_grav/listeningstation)
"ai" = (
@@ -106,7 +112,7 @@
/area/ruin/space/has_grav/listeningstation)
"ao" = (
/obj/machinery/light/small,
-/obj/structure/sign/vacuum{
+/obj/structure/sign/warning/vacuum{
pixel_y = 32
},
/obj/effect/decal/cleanable/dirt,
@@ -145,11 +151,11 @@
/turf/open/floor/plasteel/showroomfloor,
/area/ruin/space/has_grav/listeningstation)
"as" = (
+/obj/effect/decal/cleanable/dirt,
/obj/machinery/computer/med_data/syndie{
dir = 4;
req_one_access = null
},
-/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel/dark,
/area/ruin/space/has_grav/listeningstation)
"at" = (
@@ -172,6 +178,7 @@
pixel_x = 5;
pixel_y = 5
},
+/mob/living/simple_animal/hostile/syndicate/ranged,
/turf/open/floor/plasteel/vault{
dir = 5
},
@@ -183,6 +190,10 @@
/obj/structure/extinguisher_cabinet{
pixel_x = 25
},
+/obj/structure/table,
+/obj/item/paper_bin,
+/obj/item/paper/fluff/ruins/listeningstation/reports/november,
+/obj/item/pen,
/turf/open/floor/plasteel/dark,
/area/ruin/space/has_grav/listeningstation)
"aw" = (
@@ -198,7 +209,7 @@
/obj/machinery/airalarm{
dir = 4;
pixel_x = -24;
- req_access = 150
+ req_access = list(150)
},
/turf/open/floor/plasteel/dark,
/area/ruin/space/has_grav/listeningstation)
@@ -367,10 +378,6 @@
/area/ruin/space/has_grav/listeningstation)
"aK" = (
/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/hatch{
- name = "Telecommunications";
- req_access_txt = "150"
- },
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -378,6 +385,10 @@
pixel_x = 5;
pixel_y = 5
},
+/obj/machinery/door/airlock/hatch{
+ name = "Telecommunications";
+ req_access_txt = "150"
+ },
/turf/open/floor/plasteel/vault{
dir = 5
},
@@ -391,16 +402,16 @@
/area/ruin/space/has_grav/listeningstation)
"aM" = (
/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/hatch{
- name = "E.V.A. Equipment";
- req_access_txt = "150"
- },
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
piping_layer = 3;
pixel_x = 5;
pixel_y = 5
},
+/obj/machinery/door/airlock/hatch{
+ name = "E.V.A. Equipment";
+ req_access_txt = "150"
+ },
/turf/open/floor/plasteel/vault{
dir = 5
},
@@ -411,7 +422,7 @@
dir = 8;
pixel_x = -26
},
-/obj/structure/showcase/machinery/microwave,
+/obj/machinery/microwave,
/turf/open/floor/plasteel/vault{
dir = 5
},
@@ -459,9 +470,6 @@
/area/ruin/space/has_grav/listeningstation)
"aR" = (
/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock{
- name = "Personal Quarters"
- },
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -471,6 +479,9 @@
pixel_x = 5;
pixel_y = 5
},
+/obj/machinery/door/airlock{
+ name = "Personal Quarters"
+ },
/turf/open/floor/plasteel,
/area/ruin/space/has_grav/listeningstation)
"aS" = (
@@ -503,7 +514,7 @@
"aU" = (
/obj/machinery/airalarm{
pixel_y = 24;
- req_access = 150
+ req_access = list(150)
},
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
@@ -626,7 +637,7 @@
/obj/machinery/airalarm{
dir = 8;
pixel_x = 24;
- req_access = 150
+ req_access = list(150)
},
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -636,6 +647,7 @@
pixel_x = 5;
pixel_y = 5
},
+/mob/living/simple_animal/hostile/syndicate/ranged,
/turf/open/floor/plasteel,
/area/ruin/space/has_grav/listeningstation)
"bc" = (
@@ -724,7 +736,7 @@
/obj/machinery/syndicatebomb/self_destruct{
anchored = 1
},
-/obj/structure/sign/securearea{
+/obj/structure/sign/warning/securearea{
desc = "A warning sign which reads 'DANGER: SELF DESTRUCT DEVICE'.";
name = "DANGER: SELF DESTRUCT DEVICE";
pixel_x = 32
@@ -741,14 +753,11 @@
/turf/open/floor/plating,
/area/ruin/space/has_grav/listeningstation)
"bn" = (
-/obj/structure/sign/bluecross_2,
+/obj/structure/sign/departments/medbay/alt,
/turf/closed/wall,
/area/ruin/space/has_grav/listeningstation)
"bo" = (
/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/medical/glass{
- name = "Medbay"
- },
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -756,6 +765,9 @@
pixel_x = 5;
pixel_y = 5
},
+/obj/machinery/door/airlock/medical/glass{
+ name = "Medbay"
+ },
/turf/open/floor/plasteel/white,
/area/ruin/space/has_grav/listeningstation)
"bp" = (
@@ -798,7 +810,7 @@
dir = 4;
name = "Syndicate Listening Post APC";
pixel_x = 24;
- req_access = 150
+ req_access = list(150)
},
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plating,
@@ -834,11 +846,12 @@
},
/area/ruin/space/has_grav/listeningstation)
"bu" = (
-/obj/machinery/sleeper/syndie{
- dir = 8
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/closet/secure_closet/medical1{
+ req_access = null;
+ req_access_txt = "150"
},
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel/white,
/area/ruin/space/has_grav/listeningstation)
"bv" = (
@@ -881,7 +894,7 @@
/turf/open/floor/plasteel/grimy,
/area/ruin/space/has_grav/listeningstation)
"bx" = (
-/obj/effect/mob_spawn/human/lavaland_syndicate/comms{
+/obj/effect/mob_spawn/human/lavaland_syndicate/comms/space{
assignedrole = "Space Syndicate";
dir = 8;
flavour_text = "You are a syndicate agent, assigned to a small listening post station situated near your hated enemy's top secret research facility: Space Station 13. Monitor enemy activity as best you can, and try to keep a low profile. DON'T abandon the base without good cause. Use the communication equipment to provide support to any field agents, and sow disinformation to throw Nanotrasen off your trail. Do not let the base fall into enemy hands!"
@@ -988,6 +1001,25 @@
dir = 5
},
/area/ruin/space/has_grav/listeningstation)
+"bJ" = (
+/obj/docking_port/stationary{
+ dir = 4;
+ dwidth = 6;
+ height = 7;
+ id = "caravansyndicate3_listeningpost";
+ name = "Syndicate Listening Post";
+ width = 15
+ },
+/obj/docking_port/stationary{
+ dir = 4;
+ dwidth = 4;
+ height = 5;
+ id = "caravansyndicate1_listeningpost";
+ name = "Syndicate Listening Post";
+ width = 9
+ },
+/turf/template_noop,
+/area/template_noop)
(1,1,1) = {"
aa
@@ -2239,7 +2271,7 @@ aa
aa
aa
aa
-aa
+bJ
aa
aa
aa
diff --git a/_maps/RandomRuins/SpaceRuins/oldAIsat.dmm b/_maps/RandomRuins/SpaceRuins/oldAIsat.dmm
index 99784b3d8e..eff006f061 100644
--- a/_maps/RandomRuins/SpaceRuins/oldAIsat.dmm
+++ b/_maps/RandomRuins/SpaceRuins/oldAIsat.dmm
@@ -256,7 +256,7 @@
/turf/template_noop,
/area/template_noop)
"aU" = (
-/obj/structure/sign/securearea,
+/obj/structure/sign/warning/securearea,
/turf/closed/wall/r_wall,
/area/tcommsat/chamber)
"aV" = (
@@ -818,7 +818,7 @@
/turf/open/floor/plasteel,
/area/tcommsat/chamber)
"cL" = (
-/obj/structure/sign/vacuum,
+/obj/structure/sign/warning/vacuum,
/turf/closed/wall/r_wall,
/area/tcommsat/chamber)
"cM" = (
diff --git a/_maps/RandomRuins/SpaceRuins/oldstation.dmm b/_maps/RandomRuins/SpaceRuins/oldstation.dmm
index 4ec47c9bce..75252da7b5 100644
--- a/_maps/RandomRuins/SpaceRuins/oldstation.dmm
+++ b/_maps/RandomRuins/SpaceRuins/oldstation.dmm
@@ -296,8 +296,8 @@
dir = 8;
locked = 0;
pixel_x = 24;
- req_access = "0";
- req_one_access = "0"
+ req_access = null;
+ req_one_access = null
},
/obj/machinery/light{
dir = 4
@@ -536,7 +536,7 @@
/turf/open/floor/plasteel/floorgrime,
/area/ruin/space/has_grav/ancientstation)
"bO" = (
-/obj/structure/sign/bluecross_2,
+/obj/structure/sign/departments/medbay/alt,
/turf/closed/wall/rust,
/area/ruin/space/has_grav/ancientstation)
"bP" = (
@@ -587,7 +587,7 @@
/turf/open/floor/plasteel/floorgrime,
/area/ruin/space/has_grav/ancientstation)
"bX" = (
-/obj/structure/sign/science,
+/obj/structure/sign/departments/science,
/turf/closed/wall/rust,
/area/ruin/space/has_grav/ancientstation)
"bY" = (
@@ -1067,8 +1067,8 @@
dir = 4;
locked = 0;
pixel_x = -23;
- req_access = "0";
- req_one_access = "0"
+ req_access = null;
+ req_one_access = null
},
/turf/open/floor/plasteel/floorgrime,
/area/ruin/space/has_grav/ancientstation)
@@ -1134,8 +1134,8 @@
dir = 8;
locked = 0;
pixel_x = 24;
- req_access = "0";
- req_one_access = "0"
+ req_access = null;
+ req_one_access = null
},
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel/floorgrime,
@@ -1257,8 +1257,8 @@
dir = 8;
locked = 0;
pixel_x = 24;
- req_access = "0";
- req_one_access = "0"
+ req_access = null;
+ req_one_access = null
},
/obj/item/clothing/suit/space/nasavoid/old,
/turf/open/floor/plasteel/yellow/side{
@@ -1323,8 +1323,8 @@
dir = 4;
locked = 0;
pixel_x = -23;
- req_access = "0";
- req_one_access = "0"
+ req_access = null;
+ req_one_access = null
},
/turf/open/floor/plasteel/floorgrime,
/area/ruin/space/has_grav/ancientstation/deltacorridor)
@@ -1367,8 +1367,8 @@
dir = 8;
locked = 0;
pixel_x = 24;
- req_access = "0";
- req_one_access = "0"
+ req_access = null;
+ req_one_access = null
},
/mob/living/simple_animal/hostile/hivebot,
/turf/open/floor/plasteel/floorgrime,
@@ -2766,8 +2766,8 @@
frequency = 1439;
locked = 0;
pixel_y = 23;
- req_access = "0";
- req_one_access = "0"
+ req_access = null;
+ req_one_access = null
},
/obj/effect/decal/cleanable/egg_smudge,
/turf/open/floor/plasteel/cafeteria,
@@ -3197,8 +3197,8 @@
dir = 8;
locked = 0;
pixel_x = 24;
- req_access = "0";
- req_one_access = "0"
+ req_access = null;
+ req_one_access = null
},
/turf/open/floor/plasteel/orange/side{
tag = "icon-orange (EAST)";
@@ -3285,8 +3285,8 @@
dir = 4;
locked = 0;
pixel_x = -23;
- req_access = "0";
- req_one_access = "0"
+ req_access = null;
+ req_one_access = null
},
/mob/living/simple_animal/hostile/hivebot,
/turf/open/floor/plasteel/floorgrime,
@@ -3391,8 +3391,8 @@
dir = 8;
locked = 0;
pixel_x = 24;
- req_access = "0";
- req_one_access = "0"
+ req_access = null;
+ req_one_access = null
},
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel/floorgrime,
@@ -3475,7 +3475,7 @@
/turf/open/floor/plating,
/area/ruin/space/has_grav/ancientstation/engi)
"iX" = (
-/obj/structure/sign/radiation,
+/obj/structure/sign/warning/radiation,
/turf/closed/wall/rust,
/area/ruin/space/has_grav/ancientstation/engi)
"iY" = (
@@ -3921,8 +3921,8 @@
frequency = 1439;
locked = 0;
pixel_y = 23;
- req_access = "0";
- req_one_access = "0"
+ req_access = null;
+ req_one_access = null
},
/turf/open/floor/plasteel/white,
/area/ruin/space/has_grav/ancientstation/proto)
@@ -4325,8 +4325,8 @@
dir = 8;
locked = 0;
pixel_x = 24;
- req_access = "0";
- req_one_access = "0"
+ req_access = null;
+ req_one_access = null
},
/turf/open/floor/plasteel/airless/floorgrime,
/area/ruin/space/has_grav/ancientstation/atmo)
diff --git a/_maps/RandomRuins/SpaceRuins/spacehotel.dmm b/_maps/RandomRuins/SpaceRuins/spacehotel.dmm
index 35e34fb3eb..5dff750d0f 100644
--- a/_maps/RandomRuins/SpaceRuins/spacehotel.dmm
+++ b/_maps/RandomRuins/SpaceRuins/spacehotel.dmm
@@ -774,7 +774,7 @@
/turf/open/floor/carpet,
/area/ruin/space/has_grav/hotel)
"cz" = (
-/obj/structure/sign/fire{
+/obj/structure/sign/warning/fire{
desc = "A sign that states the labeled room's number.";
dir = 4;
icon_state = "roomnum";
@@ -785,7 +785,7 @@
/turf/open/floor/carpet,
/area/ruin/space/has_grav/hotel)
"cA" = (
-/obj/structure/sign/fire{
+/obj/structure/sign/warning/fire{
desc = "A sign that states the labeled room's number.";
dir = 8;
icon_state = "roomnum";
@@ -802,7 +802,7 @@
/turf/open/floor/carpet,
/area/ruin/space/has_grav/hotel)
"cC" = (
-/obj/structure/sign/fire{
+/obj/structure/sign/warning/fire{
desc = "A sign that states the labeled room's number.";
dir = 6;
icon_state = "roomnum";
@@ -822,7 +822,7 @@
/turf/open/floor/carpet,
/area/ruin/space/has_grav/hotel)
"cE" = (
-/obj/structure/sign/fire{
+/obj/structure/sign/warning/fire{
desc = "A sign that states the labeled room's number.";
dir = 10;
icon_state = "roomnum";
@@ -946,7 +946,7 @@
/turf/open/floor/carpet,
/area/ruin/space/has_grav/hotel)
"cT" = (
-/obj/structure/sign/fire{
+/obj/structure/sign/warning/fire{
desc = "A sign that states the labeled room's number.";
dir = 1;
icon_state = "roomnum";
@@ -963,7 +963,7 @@
/turf/open/floor/carpet,
/area/ruin/space/has_grav/hotel)
"cV" = (
-/obj/structure/sign/fire{
+/obj/structure/sign/warning/fire{
desc = "A sign that states the labeled room's number.";
icon_state = "roomnum";
name = "Room Number 1";
@@ -2172,7 +2172,7 @@
"gL" = (
/obj/structure/table,
/obj/item/storage/box/donkpockets,
-/obj/structure/sign/nosmoking_1{
+/obj/structure/sign/warning/nosmoking/circle{
pixel_y = 32
},
/turf/open/floor/plasteel/dark,
@@ -2784,7 +2784,7 @@
/obj/structure/cable{
icon_state = "4-8"
},
-/obj/structure/sign/fire{
+/obj/structure/sign/warning/fire{
desc = "A poster designed to remind the reader to wear appropriate insulation and head protection when working with material.";
icon_state = "safety";
name = "Safety Poster";
@@ -3344,7 +3344,7 @@
/turf/open/floor/wood,
/area/ruin/space/has_grav/hotel/pool)
"jZ" = (
-/obj/structure/sign/nosmoking_2{
+/obj/structure/sign/warning/nosmoking{
pixel_y = 32
},
/turf/open/floor/plasteel,
@@ -3464,7 +3464,7 @@
/obj/structure/cable{
icon_state = "0-8"
},
-/obj/structure/sign/electricshock{
+/obj/structure/sign/warning/electricshock{
pixel_y = -32
},
/turf/open/floor/plasteel/yellow/side,
@@ -3499,7 +3499,7 @@
/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/sign/vacuum{
+/obj/structure/sign/warning/vacuum{
pixel_y = -32
},
/turf/open/floor/plasteel/yellow/side,
@@ -3678,7 +3678,7 @@
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 1
},
-/obj/structure/sign/atmosplaque{
+/obj/structure/sign/plaques/atmos{
pixel_y = 32
},
/turf/open/floor/plating,
@@ -3705,7 +3705,7 @@
"lb" = (
/obj/structure/table,
/obj/machinery/recharger,
-/obj/structure/sign/goldenplaque{
+/obj/structure/sign/plaques/golden{
pixel_x = -32
},
/turf/open/floor/plasteel/red/side{
diff --git a/_maps/RandomRuins/SpaceRuins/whiteshipdock.dmm b/_maps/RandomRuins/SpaceRuins/whiteshipdock.dmm
new file mode 100644
index 0000000000..0bcfba908b
--- /dev/null
+++ b/_maps/RandomRuins/SpaceRuins/whiteshipdock.dmm
@@ -0,0 +1,858 @@
+//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
+"a" = (
+/turf/open/space/basic,
+/area/space)
+"b" = (
+/obj/docking_port/stationary{
+ dheight = 0;
+ dir = 2;
+ dwidth = 11;
+ height = 22;
+ id = "whiteship_away";
+ name = "Deep Space";
+ width = 35;
+ json_key = "whiteship"
+ },
+/turf/open/space,
+/area/space)
+
+(1,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(2,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(3,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(4,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(5,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(6,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(7,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(8,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(9,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(10,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(11,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(12,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(13,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(14,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(15,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(16,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(17,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(18,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(19,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(20,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(21,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(22,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(23,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(24,1,1) = {"
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(25,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(26,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(27,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(28,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(29,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(30,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(31,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(32,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(33,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(34,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(35,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
diff --git a/_maps/RandomZLevels/Academy.dmm b/_maps/RandomZLevels/Academy.dmm
index 535cb1377c..e1deb83812 100644
--- a/_maps/RandomZLevels/Academy.dmm
+++ b/_maps/RandomZLevels/Academy.dmm
@@ -50,7 +50,7 @@
equipment = 3;
locked = 0;
pixel_y = 32;
- req_access = ""
+ req_access = null
},
/turf/open/floor/carpet,
/area/awaymission/academy/headmaster)
@@ -457,12 +457,6 @@
"bF" = (
/turf/closed/wall/mineral/titanium,
/area/awaymission/academy/classrooms)
-"bG" = (
-/turf/closed/wall/mineral/titanium,
-/area/awaymission/academy/classrooms)
-"bH" = (
-/turf/closed/wall/mineral/titanium,
-/area/awaymission/academy/classrooms)
"bI" = (
/obj/machinery/light{
dir = 8
@@ -547,9 +541,6 @@
"bV" = (
/turf/open/floor/plasteel/floorgrime,
/area/awaymission/academy/classrooms)
-"bW" = (
-/turf/closed/wall/mineral/titanium,
-/area/awaymission/academy/classrooms)
"bX" = (
/obj/effect/decal/cleanable/ash,
/turf/open/floor/engine,
@@ -631,11 +622,6 @@
},
/turf/open/floor/plasteel/dark,
/area/awaymission/academy/headmaster)
-"cn" = (
-/turf/open/floor/plasteel/vault{
- dir = 5
- },
-/area/awaymission/academy/headmaster)
"co" = (
/obj/machinery/portable_atmospherics/scrubber/huge,
/turf/open/floor/plating,
@@ -658,9 +644,6 @@
},
/turf/open/floor/plasteel,
/area/awaymission/academy/classrooms)
-"cs" = (
-/turf/closed/wall/mineral/titanium,
-/area/awaymission/academy/classrooms)
"ct" = (
/obj/structure/chair,
/turf/open/floor/plasteel,
@@ -741,7 +724,7 @@
/turf/open/floor/plasteel/dark,
/area/awaymission/academy/headmaster)
"cH" = (
-/obj/structure/sign/nosmoking_1,
+/obj/structure/sign/warning/nosmoking/circle,
/turf/closed/wall,
/area/awaymission/academy/headmaster)
"cI" = (
@@ -795,12 +778,6 @@
dir = 6
},
/area/awaymission/academy/classrooms)
-"cS" = (
-/obj/machinery/light{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/awaymission/academy/headmaster)
"cT" = (
/obj/machinery/light{
dir = 8
@@ -1188,7 +1165,7 @@
equipment = 3;
locked = 0;
pixel_y = 32;
- req_access = ""
+ req_access = null
},
/turf/open/floor/plasteel/grimy,
/area/awaymission/academy/classrooms)
@@ -1908,12 +1885,6 @@
dir = 4
},
/area/awaymission/academy/classrooms)
-"gw" = (
-/obj/machinery/light{
- dir = 8
- },
-/turf/open/floor/wood,
-/area/awaymission/academy/classrooms)
"gx" = (
/obj/structure/closet/athletic_mixed,
/turf/open/floor/engine/cult,
@@ -2178,7 +2149,7 @@
equipment = 3;
locked = 0;
pixel_y = 32;
- req_access = ""
+ req_access = null
},
/turf/open/floor/plasteel,
/area/awaymission/academy/academyaft)
@@ -2223,24 +2194,12 @@
},
/turf/open/floor/plasteel,
/area/awaymission/academy/academyaft)
-"hu" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/hydrofloor,
-/area/awaymission/academy/academyaft)
"hv" = (
/obj/structure/cable{
icon_state = "4-8"
},
/turf/open/floor/plasteel,
/area/awaymission/academy/academyaft)
-"hw" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plating,
-/area/awaymission/academy/academyaft)
"hx" = (
/obj/structure/cable{
icon_state = "0-8"
@@ -2315,12 +2274,6 @@
dir = 8
},
/area/awaymission/academy/academyaft)
-"hG" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel,
-/area/awaymission/academy/academyaft)
"hH" = (
/obj/structure/cable{
icon_state = "4-8"
@@ -3149,12 +3102,6 @@
"kf" = (
/turf/open/floor/plating,
/area/awaymission/academy/academygate)
-"kg" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/carpet,
-/area/awaymission/academy/academygate)
"kh" = (
/obj/machinery/power/apc{
dir = 1;
@@ -3162,7 +3109,7 @@
equipment = 3;
locked = 0;
pixel_y = 32;
- req_access = ""
+ req_access = null
},
/obj/structure/cable{
icon_state = "0-2"
@@ -4011,20 +3958,6 @@
},
/turf/open/floor/carpet,
/area/awaymission/academy/headmaster)
-"np" = (
-/obj/structure/frame/computer{
- anchored = 1;
- dir = 4
- },
-/turf/open/floor/carpet,
-/area/awaymission/academy/headmaster)
-"nq" = (
-/obj/structure/frame/computer{
- anchored = 1;
- dir = 8
- },
-/turf/open/floor/carpet,
-/area/awaymission/academy/headmaster)
(1,1,1) = {"
aa
diff --git a/_maps/RandomZLevels/Cabin.dmm b/_maps/RandomZLevels/Cabin.dmm
index 4cd42ea994..7305c5f0fa 100644
--- a/_maps/RandomZLevels/Cabin.dmm
+++ b/_maps/RandomZLevels/Cabin.dmm
@@ -812,14 +812,14 @@
/area/awaymission/cabin)
"cR" = (
/obj/machinery/door/poddoor/shutters{
- id = 42;
+ id = "garage_cabin";
name = "garage door"
},
/turf/open/floor/plating/snowed/temperatre,
/area/awaymission/cabin)
"cS" = (
/obj/machinery/button/door{
- id = 42;
+ id = "garage_cabin";
pixel_y = 24
},
/turf/open/floor/plating/snowed/temperatre,
diff --git a/_maps/RandomZLevels/beach.dmm b/_maps/RandomZLevels/beach.dmm
index 10fa8be861..dddeadb0be 100644
--- a/_maps/RandomZLevels/beach.dmm
+++ b/_maps/RandomZLevels/beach.dmm
@@ -144,7 +144,7 @@
/area/awaymission/beach)
"aA" = (
/obj/machinery/vending/boozeomat{
- emagged = 1
+ set_obj_flags = "EMAGGED"
},
/turf/open/floor/wood,
/area/awaymission/beach)
@@ -233,9 +233,6 @@
/obj/effect/overlay/palmtree_r,
/turf/open/floor/plating/beach/sand,
/area/space)
-"aR" = (
-/turf/open/floor/plating/beach/sand,
-/area/awaymission/beach)
"aS" = (
/obj/machinery/door/airlock/sandstone,
/turf/open/floor/wood,
diff --git a/_maps/RandomZLevels/caves.dmm b/_maps/RandomZLevels/caves.dmm
index b1e840ac15..46f33f533b 100644
--- a/_maps/RandomZLevels/caves.dmm
+++ b/_maps/RandomZLevels/caves.dmm
@@ -303,7 +303,7 @@
/obj/machinery/light/small/built{
dir = 4
},
-/obj/structure/sign/pods{
+/obj/structure/sign/warning/pods{
desc = "A warning sign which warns of potential mech traffic to and from different levels of the mine.";
name = "\improper MECH TUNNEL PASSAGE B1 TO A2";
pixel_x = 32
@@ -373,9 +373,6 @@
initial_gas_mix = "n2=23;o2=14"
},
/area/awaymission/caves/BMP_asteroid/level_three)
-"bd" = (
-/turf/closed/wall/mineral/cult,
-/area/awaymission/caves/BMP_asteroid/level_four)
"be" = (
/mob/living/simple_animal/hostile/spawner/mining/goliath,
/turf/open/floor/plating/asteroid/basalt{
@@ -625,7 +622,7 @@
},
/area/awaymission/caves/BMP_asteroid/level_two)
"bP" = (
-/obj/structure/sign/pods{
+/obj/structure/sign/warning/pods{
desc = "A warning sign which warns of potential mech traffic to and from different levels of the mine.";
name = "\improper MECH TUNNEL PASSAGE A2 TO B1";
pixel_x = 32
@@ -769,7 +766,7 @@
},
/area/awaymission/caves/BMP_asteroid)
"ck" = (
-/obj/structure/sign/xeno_warning_mining{
+/obj/structure/sign/warning/xeno_mining{
pixel_y = -32
},
/turf/open/floor/plating/asteroid/basalt{
@@ -896,7 +893,7 @@
},
/area/awaymission/caves/research)
"cE" = (
-/obj/structure/sign/vacuum{
+/obj/structure/sign/warning/vacuum{
name = "\improper LOW AIR AREA";
pixel_x = 32
},
@@ -925,18 +922,8 @@
initial_gas_mix = "n2=23;o2=14"
},
/area/awaymission/caves/BMP_asteroid/level_two)
-"cI" = (
-/turf/open/floor/plating{
- initial_gas_mix = "n2=23;o2=14"
- },
-/area/awaymission/caves/BMP_asteroid/level_two)
-"cJ" = (
-/turf/open/floor/plating/asteroid/basalt{
- initial_gas_mix = "n2=23;o2=14"
- },
-/area/awaymission/caves/BMP_asteroid/level_two)
"cK" = (
-/obj/structure/sign/securearea{
+/obj/structure/sign/warning/securearea{
desc = "A warning sign which reads 'HOLY SHIT NIGGA WHAT ARE YOU DOING'.";
name = "\improper HOLY SHIT NIGGA WHAT ARE YOU DOING"
},
@@ -1055,7 +1042,7 @@
},
/area/awaymission/caves/research)
"cZ" = (
-/obj/structure/sign/vacuum{
+/obj/structure/sign/warning/vacuum{
name = "\improper LOW AIR AREA";
pixel_x = 32
},
@@ -1081,7 +1068,7 @@
/obj/machinery/light/small{
dir = 8
},
-/obj/structure/sign/pods{
+/obj/structure/sign/warning/pods{
desc = "A warning sign which warns of potential mech traffic to and from different levels of the mine.";
name = "\improper MECH TUNNEL PASSAGE A2 TO A1";
pixel_x = -32
@@ -1330,12 +1317,6 @@
initial_gas_mix = "n2=23;o2=14"
},
/area/awaymission/caves/BMP_asteroid)
-"dV" = (
-/obj/machinery/door/airlock{
- name = "Dorm"
- },
-/turf/open/floor/wood,
-/area/awaymission/caves/northblock)
"dW" = (
/turf/closed/wall,
/area/awaymission/caves/BMP_asteroid)
@@ -1761,7 +1742,7 @@
},
/area/awaymission/caves/BMP_asteroid/level_two)
"fp" = (
-/obj/structure/sign/pods{
+/obj/structure/sign/warning/pods{
desc = "A warning sign which warns of potential mech traffic to and from different levels of the mine.";
name = "\improper MECH TUNNEL PASSAGE A1 TO A2";
pixel_x = -32
@@ -1880,7 +1861,7 @@
/turf/open/floor/plating,
/area/awaymission/caves/BMP_asteroid)
"fI" = (
-/obj/structure/sign/bluecross{
+/obj/structure/sign/departments/medbay{
pixel_x = -32
},
/turf/open/floor/plating/asteroid/basalt{
@@ -1896,7 +1877,7 @@
/turf/open/floor/plasteel,
/area/awaymission/caves/BMP_asteroid)
"fL" = (
-/obj/structure/sign/examroom{
+/obj/structure/sign/departments/examroom{
pixel_y = 32
},
/turf/open/floor/plasteel,
@@ -1956,12 +1937,6 @@
initial_gas_mix = "n2=23;o2=14"
},
/area/awaymission/caves/BMP_asteroid)
-"fV" = (
-/turf/open/floor/plasteel/elevatorshaft{
- name = "elevator flooring";
- initial_gas_mix = "n2=23;o2=14"
- },
-/area/awaymission/caves/BMP_asteroid)
"fW" = (
/obj/structure/girder,
/turf/open/floor/plating{
@@ -1992,11 +1967,6 @@
/obj/machinery/microwave,
/turf/open/floor/plasteel,
/area/awaymission/caves/BMP_asteroid)
-"fZ" = (
-/turf/open/floor/plating{
- initial_gas_mix = "n2=23;o2=14"
- },
-/area/awaymission/caves/BMP_asteroid)
"ga" = (
/obj/structure/ladder/unbreakable{
anchored = 1;
@@ -7642,7 +7612,7 @@ dE
dI
dM
dT
-dV
+dI
eb
em
du
@@ -14601,7 +14571,7 @@ bV
fJ
fQ
fQ
-fV
+fQ
fQ
fJ
bV
@@ -16144,7 +16114,7 @@ bM
bM
bM
fW
-fZ
+fy
ev
gf
gm
@@ -16401,10 +16371,10 @@ bM
bM
bM
bM
-fZ
+fy
gc
gg
-fZ
+fy
ev
gm
dW
@@ -16659,7 +16629,7 @@ bM
bM
bM
bM
-fZ
+fy
gh
bM
go
@@ -17172,11 +17142,11 @@ bM
bM
bM
bM
-fZ
-fZ
+fy
+fy
gi
-fZ
-fZ
+fy
+fy
gq
gy
fH
@@ -17430,9 +17400,9 @@ bM
bM
bM
bM
-fZ
+fy
dW
-fZ
+fy
gq
gu
gq
@@ -17687,7 +17657,7 @@ bM
bM
bM
bM
-fZ
+fy
gj
ev
gr
@@ -17944,7 +17914,7 @@ bM
bM
bM
bM
-fZ
+fy
fW
ev
gq
@@ -18467,7 +18437,7 @@ bL
bL
bV
bV
-fZ
+fy
gF
gH
ej
@@ -18725,9 +18695,9 @@ bV
bV
bV
bV
-fZ
+fy
gI
-fZ
+fy
gD
eu
eu
@@ -18982,9 +18952,9 @@ bV
bV
bV
gD
-fZ
-fZ
-fZ
+fy
+fy
+fy
bV
bV
bV
@@ -19238,11 +19208,11 @@ bL
bV
fW
gB
-fZ
+fy
gB
gJ
-fZ
-fZ
+fy
+fy
bM
eu
bV
@@ -19499,7 +19469,7 @@ gE
gG
gJ
gB
-fZ
+fy
bM
bV
eu
@@ -54288,7 +54258,7 @@ ao
ao
ao
ai
-bd
+ax
ad
ad
ad
@@ -54811,7 +54781,7 @@ ad
ad
ad
ad
-bd
+ax
ao
ai
ao
@@ -55056,7 +55026,7 @@ ax
ai
ai
ai
-bd
+ax
ad
ad
ad
@@ -55324,7 +55294,7 @@ ad
ad
ad
ad
-bd
+ax
ao
ai
ai
@@ -56094,7 +56064,7 @@ ad
ad
ad
ad
-bd
+ax
ao
ai
ai
@@ -56200,12 +56170,12 @@ bJ
bJ
bJ
bJ
-cI
-cI
-cI
-cI
-cI
-cI
+bT
+bT
+bT
+bT
+bT
+bT
bJ
bJ
bJ
@@ -56351,7 +56321,7 @@ ad
ad
ad
ad
-bd
+ax
ao
ao
ai
@@ -56609,7 +56579,7 @@ ad
ad
ad
ad
-bd
+ax
ao
am
ai
@@ -56991,7 +56961,7 @@ bJ
cq
bO
bO
-cI
+bT
bO
bO
bO
@@ -57125,10 +57095,10 @@ aR
ad
ad
ad
-bd
-bd
+ax
+ax
ao
-bd
+ax
ad
ad
ai
@@ -57248,7 +57218,7 @@ bJ
bJ
bO
bO
-cI
+bT
bO
bO
bO
@@ -57374,7 +57344,7 @@ ad
ad
ai
ai
-bd
+ax
ao
ao
ao
@@ -57505,7 +57475,7 @@ bJ
bJ
bO
bO
-cI
+bT
bO
bJ
bJ
@@ -57649,7 +57619,7 @@ ad
ad
ad
ad
-bd
+ax
ao
ad
ad
@@ -57762,7 +57732,7 @@ bJ
bJ
bO
bO
-cI
+bT
bO
bJ
cm
@@ -57884,8 +57854,8 @@ ax
ax
ad
ad
-bd
-bd
+ax
+ax
aR
ao
ao
@@ -57896,7 +57866,7 @@ ao
ao
ao
ao
-bd
+ax
ai
ad
ad
@@ -58019,7 +57989,7 @@ bO
bO
bO
bO
-cI
+bT
bO
bJ
cm
@@ -58162,7 +58132,7 @@ ad
ad
ad
ad
-bd
+ax
ao
ai
ai
@@ -58418,7 +58388,7 @@ ad
ad
ad
ad
-bd
+ax
ao
ao
am
@@ -58675,7 +58645,7 @@ ad
ad
ad
ad
-bd
+ax
ao
ao
ai
@@ -58912,8 +58882,8 @@ ax
ad
ad
ai
-bd
-bd
+ax
+ax
aR
aR
ao
@@ -58924,14 +58894,14 @@ ao
ao
ao
ao
-bd
+ax
ai
ai
ad
ad
ad
ad
-bd
+ax
aw
aB
ai
@@ -59188,7 +59158,7 @@ ad
ad
ad
ad
-bd
+ax
ao
am
ai
@@ -59688,11 +59658,11 @@ ad
ad
ad
ai
-bd
+ax
ao
ao
ao
-bd
+ax
ai
ai
ai
@@ -59702,7 +59672,7 @@ ad
ad
ad
ad
-bd
+ax
ao
ai
ai
@@ -60214,8 +60184,8 @@ ad
ad
ad
ad
-bd
-bd
+ax
+ax
ao
ao
am
@@ -60469,7 +60439,7 @@ ad
ad
ad
ad
-bd
+ax
al
ai
ao
@@ -60718,7 +60688,7 @@ ad
ai
ao
ai
-bd
+ax
ad
ad
ad
@@ -61234,11 +61204,11 @@ ai
aq
ad
al
-bd
-bd
+ax
+ax
ai
ad
-bd
+ax
ai
ao
ai
diff --git a/_maps/RandomZLevels/centcomAway.dmm b/_maps/RandomZLevels/centcomAway.dmm
index 94f830e139..83ad870fb3 100644
--- a/_maps/RandomZLevels/centcomAway.dmm
+++ b/_maps/RandomZLevels/centcomAway.dmm
@@ -370,12 +370,6 @@
},
/turf/open/floor/plating,
/area/awaymission/centcomAway/hangar)
-"br" = (
-/turf/open/floor/plasteel/vault{
- dir = 5
- },
-/turf/closed/wall/mineral/titanium,
-/area/awaymission/centcomAway/hangar)
"bs" = (
/obj/structure/closet/crate,
/turf/open/floor/plasteel/vault{
@@ -434,27 +428,12 @@
},
/turf/open/floor/plating,
/area/awaymission/centcomAway/hangar)
-"bD" = (
-/turf/closed/wall/mineral/titanium,
-/area/awaymission/centcomAway/hangar)
-"bE" = (
-/turf/closed/wall/mineral/titanium,
-/area/awaymission/centcomAway/hangar)
"bF" = (
/obj/machinery/door/airlock/external{
name = "Salvage Shuttle Dock"
},
/turf/open/floor/plating,
/area/awaymission/centcomAway/hangar)
-"bG" = (
-/turf/closed/wall/mineral/titanium,
-/area/awaymission/centcomAway/hangar)
-"bH" = (
-/turf/closed/wall/mineral/titanium,
-/area/awaymission/centcomAway/hangar)
-"bI" = (
-/turf/closed/wall/mineral/titanium,
-/area/awaymission/centcomAway/hangar)
"bJ" = (
/obj/structure/chair/comfy/brown,
/turf/open/floor/plasteel/bar{
@@ -503,12 +482,6 @@
"bR" = (
/turf/open/floor/plating,
/area/awaymission/centcomAway/hangar)
-"bS" = (
-/turf/closed/wall/mineral/titanium/interior,
-/area/awaymission/centcomAway/hangar)
-"bT" = (
-/turf/closed/wall/mineral/titanium/interior,
-/area/awaymission/centcomAway/hangar)
"bU" = (
/obj/structure/closet/emcloset,
/turf/open/floor/mineral/titanium/blue,
@@ -545,12 +518,6 @@
},
/turf/open/floor/mineral/titanium/blue,
/area/awaymission/centcomAway/hangar)
-"bZ" = (
-/turf/closed/wall/mineral/titanium,
-/area/awaymission/centcomAway/hangar)
-"ca" = (
-/turf/closed/wall/mineral/titanium,
-/area/awaymission/centcomAway/hangar)
"cb" = (
/obj/item/paper_bin,
/obj/structure/table,
@@ -578,7 +545,7 @@
},
/area/awaymission/centcomAway/cafe)
"cg" = (
-/obj/structure/sign/botany,
+/obj/structure/sign/departments/botany,
/turf/closed/wall/r_wall,
/area/awaymission/centcomAway/cafe)
"ch" = (
@@ -646,21 +613,15 @@
/turf/open/floor/plating,
/area/awaymission/centcomAway/maint)
"cv" = (
-/obj/structure/sign/vacuum,
+/obj/structure/sign/warning/vacuum,
/turf/closed/wall/r_wall,
/area/awaymission/centcomAway/maint)
-"cw" = (
-/turf/closed/wall/mineral/titanium,
-/area/awaymission/centcomAway/hangar)
"cx" = (
/obj/machinery/door/airlock/maintenance_hatch{
req_access_txt = "101"
},
/turf/open/floor/plating,
/area/awaymission/centcomAway/hangar)
-"cy" = (
-/turf/closed/wall/mineral/titanium,
-/area/awaymission/centcomAway/hangar)
"cz" = (
/turf/closed/wall,
/area/awaymission/centcomAway/hangar)
@@ -696,9 +657,6 @@
/obj/machinery/biogenerator,
/turf/open/floor/plasteel/hydrofloor,
/area/awaymission/centcomAway/cafe)
-"cI" = (
-/turf/closed/wall/mineral/titanium,
-/area/awaymission/centcomAway/hangar)
"cJ" = (
/obj/structure/table/reinforced,
/obj/item/paper_bin,
@@ -737,12 +695,6 @@
},
/turf/open/floor/mineral/titanium/blue,
/area/awaymission/centcomAway/hangar)
-"cQ" = (
-/turf/closed/wall/mineral/titanium,
-/area/awaymission/centcomAway/hangar)
-"cR" = (
-/turf/open/floor/plating,
-/area/awaymission/centcomAway/hangar)
"cS" = (
/obj/structure/disposalpipe/segment{
dir = 6
@@ -895,9 +847,6 @@
dir = 4
},
/area/awaymission/centcomAway/cafe)
-"du" = (
-/turf/closed/wall/mineral/titanium,
-/area/awaymission/centcomAway/hangar)
"dv" = (
/obj/structure/closet/crate,
/obj/effect/turf_decal/stripes/line{
@@ -1023,25 +972,6 @@
},
/turf/open/floor/plating,
/area/awaymission/centcomAway/cafe)
-"dR" = (
-/turf/closed/wall/mineral/titanium,
-/area/awaymission/centcomAway/hangar)
-"dS" = (
-/obj/effect/spawner/structure/window/hollow/reinforced/end{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/awaymission/centcomAway/cafe)
-"dT" = (
-/obj/effect/spawner/structure/window/hollow/reinforced/end{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/awaymission/centcomAway/cafe)
-"dU" = (
-/obj/effect/spawner/structure/window/hollow/reinforced/middle,
-/turf/open/floor/plating,
-/area/awaymission/centcomAway/cafe)
"dV" = (
/obj/structure/closet/secure_closet/freezer/kitchen,
/turf/open/floor/plasteel/red,
@@ -1119,10 +1049,6 @@
icon_state = "asteroid9"
},
/area/awaymission/centcomAway/cafe)
-"ei" = (
-/obj/effect/spawner/structure/window/hollow/reinforced,
-/turf/open/floor/plating,
-/area/awaymission/centcomAway/cafe)
"ej" = (
/obj/machinery/vending/dinnerware,
/turf/open/floor/plasteel/red,
@@ -1162,15 +1088,6 @@
/obj/item/reagent_containers/food/condiment/enzyme,
/turf/open/floor/plasteel/red,
/area/awaymission/centcomAway/cafe)
-"eq" = (
-/turf/closed/wall/mineral/titanium,
-/area/awaymission/centcomAway/hangar)
-"er" = (
-/turf/closed/wall/mineral/titanium,
-/area/awaymission/centcomAway/hangar)
-"es" = (
-/turf/closed/wall/mineral/titanium,
-/area/awaymission/centcomAway/hangar)
"et" = (
/obj/machinery/door/airlock/hatch{
name = "Cockpit";
@@ -1434,7 +1351,7 @@
},
/area/awaymission/centcomAway/general)
"ft" = (
-/obj/structure/sign/electricshock,
+/obj/structure/sign/warning/electricshock,
/turf/closed/wall/r_wall,
/area/awaymission/centcomAway/general)
"fu" = (
@@ -1453,14 +1370,8 @@
},
/turf/open/floor/plating,
/area/awaymission/centcomAway/general)
-"fx" = (
-/obj/effect/spawner/structure/window/hollow/reinforced/end{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/awaymission/centcomAway/general)
"fy" = (
-/obj/structure/sign/bluecross_2,
+/obj/structure/sign/departments/medbay/alt,
/turf/closed/wall/r_wall,
/area/awaymission/centcomAway/general)
"fz" = (
@@ -1575,7 +1486,7 @@
},
/area/awaymission/centcomAway/general)
"fQ" = (
-/obj/structure/sign/science,
+/obj/structure/sign/departments/science,
/turf/closed/wall/r_wall,
/area/awaymission/centcomAway/general)
"fR" = (
@@ -1648,12 +1559,6 @@
},
/turf/open/floor/plating,
/area/awaymission/centcomAway/general)
-"ge" = (
-/obj/effect/spawner/structure/window/hollow/reinforced/end{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/awaymission/centcomAway/general)
"gf" = (
/obj/effect/spawner/structure/window/hollow/reinforced/middle,
/obj/structure/window/reinforced{
@@ -1661,10 +1566,6 @@
},
/turf/open/floor/plating,
/area/awaymission/centcomAway/general)
-"gg" = (
-/obj/effect/spawner/structure/window/hollow/reinforced/middle,
-/turf/open/floor/plating,
-/area/awaymission/centcomAway/general)
"gh" = (
/obj/effect/spawner/structure/window/hollow/reinforced/directional{
dir = 5
@@ -1886,9 +1787,6 @@
},
/turf/closed/wall/mineral/titanium/interior,
/area/awaymission/centcomAway/hangar)
-"gT" = (
-/turf/closed/wall/mineral/titanium/interior,
-/area/awaymission/centcomAway/hangar)
"gU" = (
/obj/structure/table,
/obj/item/paper/fluff/awaymissions/centcom/gateway_memo,
@@ -1965,7 +1863,7 @@
/turf/open/floor/engine,
/area/awaymission/centcomAway/general)
"hi" = (
-/obj/structure/sign/biohazard,
+/obj/structure/sign/warning/biohazard,
/turf/closed/wall/r_wall,
/area/awaymission/centcomAway/general)
"hj" = (
@@ -2041,19 +1939,6 @@
},
/turf/open/floor/plating,
/area/awaymission/centcomAway/courtroom)
-"hu" = (
-/obj/effect/spawner/structure/window/hollow/reinforced,
-/turf/open/floor/plating,
-/area/awaymission/centcomAway/hangar)
-"hv" = (
-/obj/structure/shuttle/engine/propulsion/burst{
- dir = 4
- },
-/turf/closed/wall/mineral/titanium,
-/area/awaymission/centcomAway/hangar)
-"hw" = (
-/turf/closed/wall/mineral/titanium,
-/area/awaymission/centcomAway/hangar)
"hx" = (
/obj/structure/table,
/obj/item/clothing/gloves/color/yellow,
@@ -2063,7 +1948,7 @@
/turf/open/floor/plating,
/area/awaymission/centcomAway/hangar)
"hy" = (
-/obj/structure/sign/securearea,
+/obj/structure/sign/warning/securearea,
/turf/closed/wall/r_wall,
/area/awaymission/centcomAway/general)
"hz" = (
@@ -2191,7 +2076,7 @@
/turf/open/floor/wood,
/area/awaymission/centcomAway/courtroom)
"hU" = (
-/obj/structure/sign/vacuum,
+/obj/structure/sign/warning/vacuum,
/turf/closed/wall/r_wall,
/area/awaymission/centcomAway/hangar)
"hV" = (
@@ -2263,11 +2148,6 @@
/obj/machinery/computer/mech_bay_power_console,
/turf/open/floor/circuit,
/area/awaymission/centcomAway/hangar)
-"ik" = (
-/turf/open/floor/plasteel/vault{
- dir = 8
- },
-/area/awaymission/centcomAway/hangar)
"il" = (
/obj/structure/mecha_wreckage/ripley,
/turf/open/floor/plasteel/dark,
@@ -2330,12 +2210,6 @@
/obj/effect/spawner/structure/window/hollow/reinforced/middle,
/turf/open/floor/plating,
/area/awaymission/centcomAway/courtroom)
-"ix" = (
-/obj/effect/spawner/structure/window/hollow/reinforced/end{
- dir = 4
- },
-/turf/closed/wall/r_wall,
-/area/awaymission/centcomAway/courtroom)
"iy" = (
/obj/machinery/door/poddoor{
id = "XCCMechs";
@@ -2363,12 +2237,6 @@
},
/turf/open/floor/plasteel,
/area/awaymission/centcomAway/hangar)
-"iC" = (
-/obj/effect/spawner/structure/window/hollow/reinforced/end{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/awaymission/centcomAway/general)
"iD" = (
/obj/structure/window/reinforced,
/turf/open/floor/plasteel/vault{
@@ -2382,11 +2250,6 @@
/obj/machinery/recharge_station,
/turf/open/floor/plasteel/dark,
/area/awaymission/centcomAway/hangar)
-"iG" = (
-/turf/open/floor/plasteel/vault{
- dir = 5
- },
-/area/awaymission/centcomAway/hangar)
"iH" = (
/obj/structure/window/reinforced{
dir = 4
@@ -2575,11 +2438,6 @@
/obj/effect/decal/cleanable/cobweb/cobweb2,
/turf/open/floor/plasteel/grimy,
/area/awaymission/centcomAway/general)
-"jl" = (
-/turf/open/floor/plasteel/green/corner{
- dir = 8
- },
-/area/awaymission/centcomAway/general)
"jm" = (
/turf/open/floor/plasteel/green/corner{
dir = 2
@@ -2798,14 +2656,8 @@
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
/area/awaymission/centcomAway/general)
-"jT" = (
-/obj/effect/spawner/structure/window/hollow/reinforced/end{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/awaymission/centcomAway/general)
"jU" = (
-/obj/structure/sign/vacuum,
+/obj/structure/sign/warning/vacuum,
/turf/closed/wall/r_wall,
/area/awaymission/centcomAway/general)
"jV" = (
@@ -2849,12 +2701,6 @@
},
/turf/open/floor/plating,
/area/awaymission/centcomAway/hangar)
-"kb" = (
-/obj/effect/spawner/structure/window/hollow/reinforced/end{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/awaymission/centcomAway/general)
"kc" = (
/obj/machinery/gateway{
dir = 8
@@ -2908,10 +2754,6 @@
dir = 6
},
/area/awaymission/centcomAway/general)
-"kk" = (
-/obj/effect/spawner/structure/window/hollow/reinforced,
-/turf/open/floor/plating,
-/area/awaymission/centcomAway/general)
"kl" = (
/obj/effect/spawner/structure/window/hollow/reinforced/end{
dir = 1
@@ -2919,12 +2761,6 @@
/obj/structure/window/reinforced,
/turf/open/floor/plating,
/area/awaymission/centcomAway/general)
-"km" = (
-/obj/effect/spawner/structure/window/hollow/reinforced/end{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/awaymission/centcomAway/general)
"kn" = (
/obj/structure/table,
/obj/item/device/flashlight/flare,
@@ -3091,12 +2927,6 @@
dir = 6
},
/area/awaymission/centcomAway/general)
-"kM" = (
-/obj/effect/spawner/structure/window/hollow/reinforced/end{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/awaymission/centcomAway/general)
"kN" = (
/obj/structure/table/wood,
/obj/item/clothing/accessory/medal,
@@ -3790,11 +3620,6 @@
/obj/item/storage/belt/utility/full,
/turf/open/floor/plasteel/grimy,
/area/awaymission/centcomAway/general)
-"mV" = (
-/turf/open/floor/plasteel/redyellow{
- dir = 5
- },
-/area/awaymission/centcomAway/thunderdome)
"mW" = (
/obj/structure/chair/stool{
pixel_y = 8
@@ -8421,7 +8246,7 @@ bo
bC
bR
bR
-bS
+bn
bn
bd
bR
@@ -8679,7 +8504,7 @@ aV
bd
bq
bC
-bS
+bn
cm
cx
cm
@@ -8692,7 +8517,7 @@ bB
bB
bB
bB
-bS
+bn
bR
bR
bd
@@ -8704,9 +8529,9 @@ gm
gD
gD
gD
-gT
+bn
he
-gT
+bn
gD
aV
il
@@ -8809,7 +8634,7 @@ aV
bd
bn
bB
-bT
+bn
cn
cn
cJ
@@ -8823,7 +8648,7 @@ dz
dz
dz
bB
-bS
+bn
bR
bR
bd
@@ -9483,9 +9308,9 @@ bd
gm
gD
gD
-gT
+bn
he
-gT
+bn
gD
gD
aV
@@ -9849,7 +9674,7 @@ aV
bd
bn
bB
-bT
+bn
cn
cn
cP
@@ -9979,7 +9804,7 @@ aV
bd
bo
bC
-bS
+bn
cm
cx
cm
@@ -10241,7 +10066,7 @@ bq
bC
bR
bR
-bS
+bn
bn
bd
bd
diff --git a/_maps/RandomZLevels/challenge.dmm b/_maps/RandomZLevels/challenge.dmm
index 282a1fc07f..8f454aedc9 100644
--- a/_maps/RandomZLevels/challenge.dmm
+++ b/_maps/RandomZLevels/challenge.dmm
@@ -242,7 +242,7 @@
"aX" = (
/obj/machinery/porta_turret{
dir = 8;
- emagged = 1;
+ set_obj_flags = "EMAGGED";
installation = /obj/item/gun/energy/lasercannon
},
/turf/open/floor/plating/airless,
@@ -384,7 +384,7 @@
"bq" = (
/obj/machinery/porta_turret{
dir = 8;
- emagged = 1;
+ set_obj_flags = "EMAGGED";
installation = /obj/item/gun/energy/lasercannon
},
/turf/open/floor/plating,
@@ -796,7 +796,7 @@
/turf/open/space,
/area/space/nearstation)
"cA" = (
-/obj/structure/sign/securearea,
+/obj/structure/sign/warning/securearea,
/turf/closed/indestructible{
icon_state = "iron0"
},
@@ -899,12 +899,6 @@
},
/turf/open/floor/plating,
/area/awaymission/challenge/end)
-"cQ" = (
-/obj/machinery/light{
- dir = 8
- },
-/turf/open/floor/circuit,
-/area/awaymission/challenge/end)
"cR" = (
/obj/machinery/gateway{
dir = 9
@@ -929,12 +923,6 @@
dir = 4
},
/area/awaymission/challenge/end)
-"cU" = (
-/obj/machinery/light{
- dir = 4
- },
-/turf/open/floor/circuit,
-/area/awaymission/challenge/end)
"cV" = (
/obj/machinery/gateway{
dir = 8
diff --git a/_maps/RandomZLevels/moonoutpost19.dmm b/_maps/RandomZLevels/moonoutpost19.dmm
index 80e7c8e8eb..7ab1cfa1b6 100644
--- a/_maps/RandomZLevels/moonoutpost19.dmm
+++ b/_maps/RandomZLevels/moonoutpost19.dmm
@@ -16,22 +16,6 @@
heat_capacity = 1e+006
},
/area/awaymission/moonoutpost19/hive)
-"ae" = (
-/obj/structure/alien/weeds,
-/obj/structure/alien/resin/wall,
-/turf/open/floor/plating/asteroid{
- initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251";
- heat_capacity = 1e+006
- },
-/area/awaymission/moonoutpost19/hive)
-"af" = (
-/obj/structure/alien/weeds,
-/obj/structure/alien/resin/wall,
-/turf/open/floor/plating/asteroid{
- initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251";
- heat_capacity = 1e+006
- },
-/area/awaymission/moonoutpost19/hive)
"ag" = (
/obj/structure/alien/weeds,
/obj/structure/alien/weeds{
@@ -45,19 +29,6 @@
heat_capacity = 1e+006
},
/area/awaymission/moonoutpost19/hive)
-"ah" = (
-/obj/structure/alien/weeds,
-/obj/structure/alien/weeds{
- desc = "A large mottled egg.";
- obj_integrity = 100;
- icon_state = "egg_hatched";
- name = "egg"
- },
-/turf/open/floor/plating/asteroid{
- initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251";
- heat_capacity = 1e+006
- },
-/area/awaymission/moonoutpost19/hive)
"ai" = (
/obj/structure/alien/weeds,
/turf/open/floor/plating/asteroid{
@@ -81,19 +52,6 @@
heat_capacity = 1e+006
},
/area/awaymission/moonoutpost19/hive)
-"al" = (
-/obj/structure/alien/weeds,
-/obj/structure/alien/weeds{
- desc = "A large mottled egg.";
- obj_integrity = 100;
- icon_state = "egg_hatched";
- name = "egg"
- },
-/turf/open/floor/plating/asteroid{
- initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251";
- heat_capacity = 1e+006
- },
-/area/awaymission/moonoutpost19/hive)
"am" = (
/obj/structure/alien/weeds/node,
/turf/open/floor/plating/asteroid{
@@ -101,22 +59,6 @@
heat_capacity = 1e+006
},
/area/awaymission/moonoutpost19/hive)
-"an" = (
-/obj/structure/alien/weeds,
-/obj/structure/bed/nest,
-/turf/open/floor/plating/asteroid{
- initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251";
- heat_capacity = 1e+006
- },
-/area/awaymission/moonoutpost19/hive)
-"ao" = (
-/obj/structure/alien/weeds,
-/obj/structure/bed/nest,
-/turf/open/floor/plating/asteroid{
- initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251";
- heat_capacity = 1e+006
- },
-/area/awaymission/moonoutpost19/hive)
"ap" = (
/obj/structure/alien/weeds,
/obj/structure/bed/nest,
@@ -128,20 +70,6 @@
heat_capacity = 1e+006
},
/area/awaymission/moonoutpost19/hive)
-"aq" = (
-/obj/structure/alien/weeds,
-/turf/open/floor/plating/asteroid{
- initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251";
- heat_capacity = 1e+006
- },
-/area/awaymission/moonoutpost19/hive)
-"ar" = (
-/obj/structure/alien/weeds,
-/turf/open/floor/plating/asteroid{
- initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251";
- heat_capacity = 1e+006
- },
-/area/awaymission/moonoutpost19/hive)
"as" = (
/obj/structure/alien/weeds,
/obj/structure/alien/resin/wall,
@@ -178,14 +106,6 @@
heat_capacity = 1e+006
},
/area/awaymission/moonoutpost19/hive)
-"ax" = (
-/obj/structure/alien/weeds,
-/obj/effect/decal/cleanable/blood/gibs,
-/turf/open/floor/plating/asteroid{
- initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251";
- heat_capacity = 1e+006
- },
-/area/awaymission/moonoutpost19/hive)
"ay" = (
/turf/open/floor/plasteel/darkred/side{
dir = 9;
@@ -300,14 +220,6 @@
heat_capacity = 1e+006
},
/area/awaymission/moonoutpost19/hive)
-"aL" = (
-/obj/structure/alien/weeds,
-/obj/effect/decal/cleanable/blood/gibs,
-/turf/open/floor/plating/asteroid{
- initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251";
- heat_capacity = 1e+006
- },
-/area/awaymission/moonoutpost19/hive)
"aM" = (
/obj/structure/alien/weeds,
/mob/living/simple_animal/hostile/alien/drone{
@@ -433,16 +345,6 @@
heat_capacity = 1e+006
},
/area/awaymission/moonoutpost19/main)
-"bb" = (
-/obj/structure/alien/weeds,
-/mob/living/simple_animal/hostile/alien/drone{
- plants_off = 1
- },
-/turf/open/floor/plating/asteroid{
- initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251";
- heat_capacity = 1e+006
- },
-/area/awaymission/moonoutpost19/hive)
"bc" = (
/obj/structure/alien/weeds,
/obj/effect/decal/cleanable/blood,
@@ -503,14 +405,6 @@
heat_capacity = 1e+006
},
/area/awaymission/moonoutpost19/hive)
-"bk" = (
-/obj/structure/alien/weeds,
-/mob/living/simple_animal/hostile/alien/sentinel,
-/turf/open/floor/plating/asteroid{
- initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251";
- heat_capacity = 1e+006
- },
-/area/awaymission/moonoutpost19/hive)
"bl" = (
/turf/closed/mineral/random/high_chance,
/area/awaymission/moonoutpost19/hive)
@@ -537,7 +431,7 @@
frequency = 1439;
locked = 1;
pixel_y = 23;
- req_access = "150"
+ req_access = list(150)
},
/turf/open/floor/plasteel/bar{
heat_capacity = 1e+006
@@ -717,7 +611,7 @@
frequency = 1439;
locked = 1;
pixel_x = 23;
- req_access = "150"
+ req_access = list(150)
},
/turf/open/floor/plasteel/floorgrime{
dir = 8;
@@ -867,7 +761,7 @@
frequency = 1439;
locked = 1;
pixel_y = 23;
- req_access = "150"
+ req_access = list(150)
},
/obj/effect/turf_decal/stripes/line{
dir = 9
@@ -966,7 +860,7 @@
frequency = 1439;
locked = 0;
pixel_y = 23;
- req_access = "150"
+ req_access = list(150)
},
/turf/open/floor/plasteel{
initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251";
@@ -977,7 +871,7 @@
},
/area/awaymission/moonoutpost19/syndicate)
"ce" = (
-/obj/structure/sign/biohazard{
+/obj/structure/sign/warning/biohazard{
pixel_y = 32
},
/obj/structure/alien/weeds/node,
@@ -1005,7 +899,7 @@
},
/area/awaymission/moonoutpost19/syndicate)
"cg" = (
-/obj/structure/sign/securearea{
+/obj/structure/sign/warning/securearea{
pixel_y = 32
},
/obj/effect/turf_decal/stripes/corner{
@@ -1127,7 +1021,7 @@
"cr" = (
/obj/machinery/door/airlock/public/glass{
density = 0;
- emagged = 1;
+ set_obj_flags = "EMAGGED";
icon_state = "open";
locked = 1;
name = "Dormitories"
@@ -1326,7 +1220,7 @@
locked = 1;
name = "Worn-out APC";
pixel_y = -25;
- req_access = "150";
+ req_access = list(150);
start_charge = 0
},
/turf/open/floor/plasteel/red/side{
@@ -1420,7 +1314,7 @@
frequency = 1439;
locked = 1;
pixel_x = 23;
- req_access = "150"
+ req_access = list(150)
},
/obj/machinery/light{
active_power_usage = 0;
@@ -1438,7 +1332,7 @@
"cT" = (
/obj/machinery/door/airlock{
density = 0;
- emagged = 1;
+ set_obj_flags = "EMAGGED";
icon_state = "open";
id_tag = "awaydorm4";
locked = 1;
@@ -1603,7 +1497,7 @@
frequency = 1439;
locked = 1;
pixel_x = -23;
- req_access = "150"
+ req_access = list(150)
},
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/wood{
@@ -1634,7 +1528,7 @@
frequency = 1439;
locked = 1;
pixel_x = 23;
- req_access = "150"
+ req_access = list(150)
},
/turf/open/floor/wood{
heat_capacity = 1e+006
@@ -1750,7 +1644,7 @@
"du" = (
/obj/machinery/door/airlock/external{
density = 0;
- emagged = 1;
+ set_obj_flags = "EMAGGED";
icon_state = "open";
locked = 1;
opacity = 0;
@@ -1827,7 +1721,7 @@
/turf/closed/mineral,
/area/awaymission/moonoutpost19/main)
"dB" = (
-/obj/structure/sign/vacuum{
+/obj/structure/sign/warning/vacuum{
desc = "A warning sign which reads 'HOSTILE ATMOSPHERE AHEAD'";
name = "\improper HOSTILE ATMOSPHERE AHEAD";
pixel_y = -32
@@ -1910,7 +1804,7 @@
"dI" = (
/obj/machinery/door/airlock/external{
density = 0;
- emagged = 1;
+ set_obj_flags = "EMAGGED";
icon_state = "open";
locked = 1;
opacity = 0;
@@ -1998,14 +1892,6 @@
heat_capacity = 1e+006
},
/area/awaymission/moonoutpost19/main)
-"dR" = (
-/obj/structure/alien/weeds,
-/obj/structure/alien/resin/wall,
-/turf/open/floor/plating/asteroid{
- initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251";
- heat_capacity = 1e+006
- },
-/area/awaymission/moonoutpost19/main)
"dS" = (
/obj/structure/alien/weeds,
/obj/effect/decal/cleanable/blood,
@@ -2024,13 +1910,6 @@
heat_capacity = 1e+006
},
/area/awaymission/moonoutpost19/main)
-"dU" = (
-/obj/structure/alien/weeds,
-/turf/open/floor/plating/asteroid{
- initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251";
- heat_capacity = 1e+006
- },
-/area/awaymission/moonoutpost19/main)
"dV" = (
/obj/structure/alien/weeds/node,
/obj/structure/alien/resin/wall,
@@ -2039,21 +1918,6 @@
heat_capacity = 1e+006
},
/area/awaymission/moonoutpost19/main)
-"dW" = (
-/obj/structure/alien/weeds,
-/obj/structure/alien/resin/wall,
-/turf/open/floor/plating/asteroid{
- initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251";
- heat_capacity = 1e+006
- },
-/area/awaymission/moonoutpost19/main)
-"dX" = (
-/obj/structure/alien/weeds,
-/turf/open/floor/plating/asteroid{
- initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251";
- heat_capacity = 1e+006
- },
-/area/awaymission/moonoutpost19/main)
"dY" = (
/obj/machinery/light/small,
/turf/open/floor/plating/asteroid{
@@ -2085,7 +1949,7 @@
},
/area/awaymission/moonoutpost19/research)
"ec" = (
-/obj/structure/sign/biohazard,
+/obj/structure/sign/warning/biohazard,
/turf/closed/wall/r_wall,
/area/awaymission/moonoutpost19/research)
"ed" = (
@@ -2220,12 +2084,6 @@
/obj/item/clothing/mask/facehugger/impregnated,
/turf/open/floor/engine,
/area/awaymission/moonoutpost19/research)
-"es" = (
-/obj/structure/alien/weeds,
-/obj/structure/bed/nest,
-/obj/effect/decal/cleanable/blood/gibs,
-/turf/open/floor/engine,
-/area/awaymission/moonoutpost19/research)
"et" = (
/obj/machinery/vending/coffee,
/turf/open/floor/plasteel/dark,
@@ -2247,16 +2105,6 @@
heat_capacity = 1e+006
},
/area/awaymission/moonoutpost19/research)
-"ew" = (
-/obj/machinery/atmospherics/components/unary/portables_connector{
- dir = 4
- },
-/obj/machinery/portable_atmospherics/canister,
-/obj/structure/alien/weeds,
-/turf/open/floor/plasteel{
- heat_capacity = 1e+006
- },
-/area/awaymission/moonoutpost19/research)
"ex" = (
/obj/structure/cable{
icon_state = "1-2"
@@ -2299,41 +2147,18 @@
},
/area/awaymission/moonoutpost19/research)
"eA" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'HIGH VOLTAGE'";
- icon_state = "shock";
- name = "HIGH VOLTAGE"
- },
+/obj/structure/sign/warning/electricshock,
/turf/closed/wall/r_wall,
/area/awaymission/moonoutpost19/research)
"eB" = (
/obj/structure/alien/weeds/node,
/turf/open/floor/engine,
/area/awaymission/moonoutpost19/research)
-"eC" = (
-/obj/structure/alien/weeds,
-/turf/open/floor/engine,
-/area/awaymission/moonoutpost19/research)
-"eD" = (
-/obj/structure/alien/weeds,
-/obj/structure/alien/resin/wall,
-/turf/open/floor/engine,
-/area/awaymission/moonoutpost19/research)
-"eE" = (
-/obj/structure/alien/weeds,
-/obj/structure/alien/resin/wall,
-/turf/open/floor/engine,
-/area/awaymission/moonoutpost19/research)
"eF" = (
/obj/structure/alien/weeds,
/obj/structure/bed/nest,
/turf/open/floor/engine,
/area/awaymission/moonoutpost19/research)
-"eG" = (
-/obj/structure/alien/weeds,
-/obj/effect/decal/cleanable/blood/gibs,
-/turf/open/floor/engine,
-/area/awaymission/moonoutpost19/research)
"eH" = (
/obj/structure/alien/weeds,
/obj/structure/alien/weeds{
@@ -2412,25 +2237,11 @@
heat_capacity = 1e+006
},
/area/awaymission/moonoutpost19/research)
-"eP" = (
-/obj/structure/alien/weeds,
-/obj/structure/alien/weeds{
- desc = "A large mottled egg.";
- obj_integrity = 100;
- icon_state = "egg_hatched";
- name = "egg"
- },
-/turf/open/floor/engine,
-/area/awaymission/moonoutpost19/research)
"eQ" = (
/obj/structure/alien/weeds,
/obj/effect/decal/cleanable/blood,
/turf/open/floor/engine,
/area/awaymission/moonoutpost19/research)
-"eR" = (
-/obj/structure/alien/weeds,
-/turf/open/floor/engine,
-/area/awaymission/moonoutpost19/research)
"eS" = (
/obj/machinery/power/port_gen/pacman{
desc = "A portable generator for emergency backup power.";
@@ -2579,7 +2390,7 @@
},
/area/awaymission/moonoutpost19/research)
"fe" = (
-/obj/structure/sign/securearea{
+/obj/structure/sign/warning/securearea{
pixel_x = 32
},
/obj/structure/cable{
@@ -2692,16 +2503,6 @@
heat_capacity = 1e+006
},
/area/awaymission/moonoutpost19/research)
-"fo" = (
-/obj/structure/alien/weeds,
-/obj/structure/alien/weeds{
- desc = "A large mottled egg.";
- obj_integrity = 100;
- icon_state = "egg_hatched";
- name = "egg"
- },
-/turf/open/floor/engine,
-/area/awaymission/moonoutpost19/research)
"fp" = (
/obj/structure/alien/weeds,
/obj/structure/bed/nest,
@@ -2788,7 +2589,7 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/research{
density = 0;
- emagged = 1;
+ set_obj_flags = "EMAGGED";
icon_state = "open";
locked = 1;
name = "Xenobiology Lab";
@@ -2916,16 +2717,6 @@
/obj/structure/alien/resin/wall,
/turf/open/floor/engine,
/area/awaymission/moonoutpost19/research)
-"fI" = (
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- desc = "A one meter section of pipe. This one has been applied with an acid-proof coating.";
- dir = 4;
- name = "Acid-Proof Pipe"
- },
-/obj/structure/alien/weeds,
-/obj/structure/alien/resin/wall,
-/turf/open/floor/engine,
-/area/awaymission/moonoutpost19/research)
"fJ" = (
/obj/machinery/atmospherics/components/unary/outlet_injector{
desc = "Has a valve and pump attached to it. This one has been applied with an acid-proof coating.";
@@ -3071,7 +2862,7 @@
},
/area/awaymission/moonoutpost19/research)
"fX" = (
-/obj/structure/sign/biohazard{
+/obj/structure/sign/warning/biohazard{
pixel_x = 32
},
/obj/structure/cable{
@@ -3140,18 +2931,6 @@
},
/turf/open/floor/engine,
/area/awaymission/moonoutpost19/research)
-"gd" = (
-/obj/structure/alien/weeds,
-/obj/structure/bed/nest,
-/obj/effect/decal/cleanable/blood/gibs,
-/turf/open/floor/engine,
-/area/awaymission/moonoutpost19/research)
-"ge" = (
-/obj/structure/alien/weeds,
-/obj/structure/bed/nest,
-/obj/item/clothing/mask/facehugger/impregnated,
-/turf/open/floor/engine,
-/area/awaymission/moonoutpost19/research)
"gf" = (
/obj/structure/chair/stool,
/turf/open/floor/plating{
@@ -3756,14 +3535,6 @@
heat_capacity = 1e+006
},
/area/awaymission/moonoutpost19/hive)
-"hl" = (
-/obj/structure/alien/weeds,
-/obj/structure/alien/egg,
-/turf/open/floor/plating/asteroid{
- initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251";
- heat_capacity = 1e+006
- },
-/area/awaymission/moonoutpost19/hive)
"hm" = (
/obj/machinery/vending/medical{
req_access_txt = "201"
@@ -3950,7 +3721,7 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/command{
density = 0;
- emagged = 1;
+ set_obj_flags = "EMAGGED";
icon_state = "open";
locked = 1;
name = "Research Director's Office";
@@ -4395,7 +4166,7 @@
},
/area/awaymission/moonoutpost19/research)
"iu" = (
-/obj/structure/sign/securearea{
+/obj/structure/sign/warning/securearea{
pixel_y = 32
},
/obj/machinery/shower{
@@ -4883,7 +4654,7 @@
},
/area/awaymission/moonoutpost19/arrivals)
"jx" = (
-/obj/structure/sign/science{
+/obj/structure/sign/departments/science{
pixel_y = 32
},
/obj/effect/decal/cleanable/dirt,
@@ -5688,13 +5459,6 @@
"ld" = (
/turf/closed/wall/mineral/titanium,
/area/awaymission/moonoutpost19/arrivals)
-"le" = (
-/turf/open/floor/plating/asteroid{
- initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251";
- heat_capacity = 1e+006
- },
-/turf/closed/wall/mineral/titanium,
-/area/awaymission/moonoutpost19/arrivals)
"lf" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel/arrival{
@@ -5885,22 +5649,10 @@
temperature = 273.15
},
/area/awaymission/moonoutpost19/arrivals)
-"ly" = (
-/turf/closed/wall/mineral/titanium,
-/area/awaymission/moonoutpost19/arrivals)
-"lz" = (
-/turf/closed/wall/mineral/titanium,
-/area/awaymission/moonoutpost19/arrivals)
"lA" = (
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
/area/awaymission/moonoutpost19/arrivals)
-"lB" = (
-/turf/closed/wall/mineral/titanium,
-/area/awaymission/moonoutpost19/arrivals)
-"lC" = (
-/turf/closed/wall/mineral/titanium,
-/area/awaymission/moonoutpost19/arrivals)
"lD" = (
/obj/structure/shuttle/engine/heater{
dir = 4
@@ -6038,9 +5790,6 @@
temperature = 273.15
},
/area/awaymission/moonoutpost19/arrivals)
-"lV" = (
-/turf/closed/wall/mineral/titanium/interior,
-/area/awaymission/moonoutpost19/arrivals)
"lW" = (
/obj/structure/table,
/obj/item/storage/lockbox,
@@ -6051,9 +5800,6 @@
/obj/item/device/radio/off,
/turf/open/floor/mineral/titanium/yellow,
/area/awaymission/moonoutpost19/arrivals)
-"lY" = (
-/turf/closed/wall/mineral/titanium,
-/area/awaymission/moonoutpost19/arrivals)
"lZ" = (
/obj/machinery/computer/security/telescreen/entertainment{
pixel_x = -32
@@ -6230,7 +5976,7 @@
/turf/open/floor/mineral/titanium/yellow,
/area/awaymission/moonoutpost19/arrivals)
"mv" = (
-/obj/structure/sign/vacuum{
+/obj/structure/sign/warning/vacuum{
desc = "A warning sign which reads 'HOSTILE ATMOSPHERE AHEAD'";
name = "\improper HOSTILE ATMOSPHERE AHEAD"
},
@@ -6343,7 +6089,7 @@
/turf/open/floor/mineral/titanium/yellow,
/area/awaymission/moonoutpost19/arrivals)
"mJ" = (
-/obj/structure/sign/vacuum{
+/obj/structure/sign/warning/vacuum{
desc = "A beacon used by a teleporter.";
icon = 'icons/obj/radio.dmi';
icon_state = "beacon";
@@ -6490,9 +6236,6 @@
},
/turf/open/floor/mineral/titanium/yellow,
/area/awaymission/moonoutpost19/arrivals)
-"mX" = (
-/turf/closed/wall/mineral/titanium,
-/area/awaymission/moonoutpost19/arrivals)
"mY" = (
/obj/machinery/light/small{
dir = 4
@@ -6541,12 +6284,6 @@
heat_capacity = 1e+006
},
/area/awaymission/moonoutpost19/arrivals)
-"nd" = (
-/turf/closed/wall/mineral/titanium,
-/area/awaymission/moonoutpost19/arrivals)
-"ne" = (
-/turf/closed/wall/mineral/titanium,
-/area/awaymission/moonoutpost19/arrivals)
"nf" = (
/obj/structure/filingcabinet,
/turf/open/floor/mineral/titanium/blue,
@@ -6601,7 +6338,7 @@
},
/area/awaymission/moonoutpost19/arrivals)
"nm" = (
-/obj/structure/sign/vacuum{
+/obj/structure/sign/warning/vacuum{
desc = "A warning sign which reads 'HOSTILE ATMOSPHERE AHEAD'";
name = "\improper HOSTILE ATMOSPHERE AHEAD";
pixel_y = 32
@@ -6610,9 +6347,6 @@
heat_capacity = 1e+006
},
/area/awaymission/moonoutpost19/arrivals)
-"nn" = (
-/turf/closed/wall/mineral/titanium,
-/area/awaymission/moonoutpost19/arrivals)
"no" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/stripes/line{
@@ -6680,9 +6414,6 @@
temperature = 251
},
/area/awaymission/moonoutpost19/arrivals)
-"nv" = (
-/turf/closed/wall/mineral/titanium,
-/area/awaymission/moonoutpost19/arrivals)
"nw" = (
/obj/machinery/washing_machine,
/turf/open/floor/plasteel/barber{
@@ -6851,7 +6582,7 @@
},
/area/awaymission/moonoutpost19/arrivals)
"nK" = (
-/obj/structure/sign/vacuum{
+/obj/structure/sign/warning/vacuum{
desc = "A warning sign which reads 'HOSTILE ATMOSPHERE AHEAD'";
name = "\improper HOSTILE ATMOSPHERE AHEAD";
pixel_x = -32
@@ -7052,269 +6783,6 @@
heat_capacity = 1e+006
},
/area/awaymission/moonoutpost19/main)
-"of" = (
-/obj/item/shard,
-/turf/open/floor/mineral/titanium,
-/area/awaymission/moonoutpost19/main)
-"og" = (
-/obj/item/shard{
- icon_state = "medium"
- },
-/turf/open/floor/mineral/titanium,
-/area/awaymission/moonoutpost19/main)
-"oh" = (
-/obj/item/shard{
- icon_state = "small"
- },
-/turf/open/floor/mineral/titanium,
-/area/awaymission/moonoutpost19/main)
-"oi" = (
-/turf/open/floor/mineral/titanium,
-/area/awaymission/moonoutpost19/main)
-"oj" = (
-/obj/structure/grille/broken,
-/turf/open/floor/mineral/titanium,
-/area/awaymission/moonoutpost19/main)
-"ok" = (
-/obj/item/stack/rods,
-/turf/open/floor/mineral/titanium,
-/area/awaymission/moonoutpost19/main)
-"ol" = (
-/obj/item/stack/cable_coil,
-/turf/open/floor/mineral/titanium,
-/area/awaymission/moonoutpost19/main)
-"om" = (
-/obj/item/stack/cable_coil{
- amount = 5
- },
-/turf/open/floor/mineral/titanium,
-/area/awaymission/moonoutpost19/main)
-"on" = (
-/obj/item/stack/cable_coil{
- amount = 2;
- icon_state = "coil_red2";
- item_state = "coil_red2"
- },
-/turf/open/floor/mineral/titanium,
-/area/awaymission/moonoutpost19/main)
-"oo" = (
-/obj/item/stack/cable_coil{
- amount = 1;
- icon_state = "coil_red1";
- item_state = "coil_red1"
- },
-/turf/open/floor/mineral/titanium,
-/area/awaymission/moonoutpost19/main)
-"op" = (
-/turf/open/floor/plasteel{
- heat_capacity = 1e+006
- },
-/area/awaymission/moonoutpost19/main)
-"oq" = (
-/turf/open/floor/plasteel/floorgrime{
- dir = 8;
- heat_capacity = 1e+006
- },
-/area/awaymission/moonoutpost19/main)
-"or" = (
-/turf/open/floor/plasteel{
- dir = 8;
- heat_capacity = 1e+006;
- icon_state = "damaged1"
- },
-/area/awaymission/moonoutpost19/main)
-"os" = (
-/turf/open/floor/plasteel{
- dir = 8;
- heat_capacity = 1e+006;
- icon_state = "damaged2"
- },
-/area/awaymission/moonoutpost19/main)
-"ot" = (
-/turf/open/floor/plasteel{
- dir = 8;
- heat_capacity = 1e+006;
- icon_state = "damaged3"
- },
-/area/awaymission/moonoutpost19/main)
-"ou" = (
-/turf/open/floor/plasteel{
- dir = 8;
- heat_capacity = 1e+006;
- icon_state = "damaged4"
- },
-/area/awaymission/moonoutpost19/main)
-"ov" = (
-/turf/open/floor/plasteel{
- dir = 8;
- heat_capacity = 1e+006;
- icon_state = "damaged5"
- },
-/area/awaymission/moonoutpost19/main)
-"ow" = (
-/turf/open/floor/plasteel{
- dir = 8;
- heat_capacity = 1e+006;
- icon_state = "floorscorched1"
- },
-/area/awaymission/moonoutpost19/main)
-"ox" = (
-/turf/open/floor/plasteel{
- dir = 8;
- heat_capacity = 1e+006;
- icon_state = "floorscorched2"
- },
-/area/awaymission/moonoutpost19/main)
-"oy" = (
-/turf/open/floor/mineral/titanium/blue,
-/area/awaymission/moonoutpost19/main)
-"oz" = (
-/turf/open/floor/plating{
- heat_capacity = 1e+006
- },
-/area/awaymission/moonoutpost19/main)
-"oA" = (
-/turf/open/floor/plating{
- heat_capacity = 1e+006;
- icon_state = "platingdmg1"
- },
-/area/awaymission/moonoutpost19/main)
-"oB" = (
-/turf/open/floor/plating{
- heat_capacity = 1e+006;
- icon_state = "platingdmg2"
- },
-/area/awaymission/moonoutpost19/main)
-"oC" = (
-/turf/open/floor/plating{
- heat_capacity = 1e+006;
- icon_state = "platingdmg3"
- },
-/area/awaymission/moonoutpost19/main)
-"oD" = (
-/turf/open/floor/plating{
- heat_capacity = 1e+006;
- icon_state = "panelscorched"
- },
-/area/awaymission/moonoutpost19/main)
-"oE" = (
-/turf/open/floor/plasteel{
- initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251";
- heat_capacity = 1e+006
- },
-/area/awaymission/moonoutpost19/main)
-"oF" = (
-/turf/open/floor/plasteel/floorgrime{
- initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251";
- dir = 8;
- heat_capacity = 1e+006;
- temperature = 251
- },
-/area/awaymission/moonoutpost19/main)
-"oG" = (
-/turf/open/floor/plasteel{
- initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251";
- dir = 8;
- heat_capacity = 1e+006;
- icon_state = "damaged1";
- temperature = 251
- },
-/area/awaymission/moonoutpost19/main)
-"oH" = (
-/turf/open/floor/plasteel{
- initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251";
- dir = 8;
- heat_capacity = 1e+006;
- icon_state = "damaged2";
- temperature = 251
- },
-/area/awaymission/moonoutpost19/main)
-"oI" = (
-/turf/open/floor/plasteel{
- initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251";
- dir = 8;
- heat_capacity = 1e+006;
- icon_state = "damaged3";
- temperature = 251
- },
-/area/awaymission/moonoutpost19/main)
-"oJ" = (
-/turf/open/floor/plasteel{
- initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251";
- dir = 8;
- heat_capacity = 1e+006;
- icon_state = "damaged4";
- temperature = 251
- },
-/area/awaymission/moonoutpost19/main)
-"oK" = (
-/turf/open/floor/plasteel{
- initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251";
- dir = 8;
- heat_capacity = 1e+006;
- icon_state = "damaged5";
- temperature = 251
- },
-/area/awaymission/moonoutpost19/main)
-"oL" = (
-/turf/open/floor/plasteel{
- initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251";
- dir = 8;
- heat_capacity = 1e+006;
- icon_state = "floorscorched1";
- temperature = 251
- },
-/area/awaymission/moonoutpost19/main)
-"oM" = (
-/turf/open/floor/plasteel{
- initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251";
- dir = 8;
- heat_capacity = 1e+006;
- icon_state = "floorscorched2";
- temperature = 251
- },
-/area/awaymission/moonoutpost19/main)
-"oN" = (
-/turf/open/floor/mineral/titanium/yellow,
-/area/awaymission/moonoutpost19/main)
-"oO" = (
-/turf/open/floor/plating{
- initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251";
- heat_capacity = 1e+006
- },
-/area/awaymission/moonoutpost19/main)
-"oP" = (
-/turf/open/floor/plating{
- initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251";
- heat_capacity = 1e+006;
- icon_state = "platingdmg1";
- temperature = 251
- },
-/area/awaymission/moonoutpost19/main)
-"oQ" = (
-/turf/open/floor/plating{
- initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251";
- heat_capacity = 1e+006;
- icon_state = "platingdmg2";
- temperature = 251
- },
-/area/awaymission/moonoutpost19/main)
-"oR" = (
-/turf/open/floor/plating{
- initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251";
- heat_capacity = 1e+006;
- icon_state = "platingdmg3";
- temperature = 251
- },
-/area/awaymission/moonoutpost19/main)
-"oS" = (
-/turf/open/floor/plating{
- initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251";
- heat_capacity = 1e+006;
- icon_state = "panelscorched";
- temperature = 251
- },
-/area/awaymission/moonoutpost19/main)
"oT" = (
/obj/structure/closet/secure_closet{
icon_state = "science";
@@ -32684,11 +32152,11 @@ ba
ba
ba
lc
-lV
+lc
mp
mG
mV
-lV
+lc
lc
ba
ba
diff --git a/_maps/RandomZLevels/research.dmm b/_maps/RandomZLevels/research.dmm
index 6c9a86a7cc..adf8fb7f87 100644
--- a/_maps/RandomZLevels/research.dmm
+++ b/_maps/RandomZLevels/research.dmm
@@ -551,7 +551,7 @@
},
/area/awaymission/research/interior/engineering)
"bP" = (
-/obj/structure/sign/vacuum{
+/obj/structure/sign/warning/vacuum{
pixel_x = 32
},
/turf/open/floor/plating,
@@ -589,7 +589,7 @@
/turf/open/floor/plasteel/dark,
/area/awaymission/research/interior/gateway)
"bV" = (
-/obj/structure/sign/nosmoking_1{
+/obj/structure/sign/warning/nosmoking/circle{
pixel_x = -32
},
/turf/open/floor/plasteel/whiteyellow/side{
@@ -731,12 +731,6 @@
/obj/machinery/light/small,
/turf/open/floor/plating,
/area/awaymission/research/interior/maint)
-"co" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/awaymission/research/interior/maint)
"cp" = (
/turf/closed/wall/r_wall,
/area/awaymission/research/interior)
@@ -1763,7 +1757,7 @@
/turf/open/floor/plasteel/whitered/side,
/area/awaymission/research/interior/security)
"fv" = (
-/obj/structure/sign/goldenplaque{
+/obj/structure/sign/plaques/golden{
pixel_x = 32
},
/turf/open/floor/plasteel/whitered/corner{
@@ -2007,12 +2001,6 @@
},
/turf/open/floor/plasteel/dark,
/area/awaymission/research/interior/secure)
-"gi" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/dark,
-/area/awaymission/research/interior/secure)
"gj" = (
/obj/structure/cable{
icon_state = "4-8"
@@ -2147,7 +2135,7 @@
/turf/open/floor/plasteel/whitepurple,
/area/awaymission/research/interior)
"gB" = (
-/obj/structure/sign/science,
+/obj/structure/sign/departments/science,
/turf/closed/wall/r_wall,
/area/awaymission/research/interior)
"gC" = (
@@ -2284,12 +2272,6 @@
dir = 1
},
/area/awaymission/research/interior)
-"gW" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/whitepurple,
-/area/awaymission/research/interior)
"gX" = (
/obj/effect/decal/cleanable/blood/drip,
/turf/open/floor/plasteel/whitepurple/side{
@@ -2436,12 +2418,6 @@
dir = 10
},
/area/awaymission/research/interior/cryo)
-"hw" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plating,
-/area/awaymission/research/interior/maint)
"hx" = (
/obj/structure/cable{
icon_state = "2-4"
@@ -2671,12 +2647,6 @@
},
/turf/open/floor/plasteel/purple,
/area/awaymission/research/interior/genetics)
-"ic" = (
-/obj/machinery/light{
- dir = 4
- },
-/turf/open/floor/plasteel/purple,
-/area/awaymission/research/interior/genetics)
"id" = (
/turf/closed/wall,
/area/awaymission/research/interior/maint)
@@ -3235,15 +3205,9 @@
/turf/open/floor/plasteel/whiteblue,
/area/awaymission/research/interior)
"jK" = (
-/obj/structure/sign/bluecross,
+/obj/structure/sign/departments/medbay,
/turf/closed/wall/r_wall,
/area/awaymission/research/interior)
-"jL" = (
-/obj/machinery/light{
- dir = 4
- },
-/turf/open/floor/plasteel/whiteblue,
-/area/awaymission/research/interior)
"jM" = (
/obj/machinery/light{
dir = 8
@@ -3531,43 +3495,6 @@
dir = 4
},
/area/awaymission/research/interior/dorm)
-"kG" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/door/airlock/maintenance_hatch{
- req_access_txt = "12"
- },
-/turf/open/floor/plating,
-/area/awaymission/research/interior/maint)
-"kH" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/whitegreen/side{
- dir = 4
- },
-/area/awaymission/research/interior)
-"kI" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/whitegreen,
-/area/awaymission/research/interior)
-"kJ" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/whitegreen/side{
- dir = 8
- },
-/area/awaymission/research/interior)
-"kK" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plating,
-/area/awaymission/research/interior/maint)
"kL" = (
/turf/open/floor/plating,
/area/awaymission/research/interior/medbay)
@@ -3585,15 +3512,6 @@
/obj/structure/chair/comfy/beige,
/turf/open/floor/plasteel/whiteblue/side,
/area/awaymission/research/interior/medbay)
-"kP" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/light/small{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/awaymission/research/interior/maint)
"kQ" = (
/obj/structure/chair/stool,
/turf/open/floor/plasteel/yellowsiding{
@@ -4037,13 +3955,13 @@
/area/awaymission/research/exterior)
"mg" = (
/obj/structure/closet/emcloset,
-/obj/structure/sign/vacuum{
+/obj/structure/sign/warning/vacuum{
pixel_y = 32
},
/turf/open/floor/plating,
/area/awaymission/research/interior/escapepods)
"mh" = (
-/obj/structure/sign/pods{
+/obj/structure/sign/warning/pods{
pixel_x = -32
},
/turf/open/floor/plasteel/whitegreen/corner,
@@ -4139,12 +4057,6 @@
"my" = (
/turf/closed/wall/mineral/titanium/interior,
/area/awaymission/research/exterior)
-"mz" = (
-/obj/structure/shuttle/engine/propulsion/burst{
- dir = 8
- },
-/turf/closed/wall/mineral/titanium,
-/area/awaymission/research/exterior)
"mA" = (
/obj/structure/chair{
dir = 8
@@ -4198,7 +4110,7 @@
},
/area/awaymission/research/interior/escapepods)
"mI" = (
-/obj/structure/sign/pods{
+/obj/structure/sign/warning/pods{
pixel_x = -32
},
/turf/open/floor/plasteel/whitegreen/side{
@@ -4263,14 +4175,6 @@
},
/turf/open/floor/plasteel/whitegreen/side,
/area/awaymission/research/interior/escapepods)
-"mR" = (
-/obj/machinery/light{
- dir = 8
- },
-/turf/open/floor/plasteel/whitegreen/side{
- dir = 4
- },
-/area/awaymission/research/interior/escapepods)
"mS" = (
/obj/machinery/door/airlock/external{
name = "Escape Pod Three";
@@ -4284,7 +4188,7 @@
},
/area/awaymission/research/interior/escapepods)
"mU" = (
-/obj/structure/sign/vacuum{
+/obj/structure/sign/warning/vacuum{
pixel_y = -32
},
/obj/machinery/light,
@@ -4299,7 +4203,7 @@
},
/area/awaymission/research/interior/escapepods)
"mW" = (
-/obj/structure/sign/vacuum{
+/obj/structure/sign/warning/vacuum{
pixel_y = -32
},
/turf/open/floor/plasteel/whitegreen/side{
@@ -4347,9 +4251,6 @@
"nf" = (
/turf/closed/wall/mineral/plastitanium/nodiagonal,
/area/awaymission/research/interior/engineering)
-"ng" = (
-/turf/closed/wall/mineral/plastitanium/nodiagonal,
-/area/awaymission/research/interior/engineering)
(1,1,1) = {"
aa
@@ -42492,7 +42393,7 @@ aq
ay
an
aL
-ng
+nf
bf
bs
bK
diff --git a/_maps/RandomZLevels/snowdin.dmm b/_maps/RandomZLevels/snowdin.dmm
index 2df265cda6..2810199934 100644
--- a/_maps/RandomZLevels/snowdin.dmm
+++ b/_maps/RandomZLevels/snowdin.dmm
@@ -944,11 +944,6 @@
temperature = 140
},
/area/awaymission/snowdin/post)
-"dg" = (
-/turf/open/floor/plating{
- temperature = 140
- },
-/area/awaymission/snowdin/post)
"dh" = (
/obj/structure/table,
/obj/item/storage/toolbox/emergency,
@@ -1133,14 +1128,6 @@
temperature = 140
},
/area/awaymission/snowdin/post)
-"dI" = (
-/obj/machinery/light/small{
- dir = 8
- },
-/turf/open/floor/plating{
- temperature = 140
- },
-/area/awaymission/snowdin/post)
"dJ" = (
/turf/open/floor/carpet,
/area/awaymission/snowdin/post)
@@ -1429,9 +1416,6 @@
/obj/effect/spawner/lootdrop/snowdin/dungeonmisc,
/turf/open/floor/plating/snowed/colder,
/area/awaymission/snowdin/dungeon1)
-"eC" = (
-/turf/open/floor/plating/snowed,
-/area/awaymission/snowdin/post)
"eD" = (
/turf/closed/wall/ice,
/area/awaymission/snowdin/dungeon1)
@@ -1965,9 +1949,6 @@
temperature = 140
},
/area/awaymission/snowdin/cave)
-"gr" = (
-/turf/open/floor/plating/snowed,
-/area/awaymission/snowdin/post)
"gs" = (
/obj/structure/girder,
/turf/open/floor/plating{
@@ -2102,9 +2083,6 @@
/obj/structure/reagent_dispensers/watertank,
/turf/open/floor/plating,
/area/awaymission/snowdin/post)
-"gN" = (
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post)
"gO" = (
/obj/structure/closet/crate,
/obj/effect/spawner/lootdrop/snowdin/dungeonlite,
@@ -2748,7 +2726,7 @@
/turf/open/floor/plasteel/whiteblue,
/area/awaymission/snowdin/sekret)
"iW" = (
-/obj/structure/sign/bluecross{
+/obj/structure/sign/departments/medbay{
pixel_x = -32
},
/turf/open/floor/plasteel{
@@ -2892,9 +2870,6 @@
wet = 0
},
/area/awaymission/snowdin/sekret)
-"jw" = (
-/turf/open/floor/plating,
-/area/awaymission/snowdin)
"jx" = (
/obj/effect/decal/cleanable/blood,
/obj/effect/gibspawner/human,
@@ -3818,7 +3793,7 @@
},
/area/awaymission/snowdin/sekret)
"ms" = (
-/obj/structure/sign/securearea{
+/obj/structure/sign/warning/securearea{
desc = "A warning sign which reads 'WEAPONS HOT'.";
name = "WEAPONS HOT";
pixel_y = 32
@@ -4194,7 +4169,7 @@
},
/area/awaymission/snowdin/sekret)
"nu" = (
-/obj/structure/sign/securearea{
+/obj/structure/sign/warning/securearea{
desc = "A warning sign which reads 'WEAPONS HOT'.";
name = "WEAPONS HOT";
pixel_y = -32
@@ -11276,8 +11251,8 @@ ac
ac
ac
iK
-jw
-jw
+cQ
+cQ
iK
ac
ac
@@ -11533,8 +11508,8 @@ ac
ac
ac
iK
-jw
-jw
+cQ
+cQ
iK
ac
ac
@@ -14604,8 +14579,8 @@ dz
dz
dz
jk
-jw
-jw
+cQ
+cQ
jk
dp
ac
@@ -14861,8 +14836,8 @@ dz
dz
dz
jk
-jw
-jw
+cQ
+cQ
jk
dp
dp
@@ -36949,9 +36924,9 @@ ao
ao
cZ
df
-gN
-gN
-gN
+ao
+ao
+ao
df
cZ
ig
@@ -37205,11 +37180,11 @@ cZ
hM
fu
cZ
-gN
-gN
+ao
+ao
fD
-gN
-gN
+ao
+ao
cZ
ig
ig
@@ -37463,10 +37438,10 @@ cZ
cZ
cZ
df
-gN
+ao
fD
fD
-gN
+ao
cZ
cZ
cZ
@@ -42971,7 +42946,7 @@ cN
cZ
dd
dj
-dg
+de
df
de
dr
@@ -43227,7 +43202,7 @@ cN
cN
cZ
df
-dg
+de
df
de
de
@@ -43487,7 +43462,7 @@ de
de
de
de
-dg
+de
df
ad
df
@@ -43495,7 +43470,7 @@ de
dE
dG
de
-dI
+dd
de
de
de
@@ -43751,11 +43726,11 @@ df
dB
de
de
-dg
de
de
de
-dg
+de
+de
de
de
de
@@ -43997,7 +43972,7 @@ cN
cN
cN
cZ
-dg
+de
df
ad
ad
@@ -44273,7 +44248,7 @@ cZ
cZ
cZ
dY
-dg
+de
de
de
de
@@ -44517,7 +44492,7 @@ de
de
df
ds
-dg
+de
df
dC
dC
@@ -44771,11 +44746,11 @@ cY
ad
cY
de
-dg
+de
df
ad
ad
-dg
+de
ad
ad
ad
@@ -45030,7 +45005,7 @@ cY
ad
df
df
-dg
+de
dv
dv
ad
@@ -45286,7 +45261,7 @@ cN
ad
df
df
-dg
+de
du
dw
dw
diff --git a/_maps/RandomZLevels/spacebattle.dmm b/_maps/RandomZLevels/spacebattle.dmm
index d1b199e8a3..4dff027d92 100644
--- a/_maps/RandomZLevels/spacebattle.dmm
+++ b/_maps/RandomZLevels/spacebattle.dmm
@@ -226,7 +226,7 @@
"bc" = (
/obj/machinery/porta_turret{
dir = 8;
- emagged = 1;
+ set_obj_flags = "EMAGGED";
installation = /obj/item/gun/energy/lasercannon
},
/turf/open/floor/plating,
@@ -322,7 +322,7 @@
"by" = (
/obj/machinery/porta_turret{
dir = 8;
- emagged = 1;
+ set_obj_flags = "EMAGGED";
installation = /obj/item/gun/energy/lasercannon
},
/turf/open/floor/plating,
@@ -344,7 +344,7 @@
"bG" = (
/obj/machinery/porta_turret{
dir = 8;
- emagged = 1;
+ set_obj_flags = "EMAGGED";
installation = /obj/item/gun/energy/lasercannon
},
/turf/open/floor/plating,
@@ -917,7 +917,7 @@
"dZ" = (
/obj/machinery/porta_turret{
dir = 8;
- emagged = 1;
+ set_obj_flags = "EMAGGED";
installation = /obj/item/gun/energy/lasercannon
},
/turf/open/floor/engine,
@@ -1718,7 +1718,7 @@
"gP" = (
/obj/machinery/porta_turret{
dir = 8;
- emagged = 1;
+ set_obj_flags = "EMAGGED";
installation = /obj/item/gun/energy/lasercannon
},
/turf/open/floor/plating/airless,
@@ -2613,7 +2613,7 @@
"kq" = (
/obj/machinery/porta_turret{
dir = 8;
- emagged = 1;
+ set_obj_flags = "EMAGGED";
installation = /obj/item/gun/energy/lasercannon
},
/turf/open/floor/engine/vacuum,
diff --git a/_maps/RandomZLevels/undergroundoutpost45.dmm b/_maps/RandomZLevels/undergroundoutpost45.dmm
index d7b5f88402..665981815b 100644
--- a/_maps/RandomZLevels/undergroundoutpost45.dmm
+++ b/_maps/RandomZLevels/undergroundoutpost45.dmm
@@ -25,12 +25,6 @@
"ag" = (
/turf/closed/wall/mineral/titanium,
/area/awaymission/undergroundoutpost45/central)
-"ah" = (
-/turf/closed/wall/mineral/titanium,
-/area/awaymission/undergroundoutpost45/central)
-"ai" = (
-/turf/closed/wall/mineral/titanium,
-/area/awaymission/undergroundoutpost45/central)
"aj" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel{
@@ -146,12 +140,6 @@
heat_capacity = 1e+006
},
/area/awaymission/undergroundoutpost45/central)
-"av" = (
-/turf/closed/wall/mineral/titanium,
-/area/awaymission/undergroundoutpost45/central)
-"aw" = (
-/turf/closed/wall/mineral/titanium,
-/area/awaymission/undergroundoutpost45/central)
"ax" = (
/obj/effect/landmark/awaystart,
/turf/open/floor/plasteel{
@@ -168,7 +156,7 @@
},
/area/awaymission/undergroundoutpost45/central)
"az" = (
-/obj/structure/sign/vacuum{
+/obj/structure/sign/warning/vacuum{
desc = "A beacon used by a teleporter.";
icon = 'icons/obj/radio.dmi';
icon_state = "beacon";
@@ -180,9 +168,6 @@
heat_capacity = 1e+006
},
/area/awaymission/undergroundoutpost45/central)
-"aA" = (
-/turf/closed/wall/mineral/titanium,
-/area/awaymission/undergroundoutpost45/central)
"aB" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
/obj/effect/landmark/awaystart,
@@ -197,9 +182,6 @@
"aD" = (
/turf/closed/wall/rust,
/area/awaymission/undergroundoutpost45/central)
-"aE" = (
-/turf/closed/wall/mineral/titanium,
-/area/awaymission/undergroundoutpost45/central)
"aF" = (
/turf/open/floor/plasteel/floorgrime{
dir = 8;
@@ -1438,7 +1420,7 @@
"ds" = (
/obj/machinery/disposal/bin,
/obj/structure/disposalpipe/trunk,
-/obj/structure/sign/deathsposal{
+/obj/structure/sign/warning/deathsposal{
desc = "A warning sign which reads 'DISPOSAL: LEADS TO EXTERIOR'";
name = "\improper DISPOSAL: LEADS TO EXTERIOR";
pixel_y = 32
@@ -2201,11 +2183,7 @@
"eV" = (
/obj/structure/closet/emcloset,
/obj/item/clothing/mask/breath,
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
- icon_state = "space";
- layer = 4;
- name = "EXTERNAL AIRLOCK";
+/obj/structure/sign/warning/vacuum/external{
pixel_y = -32
},
/turf/open/floor/plating{
@@ -2721,7 +2699,7 @@
/obj/structure/disposalpipe/trunk{
dir = 1
},
-/obj/structure/sign/deathsposal{
+/obj/structure/sign/warning/deathsposal{
desc = "A warning sign which reads 'DISPOSAL: LEADS TO EXTERIOR'";
name = "\improper DISPOSAL: LEADS TO EXTERIOR";
pixel_y = -32
@@ -3815,7 +3793,7 @@
dir = 8
},
/obj/effect/decal/cleanable/dirt,
-/obj/structure/sign/nosmoking_2{
+/obj/structure/sign/warning/nosmoking{
pixel_x = 32
},
/turf/open/floor/plasteel/dark{
@@ -3845,7 +3823,7 @@
pixel_y = 3
},
/obj/item/stock_parts/scanning_module,
-/obj/structure/sign/nosmoking_2{
+/obj/structure/sign/warning/nosmoking{
pixel_x = -32
},
/obj/effect/turf_decal/stripes/line{
@@ -3994,7 +3972,7 @@
"iN" = (
/obj/structure/table,
/obj/item/storage/firstaid/regular,
-/obj/structure/sign/biohazard{
+/obj/structure/sign/warning/biohazard{
pixel_x = -32
},
/turf/open/floor/plasteel/floorgrime{
@@ -4155,7 +4133,7 @@
/obj/structure/disposalpipe/trunk{
dir = 4
},
-/obj/structure/sign/deathsposal{
+/obj/structure/sign/warning/deathsposal{
desc = "A warning sign which reads 'DISPOSAL: LEADS TO EXTERIOR'";
name = "\improper DISPOSAL: LEADS TO EXTERIOR";
pixel_y = -32
@@ -4893,7 +4871,7 @@
/obj/structure/table,
/obj/item/storage/belt/utility,
/obj/item/clothing/head/welding,
-/obj/structure/sign/biohazard{
+/obj/structure/sign/warning/biohazard{
pixel_y = 32
},
/obj/item/device/assembly/prox_sensor,
@@ -4906,7 +4884,7 @@
},
/area/awaymission/undergroundoutpost45/gateway)
"kz" = (
-/obj/structure/sign/securearea{
+/obj/structure/sign/warning/securearea{
pixel_y = 32
},
/turf/open/floor/plasteel/floorgrime{
@@ -4957,7 +4935,7 @@
/obj/machinery/light/small{
dir = 8
},
-/obj/structure/sign/securearea{
+/obj/structure/sign/warning/securearea{
pixel_x = -32
},
/turf/open/floor/plasteel/white{
@@ -5179,7 +5157,7 @@
pixel_y = 25
},
/obj/effect/decal/cleanable/dirt,
-/obj/structure/sign/nosmoking_2{
+/obj/structure/sign/warning/nosmoking{
pixel_x = -32
},
/obj/effect/turf_decal/stripes/line{
@@ -5215,7 +5193,7 @@
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 8
},
-/obj/structure/sign/science{
+/obj/structure/sign/departments/science{
pixel_x = -32
},
/turf/open/floor/plasteel/purple/corner{
@@ -5337,7 +5315,7 @@
pixel_y = -1
},
/obj/item/device/multitool,
-/obj/structure/sign/nosmoking_2{
+/obj/structure/sign/warning/nosmoking{
pixel_x = -32
},
/obj/effect/turf_decal/stripes/line{
@@ -5748,7 +5726,7 @@
/obj/structure/disposalpipe/trunk{
dir = 1
},
-/obj/structure/sign/deathsposal{
+/obj/structure/sign/warning/deathsposal{
desc = "A warning sign which reads 'DISPOSAL: LEADS TO EXTERIOR'";
name = "\improper DISPOSAL: LEADS TO EXTERIOR";
pixel_y = -32
@@ -5938,7 +5916,7 @@
"mm" = (
/obj/structure/closet/firecloset,
/obj/machinery/light/small,
-/obj/structure/sign/securearea{
+/obj/structure/sign/warning/securearea{
pixel_y = -32
},
/obj/effect/decal/cleanable/dirt,
@@ -5960,7 +5938,7 @@
/area/awaymission/undergroundoutpost45/research)
"mo" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/sign/securearea{
+/obj/structure/sign/warning/securearea{
pixel_x = -32
},
/turf/open/floor/plasteel/purple/corner{
@@ -7626,7 +7604,7 @@
/obj/structure/disposalpipe/trunk{
dir = 4
},
-/obj/structure/sign/deathsposal{
+/obj/structure/sign/warning/deathsposal{
desc = "A warning sign which reads 'DISPOSAL: LEADS TO EXTERIOR'";
name = "\improper DISPOSAL: LEADS TO EXTERIOR";
pixel_y = -32
@@ -8186,7 +8164,7 @@
/area/awaymission/undergroundoutpost45/research)
"qj" = (
/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/sign/securearea{
+/obj/structure/sign/warning/securearea{
desc = "A warning sign which reads 'SERVER ROOM'.";
name = "SERVER ROOM";
pixel_y = 32
@@ -8402,7 +8380,7 @@
/obj/machinery/computer/monitor{
name = "primary power monitoring console"
},
-/obj/structure/sign/nosmoking_2{
+/obj/structure/sign/warning/nosmoking{
pixel_x = -32
},
/turf/open/floor/plasteel/yellow/side{
@@ -8973,7 +8951,7 @@
/area/awaymission/undergroundoutpost45/research)
"rA" = (
/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/sign/securearea{
+/obj/structure/sign/warning/securearea{
desc = "A warning sign which reads 'SERVER ROOM'.";
name = "SERVER ROOM";
pixel_y = -32
@@ -9391,7 +9369,6 @@
},
/obj/machinery/door/poddoor/preopen{
id = "UO45_Engineering";
- layer = 2.9;
name = "engineering security door"
},
/turf/open/floor/plating{
@@ -9547,7 +9524,7 @@
/obj/structure/disposalpipe/trunk{
dir = 1
},
-/obj/structure/sign/deathsposal{
+/obj/structure/sign/warning/deathsposal{
desc = "A warning sign which reads 'DISPOSAL: LEADS TO EXTERIOR'";
name = "\improper DISPOSAL: LEADS TO EXTERIOR";
pixel_y = -32
@@ -9814,7 +9791,6 @@
},
/obj/machinery/door/poddoor/preopen{
id = "UO45_Engineering";
- layer = 2.9;
name = "engineering security door"
},
/turf/open/floor/plating{
@@ -10124,7 +10100,7 @@
/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
dir = 1
},
-/obj/structure/sign/securearea{
+/obj/structure/sign/warning/securearea{
pixel_y = -32
},
/turf/open/floor/plasteel/yellow/side{
@@ -10246,7 +10222,7 @@
name = "Unfiltered to Mix";
on = 1
},
-/obj/structure/sign/nosmoking_2{
+/obj/structure/sign/warning/nosmoking{
pixel_x = 32
},
/turf/open/floor/plasteel/floorgrime{
@@ -10820,11 +10796,7 @@
"uN" = (
/obj/structure/closet/emcloset,
/obj/item/clothing/mask/breath,
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
- icon_state = "space";
- layer = 4;
- name = "EXTERNAL AIRLOCK";
+/obj/structure/sign/warning/vacuum/external{
pixel_x = -32
},
/turf/open/floor/plating{
@@ -10942,7 +10914,7 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
-/obj/structure/sign/securearea{
+/obj/structure/sign/warning/securearea{
pixel_x = 32
},
/obj/effect/decal/cleanable/dirt,
@@ -10990,7 +10962,7 @@
/area/awaymission/undergroundoutpost45/engineering)
"vc" = (
/obj/machinery/door/firedoor,
-/obj/structure/sign/securearea{
+/obj/structure/sign/warning/securearea{
pixel_y = 32
},
/obj/machinery/door/poddoor/preopen{
@@ -11405,10 +11377,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'HIGH VOLTAGE'";
- icon_state = "shock";
- name = "HIGH VOLTAGE";
+/obj/structure/sign/warning/electricshock{
pixel_y = -32
},
/obj/machinery/vending/engivend{
@@ -11714,7 +11683,7 @@
/obj/structure/disposalpipe/trunk{
dir = 4
},
-/obj/structure/sign/deathsposal{
+/obj/structure/sign/warning/deathsposal{
desc = "A warning sign which reads 'DISPOSAL: LEADS TO EXTERIOR'";
name = "\improper DISPOSAL: LEADS TO EXTERIOR";
pixel_x = -32
@@ -12208,7 +12177,7 @@
dir = 2;
id = "UO45_mining"
},
-/obj/structure/sign/nosmoking_2{
+/obj/structure/sign/warning/nosmoking{
pixel_x = -32
},
/obj/effect/turf_decal/stripes/line{
@@ -12604,11 +12573,7 @@
/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";
+/obj/structure/sign/warning/vacuum/external{
pixel_x = 32
},
/obj/effect/decal/cleanable/dirt,
@@ -12745,16 +12710,6 @@
temperature = 363.9
},
/area/awaymission/undergroundoutpost45/caves)
-"ys" = (
-/obj/structure/alien/weeds,
-/obj/structure/bed/nest,
-/turf/open/floor/plating/asteroid{
- initial_gas_mix = "co2=173.4;n2=135.1;plasma=229.8;TEMP=351.9";
- heat_capacity = 1e+006;
- name = "Cave Floor";
- temperature = 363.9
- },
-/area/awaymission/undergroundoutpost45/caves)
"yt" = (
/obj/structure/alien/weeds,
/obj/structure/glowshroom/single,
@@ -12775,16 +12730,6 @@
temperature = 363.9
},
/area/awaymission/undergroundoutpost45/caves)
-"yv" = (
-/obj/structure/alien/weeds,
-/obj/effect/decal/cleanable/blood/gibs/core,
-/turf/open/floor/plating/asteroid{
- initial_gas_mix = "co2=173.4;n2=135.1;plasma=229.8;TEMP=351.9";
- heat_capacity = 1e+006;
- name = "Cave Floor";
- temperature = 363.9
- },
-/area/awaymission/undergroundoutpost45/caves)
"yw" = (
/obj/structure/alien/weeds,
/obj/effect/decal/cleanable/blood/splatter,
@@ -12795,24 +12740,6 @@
temperature = 363.9
},
/area/awaymission/undergroundoutpost45/caves)
-"yx" = (
-/obj/structure/alien/weeds,
-/turf/open/floor/plating/asteroid{
- initial_gas_mix = "co2=173.4;n2=135.1;plasma=229.8;TEMP=351.9";
- heat_capacity = 1e+006;
- name = "Cave Floor";
- temperature = 363.9
- },
-/area/awaymission/undergroundoutpost45/caves)
-"yy" = (
-/obj/structure/alien/weeds,
-/turf/open/floor/plating/asteroid{
- initial_gas_mix = "co2=173.4;n2=135.1;plasma=229.8;TEMP=351.9";
- heat_capacity = 1e+006;
- name = "Cave Floor";
- temperature = 363.9
- },
-/area/awaymission/undergroundoutpost45/caves)
"yz" = (
/obj/structure/alien/resin/membrane,
/turf/open/floor/plating/asteroid{
@@ -12862,37 +12789,6 @@
temperature = 363.9
},
/area/awaymission/undergroundoutpost45/caves)
-"yE" = (
-/obj/structure/alien/weeds,
-/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/plating/asteroid{
- initial_gas_mix = "co2=173.4;n2=135.1;plasma=229.8;TEMP=351.9";
- heat_capacity = 1e+006;
- name = "Cave Floor";
- temperature = 363.9
- },
-/area/awaymission/undergroundoutpost45/caves)
-"yF" = (
-/obj/structure/alien/weeds,
-/obj/effect/decal/cleanable/blood/gibs/down,
-/turf/open/floor/plating/asteroid{
- initial_gas_mix = "co2=173.4;n2=135.1;plasma=229.8;TEMP=351.9";
- heat_capacity = 1e+006;
- name = "Cave Floor";
- temperature = 363.9
- },
-/area/awaymission/undergroundoutpost45/caves)
-"yG" = (
-/obj/structure/alien/weeds,
-/obj/structure/bed/nest,
-/obj/effect/mob_spawn/human,
-/turf/open/floor/plating/asteroid{
- initial_gas_mix = "co2=173.4;n2=135.1;plasma=229.8;TEMP=351.9";
- heat_capacity = 1e+006;
- name = "Cave Floor";
- temperature = 363.9
- },
-/area/awaymission/undergroundoutpost45/caves)
"yH" = (
/obj/structure/alien/weeds,
/obj/effect/decal/cleanable/blood/gibs/down,
@@ -12904,161 +12800,6 @@
temperature = 363.9
},
/area/awaymission/undergroundoutpost45/caves)
-"yI" = (
-/obj/structure/alien/weeds,
-/obj/effect/mob_spawn/human,
-/turf/open/floor/plating/asteroid{
- initial_gas_mix = "co2=173.4;n2=135.1;plasma=229.8;TEMP=351.9";
- heat_capacity = 1e+006;
- name = "Cave Floor";
- temperature = 363.9
- },
-/area/awaymission/undergroundoutpost45/caves)
-"yJ" = (
-/obj/item/shard,
-/turf/open/floor/mineral/titanium/blue,
-/area/awaymission/undergroundoutpost45/caves)
-"yK" = (
-/obj/item/shard{
- icon_state = "medium"
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/awaymission/undergroundoutpost45/caves)
-"yL" = (
-/obj/item/shard{
- icon_state = "small"
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/awaymission/undergroundoutpost45/caves)
-"yM" = (
-/turf/open/floor/mineral/titanium/blue,
-/area/awaymission/undergroundoutpost45/caves)
-"yN" = (
-/obj/structure/grille/broken,
-/turf/open/floor/mineral/titanium/blue,
-/area/awaymission/undergroundoutpost45/caves)
-"yO" = (
-/obj/item/stack/rods,
-/turf/open/floor/mineral/titanium/blue,
-/area/awaymission/undergroundoutpost45/caves)
-"yP" = (
-/obj/item/stack/cable_coil,
-/turf/open/floor/mineral/titanium/blue,
-/area/awaymission/undergroundoutpost45/caves)
-"yQ" = (
-/obj/item/stack/cable_coil{
- amount = 5
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/awaymission/undergroundoutpost45/caves)
-"yR" = (
-/obj/item/stack/cable_coil{
- amount = 2;
- icon_state = "coil_red2";
- item_state = "coil_red2"
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/awaymission/undergroundoutpost45/caves)
-"yS" = (
-/obj/item/stack/cable_coil{
- amount = 1;
- icon_state = "coil_red1";
- item_state = "coil_red1"
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/awaymission/undergroundoutpost45/caves)
-"yT" = (
-/turf/open/floor/plasteel{
- heat_capacity = 1e+006
- },
-/area/awaymission/undergroundoutpost45/caves)
-"yU" = (
-/turf/open/floor/plasteel/floorgrime{
- dir = 8;
- heat_capacity = 1e+006
- },
-/area/awaymission/undergroundoutpost45/caves)
-"yV" = (
-/turf/open/floor/plasteel{
- dir = 8;
- heat_capacity = 1e+006;
- icon_state = "damaged1"
- },
-/area/awaymission/undergroundoutpost45/caves)
-"yW" = (
-/turf/open/floor/plasteel{
- dir = 8;
- heat_capacity = 1e+006;
- icon_state = "damaged2"
- },
-/area/awaymission/undergroundoutpost45/caves)
-"yX" = (
-/turf/open/floor/plasteel{
- dir = 8;
- heat_capacity = 1e+006;
- icon_state = "damaged3"
- },
-/area/awaymission/undergroundoutpost45/caves)
-"yY" = (
-/turf/open/floor/plasteel{
- dir = 8;
- heat_capacity = 1e+006;
- icon_state = "damaged4"
- },
-/area/awaymission/undergroundoutpost45/caves)
-"yZ" = (
-/turf/open/floor/plasteel{
- dir = 8;
- heat_capacity = 1e+006;
- icon_state = "damaged5"
- },
-/area/awaymission/undergroundoutpost45/caves)
-"za" = (
-/turf/open/floor/plasteel{
- dir = 8;
- heat_capacity = 1e+006;
- icon_state = "floorscorched1"
- },
-/area/awaymission/undergroundoutpost45/caves)
-"zb" = (
-/turf/open/floor/plasteel{
- dir = 8;
- heat_capacity = 1e+006;
- icon_state = "floorscorched2"
- },
-/area/awaymission/undergroundoutpost45/caves)
-"zc" = (
-/turf/open/floor/plasteel/shuttle,
-/area/awaymission/undergroundoutpost45/caves)
-"zd" = (
-/turf/open/floor/plating{
- heat_capacity = 1e+006
- },
-/area/awaymission/undergroundoutpost45/caves)
-"ze" = (
-/turf/open/floor/plating{
- heat_capacity = 1e+006;
- icon_state = "platingdmg1"
- },
-/area/awaymission/undergroundoutpost45/caves)
-"zf" = (
-/turf/open/floor/plating{
- heat_capacity = 1e+006;
- icon_state = "platingdmg2"
- },
-/area/awaymission/undergroundoutpost45/caves)
-"zg" = (
-/turf/open/floor/plating{
- heat_capacity = 1e+006;
- icon_state = "platingdmg3"
- },
-/area/awaymission/undergroundoutpost45/caves)
-"zh" = (
-/turf/open/floor/plating{
- heat_capacity = 1e+006;
- icon_state = "panelscorched"
- },
-/area/awaymission/undergroundoutpost45/caves)
"zi" = (
/obj/effect/mapping_helpers/planet_z,
/turf/open/space,
diff --git a/_maps/RandomZLevels/wildwest.dmm b/_maps/RandomZLevels/wildwest.dmm
index e24d9dcb85..cdc243eb85 100644
--- a/_maps/RandomZLevels/wildwest.dmm
+++ b/_maps/RandomZLevels/wildwest.dmm
@@ -31,13 +31,6 @@
icon_state = "cult"
},
/area/awaymission/wildwest/vault)
-"ai" = (
-/turf/closed/indestructible{
- desc = "The patterns engraved on the wall seem to shift as you try to focus on them. You feel sick.";
- icon = 'icons/turf/walls/cult_wall.dmi';
- icon_state = "cult"
- },
-/area/awaymission/wildwest/vault)
"aj" = (
/turf/open/floor/plating{
icon_state = "cultdamage3"
@@ -561,9 +554,6 @@
/obj/machinery/door/window,
/turf/open/floor/wood,
/area/awaymission/wildwest/mines)
-"cc" = (
-/turf/closed/wall/mineral/sandstone,
-/area/awaymission/wildwest/mines)
"cd" = (
/obj/effect/mob_spawn/human/cook{
mob_name = "Chef"
@@ -933,9 +923,6 @@
},
/turf/open/floor/carpet,
/area/awaymission/wildwest/mines)
-"dl" = (
-/turf/closed/wall/mineral/sandstone,
-/area/awaymission/wildwest/mines)
"dm" = (
/obj/structure/mineral_door/wood{
icon_state = "wood"
@@ -1405,7 +1392,7 @@
},
/area/awaymission/wildwest/gov)
"eJ" = (
-/obj/structure/sign/vacuum,
+/obj/structure/sign/warning/vacuum,
/turf/closed/wall/r_wall,
/area/awaymission/wildwest/refine)
"eK" = (
@@ -2096,22 +2083,10 @@
"gJ" = (
/turf/closed/wall/mineral/titanium,
/area/awaymission/wildwest/refine)
-"gK" = (
-/turf/closed/wall/mineral/titanium,
-/area/awaymission/wildwest/refine)
"gL" = (
/obj/machinery/door/unpowered/shuttle,
/turf/open/floor/mineral/titanium/yellow,
/area/awaymission/wildwest/refine)
-"gM" = (
-/turf/closed/wall/mineral/titanium,
-/area/awaymission/wildwest/refine)
-"gN" = (
-/turf/closed/wall/mineral/titanium,
-/area/awaymission/wildwest/refine)
-"gO" = (
-/turf/closed/wall/mineral/titanium,
-/area/awaymission/wildwest/refine)
"gP" = (
/obj/structure/chair,
/turf/open/floor/mineral/titanium/yellow,
@@ -2119,18 +2094,9 @@
"gQ" = (
/turf/open/floor/mineral/titanium/yellow,
/area/awaymission/wildwest/refine)
-"gR" = (
-/turf/closed/wall/mineral/titanium,
-/area/awaymission/wildwest/refine)
"gS" = (
/turf/closed/wall/mineral/titanium/nodiagonal,
/area/awaymission/wildwest/refine)
-"gT" = (
-/turf/closed/wall/mineral/titanium,
-/area/awaymission/wildwest/refine)
-"gU" = (
-/turf/closed/wall/mineral/titanium,
-/area/awaymission/wildwest/refine)
"gV" = (
/obj/effect/landmark/awaystart,
/turf/open/floor/plating/ironsand{
@@ -22574,7 +22540,7 @@ ab
ah
ac
ah
-ai
+ah
ac
ac
ac
diff --git a/_maps/_basemap.dm b/_maps/_basemap.dm
index f522d569c1..e51e6d90ef 100644
--- a/_maps/_basemap.dm
+++ b/_maps/_basemap.dm
@@ -6,17 +6,17 @@
#ifndef LOWMEMORYMODE
#include "map_files\generic\Space.dmm"
- #include "map_files\generic\SpaceDock.dmm"
+ #include "map_files\generic\Space2.dmm"
#include "map_files\Mining\Lavaland.dmm"
#include "map_files\generic\City_of_Cogs.dmm"
#ifdef ALL_MAPS
#include "map_files\debug\runtimestation.dmm"
- #include "cit_map_files\Deltastation\DeltaStation2.dmm"
- #include "cit_map_files\MetaStation\MetaStation.dmm"
- #include "cit_map_files\OmegaStation\OmegaStation.dmm"
- #include "cit_map_files\PubbyStation\PubbyStation.dmm"
- #include "cit_map_files\BoxStation\BoxStation.dmm"
+ #include "map_files\Deltastation\DeltaStation2.dmm"
+ #include "map_files\MetaStation\MetaStation.dmm"
+ #include "map_files\OmegaStation\OmegaStation.dmm"
+ #include "map_files\PubbyStation\PubbyStation.dmm"
+ #include "map_files\BoxStation\BoxStation.dmm"
#ifdef TRAVISBUILDING
#include "templates.dm"
diff --git a/_maps/basemap.dm b/_maps/basemap.dm
deleted file mode 100644
index 47d760f17d..0000000000
--- a/_maps/basemap.dm
+++ /dev/null
@@ -1,19 +0,0 @@
-#include "map_files\generic\CentCom.dmm"
-#include "map_files\generic\SpaceStation.dmm"
-#include "map_files\generic\Space.dmm"
-#include "map_files\generic\SpaceDock.dmm"
-#include "map_files\Mining\Lavaland.dmm"
-#include "map_files\generic\City_of_Cogs.dmm"
-
-#ifdef ALL_MAPS
-#include "map_files\debug\runtimestation.dmm"
-#include "cit_map_files\Deltastation\DeltaStation2.dmm"
-#include "cit_map_files\MetaStation\MetaStation.dmm"
-#include "cit_map_files\OmegaStation\OmegaStation.dmm"
-#include "cit_map_files\PubbyStation\PubbyStation.dmm"
-#include "cit_map_files\BoxStation\BoxStation.dmm"
-
-#ifdef TRAVISBUILDING
-#include "templates.dm"
-#endif
-#endif
\ No newline at end of file
diff --git a/_maps/birdstation.dm b/_maps/birdstation.dm
deleted file mode 100644
index 326a5217bc..0000000000
--- a/_maps/birdstation.dm
+++ /dev/null
@@ -1,44 +0,0 @@
-/*
-Birdstation by Tokiko1
-
-A small map intended for lowpop(40 players and less).
-
-*/
-
-
-#if !defined(MAP_FILE)
-
- #define TITLESCREEN "title" //Add an image in misc/fullscreen.dmi, and set this define to the icon_state, to set a custom titlescreen for your map
-
- #define MINETYPE "lavaland"
-
- #include "map_files\BirdStation\BirdStation.dmm"
-#ifndef TRAVIS_MASS_MAP_BUILD
- #include "map_files\generic\z2.dmm"
- #include "map_files\generic\z3.dmm"
- #include "map_files\generic\z4.dmm"
- #include "map_files\generic\lavaland.dmm"
- #include "map_files\generic\z6.dmm"
- #include "map_files\generic\z7.dmm"
- #include "map_files\generic\z8.dmm"
- #include "map_files\generic\z9.dmm"
- #include "map_files\generic\z10.dmm"
- #include "map_files\generic\z11.dmm"
-
- #define MAP_PATH "map_files/BirdStation"
- #define MAP_FILE "BirdStation.dmm"
- #define MAP_NAME "BirdboatStation"
-
- #define MAP_TRANSITION_CONFIG DEFAULT_MAP_TRANSITION_CONFIG
-#endif
- #if !defined(MAP_OVERRIDE_FILES)
- #define MAP_OVERRIDE_FILES
- #include "map_files\BirdStation\job\job_changes.dm"
- #include "map_files\BirdStation\job\removed_jobs.dm"
- #endif
-
-#elif !defined(MAP_OVERRIDE)
-
- #warn a map has already been included, ignoring birdstation.
-
-#endif
diff --git a/_maps/boxstation.json b/_maps/boxstation.json
index a1862ce62b..92d377171f 100644
--- a/_maps/boxstation.json
+++ b/_maps/boxstation.json
@@ -1,5 +1,11 @@
{
"map_name": "Box Station",
- "map_path": "cit_map_files/BoxStation",
- "map_file": "BoxStation.dmm"
+ "map_path": "map_files/BoxStation",
+ "map_file": "BoxStation.dmm",
+ "shuttles": {
+ "cargo": "cargo_box",
+ "ferry": "ferry_fancy",
+ "whiteship": "whiteship_meta",
+ "emergency": "emergency_box"
+ }
}
diff --git a/_maps/cit_map_files/BoxStation/BoxStation.dmm b/_maps/cit_map_files/BoxStation/BoxStation.dmm
index 2c9b220daf..bf29f04364 100644
--- a/_maps/cit_map_files/BoxStation/BoxStation.dmm
+++ b/_maps/cit_map_files/BoxStation/BoxStation.dmm
@@ -2688,7 +2688,6 @@
areastring = "/area/security/warden";
dir = 1;
name = "Brig Control APC";
- pixel_x = 0;
pixel_y = 24
},
/turf/open/floor/plasteel/showroomfloor,
@@ -58364,7 +58363,6 @@
"QsG" = (
/obj/machinery/flasher{
id = "brigentry";
- pixel_x = 0;
pixel_y = -28
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -59064,7 +59062,6 @@
dir = 8;
name = "Security Checkpoint APC";
pixel_x = -24;
- pixel_y = 0
},
/obj/structure/cable{
icon_state = "0-4"
diff --git a/_maps/citadelstation.dm b/_maps/citadelstation.dm
deleted file mode 100644
index ae947f3d38..0000000000
--- a/_maps/citadelstation.dm
+++ /dev/null
@@ -1 +0,0 @@
-#define FORCE_MAP "_maps/citadelstation.json"
\ No newline at end of file
diff --git a/_maps/citadelstation.json b/_maps/citadelstation.json
deleted file mode 100644
index ed04061ef2..0000000000
--- a/_maps/citadelstation.json
+++ /dev/null
@@ -1,7 +0,0 @@
-{
- "map_name": "Citadel Station",
- "map_path": "map_files/CitadelStation",
- "map_file": "CitadelStation-1.2.1.dmm",
- "minetype": "lavaland",
- "transition_config": "default"
-}
diff --git a/_maps/deltastation.json b/_maps/deltastation.json
index ff6dedd66d..6d20f578fa 100644
--- a/_maps/deltastation.json
+++ b/_maps/deltastation.json
@@ -1,5 +1,11 @@
{
"map_name": "Delta Station",
- "map_path": "cit_map_files/Deltastation",
- "map_file": "DeltaStation2.dmm"
+ "map_path": "map_files/Deltastation",
+ "map_file": "DeltaStation2.dmm",
+ "shuttles": {
+ "emergency": "emergency_delta",
+ "ferry": "ferry_fancy",
+ "cargo": "cargo_delta",
+ "whiteship": "whiteship_delta"
+ }
}
diff --git a/_maps/map_files/BoxStation/BoxStation.dmm b/_maps/map_files/BoxStation/BoxStation.dmm
index 84851ee9fa..9c20f84e7a 100644
--- a/_maps/map_files/BoxStation/BoxStation.dmm
+++ b/_maps/map_files/BoxStation/BoxStation.dmm
@@ -15,7 +15,7 @@
/turf/open/space,
/area/space/nearstation)
"aah" = (
-/obj/structure/sign/securearea{
+/obj/structure/sign/warning/securearea{
pixel_y = -32
},
/turf/open/space,
@@ -77,10 +77,7 @@
},
/area/security/prison)
"aaq" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'HIGH VOLTAGE'";
- icon_state = "shock";
- name = "HIGH VOLTAGE";
+/obj/structure/sign/warning/electricshock{
pixel_y = 32
},
/obj/machinery/hydroponics/soil,
@@ -240,7 +237,7 @@
/area/security/prison)
"aaR" = (
/obj/structure/lattice,
-/obj/structure/sign/securearea{
+/obj/structure/sign/warning/securearea{
pixel_y = -32
},
/turf/open/space,
@@ -875,7 +872,7 @@
/turf/open/floor/plasteel/dark,
/area/ai_monitored/security/armory)
"acw" = (
-/obj/structure/sign/securearea{
+/obj/structure/sign/warning/securearea{
pixel_y = -32
},
/obj/structure/lattice/catwalk,
@@ -986,7 +983,6 @@
"acI" = (
/obj/machinery/door/poddoor/preopen{
id = "executionfireblast";
- layer = 2.9;
name = "blast door"
},
/obj/machinery/atmospherics/pipe/simple/general/hidden,
@@ -1126,7 +1122,6 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/door/poddoor/preopen{
id = "executionfireblast";
- layer = 2.9;
name = "blast door"
},
/obj/machinery/door/firedoor,
@@ -1143,7 +1138,6 @@
/obj/effect/spawner/structure/window/reinforced,
/obj/machinery/door/poddoor/preopen{
id = "executionfireblast";
- layer = 2.9;
name = "blast door"
},
/obj/machinery/door/firedoor,
@@ -1307,11 +1301,7 @@
/turf/open/floor/wood,
/area/crew_quarters/theatre)
"adr" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
- icon_state = "space";
- layer = 4;
- name = "EXTERNAL AIRLOCK";
+/obj/structure/sign/warning/vacuum/external{
pixel_x = -32
},
/turf/open/floor/plating,
@@ -1396,7 +1386,7 @@
/turf/open/space,
/area/solar/port/fore)
"adB" = (
-/obj/structure/sign/securearea{
+/obj/structure/sign/warning/securearea{
pixel_x = 32
},
/turf/open/space,
@@ -2135,12 +2125,6 @@
/turf/open/floor/plating,
/area/ai_monitored/security/armory)
"afa" = (
-/obj/machinery/door/airlock/titanium{
- name = "Emergency Shuttle Airlock"
- },
-/obj/docking_port/mobile/emergency{
- name = "Box emergency shuttle"
- },
/obj/docking_port/stationary{
dir = 4;
dwidth = 12;
@@ -2150,8 +2134,8 @@
turf_type = /turf/open/space;
width = 32
},
-/turf/open/floor/plating,
-/area/shuttle/escape)
+/turf/open/space/basic,
+/area/space)
"afb" = (
/obj/machinery/recharger,
/obj/structure/table,
@@ -2259,7 +2243,8 @@
id = "pod3";
name = "escape pod 3";
port_direction = 2;
- preferred_direction = 4
+ preferred_direction = 4;
+ timid = 0
},
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/pod_3)
@@ -2468,7 +2453,7 @@
/area/ai_monitored/storage/eva)
"afQ" = (
/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/sign/securearea{
+/obj/structure/sign/warning/securearea{
pixel_x = -32
},
/turf/open/floor/plating,
@@ -2530,7 +2515,7 @@
/turf/open/floor/plasteel,
/area/security/main)
"aga" = (
-/obj/structure/sign/pods{
+/obj/structure/sign/warning/pods{
pixel_x = 32
},
/obj/effect/turf_decal/stripes/line{
@@ -2773,7 +2758,7 @@
/obj/structure/cable{
icon_state = "1-2"
},
-/obj/structure/sign/securearea{
+/obj/structure/sign/warning/securearea{
pixel_x = -32
},
/obj/machinery/door/poddoor/preopen{
@@ -3740,10 +3725,7 @@
/obj/structure/cable{
icon_state = "0-4"
},
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'HIGH VOLTAGE'";
- icon_state = "shock";
- name = "HIGH VOLTAGE";
+/obj/structure/sign/warning/electricshock{
pixel_x = -32
},
/obj/effect/spawner/structure/window/reinforced,
@@ -3902,7 +3884,7 @@
},
/area/security/brig)
"ajd" = (
-/obj/structure/sign/goldenplaque{
+/obj/structure/sign/plaques/golden{
pixel_y = 32
},
/turf/open/floor/plasteel/red/side{
@@ -3941,7 +3923,7 @@
},
/obj/structure/closet/secure_closet/courtroom,
/obj/effect/decal/cleanable/cobweb,
-/obj/structure/sign/securearea{
+/obj/structure/sign/warning/securearea{
pixel_x = -32
},
/obj/item/gavelhammer,
@@ -4018,7 +4000,7 @@
/turf/open/floor/plasteel,
/area/security/processing)
"ajt" = (
-/obj/structure/sign/securearea{
+/obj/structure/sign/warning/securearea{
pixel_x = 32
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -4285,11 +4267,7 @@
/area/maintenance/solars/port/fore)
"ajZ" = (
/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
- icon_state = "space";
- layer = 4;
- name = "EXTERNAL AIRLOCK";
+/obj/structure/sign/warning/vacuum/external{
pixel_y = 32
},
/turf/open/floor/plating,
@@ -4546,11 +4524,7 @@
/turf/open/floor/plating,
/area/maintenance/solars/port/fore)
"akG" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
- icon_state = "space";
- layer = 4;
- name = "EXTERNAL AIRLOCK";
+/obj/structure/sign/warning/vacuum/external{
pixel_y = 32
},
/obj/effect/spawner/structure/window/reinforced,
@@ -5036,11 +5010,7 @@
/turf/closed/wall/r_wall,
/area/maintenance/solars/port/fore)
"alS" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
- icon_state = "space";
- layer = 4;
- name = "EXTERNAL AIRLOCK";
+/obj/structure/sign/warning/vacuum/external{
pixel_x = 32
},
/turf/open/floor/plating,
@@ -5345,10 +5315,7 @@
/turf/open/floor/plating,
/area/maintenance/port/fore)
"amK" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'.";
- name = "KEEP CLEAR: DOCKING AREA"
- },
+/obj/structure/sign/warning/docking,
/turf/closed/wall,
/area/security/processing)
"amL" = (
@@ -5669,10 +5636,7 @@
},
/area/hallway/primary/fore)
"anx" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'HIGH VOLTAGE'";
- icon_state = "shock";
- name = "HIGH VOLTAGE";
+/obj/structure/sign/warning/electricshock{
pixel_y = 32
},
/turf/open/floor/plasteel/red/corner{
@@ -5680,10 +5644,7 @@
},
/area/hallway/primary/fore)
"any" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'HIGH VOLTAGE'";
- icon_state = "shock";
- name = "HIGH VOLTAGE";
+/obj/structure/sign/warning/electricshock{
pixel_y = 32
},
/obj/machinery/light{
@@ -5705,7 +5666,7 @@
/obj/machinery/light{
dir = 1
},
-/obj/structure/sign/securearea{
+/obj/structure/sign/warning/securearea{
pixel_y = 32
},
/turf/open/floor/plasteel/red/corner{
@@ -5737,21 +5698,13 @@
/turf/open/floor/plating,
/area/maintenance/fore/secondary)
"anG" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
- icon_state = "space";
- layer = 4;
- name = "EXTERNAL AIRLOCK";
+/obj/structure/sign/warning/vacuum/external{
pixel_y = 32
},
/turf/open/floor/plating,
/area/maintenance/fore/secondary)
"anH" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'HIGH VOLTAGE'";
- icon_state = "shock";
- name = "HIGH VOLTAGE"
- },
+/obj/structure/sign/warning/electricshock,
/turf/closed/wall/r_wall,
/area/maintenance/solars/port/fore)
"anI" = (
@@ -5787,29 +5740,17 @@
/turf/open/floor/plating,
/area/security/processing)
"anO" = (
-/obj/machinery/door/airlock/titanium{
- id_tag = "prisonshuttle";
- name = "Labor Shuttle Airlock"
- },
-/obj/docking_port/mobile{
- dir = 8;
- dwidth = 2;
- height = 5;
- id = "laborcamp";
- name = "labor camp shuttle";
- port_direction = 4;
- width = 9
- },
/obj/docking_port/stationary{
dir = 8;
dwidth = 2;
height = 5;
id = "laborcamp_home";
name = "fore bay 1";
+ roundstart_template = /datum/map_template/shuttle/labour/box;
width = 9
},
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/labor)
+/turf/open/space/basic,
+/area/space)
"anP" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/security{
@@ -5821,10 +5762,7 @@
/turf/open/floor/plasteel,
/area/security/processing)
"anQ" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'HIGH VOLTAGE'";
- icon_state = "shock";
- name = "HIGH VOLTAGE";
+/obj/structure/sign/warning/electricshock{
pixel_y = 32
},
/obj/machinery/light{
@@ -5949,11 +5887,7 @@
"aoi" = (
/obj/structure/rack,
/obj/item/clothing/mask/gas,
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
- icon_state = "space";
- layer = 4;
- name = "EXTERNAL AIRLOCK";
+/obj/structure/sign/warning/vacuum/external{
pixel_y = 32
},
/obj/item/device/multitool,
@@ -5996,11 +5930,7 @@
/turf/open/floor/plating,
/area/maintenance/port/fore)
"aoq" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
- icon_state = "space";
- layer = 4;
- name = "EXTERNAL AIRLOCK";
+/obj/structure/sign/warning/vacuum/external{
pixel_y = -32
},
/obj/effect/spawner/structure/window/reinforced,
@@ -6823,11 +6753,7 @@
/turf/open/floor/plating,
/area/maintenance/solars/starboard/fore)
"aqx" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'HIGH VOLTAGE'";
- icon_state = "shock";
- name = "HIGH VOLTAGE"
- },
+/obj/structure/sign/warning/electricshock,
/turf/closed/wall/r_wall,
/area/maintenance/solars/starboard/fore)
"aqy" = (
@@ -7098,11 +7024,7 @@
},
/area/holodeck/rec_center)
"arp" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
- icon_state = "space";
- layer = 4;
- name = "EXTERNAL AIRLOCK";
+/obj/structure/sign/warning/vacuum/external{
pixel_y = 32
},
/obj/effect/spawner/structure/window/reinforced,
@@ -7810,7 +7732,8 @@
dir = 4;
dwidth = 4;
height = 9;
- width = 9
+ width = 9;
+ timid = 0
},
/obj/machinery/bluespace_beacon,
/obj/machinery/computer/auxillary_base,
@@ -8473,11 +8396,7 @@
/turf/open/floor/plating,
/area/maintenance/fore)
"ave" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
- icon_state = "space";
- layer = 4;
- name = "EXTERNAL AIRLOCK";
+/obj/structure/sign/warning/vacuum/external{
pixel_y = 32
},
/obj/effect/spawner/lootdrop/maintenance,
@@ -8571,11 +8490,7 @@
},
/area/crew_quarters/dorms)
"avo" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'HIGH VOLTAGE'";
- icon_state = "shock";
- name = "HIGH VOLTAGE"
- },
+/obj/structure/sign/warning/electricshock,
/turf/closed/wall,
/area/maintenance/department/electrical)
"avp" = (
@@ -8705,11 +8620,7 @@
/turf/open/floor/plasteel,
/area/crew_quarters/dorms)
"avH" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'HIGH VOLTAGE'";
- icon_state = "shock";
- name = "HIGH VOLTAGE"
- },
+/obj/structure/sign/warning/electricshock,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -8774,7 +8685,7 @@
/turf/open/floor/plasteel/floorgrime,
/area/maintenance/department/electrical)
"avP" = (
-/obj/structure/sign/pods,
+/obj/structure/sign/warning/pods,
/turf/closed/wall,
/area/hallway/secondary/entry)
"avQ" = (
@@ -9394,10 +9305,7 @@
/turf/open/floor/plating,
/area/maintenance/port/fore)
"axm" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'HIGH VOLTAGE'";
- icon_state = "shock";
- name = "HIGH VOLTAGE";
+/obj/structure/sign/warning/electricshock{
pixel_y = -32
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -9434,10 +9342,7 @@
/turf/open/floor/plating,
/area/maintenance/fore)
"axr" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'HIGH VOLTAGE'";
- icon_state = "shock";
- name = "HIGH VOLTAGE";
+/obj/structure/sign/warning/electricshock{
pixel_y = -32
},
/obj/structure/cable{
@@ -9949,7 +9854,7 @@
/obj/structure/cable{
icon_state = "1-2"
},
-/obj/structure/sign/securearea{
+/obj/structure/sign/warning/securearea{
pixel_x = 32
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -10036,7 +9941,7 @@
/obj/structure/cable{
icon_state = "0-2"
},
-/obj/structure/sign/securearea{
+/obj/structure/sign/warning/securearea{
pixel_y = 32
},
/obj/effect/spawner/structure/window/reinforced,
@@ -10716,18 +10621,11 @@
/turf/open/floor/plating,
/area/maintenance/department/electrical)
"aAC" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'.";
- name = "KEEP CLEAR: DOCKING AREA"
- },
+/obj/structure/sign/warning/docking,
/turf/closed/wall/r_wall,
/area/hallway/secondary/entry)
"aAD" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
- icon_state = "space";
- layer = 4;
- name = "EXTERNAL AIRLOCK";
+/obj/structure/sign/warning/vacuum/external{
pixel_y = 32
},
/obj/effect/spawner/structure/window/reinforced,
@@ -11938,11 +11836,7 @@
/turf/open/floor/plasteel/cafeteria,
/area/crew_quarters/heads/hor)
"aDI" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'HIGH VOLTAGE'";
- icon_state = "shock";
- name = "HIGH VOLTAGE"
- },
+/obj/structure/sign/warning/electricshock,
/turf/closed/wall/r_wall,
/area/ai_monitored/storage/eva)
"aDK" = (
@@ -12417,7 +12311,7 @@
network = list("SS13")
},
/obj/structure/table,
-/obj/structure/sign/biohazard{
+/obj/structure/sign/warning/biohazard{
pixel_x = -32
},
/obj/item/storage/firstaid/regular,
@@ -12450,7 +12344,7 @@
"aEU" = (
/obj/structure/table,
/obj/machinery/recharger,
-/obj/structure/sign/biohazard{
+/obj/structure/sign/warning/biohazard{
pixel_x = 32
},
/turf/open/floor/plasteel,
@@ -12494,7 +12388,7 @@
/turf/open/floor/plasteel/dark,
/area/ai_monitored/storage/eva)
"aFc" = (
-/obj/structure/sign/securearea,
+/obj/structure/sign/warning/securearea,
/turf/closed/wall/r_wall,
/area/ai_monitored/storage/eva)
"aFd" = (
@@ -13257,8 +13151,9 @@
/obj/structure/cable{
icon_state = "2-8"
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
+/obj/structure/cable{
+ icon_state = "1-8"
},
/turf/open/floor/plating,
/area/maintenance/starboard/fore)
@@ -13546,7 +13441,7 @@
/turf/open/floor/plasteel,
/area/storage/primary)
"aHF" = (
-/obj/structure/sign/securearea,
+/obj/structure/sign/warning/securearea,
/turf/closed/wall/r_wall,
/area/ai_monitored/nuke_storage)
"aHG" = (
@@ -13805,9 +13700,7 @@
dir = 4;
sortType = 21
},
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 1
- },
+/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,
/turf/open/floor/plating,
/area/maintenance/starboard/fore)
"aIk" = (
@@ -14736,7 +14629,7 @@
/turf/open/floor/plasteel,
/area/gateway)
"aKB" = (
-/obj/structure/sign/securearea,
+/obj/structure/sign/warning/securearea,
/turf/closed/wall/r_wall,
/area/gateway)
"aKC" = (
@@ -14994,10 +14887,7 @@
/turf/open/floor/plasteel,
/area/hallway/primary/port)
"aLl" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'HIGH VOLTAGE'";
- icon_state = "shock";
- name = "HIGH VOLTAGE";
+/obj/structure/sign/warning/electricshock{
pixel_y = 32
},
/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
@@ -15157,10 +15047,7 @@
/obj/machinery/light{
dir = 1
},
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'HIGH VOLTAGE'";
- icon_state = "shock";
- name = "HIGH VOLTAGE";
+/obj/structure/sign/warning/electricshock{
pixel_y = 32
},
/obj/effect/turf_decal/stripes/corner{
@@ -16235,10 +16122,7 @@
/area/hallway/primary/central)
"aOF" = (
/obj/machinery/light,
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'HIGH VOLTAGE'";
- icon_state = "shock";
- name = "HIGH VOLTAGE";
+/obj/structure/sign/warning/electricshock{
pixel_y = -32
},
/obj/machinery/door/firedoor,
@@ -16247,10 +16131,7 @@
},
/area/hallway/primary/central)
"aOG" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'HIGH VOLTAGE'";
- icon_state = "shock";
- name = "HIGH VOLTAGE";
+/obj/structure/sign/warning/electricshock{
pixel_y = -32
},
/obj/machinery/door/firedoor,
@@ -16519,7 +16400,7 @@
/area/hallway/secondary/entry)
"aPw" = (
/obj/machinery/disposal/bin,
-/obj/structure/sign/securearea{
+/obj/structure/sign/warning/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";
@@ -16655,7 +16536,6 @@
/obj/effect/spawner/structure/window/reinforced,
/obj/machinery/door/poddoor/preopen{
id = "bridge blast";
- layer = 2.9;
name = "bridge blast door"
},
/turf/open/floor/plating,
@@ -16666,7 +16546,6 @@
},
/obj/machinery/door/poddoor/preopen{
id = "bridge blast";
- layer = 2.9;
name = "bridge blast door"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -16683,7 +16562,6 @@
/obj/effect/spawner/structure/window/reinforced,
/obj/machinery/door/poddoor/preopen{
id = "bridge blast";
- layer = 2.9;
name = "bridge blast door"
},
/turf/open/floor/plating,
@@ -16701,7 +16579,6 @@
/obj/effect/spawner/structure/window/reinforced,
/obj/machinery/door/poddoor/preopen{
id = "bridge blast";
- layer = 2.9;
name = "bridge blast door"
},
/turf/open/floor/plating,
@@ -16717,7 +16594,6 @@
/obj/effect/spawner/structure/window/reinforced,
/obj/machinery/door/poddoor/preopen{
id = "bridge blast";
- layer = 2.9;
name = "bridge blast door"
},
/turf/open/floor/plating,
@@ -16729,7 +16605,6 @@
/obj/effect/spawner/structure/window/reinforced,
/obj/machinery/door/poddoor/preopen{
id = "bridge blast";
- layer = 2.9;
name = "bridge blast door"
},
/turf/open/floor/plating,
@@ -16937,11 +16812,7 @@
/turf/open/floor/plating,
/area/hallway/secondary/exit)
"aQG" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
- icon_state = "space";
- layer = 4;
- name = "EXTERNAL AIRLOCK";
+/obj/structure/sign/warning/vacuum/external{
pixel_y = 32
},
/obj/effect/turf_decal/stripes/line{
@@ -17390,10 +17261,7 @@
/turf/open/floor/plasteel,
/area/storage/tools)
"aRW" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'.";
- name = "KEEP CLEAR: DOCKING AREA"
- },
+/obj/structure/sign/warning/docking,
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
/area/hallway/secondary/exit)
@@ -17473,13 +17341,6 @@
/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
/turf/open/floor/plasteel,
/area/crew_quarters/locker)
-<<<<<<< HEAD
-"aSj" = (
-/obj/effect/landmark/lightsout,
-/turf/open/floor/plasteel,
-/area/crew_quarters/locker)
-=======
->>>>>>> e645319... Changes up the Construction Area on Box slightly. (#35009)
"aSk" = (
/obj/structure/table,
/obj/item/stack/cable_coil/random,
@@ -17853,11 +17714,7 @@
cyclelinkeddir = 4;
name = "Escape Airlock"
},
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
- icon_state = "space";
- layer = 4;
- name = "EXTERNAL AIRLOCK";
+/obj/structure/sign/warning/vacuum/external{
pixel_y = 32
},
/turf/open/floor/plating,
@@ -18424,10 +18281,7 @@
/turf/open/floor/plasteel,
/area/storage/tools)
"aVb" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'HIGH VOLTAGE'";
- icon_state = "shock";
- name = "HIGH VOLTAGE";
+/obj/structure/sign/warning/electricshock{
pixel_y = 32
},
/obj/machinery/door/firedoor,
@@ -18436,7 +18290,7 @@
},
/area/hallway/primary/central)
"aVc" = (
-/obj/structure/sign/securearea{
+/obj/structure/sign/warning/securearea{
pixel_x = 32
},
/obj/machinery/door/firedoor,
@@ -18622,7 +18476,7 @@
/turf/open/floor/plasteel,
/area/bridge)
"aVt" = (
-/obj/structure/sign/securearea{
+/obj/structure/sign/warning/securearea{
pixel_x = -32
},
/obj/machinery/door/firedoor,
@@ -18634,10 +18488,7 @@
/turf/open/floor/plasteel,
/area/bridge)
"aVu" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'HIGH VOLTAGE'";
- icon_state = "shock";
- name = "HIGH VOLTAGE";
+/obj/structure/sign/warning/electricshock{
pixel_y = 32
},
/obj/machinery/door/firedoor,
@@ -18871,12 +18722,7 @@
/turf/open/floor/carpet,
/area/library)
"aWa" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
- icon_state = "space";
- layer = 4;
- name = "EXTERNAL AIRLOCK"
- },
+/obj/structure/sign/warning/vacuum/external,
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
/area/hallway/secondary/entry)
@@ -21187,7 +21033,6 @@
"bbW" = (
/obj/machinery/door/poddoor/preopen{
id = "heads_meeting";
- layer = 2.9;
name = "privacy shutters"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -21250,7 +21095,7 @@
"bcg" = (
/obj/structure/table,
/obj/item/aiModule/supplied/freeform,
-/obj/structure/sign/kiddieplaque{
+/obj/structure/sign/plaques/kiddie{
pixel_x = 32
},
/obj/machinery/camera/motion{
@@ -21401,11 +21246,7 @@
/turf/open/floor/plasteel,
/area/hallway/secondary/exit)
"bcB" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
- icon_state = "space";
- layer = 4;
- name = "EXTERNAL AIRLOCK";
+/obj/structure/sign/warning/vacuum/external{
pixel_x = 32
},
/obj/effect/turf_decal/stripes/line{
@@ -21541,7 +21382,6 @@
/obj/effect/spawner/structure/window/reinforced,
/obj/machinery/door/poddoor/preopen{
id = "heads_meeting";
- layer = 2.9;
name = "privacy shutters"
},
/turf/open/floor/plating,
@@ -22322,7 +22162,7 @@
id = "garbage"
},
/obj/machinery/recycler,
-/obj/structure/sign/securearea{
+/obj/structure/sign/warning/securearea{
name = "\improper STAY CLEAR HEAVY MACHINERY";
pixel_y = 32
},
@@ -22404,11 +22244,7 @@
/turf/open/floor/plasteel/freezer,
/area/crew_quarters/toilet/locker)
"bfb" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
- icon_state = "space";
- layer = 4;
- name = "EXTERNAL AIRLOCK";
+/obj/structure/sign/warning/vacuum/external{
pixel_y = 32
},
/obj/effect/landmark/event_spawn,
@@ -22634,7 +22470,7 @@
/turf/open/floor/plating,
/area/medical/medbay/central)
"bfH" = (
-/obj/structure/sign/bluecross_2,
+/obj/structure/sign/departments/medbay/alt,
/turf/closed/wall,
/area/medical/medbay/central)
"bfI" = (
@@ -22734,7 +22570,7 @@
},
/area/hallway/primary/starboard)
"bfZ" = (
-/obj/structure/sign/securearea{
+/obj/structure/sign/warning/securearea{
pixel_y = -32
},
/turf/open/floor/plasteel/purple/side{
@@ -23637,7 +23473,6 @@
/obj/machinery/computer/card{
dir = 8
},
-/obj/item/card/id/captains_spare,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/wood,
/area/crew_quarters/heads/captain)
@@ -23954,7 +23789,7 @@
dir = 1;
id = "garbage"
},
-/obj/structure/sign/vacuum{
+/obj/structure/sign/warning/vacuum{
pixel_x = -32
},
/turf/open/floor/plating,
@@ -24475,7 +24310,7 @@
/obj/machinery/shower{
dir = 8
},
-/obj/structure/sign/securearea{
+/obj/structure/sign/warning/securearea{
pixel_x = 32
},
/obj/effect/turf_decal/stripes/line{
@@ -24546,7 +24381,6 @@
},
/obj/machinery/door/poddoor/preopen{
id = "Disposal Exit";
- layer = 3;
name = "disposal exit vent"
},
/turf/open/floor/plating,
@@ -24583,10 +24417,7 @@
/turf/open/floor/plating,
/area/maintenance/port)
"bkE" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'.";
- name = "KEEP CLEAR: DOCKING AREA"
- },
+/obj/structure/sign/warning/docking,
/turf/closed/wall/r_wall,
/area/maintenance/port)
"bkF" = (
@@ -25153,11 +24984,7 @@
/turf/open/floor/plating,
/area/maintenance/starboard/aft)
"blR" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
- icon_state = "space";
- layer = 4;
- name = "EXTERNAL AIRLOCK";
+/obj/structure/sign/warning/vacuum/external{
pixel_y = 32
},
/obj/item/cigbutt,
@@ -25530,7 +25357,7 @@
/obj/structure/chair/office/light{
dir = 1
},
-/obj/structure/sign/nosmoking_2{
+/obj/structure/sign/warning/nosmoking{
pixel_x = 28
},
/turf/open/floor/plasteel/white,
@@ -25886,7 +25713,7 @@
/turf/open/floor/plasteel,
/area/quartermaster/office)
"bnF" = (
-/obj/structure/sign/nosmoking_2{
+/obj/structure/sign/warning/nosmoking{
pixel_y = 30
},
/obj/structure/disposalpipe/segment{
@@ -26014,10 +25841,7 @@
/turf/open/floor/plasteel,
/area/crew_quarters/heads/hop)
"bnT" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'HIGH VOLTAGE'";
- icon_state = "shock";
- name = "HIGH VOLTAGE";
+/obj/structure/sign/warning/electricshock{
pixel_x = -32
},
/obj/structure/cable{
@@ -26048,10 +25872,7 @@
/turf/open/floor/plating,
/area/engine/gravity_generator)
"bnW" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'RADIOACTIVE AREA'";
- icon_state = "radiation";
- name = "RADIOACTIVE AREA";
+/obj/structure/sign/warning/radiation/rad_area{
pixel_x = 32
},
/obj/structure/cable{
@@ -26366,12 +26187,7 @@
/turf/open/floor/plating,
/area/maintenance/starboard)
"boI" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
- icon_state = "space";
- layer = 4;
- name = "EXTERNAL AIRLOCK"
- },
+/obj/structure/sign/warning/vacuum/external,
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
/area/quartermaster/storage)
@@ -26514,7 +26330,6 @@
},
/obj/machinery/door/poddoor/shutters/preopen{
id = "hop";
- layer = 2.9;
name = "Privacy Shutters"
},
/turf/open/floor/plasteel,
@@ -27114,7 +26929,6 @@
},
/obj/machinery/door/poddoor/shutters/preopen{
id = "hop";
- layer = 2.9;
name = "Privacy Shutters"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -27212,7 +27026,7 @@
name = "Teleporter Maintenance";
req_access_txt = "17"
},
-/obj/structure/sign/securearea{
+/obj/structure/sign/warning/securearea{
pixel_x = -32
},
/obj/structure/cable{
@@ -27265,7 +27079,7 @@
/obj/item/crowbar,
/obj/item/clothing/neck/stethoscope,
/obj/item/reagent_containers/spray/cleaner,
-/obj/structure/sign/nosmoking_2{
+/obj/structure/sign/warning/nosmoking{
pixel_y = 30
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -27639,7 +27453,7 @@
/obj/structure/cable{
icon_state = "1-2"
},
-/obj/structure/sign/securearea{
+/obj/structure/sign/warning/securearea{
pixel_x = -32
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -27759,10 +27573,7 @@
/turf/open/floor/plasteel,
/area/crew_quarters/heads/hop)
"brU" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'HIGH VOLTAGE'";
- icon_state = "shock";
- name = "HIGH VOLTAGE";
+/obj/structure/sign/warning/electricshock{
pixel_y = -32
},
/obj/structure/cable{
@@ -27771,7 +27582,6 @@
/obj/structure/cable,
/obj/machinery/door/poddoor/shutters/preopen{
id = "hop";
- layer = 2.9;
name = "Privacy Shutters"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -28339,7 +28149,7 @@
/obj/structure/disposalpipe/segment{
dir = 10
},
-/obj/structure/sign/securearea{
+/obj/structure/sign/warning/securearea{
pixel_x = 32
},
/obj/machinery/light/small{
@@ -29131,7 +28941,7 @@
/obj/structure/cable{
icon_state = "1-2"
},
-/obj/structure/sign/securearea{
+/obj/structure/sign/warning/securearea{
pixel_x = -32
},
/obj/structure/disposalpipe/segment,
@@ -29342,7 +29152,7 @@
/turf/open/floor/plasteel/white,
/area/medical/genetics)
"bvA" = (
-/obj/structure/sign/securearea,
+/obj/structure/sign/warning/securearea,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -29605,7 +29415,7 @@
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"bwh" = (
-/obj/structure/sign/securearea{
+/obj/structure/sign/warning/securearea{
pixel_y = 32
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -29659,10 +29469,7 @@
/area/engine/gravity_generator)
"bwn" = (
/obj/structure/closet/radiation,
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'RADIOACTIVE AREA'";
- icon_state = "radiation";
- name = "RADIOACTIVE AREA";
+/obj/structure/sign/warning/radiation/rad_area{
pixel_x = -32
},
/obj/effect/turf_decal/stripes/line{
@@ -29676,10 +29483,7 @@
/area/engine/gravity_generator)
"bwp" = (
/obj/structure/closet/radiation,
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'RADIOACTIVE AREA'";
- icon_state = "radiation";
- name = "RADIOACTIVE AREA";
+/obj/structure/sign/warning/radiation/rad_area{
pixel_x = 32
},
/obj/effect/turf_decal/stripes/line{
@@ -29799,7 +29603,7 @@
/turf/open/floor/plasteel,
/area/medical/sleeper)
"bwG" = (
-/obj/structure/sign/nosmoking_2,
+/obj/structure/sign/warning/nosmoking,
/turf/closed/wall,
/area/medical/sleeper)
"bwH" = (
@@ -30003,7 +29807,7 @@
/area/medical/sleeper)
"bxa" = (
/obj/structure/chair,
-/obj/structure/sign/nosmoking_2{
+/obj/structure/sign/warning/nosmoking{
pixel_x = -28
},
/turf/open/floor/plasteel/dark,
@@ -30454,7 +30258,7 @@
},
/area/quartermaster/qm)
"bye" = (
-/obj/structure/sign/securearea,
+/obj/structure/sign/warning/securearea,
/turf/closed/wall/r_wall,
/area/medical/genetics)
"byf" = (
@@ -30757,7 +30561,7 @@
/turf/open/floor/plasteel/red/side,
/area/security/checkpoint/supply)
"byP" = (
-/obj/structure/sign/securearea{
+/obj/structure/sign/warning/securearea{
pixel_y = 32
},
/turf/open/floor/plasteel/blue/side{
@@ -31009,7 +30813,7 @@
/obj/machinery/atmospherics/pipe/simple{
dir = 4
},
-/obj/structure/sign/securearea{
+/obj/structure/sign/warning/securearea{
desc = "A warning sign which reads 'SERVER ROOM'.";
name = "SERVER ROOM";
pixel_y = 32
@@ -32080,7 +31884,7 @@
/turf/open/floor/plasteel/dark,
/area/science/server)
"bBV" = (
-/obj/structure/sign/securearea{
+/obj/structure/sign/warning/securearea{
desc = "A warning sign which reads 'SERVER ROOM'.";
name = "SERVER ROOM";
pixel_y = -32
@@ -32238,7 +32042,7 @@
network = list("SS13","RD")
},
/obj/machinery/light,
-/obj/structure/sign/nosmoking_2{
+/obj/structure/sign/warning/nosmoking{
pixel_y = -32
},
/turf/open/floor/engine,
@@ -32608,9 +32412,7 @@
/turf/open/floor/plating,
/area/maintenance/starboard)
"bDi" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'.";
- name = "KEEP CLEAR: DOCKING AREA";
+/obj/structure/sign/warning/docking{
pixel_y = 32
},
/turf/open/space,
@@ -32805,7 +32607,7 @@
/turf/open/floor/plasteel/white,
/area/medical/sleeper)
"bDD" = (
-/obj/structure/sign/nosmoking_2{
+/obj/structure/sign/warning/nosmoking{
pixel_x = -28
},
/obj/structure/bed,
@@ -32948,7 +32750,7 @@
/obj/machinery/door/airlock/medical/glass{
id_tag = null;
name = "Medbay Storage";
- req_access_txt = "45"
+ req_access_txt = "5"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -32990,13 +32792,13 @@
/turf/open/floor/plasteel/floorgrime,
/area/science/storage)
"bEd" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/obj/machinery/door/airlock/medical/glass{
id_tag = null;
name = "Medbay Storage";
- req_access_txt = "45"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
+ req_access_txt = "5"
},
/turf/open/floor/plasteel/white,
/area/medical/sleeper)
@@ -33093,7 +32895,7 @@
/area/science/storage)
"bEp" = (
/obj/machinery/portable_atmospherics/canister/toxins,
-/obj/structure/sign/nosmoking_2{
+/obj/structure/sign/warning/nosmoking{
pixel_y = 32
},
/obj/effect/turf_decal/delivery,
@@ -33310,7 +33112,7 @@
/turf/open/floor/plasteel,
/area/science/mixing)
"bEO" = (
-/obj/structure/sign/securearea{
+/obj/structure/sign/warning/securearea{
pixel_x = -32
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -33741,7 +33543,7 @@
/turf/open/floor/plasteel/barber,
/area/crew_quarters/heads/cmo)
"bFQ" = (
-/obj/structure/sign/nosmoking_2{
+/obj/structure/sign/warning/nosmoking{
pixel_x = -32
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -33935,11 +33737,7 @@
/turf/open/floor/plasteel,
/area/storage/tech)
"bGu" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'HIGH VOLTAGE'";
- icon_state = "shock";
- name = "HIGH VOLTAGE"
- },
+/obj/structure/sign/warning/electricshock,
/turf/closed/wall/r_wall,
/area/storage/tech)
"bGv" = (
@@ -34910,11 +34708,7 @@
/turf/open/floor/plasteel/barber,
/area/crew_quarters/heads/cmo)
"bIx" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'HIGH VOLTAGE'";
- icon_state = "shock";
- name = "HIGH VOLTAGE"
- },
+/obj/structure/sign/warning/electricshock,
/turf/closed/wall/r_wall,
/area/science/xenobiology)
"bIy" = (
@@ -35026,7 +34820,7 @@
/obj/structure/cable{
icon_state = "1-2"
},
-/obj/structure/sign/securearea{
+/obj/structure/sign/warning/securearea{
pixel_x = 32
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -35086,7 +34880,7 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
-/obj/structure/sign/xenobio{
+/obj/structure/sign/departments/xenobio{
pixel_y = -32
},
/turf/open/floor/plating,
@@ -35113,7 +34907,7 @@
/turf/open/floor/plasteel,
/area/science/mixing)
"bIX" = (
-/obj/structure/sign/securearea{
+/obj/structure/sign/warning/securearea{
desc = "A warning sign which reads 'BOMB RANGE";
name = "BOMB RANGE"
},
@@ -35151,29 +34945,17 @@
/turf/open/floor/plating,
/area/quartermaster/miningdock)
"bJc" = (
-/obj/machinery/door/airlock/titanium{
- name = "Mining Shuttle Airlock";
- req_access_txt = "0"
- },
-/obj/docking_port/mobile{
- dir = 8;
- dwidth = 3;
- height = 5;
- id = "mining";
- name = "mining shuttle";
- port_direction = 4;
- width = 7
- },
/obj/docking_port/stationary{
dir = 8;
dwidth = 3;
height = 5;
id = "mining_home";
name = "mining shuttle bay";
+ roundstart_template = /datum/map_template/shuttle/mining/box;
width = 7
},
-/turf/open/floor/plating,
-/area/shuttle/mining)
+/turf/open/space/basic,
+/area/space)
"bJd" = (
/obj/machinery/door/airlock/mining/glass{
cyclelinkeddir = 8;
@@ -35210,7 +34992,7 @@
/turf/open/floor/plasteel,
/area/storage/tech)
"bJi" = (
-/obj/structure/sign/securearea,
+/obj/structure/sign/warning/securearea,
/turf/closed/wall/r_wall,
/area/storage/tech)
"bJj" = (
@@ -35703,12 +35485,7 @@
},
/area/quartermaster/miningdock)
"bKm" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
- icon_state = "space";
- layer = 4;
- name = "EXTERNAL AIRLOCK"
- },
+/obj/structure/sign/warning/vacuum/external,
/turf/closed/wall,
/area/quartermaster/miningdock)
"bKn" = (
@@ -35862,7 +35639,7 @@
/obj/structure/cable{
icon_state = "4-8"
},
-/obj/structure/sign/securearea{
+/obj/structure/sign/warning/securearea{
pixel_y = -32
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -36138,7 +35915,7 @@
/turf/open/floor/plasteel/white,
/area/medical/virology)
"bLe" = (
-/obj/structure/sign/biohazard,
+/obj/structure/sign/warning/biohazard,
/turf/closed/wall,
/area/science/xenobiology)
"bLf" = (
@@ -36161,21 +35938,17 @@
/turf/open/floor/plating,
/area/maintenance/port/aft)
"bLh" = (
-/obj/structure/sign/fire,
+/obj/structure/sign/warning/fire,
/turf/closed/wall,
/area/science/research)
"bLi" = (
-/obj/structure/sign/nosmoking_2{
+/obj/structure/sign/warning/nosmoking{
pixel_x = -32
},
/turf/open/floor/plasteel/white,
/area/science/mixing)
"bLj" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
- icon_state = "space";
- layer = 4;
- name = "EXTERNAL AIRLOCK";
+/obj/structure/sign/warning/vacuum/external{
pixel_y = -32
},
/turf/open/floor/plating,
@@ -36628,11 +36401,7 @@
/turf/open/floor/plating,
/area/science/research)
"bMt" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
- icon_state = "space";
- layer = 4;
- name = "EXTERNAL AIRLOCK";
+/obj/structure/sign/warning/vacuum/external{
pixel_y = 32
},
/turf/open/floor/engine/vacuum,
@@ -36904,7 +36673,7 @@
/turf/open/floor/plasteel,
/area/science/misc_lab)
"bNf" = (
-/obj/structure/sign/biohazard,
+/obj/structure/sign/warning/biohazard,
/turf/closed/wall,
/area/medical/virology)
"bNg" = (
@@ -37511,7 +37280,7 @@
/turf/open/floor/engine/vacuum,
/area/science/mixing)
"bOF" = (
-/obj/structure/sign/fire{
+/obj/structure/sign/warning/fire{
pixel_y = -32
},
/obj/machinery/atmospherics/components/binary/pump{
@@ -37591,7 +37360,6 @@
/obj/effect/spawner/structure/window/reinforced,
/obj/machinery/door/poddoor/shutters/preopen{
id = "kanyewest";
- layer = 2.9;
name = "privacy shutters"
},
/turf/open/floor/plating,
@@ -37849,7 +37617,7 @@
/obj/machinery/shower{
dir = 4
},
-/obj/structure/sign/securearea{
+/obj/structure/sign/warning/securearea{
pixel_x = -32
},
/obj/effect/turf_decal/stripes/line{
@@ -37908,7 +37676,7 @@
/area/medical/virology)
"bPx" = (
/obj/machinery/disposal/bin,
-/obj/structure/sign/deathsposal{
+/obj/structure/sign/warning/deathsposal{
pixel_y = -32
},
/obj/structure/disposalpipe/trunk{
@@ -38244,8 +38012,7 @@
"bQi" = (
/obj/machinery/door/poddoor/preopen{
id = "atmos";
- layer = 2.9;
- name = "atmos blast door"
+ name = "Atmospherics Blast Door"
},
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
@@ -38729,8 +38496,7 @@
},
/obj/machinery/door/poddoor/preopen{
id = "atmos";
- layer = 2.9;
- name = "atmos blast door"
+ name = "Atmospherics Blast Door"
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
@@ -39190,13 +38956,12 @@
/obj/effect/spawner/structure/window/reinforced,
/obj/machinery/door/poddoor/preopen{
id = "atmos";
- layer = 2.9;
- name = "atmos blast door"
+ name = "Atmospherics Blast Door"
},
/turf/open/floor/plating,
/area/engine/atmos)
"bSD" = (
-/obj/structure/sign/atmosplaque{
+/obj/structure/sign/plaques/atmos{
pixel_y = -32
},
/obj/structure/table,
@@ -39393,9 +39158,6 @@
/obj/machinery/vending/medical,
/turf/open/floor/plasteel/white,
/area/medical/virology)
-"bSZ" = (
-/turf/open/floor/engine,
-/area/science/xenobiology)
"bTa" = (
/obj/machinery/door/window/northleft{
dir = 4;
@@ -40320,11 +40082,7 @@
},
/area/hallway/primary/aft)
"bVi" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'HIGH VOLTAGE'";
- icon_state = "shock";
- name = "HIGH VOLTAGE"
- },
+/obj/structure/sign/warning/electricshock,
/turf/closed/wall,
/area/science/xenobiology)
"bVj" = (
@@ -40474,7 +40232,7 @@
/obj/structure/disposalpipe/trunk{
dir = 8
},
-/obj/structure/sign/deathsposal{
+/obj/structure/sign/warning/deathsposal{
pixel_y = 32
},
/turf/open/floor/plating,
@@ -40490,7 +40248,7 @@
/turf/open/floor/plating,
/area/maintenance/port/aft)
"bVG" = (
-/obj/structure/sign/nosmoking_2{
+/obj/structure/sign/warning/nosmoking{
pixel_x = -28
},
/turf/open/floor/plating,
@@ -40555,7 +40313,7 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
dir = 4
},
-/obj/structure/sign/securearea,
+/obj/structure/sign/warning/securearea,
/turf/closed/wall,
/area/engine/atmos)
"bVT" = (
@@ -40897,7 +40655,7 @@
},
/obj/machinery/door/poddoor/preopen{
id = "atmos";
- name = "atmos blast door"
+ name = "Atmospherics Blast Door"
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
@@ -40915,7 +40673,7 @@
},
/obj/machinery/door/poddoor/preopen{
id = "atmos";
- name = "atmos blast door"
+ name = "Atmospherics Blast Door"
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
@@ -41315,7 +41073,7 @@
/turf/closed/wall/r_wall,
/area/engine/atmos)
"bXL" = (
-/obj/structure/sign/securearea,
+/obj/structure/sign/warning/securearea,
/turf/closed/wall/r_wall,
/area/engine/atmos)
"bXM" = (
@@ -41443,7 +41201,7 @@
/area/engine/break_room)
"bYc" = (
/obj/machinery/disposal/bin,
-/obj/structure/sign/deathsposal{
+/obj/structure/sign/warning/deathsposal{
pixel_y = -32
},
/obj/structure/disposalpipe/trunk{
@@ -41573,7 +41331,7 @@
/turf/open/floor/plasteel/white,
/area/science/misc_lab)
"bYp" = (
-/obj/structure/sign/securearea{
+/obj/structure/sign/warning/securearea{
pixel_x = -32
},
/turf/open/floor/plasteel/yellow/side{
@@ -41604,11 +41362,7 @@
/turf/open/floor/plating,
/area/maintenance/port/aft)
"bYu" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
- icon_state = "space";
- layer = 4;
- name = "EXTERNAL AIRLOCK";
+/obj/structure/sign/warning/vacuum/external{
pixel_x = -32
},
/turf/open/floor/plating,
@@ -41743,7 +41497,7 @@
/turf/open/floor/plasteel,
/area/engine/atmos)
"bYR" = (
-/obj/structure/sign/nosmoking_2,
+/obj/structure/sign/warning/nosmoking,
/turf/closed/wall,
/area/engine/atmos)
"bYS" = (
@@ -42767,7 +42521,7 @@
/turf/open/floor/plating,
/area/tcommsat/computer)
"cbn" = (
-/obj/structure/sign/securearea{
+/obj/structure/sign/warning/securearea{
desc = "A warning sign which reads 'SERVER ROOM'.";
name = "SERVER ROOM"
},
@@ -42825,7 +42579,7 @@
/turf/open/floor/plasteel,
/area/hallway/primary/aft)
"cbs" = (
-/obj/structure/sign/securearea,
+/obj/structure/sign/warning/securearea,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/closed/wall,
/area/engine/engineering)
@@ -43168,7 +42922,7 @@
/turf/open/floor/plasteel/dark/telecomms/mainframe,
/area/tcommsat/server)
"ccg" = (
-/obj/machinery/message_server,
+/obj/machinery/telecomms/message_server,
/turf/open/floor/plasteel/dark/telecomms/mainframe,
/area/tcommsat/server)
"cch" = (
@@ -43348,7 +43102,7 @@
/turf/open/floor/engine/co2,
/area/engine/atmos)
"ccE" = (
-/obj/structure/sign/nosmoking_2{
+/obj/structure/sign/warning/nosmoking{
pixel_y = 28
},
/turf/open/floor/plating,
@@ -43610,7 +43364,6 @@
/turf/open/floor/plasteel,
/area/engine/engineering)
"cdp" = (
-/obj/effect/landmark/lightsout,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
dir = 8
@@ -43902,7 +43655,7 @@
/turf/open/floor/plasteel/dark/telecomms/mainframe,
/area/tcommsat/server)
"cec" = (
-/obj/structure/sign/nosmoking_2{
+/obj/structure/sign/warning/nosmoking{
pixel_y = -32
},
/obj/machinery/light,
@@ -43993,7 +43746,7 @@
/turf/open/floor/plasteel,
/area/crew_quarters/heads/chief)
"cep" = (
-/obj/structure/sign/securearea,
+/obj/structure/sign/warning/securearea,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/closed/wall/r_wall,
/area/engine/engineering)
@@ -44095,7 +43848,7 @@
/turf/open/floor/plating,
/area/maintenance/aft)
"ceE" = (
-/obj/structure/sign/fire{
+/obj/structure/sign/warning/fire{
pixel_y = -32
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -44120,7 +43873,7 @@
/turf/closed/wall,
/area/maintenance/aft)
"ceI" = (
-/obj/structure/sign/biohazard,
+/obj/structure/sign/warning/biohazard,
/turf/closed/wall,
/area/maintenance/aft)
"ceJ" = (
@@ -44191,11 +43944,7 @@
/turf/open/floor/plating,
/area/maintenance/starboard/aft)
"ceU" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
- icon_state = "space";
- layer = 4;
- name = "EXTERNAL AIRLOCK";
+/obj/structure/sign/warning/vacuum/external{
pixel_y = -32
},
/turf/open/floor/plating,
@@ -44272,14 +44021,11 @@
},
/area/engine/engineering)
"cfe" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'RADIOACTIVE AREA'";
- icon_state = "radiation";
- name = "RADIOACTIVE AREA";
+/obj/structure/sign/warning/radiation/rad_area{
pixel_x = -32
},
/obj/structure/disposalpipe/segment,
-/obj/structure/sign/securearea{
+/obj/structure/sign/warning/securearea{
pixel_x = 32
},
/obj/structure/cable{
@@ -44493,7 +44239,7 @@
/turf/open/floor/plasteel,
/area/engine/engineering)
"cfK" = (
-/obj/structure/sign/securearea,
+/obj/structure/sign/warning/securearea,
/turf/closed/wall,
/area/engine/engineering)
"cfL" = (
@@ -44614,7 +44360,7 @@
/area/maintenance/disposal/incinerator)
"cgb" = (
/obj/machinery/disposal/bin,
-/obj/structure/sign/deathsposal{
+/obj/structure/sign/warning/deathsposal{
pixel_y = 32
},
/obj/structure/disposalpipe/trunk,
@@ -44679,7 +44425,7 @@
/area/maintenance/starboard/aft)
"cgk" = (
/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/sign/biohazard,
+/obj/structure/sign/warning/biohazard,
/turf/open/floor/plating,
/area/science/xenobiology)
"cgl" = (
@@ -44750,7 +44496,7 @@
/turf/open/floor/plating,
/area/maintenance/starboard/aft)
"cgt" = (
-/obj/structure/sign/securearea{
+/obj/structure/sign/warning/securearea{
pixel_y = 32
},
/obj/effect/spawner/lootdrop/maintenance,
@@ -44805,11 +44551,7 @@
/turf/open/space,
/area/solar/port/aft)
"cgA" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
- icon_state = "space";
- layer = 4;
- name = "EXTERNAL AIRLOCK";
+/obj/structure/sign/warning/vacuum/external{
pixel_x = -32
},
/turf/open/floor/plating,
@@ -44845,11 +44587,7 @@
/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"
- },
+/obj/structure/sign/warning/electricshock,
/turf/closed/wall/r_wall,
/area/maintenance/solars/port/aft)
"cgF" = (
@@ -45603,7 +45341,7 @@
/turf/closed/wall/r_wall,
/area/engine/atmos)
"ciy" = (
-/obj/structure/sign/nosmoking_2{
+/obj/structure/sign/warning/nosmoking{
pixel_x = -28
},
/obj/machinery/atmospherics/components/unary/portables_connector/visible{
@@ -45644,7 +45382,7 @@
name = "output gas connector port"
},
/obj/machinery/portable_atmospherics/canister,
-/obj/structure/sign/nosmoking_2{
+/obj/structure/sign/warning/nosmoking{
pixel_x = 28
},
/turf/open/floor/plasteel/floorgrime,
@@ -45905,7 +45643,7 @@
},
/area/crew_quarters/heads/chief)
"cjk" = (
-/obj/structure/sign/securearea,
+/obj/structure/sign/warning/securearea,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -46053,11 +45791,7 @@
/turf/open/floor/plating,
/area/maintenance/solars/starboard/aft)
"cjG" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'HIGH VOLTAGE'";
- icon_state = "shock";
- name = "HIGH VOLTAGE"
- },
+/obj/structure/sign/warning/electricshock,
/turf/closed/wall/r_wall,
/area/maintenance/solars/starboard/aft)
"cjH" = (
@@ -46798,11 +46532,7 @@
/turf/open/floor/plating,
/area/maintenance/solars/starboard/aft)
"clA" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
- icon_state = "space";
- layer = 4;
- name = "EXTERNAL AIRLOCK";
+/obj/structure/sign/warning/vacuum/external{
pixel_y = 32
},
/turf/open/floor/plating,
@@ -47074,11 +46804,7 @@
/turf/open/floor/plating,
/area/maintenance/solars/starboard/aft)
"cmx" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
- icon_state = "space";
- layer = 4;
- name = "EXTERNAL AIRLOCK";
+/obj/structure/sign/warning/vacuum/external{
pixel_y = -32
},
/turf/open/floor/plating,
@@ -47162,7 +46888,7 @@
},
/area/engine/engineering)
"cmN" = (
-/obj/structure/sign/nosmoking_2{
+/obj/structure/sign/warning/nosmoking{
pixel_y = 32
},
/obj/structure/cable{
@@ -47209,7 +46935,7 @@
/obj/machinery/light/small{
dir = 8
},
-/obj/structure/sign/fire{
+/obj/structure/sign/warning/fire{
pixel_x = -32
},
/turf/open/floor/engine,
@@ -47219,7 +46945,7 @@
dir = 1;
on = 1
},
-/obj/structure/sign/fire{
+/obj/structure/sign/warning/fire{
pixel_x = 32
},
/obj/machinery/doorButtons/access_button{
@@ -47598,10 +47324,7 @@
/obj/structure/cable{
icon_state = "4-8"
},
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'HIGH VOLTAGE'";
- icon_state = "shock";
- name = "HIGH VOLTAGE";
+/obj/structure/sign/warning/electricshock{
pixel_x = -32
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -47627,7 +47350,7 @@
/obj/structure/cable{
icon_state = "4-8"
},
-/obj/structure/sign/nosmoking_2{
+/obj/structure/sign/warning/nosmoking{
pixel_y = 32
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -47690,11 +47413,7 @@
/obj/machinery/atmospherics/components/unary/vent_pump/siphon{
dir = 1
},
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
- icon_state = "space";
- layer = 4;
- name = "EXTERNAL AIRLOCK";
+/obj/structure/sign/warning/vacuum/external{
pixel_y = -32
},
/turf/open/floor/engine/vacuum,
@@ -48036,10 +47755,7 @@
/turf/open/floor/plasteel,
/area/engine/engine_smes)
"cpq" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'HIGH VOLTAGE'";
- icon_state = "shock";
- name = "HIGH VOLTAGE";
+/obj/structure/sign/warning/electricshock{
pixel_x = -32
},
/obj/machinery/computer/rdconsole/production{
@@ -48152,7 +47868,8 @@
id = "pod4";
name = "escape pod 4";
port_direction = 2;
- preferred_direction = 4
+ preferred_direction = 4;
+ timid = 0
},
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/pod_4)
@@ -48415,7 +48132,7 @@
/turf/open/floor/plating,
/area/maintenance/port/aft)
"cqo" = (
-/obj/structure/sign/pods{
+/obj/structure/sign/warning/pods{
pixel_x = 32
},
/obj/effect/turf_decal/stripes/line{
@@ -48439,7 +48156,8 @@
dir = 8;
id = "pod2";
name = "escape pod 2";
- port_direction = 2
+ port_direction = 2;
+ timid = 0
},
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/pod_2)
@@ -48453,7 +48171,7 @@
/turf/open/floor/plasteel,
/area/hallway/secondary/entry)
"cqs" = (
-/obj/structure/sign/fire,
+/obj/structure/sign/warning/fire,
/turf/closed/wall/r_wall,
/area/maintenance/disposal/incinerator)
"cqt" = (
@@ -48535,7 +48253,7 @@
/turf/open/floor/engine,
/area/engine/engineering)
"cqD" = (
-/obj/structure/sign/radiation,
+/obj/structure/sign/warning/radiation,
/turf/closed/wall/r_wall,
/area/engine/supermatter)
"cqE" = (
@@ -48646,11 +48364,7 @@
/turf/open/floor/plating,
/area/engine/engineering)
"cqT" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
- icon_state = "space";
- layer = 4;
- name = "EXTERNAL AIRLOCK";
+/obj/structure/sign/warning/vacuum/external{
pixel_x = 32
},
/turf/open/floor/plating,
@@ -48747,11 +48461,7 @@
/turf/open/floor/plating,
/area/engine/engineering)
"crp" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'HIGH VOLTAGE'";
- icon_state = "shock";
- name = "HIGH VOLTAGE"
- },
+/obj/structure/sign/warning/electricshock,
/turf/closed/wall/r_wall,
/area/engine/engineering)
"crq" = (
@@ -48967,11 +48677,7 @@
/turf/open/floor/plating,
/area/engine/engineering)
"crX" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
- icon_state = "space";
- layer = 4;
- name = "EXTERNAL AIRLOCK";
+/obj/structure/sign/warning/vacuum/external{
pixel_x = 32
},
/obj/structure/closet/emcloset/anchored,
@@ -49229,11 +48935,7 @@
/turf/open/floor/plating,
/area/ai_monitored/turret_protected/aisat_interior)
"csX" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
- icon_state = "space";
- layer = 4;
- name = "EXTERNAL AIRLOCK";
+/obj/structure/sign/warning/vacuum/external{
pixel_y = 32
},
/turf/open/floor/plating,
@@ -49294,7 +48996,7 @@
/area/ai_monitored/turret_protected/aisat_interior)
"cti" = (
/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/sign/securearea{
+/obj/structure/sign/warning/securearea{
pixel_y = -32
},
/turf/open/floor/plating,
@@ -49532,11 +49234,7 @@
},
/area/ai_monitored/turret_protected/aisat_interior)
"ctR" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'RADIOACTIVE AREA'";
- icon_state = "radiation";
- name = "RADIOACTIVE AREA"
- },
+/obj/structure/sign/warning/radiation/rad_area,
/turf/closed/wall,
/area/engine/engineering)
"ctS" = (
@@ -49636,7 +49334,7 @@
icon_state = "control_standby";
name = "Antechamber Turret Control";
pixel_y = -24;
- req_access_txt = "65"
+ req_access = list(65)
},
/obj/machinery/light/small,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -49872,7 +49570,7 @@
icon_state = "control_standby";
name = "Atmospherics Turret Control";
pixel_x = -27;
- req_access_txt = "65"
+ req_access = list(65)
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -49897,7 +49595,7 @@
icon_state = "control_standby";
name = "Service Bay Turret Control";
pixel_x = 27;
- req_access_txt = "65"
+ req_access = list(65)
},
/obj/machinery/atmospherics/pipe/manifold4w/scrubbers,
/turf/open/floor/plasteel/darkblue/corner{
@@ -50143,7 +49841,7 @@
/turf/closed/wall/r_wall,
/area/ai_monitored/turret_protected/ai)
"cvc" = (
-/obj/structure/sign/securearea{
+/obj/structure/sign/warning/securearea{
pixel_x = -32
},
/obj/machinery/porta_turret/ai{
@@ -50164,7 +49862,7 @@
/obj/machinery/porta_turret/ai{
dir = 4
},
-/obj/structure/sign/securearea{
+/obj/structure/sign/warning/securearea{
pixel_x = 32
},
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
@@ -50187,7 +49885,7 @@
name = "Chamber Hallway Turret Control";
pixel_x = 32;
pixel_y = -24;
- req_access_txt = "65"
+ req_access = list(65)
},
/turf/open/floor/plasteel/dark,
/area/ai_monitored/turret_protected/aisat_interior)
@@ -50289,7 +49987,7 @@
/turf/open/floor/circuit,
/area/ai_monitored/turret_protected/aisat/hallway)
"cvx" = (
-/obj/effect/landmark/tripai,
+/obj/effect/landmark/start/ai/secondary,
/obj/item/device/radio/intercom{
anyai = 1;
freerange = 1;
@@ -50328,7 +50026,7 @@
/turf/open/floor/plasteel/dark,
/area/ai_monitored/turret_protected/aisat/hallway)
"cvA" = (
-/obj/effect/landmark/tripai,
+/obj/effect/landmark/start/ai/secondary,
/obj/item/device/radio/intercom{
anyai = 1;
freerange = 1;
@@ -50432,7 +50130,7 @@
/turf/open/space,
/area/space/nearstation)
"cvL" = (
-/obj/structure/sign/securearea{
+/obj/structure/sign/warning/securearea{
pixel_x = 32
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -50451,7 +50149,7 @@
/turf/open/floor/circuit,
/area/ai_monitored/turret_protected/aisat/hallway)
"cvN" = (
-/obj/structure/sign/securearea{
+/obj/structure/sign/warning/securearea{
pixel_x = -32
},
/obj/structure/cable{
@@ -50582,7 +50280,7 @@
/turf/open/floor/plasteel/dark,
/area/ai_monitored/turret_protected/aisat/hallway)
"cwe" = (
-/obj/structure/sign/securearea,
+/obj/structure/sign/warning/securearea,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/closed/wall/r_wall,
/area/ai_monitored/turret_protected/ai)
@@ -50920,18 +50618,6 @@
/turf/open/floor/plasteel,
/area/ai_monitored/security/armory)
"cxE" = (
-/obj/machinery/door/airlock/titanium,
-/obj/docking_port/mobile{
- dir = 8;
- dwidth = 2;
- height = 13;
- id = "ferry";
- name = "ferry shuttle";
- port_direction = 1;
- preferred_direction = 4;
- roundstart_move = "ferry_away";
- width = 5
- },
/obj/docking_port/stationary{
dir = 8;
dwidth = 2;
@@ -50941,8 +50627,8 @@
turf_type = /turf/open/space;
width = 5
},
-/turf/open/floor/pod/light,
-/area/shuttle/transport)
+/turf/open/space/basic,
+/area/space)
"cxF" = (
/obj/machinery/door/airlock/titanium{
name = "Escape Pod Airlock"
@@ -50951,7 +50637,8 @@
dir = 8;
id = "pod1";
name = "escape pod 1";
- port_direction = 2
+ port_direction = 2;
+ timid = 0
},
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/pod_1)
@@ -51022,28 +50709,6 @@
/turf/open/floor/plating,
/area/hallway/secondary/entry)
"cyd" = (
-/obj/docking_port/mobile{
- callTime = 250;
- dheight = 0;
- dir = 2;
- dwidth = 11;
- height = 15;
- id = "whiteship";
- launch_status = 0;
- movement_force = list("KNOCKDOWN" = 0, "THROW" = 0);
- name = "NT Recovery White-Ship";
- port_direction = 8;
- preferred_direction = 4;
- roundstart_move = "whiteship_away";
- width = 28
- },
-/obj/machinery/door/airlock/titanium{
- name = "recovery shuttle external airlock"
- },
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
/obj/docking_port/stationary{
dir = 2;
dwidth = 11;
@@ -51052,26 +50717,8 @@
name = "SS13: Auxiliary Dock, Station-Port";
width = 35
},
-<<<<<<< HEAD
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/abandoned)
-"cye" = (
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"cyf" = (
-/obj/structure/shuttle/engine/propulsion/left{
- dir = 8
- },
-/turf/open/floor/plating/airless,
-/area/shuttle/abandoned)
-=======
/turf/open/space/basic,
/area/space)
->>>>>>> e645319... Changes up the Construction Area on Box slightly. (#35009)
"cyg" = (
/obj/machinery/door/airlock/command{
cyclelinkeddir = 1;
@@ -51191,14 +50838,6 @@
/turf/open/floor/plasteel,
/area/engine/engineering)
"cyT" = (
-/obj/machinery/door/airlock/titanium{
- name = "Supply Shuttle Airlock";
- req_access_txt = "31"
- },
-/obj/docking_port/mobile/supply{
- dwidth = 5;
- width = 12
- },
/obj/docking_port/stationary{
dir = 8;
dwidth = 5;
@@ -51207,8 +50846,8 @@
name = "Cargo Bay";
width = 12
},
-/turf/open/floor/plating,
-/area/shuttle/supply)
+/turf/open/space/basic,
+/area/space)
"cyU" = (
/obj/structure/cable{
icon_state = "1-2"
@@ -51690,7 +51329,7 @@
/turf/open/floor/plating,
/area/maintenance/fore/secondary)
"cAP" = (
-/obj/structure/sign/fire,
+/obj/structure/sign/warning/fire,
/turf/closed/wall/r_wall,
/area/engine/supermatter)
"cAQ" = (
@@ -53074,7 +52713,7 @@
/turf/open/floor/engine,
/area/engine/engineering)
"cFw" = (
-/obj/structure/sign/electricshock,
+/obj/structure/sign/warning/electricshock,
/turf/closed/wall/r_wall,
/area/engine/supermatter)
"cFy" = (
@@ -53773,20 +53412,17 @@
},
/area/science/robotics/lab)
"cIg" = (
-/obj/structure/shuttle/engine/propulsion{
- dir = 4
- },
-/obj/docking_port/mobile/arrivals,
/obj/docking_port/stationary{
dir = 8;
dwidth = 3;
height = 15;
id = "arrivals_stationary";
name = "arrivals";
+ roundstart_template = /datum/map_template/shuttle/arrival/box;
width = 7
},
-/turf/open/floor/plating/airless,
-/area/shuttle/arrival)
+/turf/open/space/basic,
+/area/space)
"cIh" = (
/obj/machinery/door/airlock/external{
cyclelinkeddir = 1;
@@ -54159,7 +53795,7 @@
/obj/structure/cable{
icon_state = "4-8"
},
-/obj/structure/sign/nosmoking_2{
+/obj/structure/sign/warning/nosmoking{
pixel_y = 32
},
/obj/machinery/camera{
@@ -54405,1149 +54041,313 @@
},
/turf/open/floor/plasteel/white,
/area/science/xenobiology)
+"cVb" = (
+/turf/closed/wall,
+/area/hallway/secondary/service)
+"dfh" = (
+/obj/machinery/power/apc{
+ areastring = "/area/science/circuit";
+ name = "Circuitry Lab APC";
+ pixel_x = 30
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/turf/open/floor/plasteel,
+/area/science/circuit)
+"dMZ" = (
+/obj/structure/sign/poster/official/random{
+ pixel_y = 32
+ },
+/turf/open/floor/plasteel/white,
+/area/science/circuit)
+"eaI" = (
+/obj/structure/table/reinforced,
+/obj/item/device/radio/intercom{
+ pixel_x = -30
+ },
+/turf/open/floor/plasteel/white,
+/area/science/circuit)
+"eyM" = (
+/obj/machinery/mineral/ore_redemption{
+ input_dir = 2;
+ output_dir = 1
+ },
+/obj/machinery/door/firedoor,
+/turf/open/floor/plasteel,
+/area/quartermaster/miningdock)
+"eRz" = (
+/obj/structure/lattice,
+/obj/structure/grille,
+/turf/open/space/basic,
+/area/space/nearstation)
+"eVL" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/light_switch{
+ pixel_y = 28
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/miningdock)
+"flc" = (
+/obj/machinery/bookbinder,
+/turf/open/floor/plasteel/white,
+/area/science/circuit)
+"fnC" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 4
+ },
+/obj/machinery/airalarm{
+ dir = 4;
+ pixel_x = -23
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/hydrofloor,
+/area/hallway/secondary/service)
+"fsQ" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/dark,
+/area/engine/engineering)
+"fKl" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel,
+/area/science/circuit)
+"gbq" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating,
+/area/construction)
+"gbT" = (
+/obj/structure/table,
+/obj/item/stack/sheet/metal/fifty,
+/obj/item/stack/sheet/glass/fifty,
+/turf/open/floor/plating,
+/area/maintenance/department/medical/morgue)
+"gjl" = (
+/turf/closed/wall,
+/area/quartermaster/warehouse)
+"gwd" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/science/circuit)
"gWd" = (
/obj/structure/cable{
icon_state = "1-4"
},
/turf/open/floor/plating,
/area/construction)
-"kSb" = (
-/obj/effect/turf_decal/bot,
-/turf/open/floor/plasteel,
-/area/quartermaster/miningdock)
-<<<<<<< HEAD
-"Qll" = (
-/obj/machinery/door/airlock/titanium{
- name = "recovery shuttle external airlock"
- },
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/abandoned)
-"Qlm" = (
-/obj/structure/toilet{
- pixel_y = 9
- },
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/obj/effect/decal/cleanable/greenglow{
- desc = "Looks like something's sprung a leak"
- },
-/obj/machinery/light/small/built{
+"gXs" = (
+/obj/structure/lattice,
+/turf/open/space/basic,
+/area/space/nearstation)
+"gZG" = (
+/obj/structure/closet/crate/freezer/surplus_limbs,
+/obj/item/reagent_containers/glass/beaker/synthflesh,
+/turf/open/floor/plasteel/white/side{
dir = 8
},
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"Qln" = (
-/obj/structure/mirror{
- pixel_x = 28
+/area/medical/sleeper)
+"hcE" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "1-2"
},
-/obj/structure/sink{
- dir = 4;
- pixel_x = 11
- },
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"Qlo" = (
-/obj/structure/closet/wardrobe/mixed,
-/obj/item/clothing/under/rank/centcom_officer{
- desc = "A badge on the arm indicates that it's meant to be worn by CentCom recovery teams. This one seems dusty and clearly hasn't been cleaned in some time.";
- name = "\improper dusty old CentCom jumpsuit"
- },
-/obj/item/clothing/under/rank/centcom_commander{
- desc = "A badge on the arm indicates that it's meant to be worn by CentCom recovery teams. This one seems dusty and clearly hasn't been cleaned in some time.";
- name = "\improper dusty old CentCom jumpsuit"
- },
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"Qlp" = (
-/obj/structure/table,
-/obj/item/storage/pill_bottle/dice{
- pixel_y = 3
- },
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"Qlq" = (
-/obj/structure/table,
-/obj/item/stack/sheet/metal/fifty,
-/obj/item/stock_parts/cell/high{
- charge = 100;
- maxcharge = 15000;
- pixel_y = 2
- },
-/obj/effect/decal/cleanable/cobweb,
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"Qlr" = (
-/obj/machinery/suit_storage_unit/standard_unit,
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"Qlt" = (
-/obj/structure/tank_dispenser/oxygen{
- layer = 2.7;
- pixel_x = -1;
- pixel_y = 2
- },
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"Qlu" = (
-/obj/structure/sign/vacuum{
- pixel_x = -32
- },
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/obj/machinery/light/small/built{
- dir = 8
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/abandoned)
-"Qlv" = (
-/obj/item/storage/box/lights/mixed,
-/obj/item/cigbutt,
-/obj/structure/closet/crate{
- icon_state = "crateopen";
- name = "spare equipment crate";
- opened = 1
- },
-/obj/item/tank/internals/oxygen/red,
-/obj/item/tank/internals/air,
-/obj/effect/spawner/lootdrop/maintenance{
- lootcount = 2;
- name = "2maintenance loot spawner"
- },
-/obj/item/clothing/mask/breath,
-/obj/item/clothing/mask/breath,
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/obj/effect/turf_decal/bot,
-/turf/open/floor/plasteel,
-/area/shuttle/abandoned)
-"Qlw" = (
-/obj/structure/closet/crate{
- name = "emergency supplies crate"
- },
-/obj/item/storage/toolbox/emergency,
-/obj/item/storage/toolbox/emergency,
-/obj/item/device/flashlight/flare{
- pixel_x = 3;
- pixel_y = 3
- },
-/obj/item/device/flashlight/flare{
- pixel_x = -6;
- pixel_y = -2
- },
-/obj/item/crowbar,
-/obj/item/wrench,
-/obj/effect/spawner/lootdrop/maintenance,
-/obj/item/extinguisher,
-/obj/item/extinguisher,
-/obj/effect/decal/cleanable/cobweb/cobweb2,
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/obj/effect/turf_decal/bot,
-/turf/open/floor/plasteel,
-/area/shuttle/abandoned)
-"Qlx" = (
-/obj/machinery/door/airlock/titanium{
- name = "bathroom"
- },
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/abandoned)
-"Qly" = (
-/obj/effect/decal/cleanable/blood/old,
-/obj/effect/decal/cleanable/blood/gibs/old,
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/obj/effect/decal/remains/human{
- desc = "They look like human remains, and have clearly been gnawed at."
- },
-/obj/item/gun/energy/laser/retro,
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/abandoned)
-"Qlz" = (
-/obj/structure/bed,
-/obj/item/bedsheet/centcom,
-/obj/effect/decal/remains/human,
-/obj/effect/decal/cleanable/blood/old,
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/obj/machinery/light/small/built{
- dir = 4
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"QlA" = (
-/obj/structure/table,
-/obj/item/storage/belt/utility,
-/obj/item/storage/belt/utility,
-/obj/item/device/radio/off,
-/obj/item/device/radio/off,
-/obj/item/device/radio/off,
-/obj/item/device/radio/off,
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/obj/machinery/light/small/built{
- dir = 8
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"QlB" = (
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/obj/effect/decal/cleanable/oil,
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/abandoned)
-"QlD" = (
-/obj/machinery/door/airlock/titanium{
- name = "E.V.A. equipment"
- },
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/abandoned)
-"QlF" = (
-/obj/effect/decal/cleanable/blood/old,
-/obj/effect/decal/cleanable/blood/gibs/old,
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/obj/effect/decal/remains/human{
- desc = "They look like human remains, and have clearly been gnawed at."
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/abandoned)
-"QlG" = (
-/obj/machinery/door/airlock/titanium{
- name = "cargo bay"
- },
-/obj/effect/turf_decal/delivery{
- dir = 1
- },
-/turf/open/floor/plasteel{
- dir = 1
- },
-/area/shuttle/abandoned)
-"QlH" = (
-/obj/effect/decal/cleanable/oil,
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/obj/effect/turf_decal/delivery{
- dir = 1
- },
-/turf/open/floor/plasteel{
- dir = 1
- },
-/area/shuttle/abandoned)
-"QlI" = (
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/obj/effect/turf_decal/delivery{
- dir = 1
- },
-/turf/open/floor/plasteel{
- dir = 1
- },
-/area/shuttle/abandoned)
-"QlK" = (
-/obj/effect/decal/cleanable/robot_debris/old,
-/obj/effect/decal/cleanable/oil,
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/obj/effect/turf_decal/delivery{
- dir = 1
- },
-/turf/open/floor/plasteel{
- dir = 1
- },
-/area/shuttle/abandoned)
-"QlL" = (
-/obj/machinery/shower{
- dir = 4
- },
-/obj/machinery/door/window/westright{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/obj/item/soap/nanotrasen,
-/obj/effect/decal/remains/human{
- desc = "They look like human remains, and have clearly been gnawed at."
- },
-/obj/effect/decal/cleanable/blood/gibs/old,
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"QlM" = (
-/obj/effect/decal/cleanable/blood/old,
-/obj/structure/mirror{
- pixel_x = 28
- },
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/obj/machinery/light/small/built{
- dir = 4
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/abandoned)
-"QlN" = (
-/obj/effect/decal/cleanable/blood/old,
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/obj/effect/decal/cleanable/blood/gibs/limb,
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/abandoned)
-"QlO" = (
-/obj/structure/bed,
-/obj/item/bedsheet/centcom,
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"QlP" = (
-/obj/structure/rack,
-/obj/item/storage/toolbox/electrical{
- pixel_x = 1;
- pixel_y = 6
- },
-/obj/item/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,
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"QlR" = (
-/obj/machinery/portable_atmospherics/canister/oxygen,
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/obj/machinery/light/small{
- dir = 4
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"QlS" = (
-/obj/effect/decal/cleanable/oil,
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/obj/effect/turf_decal/bot,
-/turf/open/floor/plasteel,
-/area/shuttle/abandoned)
-"QlU" = (
-/obj/structure/closet/emcloset,
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/obj/effect/turf_decal/bot,
-/obj/machinery/light/small,
-/turf/open/floor/plasteel,
-/area/shuttle/abandoned)
-"QlV" = (
-/obj/structure/closet/firecloset/full,
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/obj/effect/turf_decal/bot,
-/turf/open/floor/plasteel,
-/area/shuttle/abandoned)
-"QlW" = (
-/obj/structure/sign/restroom,
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/abandoned)
-"QlX" = (
-/obj/machinery/door/airlock/titanium{
- name = "bathroom"
- },
-/obj/effect/decal/cleanable/blood/old,
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/abandoned)
-"QlY" = (
-/obj/machinery/door/airlock/titanium{
- name = "dormitory"
- },
-/obj/effect/decal/cleanable/blood/old,
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/abandoned)
-"QlZ" = (
-/obj/machinery/vending/boozeomat{
- icon_deny = "smartfridge";
- icon_state = "smartfridge";
- req_access_txt = "0";
- use_power = 0
- },
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/abandoned)
-"Qmb" = (
-/obj/machinery/door/airlock/titanium{
- name = "recovery shuttle interior airlock"
- },
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/abandoned)
-"Qmd" = (
-/obj/structure/sign/cargo,
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/abandoned)
-"Qme" = (
-/obj/machinery/door/airlock/titanium{
- name = "cargo bay"
- },
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/obj/effect/turf_decal/delivery{
- dir = 1
- },
-/turf/open/floor/plasteel{
- dir = 1
- },
-/area/shuttle/abandoned)
-"Qmf" = (
-/obj/machinery/porta_turret/centcom_shuttle/weak{
- dir = 4
- },
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/abandoned)
-"Qmg" = (
-/obj/machinery/vending/cigarette{
- use_power = 0
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"Qmi" = (
-/obj/effect/decal/cleanable/blood/old,
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/obj/effect/decal/cleanable/blood/gibs/limb,
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/abandoned)
-"Qmj" = (
-/obj/effect/decal/cleanable/blood/gibs/old,
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/obj/machinery/light/built{
- dir = 1
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/abandoned)
-"Qmk" = (
-/obj/effect/decal/cleanable/blood/old,
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/abandoned)
-"Qmn" = (
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/obj/machinery/light/built{
- dir = 1
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/abandoned)
-"Qmo" = (
-/obj/structure/table,
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/obj/item/folder/blue,
-/obj/item/pen,
-/obj/machinery/light{
- dir = 1
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"Qmp" = (
-/obj/structure/table,
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/obj/item/storage/photo_album,
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"Qmq" = (
-/obj/structure/reagent_dispensers/fueltank,
-/obj/structure/sign/vacuum{
- pixel_x = -32
- },
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/obj/machinery/light/small/built{
- dir = 4
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/abandoned)
-"Qmr" = (
-/obj/machinery/vending/coffee,
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"Qmt" = (
-/obj/structure/chair,
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"Qmw" = (
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"QmC" = (
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/obj/machinery/turretid{
- icon_state = "control_kill";
- lethal = 1;
- locked = 0;
- pixel_x = -28;
- req_access = null
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"QmD" = (
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/obj/structure/chair/office/light{
- dir = 1
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/abandoned)
-"QmF" = (
-/obj/machinery/door/airlock/titanium{
- name = "recovery shuttle interior airlock"
- },
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/abandoned)
-"QmG" = (
-/obj/structure/chair{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"QmH" = (
-/obj/structure/table,
-/obj/item/reagent_containers/food/drinks/shaker,
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"QmI" = (
-/obj/structure/table,
-/obj/item/reagent_containers/food/condiment/peppermill{
- pixel_x = 3;
- pixel_y = 4
- },
-/obj/item/reagent_containers/food/condiment/saltshaker{
- pixel_x = -3;
- pixel_y = 4
- },
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"QmJ" = (
-/obj/structure/table,
-/obj/item/storage/fancy/donut_box,
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"QmK" = (
-/obj/structure/chair{
- dir = 8
- },
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"QmL" = (
-/obj/machinery/door/airlock/titanium{
- name = "living quarters"
- },
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/abandoned)
-"QmM" = (
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/obj/item/roller{
- pixel_x = -3;
- pixel_y = 7
- },
-/obj/item/roller{
- pixel_x = 3;
- pixel_y = 4
- },
-/obj/item/reagent_containers/spray/cleaner,
-/obj/structure/table,
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"QmN" = (
-/obj/item/clothing/suit/bio_suit,
-/obj/item/clothing/suit/bio_suit,
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/obj/item/clothing/gloves/color/latex,
-/obj/item/clothing/gloves/color/latex,
-/obj/item/clothing/head/bio_hood,
-/obj/item/clothing/head/bio_hood,
-/obj/item/clothing/mask/breath,
-/obj/item/clothing/mask/breath,
-/obj/structure/table,
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"QmO" = (
-/obj/effect/decal/cleanable/blood/gibs/old,
-/obj/effect/decal/cleanable/blood/old,
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/obj/effect/decal/remains/human{
- desc = "They look like human remains, and have clearly been gnawed at."
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"QmP" = (
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/obj/item/clothing/gloves/color/black,
-/obj/item/clothing/gloves/color/black,
-/obj/item/clothing/suit/armor/vest,
-/obj/item/clothing/suit/armor/vest,
-/obj/structure/table,
-/obj/item/clothing/head/helmet/swat/nanotrasen,
-/obj/item/clothing/head/helmet/swat/nanotrasen,
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"QmQ" = (
-/obj/item/storage/toolbox/emergency{
- pixel_x = -3;
- pixel_y = 3
- },
-/obj/item/storage/toolbox/emergency,
-/obj/item/storage/toolbox/emergency{
- pixel_x = 3;
- pixel_y = -3
- },
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/obj/structure/table,
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"QmR" = (
-/obj/machinery/door/airlock/titanium{
- name = "bridge"
- },
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/abandoned)
-"QmS" = (
-/obj/effect/decal/cleanable/blood/old,
-/obj/structure/chair/comfy/black{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"QmT" = (
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/obj/machinery/computer/shuttle/white_ship{
- dir = 8
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"QmU" = (
-/obj/structure/reagent_dispensers/watertank,
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/obj/structure/light_construct/small{
- dir = 4
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/abandoned)
-"QmV" = (
-/obj/machinery/vending/cola/random,
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"Qnd" = (
-/obj/effect/decal/cleanable/blood/old,
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/obj/structure/chair/office/light,
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/abandoned)
-"Qne" = (
-/obj/effect/decal/cleanable/blood/old,
-/obj/effect/decal/cleanable/blood/gibs/old,
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/obj/item/clothing/head/centhat{
- desc = "There's a gouge through the top where something has clawed clean through it. Whoever was wearing it probably doesn't need a hat any more.";
- name = "\improper damaged CentCom hat"
- },
-/obj/effect/decal/remains/human{
- desc = "They look like human remains, and have clearly been gnawed at."
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/abandoned)
-"Qnf" = (
-/obj/item/phone{
- pixel_x = -3;
- pixel_y = 3
- },
-/obj/item/cigbutt/cigarbutt{
- pixel_x = 5;
- pixel_y = -1
- },
-/obj/structure/table,
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"Qng" = (
-/obj/machinery/vending/snack/random,
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"Qnh" = (
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/obj/machinery/light/built{
- dir = 2
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/abandoned)
-"Qni" = (
-/obj/structure/sign/science{
- pixel_y = -32
- },
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/abandoned)
-"Qnj" = (
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/obj/machinery/light,
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/abandoned)
-"Qnk" = (
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/obj/structure/table,
-/obj/item/device/megaphone,
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"Qnl" = (
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/obj/machinery/computer/camera_advanced/shuttle_docker/whiteship{
- station_lock_override = 1;
- view_range = 15;
- x_offset = -3;
- y_offset = -7
- },
-/obj/machinery/light/built{
- dir = 2
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"Qnm" = (
-/obj/structure/table,
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"Qnn" = (
-/obj/structure/table,
-/obj/item/device/radio/off{
- pixel_y = 6
- },
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"Qno" = (
-/obj/structure/sign/botany,
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/abandoned)
-"Qnp" = (
-/obj/machinery/door/airlock/titanium{
- name = "hydroponics"
- },
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/abandoned)
-"Qnq" = (
-/obj/machinery/door/airlock/titanium{
- name = "kitchen"
- },
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/abandoned)
-"Qnr" = (
-/obj/machinery/door/airlock/titanium{
- name = "laboratory"
- },
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/abandoned)
-"Qns" = (
-/obj/structure/sign/bluecross_2,
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/abandoned)
-"Qnt" = (
-/obj/item/storage/bag/plants/portaseeder,
-/obj/structure/table,
-/obj/item/reagent_containers/spray/plantbgone{
- pixel_x = 13;
- pixel_y = 5
- },
-/obj/item/reagent_containers/glass/bottle/nutrient/ez,
-/obj/item/reagent_containers/glass/bottle/nutrient/ez,
-/obj/item/reagent_containers/glass/bottle/nutrient/ez,
-/obj/item/reagent_containers/glass/bottle/nutrient/rh{
- pixel_x = -2;
- pixel_y = 3
- },
-/obj/effect/decal/cleanable/cobweb,
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"Qnu" = (
-/obj/machinery/biogenerator{
- idle_power_usage = 0;
- use_power = 0
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"Qnv" = (
-/obj/machinery/vending/hydroseeds{
- use_power = 0
- },
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/obj/machinery/light/small/built{
- dir = 1
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"Qnw" = (
-/obj/machinery/processor,
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/obj/machinery/light/small/built{
- dir = 1
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"Qnx" = (
-/obj/structure/kitchenspike,
-/obj/effect/decal/cleanable/blood/gibs/old,
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"Qny" = (
-/obj/structure/table,
-/obj/machinery/microwave{
- pixel_x = -3;
- pixel_y = 6
- },
-/obj/item/storage/box/donkpockets,
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/obj/effect/decal/cleanable/cobweb/cobweb2,
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"Qnz" = (
-/obj/effect/decal/cleanable/oil,
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"QnA" = (
-/obj/machinery/sleeper{
- dir = 4;
- use_power = 0
- },
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"QnB" = (
-/obj/structure/closet/crate/freezer,
-/obj/item/reagent_containers/blood/empty{
- pixel_x = -3;
- pixel_y = -3
-=======
-"nxv" = (
/obj/machinery/power/apc{
- name = "Construction Area APC";
- areastring = "/area/construction";
- pixel_y = -24
->>>>>>> e645319... Changes up the Construction Area on Box slightly. (#35009)
+ dir = 4;
+ name = "Cargo Warehouse APC";
+ areastring = "/area/quartermaster/warehouse";
+ pixel_x = 26
},
/obj/structure/cable{
- icon_state = "0-8"
+ icon_state = "0-2"
},
/turf/open/floor/plating,
-/area/construction)
-"rKP" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 1
- },
+/area/maintenance/port)
+"ijc" = (
+/obj/structure/table,
+/obj/item/stack/sheet/metal/fifty,
+/turf/open/floor/plasteel/dark,
+/area/engine/engineering)
+"ipA" = (
+/obj/machinery/droneDispenser,
/turf/open/floor/plating,
-/area/construction)
-"xhV" = (
+/area/maintenance/department/medical/morgue)
+"itG" = (
+/obj/structure/table/reinforced,
+/obj/item/paper_bin,
+/obj/item/pen,
+/turf/open/floor/plasteel/white,
+/area/science/circuit)
+"iNn" = (
+/obj/machinery/camera{
+ c_tag = "Kitchen Cold Room"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/reagent_dispensers/cooking_oil,
+/turf/open/floor/plasteel/showroomfloor,
+/area/crew_quarters/kitchen)
+"jbf" = (
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
+/obj/machinery/power/apc{
+ areastring = "/area/hallway/secondary/service";
+ dir = 1;
+ name = "Service Hall APC";
+ pixel_y = 25
+ },
+/turf/open/floor/plasteel/hydrofloor,
+/area/hallway/secondary/service)
+"jgm" = (
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/obj/machinery/camera{
+ c_tag = "Circuitry Lab";
+ dir = 8;
+ network = list("SS13","RD")
+ },
+/turf/open/floor/plasteel,
+/area/science/circuit)
+"jlm" = (
+/obj/machinery/rnd/protolathe/department/cargo,
+/turf/open/floor/plasteel,
+/area/quartermaster/office)
+"jrE" = (
+/obj/machinery/rnd/protolathe/department/science,
+/obj/structure/sign/poster/official/random{
+ pixel_x = 32
+ },
+/turf/open/floor/plasteel/white,
+/area/science/circuit)
+"jAD" = (
+/obj/structure/grille,
+/turf/open/floor/plating/airless,
+/area/space/nearstation)
+"jCq" = (
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
+ dir = 5
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard/aft)
+"jHt" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/disposalpipe/segment{
+ dir = 10
},
/obj/structure/cable{
icon_state = "2-8"
},
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
/turf/open/floor/plating,
-/area/construction)
-"Pvz" = (
+/area/maintenance/starboard/aft)
+"jMY" = (
+/obj/structure/table,
+/obj/item/stack/cable_coil{
+ pixel_x = 3;
+ pixel_y = -7
+ },
+/obj/item/stack/cable_coil,
+/turf/open/floor/plasteel/dark,
+/area/engine/engineering)
+"jSO" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/science/circuit)
+"jVl" = (
/obj/structure/cable{
icon_state = "4-8"
},
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/turf/open/floor/plating,
-/area/construction)
-"Qod" = (
-/obj/structure/lattice,
-/obj/structure/grille,
-/turf/open/space/basic,
-/area/space/nearstation)
-"Qof" = (
-/obj/structure/lattice,
-/obj/structure/grille/broken,
-/turf/open/space/basic,
-/area/space/nearstation)
-"Qoi" = (
-/obj/structure/lattice,
-/turf/open/space/basic,
-/area/space/nearstation)
-"Qol" = (
-/obj/structure/grille,
-/turf/open/floor/plating/airless,
-/area/space/nearstation)
-"Qov" = (
+/area/maintenance/starboard/aft)
+"khb" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 10
+ },
+/obj/structure/table,
+/obj/item/kitchen/rollingpin,
+/turf/open/floor/plasteel/hydrofloor,
+/area/hallway/secondary/service)
+"kob" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard/aft)
+"kPd" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/hydrofloor,
+/area/hallway/secondary/service)
+"kQk" = (
+/obj/structure/rack,
+/obj/effect/spawner/lootdrop/maintenance{
+ lootcount = 2;
+ name = "2maintenance loot spawner"
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/medical/morgue)
+"kQq" = (
/obj/effect/turf_decal/stripes/line,
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
dir = 4
},
/turf/open/floor/engine,
/area/engine/engineering)
-"Qoz" = (
+"kSb" = (
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/quartermaster/miningdock)
+"lAB" = (
+/obj/structure/sign/nanotrasen,
+/turf/closed/wall,
+/area/science/circuit)
+"lMg" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/turf/open/floor/plasteel,
+/area/science/circuit)
+"lQG" = (
+/obj/effect/spawner/structure/window,
+/turf/open/floor/plating,
+/area/science/circuit)
+"mBv" = (
/obj/structure/cable{
icon_state = "1-2"
},
@@ -55558,116 +54358,72 @@
},
/turf/open/floor/engine,
/area/engine/engineering)
-"QoA" = (
-/obj/structure/table,
-/obj/item/stack/cable_coil{
- pixel_x = 3;
- pixel_y = -7
+"mNi" = (
+/obj/machinery/light_switch{
+ pixel_x = -20
},
-/obj/item/stack/cable_coil,
-/turf/open/floor/plasteel/dark,
-/area/engine/engineering)
-"QoB" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/dark,
-/area/engine/engineering)
-"QoC" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/dark,
-/area/engine/engineering)
-"QoD" = (
-/obj/structure/table,
-/obj/item/stack/sheet/metal/fifty,
-/turf/open/floor/plasteel/dark,
-/area/engine/engineering)
-"QoG" = (
+/turf/open/floor/plasteel/white,
+/area/science/circuit)
+"mRe" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/plasteel/white,
+/area/science/circuit)
+"noK" = (
/obj/structure/girder,
/turf/open/floor/plasteel/dark,
/area/engine/engineering)
-"QoH" = (
-/obj/item/wrench,
-/obj/item/weldingtool,
-/obj/item/clothing/head/welding{
- pixel_x = -3;
- pixel_y = 5
+"nxv" = (
+/obj/machinery/power/apc{
+ name = "Construction Area APC";
+ areastring = "/area/construction";
+ pixel_y = -24
},
-/obj/structure/rack,
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/turf/open/floor/plating,
+/area/construction)
+"nzh" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/dark,
/area/engine/engineering)
-"QoI" = (
+"nGt" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard/aft)
+"nRG" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 10
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard/aft)
+"oDF" = (
/obj/machinery/light,
/turf/open/floor/plating,
/area/engine/engineering)
-"QoK" = (
-/obj/item/crowbar/large,
-/obj/structure/rack,
-/obj/item/device/flashlight,
-/turf/open/floor/plasteel/dark,
-/area/engine/engineering)
-"QoL" = (
-/obj/machinery/camera{
- c_tag = "Kitchen Cold Room"
+"oHU" = (
+/obj/structure/cable{
+ icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/reagent_dispensers/cooking_oil,
-/turf/open/floor/plasteel/showroomfloor,
-/area/crew_quarters/kitchen)
-"QoM" = (
-/obj/machinery/rnd/protolathe/department/service,
-/turf/open/floor/plating,
-/area/crew_quarters/kitchen)
-"QoN" = (
-/obj/machinery/rnd/protolathe/department/cargo,
/turf/open/floor/plasteel,
-/area/quartermaster/storage)
-"QoO" = (
-/obj/machinery/mineral/ore_redemption{
- input_dir = 2;
- output_dir = 1
- },
-/obj/machinery/door/firedoor,
-/turf/open/floor/plasteel,
-/area/quartermaster/miningdock)
-"QoP" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/light_switch{
- pixel_y = 28
- },
-/obj/machinery/light{
+/area/science/circuit)
+"oUh" = (
+/obj/structure/disposalpipe/trunk{
dir = 1
},
-/turf/open/floor/plasteel,
-/area/quartermaster/miningdock)
-"QoT" = (
-/obj/effect/turf_decal/loading_area,
-/turf/open/floor/plasteel/showroomfloor,
-/area/crew_quarters/kitchen)
-"QoU" = (
-/obj/structure/closet/crate/freezer/surplus_limbs,
-/obj/item/reagent_containers/glass/beaker/synthflesh,
-/turf/open/floor/plasteel/white/side{
- dir = 8
- },
-/area/medical/sleeper)
-"QoV" = (
-/obj/structure/rack,
-/obj/effect/spawner/lootdrop/maintenance{
- lootcount = 2;
- name = "2maintenance loot spawner"
- },
-/turf/open/floor/plating,
-/area/maintenance/department/medical/morgue)
-"QoW" = (
-/obj/machinery/droneDispenser,
-/turf/open/floor/plating,
-/area/maintenance/department/medical/morgue)
-"QoX" = (
-/obj/structure/table,
-/obj/item/stack/sheet/metal/fifty,
-/obj/item/stack/sheet/glass/fifty,
-/turf/open/floor/plating,
-/area/maintenance/department/medical/morgue)
-"QoY" = (
+/obj/machinery/disposal/bin,
+/turf/open/floor/plasteel/white,
+/area/science/circuit)
+"pHl" = (
/obj/structure/table,
/obj/item/storage/box/beakers{
pixel_x = 2;
@@ -55695,280 +54451,40 @@
},
/turf/open/floor/plasteel/white,
/area/medical/sleeper)
-"QoZ" = (
-/turf/closed/wall,
-/area/quartermaster/warehouse)
-"Qpb" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/power/apc{
- dir = 4;
- name = "Cargo Warehouse APC";
- areastring = "/area/quartermaster/warehouse";
- pixel_x = 26
- },
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/turf/open/floor/plating,
-/area/maintenance/port)
-"Qpi" = (
-/obj/structure/table,
-/obj/item/reagent_containers/food/drinks/beer,
-/turf/open/floor/plating,
-/area/maintenance/starboard/aft)
-"Qpj" = (
-/obj/structure/disposalpipe/segment{
- dir = 5
- },
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 5
- },
-/turf/open/floor/plating,
-/area/maintenance/starboard/aft)
-"Qpk" = (
+"pNx" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/disposalpipe/segment{
- dir = 10
- },
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/starboard/aft)
-"Qpl" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/door/airlock/maintenance/abandoned,
-/turf/open/floor/plating,
-/area/maintenance/starboard/aft)
-"Qpm" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 10
- },
-/turf/open/floor/plating,
-/area/maintenance/starboard/aft)
-"Qpn" = (
-/obj/structure/table,
-/obj/effect/spawner/lootdrop/grille_or_trash,
-/turf/open/floor/plating,
-/area/maintenance/starboard/aft)
-"Qpp" = (
-/turf/closed/wall,
-/area/science/circuit)
-"Qpv" = (
-/obj/structure/table,
-/obj/effect/spawner/lootdrop/maintenance{
- lootcount = 8;
- name = "8maintenance loot spawner"
- },
-/turf/open/floor/plating,
-/area/maintenance/starboard/aft)
-"Qpx" = (
-/obj/structure/table/reinforced,
-/obj/item/device/multitool,
-/obj/item/screwdriver,
-/obj/machinery/camera{
- c_tag = "Circuitry Lab North";
- network = list("SS13","RD")
- },
-/turf/open/floor/plasteel/white,
-/area/science/circuit)
-"Qpy" = (
-/obj/structure/sign/poster/official/random{
- pixel_y = 32
- },
-/turf/open/floor/plasteel/white,
-/area/science/circuit)
-"QpA" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/maintenance/starboard/aft)
-"QpC" = (
-/obj/structure/table/reinforced,
-/obj/machinery/firealarm{
- dir = 8;
- pixel_x = -24
- },
-/turf/open/floor/plasteel/white,
-/area/science/circuit)
-"QpF" = (
-/obj/machinery/bookbinder,
-/turf/open/floor/plasteel/white,
-/area/science/circuit)
-"QpJ" = (
-/obj/machinery/light{
- dir = 4
- },
-/obj/machinery/libraryscanner,
-/turf/open/floor/plasteel/white,
-/area/science/circuit)
-"QpM" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on,
-/turf/open/floor/plasteel/white,
-/area/science/circuit)
-"QpP" = (
-/obj/machinery/light_switch{
- pixel_x = -20
- },
-/turf/open/floor/plasteel/white,
-/area/science/circuit)
-"QpQ" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 9
- },
-/turf/open/floor/plasteel,
-/area/science/circuit)
-"QpR" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/science/circuit)
-"QpS" = (
-/obj/structure/sign/nanotrasen,
-/turf/closed/wall,
-/area/science/circuit)
-"QpT" = (
-/obj/machinery/light{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/science/circuit)
-"QpU" = (
+/turf/open/floor/plasteel/floorgrime,
+/area/science/misc_lab)
+"qeQ" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
},
/turf/open/floor/plasteel,
/area/science/circuit)
-"QpW" = (
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/turf/open/floor/plasteel,
-/area/science/circuit)
-"QpX" = (
-/obj/machinery/power/apc{
- areastring = "/area/science/circuit";
- name = "Circuitry Lab APC";
- pixel_x = 30
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/turf/open/floor/plasteel,
-/area/science/circuit)
-"QpY" = (
-/obj/effect/spawner/structure/window,
-/turf/open/floor/plating,
-/area/science/circuit)
-"Qqa" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel,
-/area/science/circuit)
-"Qqb" = (
-/obj/machinery/light{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/science/circuit)
-"Qqc" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/line,
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/turf/open/floor/plasteel,
-/area/science/circuit)
-"Qqd" = (
-/obj/structure/disposalpipe/segment{
- dir = 10
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 6
- },
-/obj/machinery/camera{
- c_tag = "Circuitry Lab";
- dir = 8;
- network = list("SS13","RD")
- },
-/turf/open/floor/plasteel,
-/area/science/circuit)
-"Qqe" = (
-/obj/structure/disposalpipe/trunk{
- dir = 1
- },
-/obj/machinery/disposal/bin,
-/turf/open/floor/plasteel/white,
-/area/science/circuit)
-"Qqh" = (
-/obj/structure/table/reinforced,
-/obj/item/paper_bin,
-/obj/item/pen,
-/turf/open/floor/plasteel/white,
-/area/science/circuit)
-"Qqi" = (
+"qpv" = (
/obj/machinery/light{
dir = 4
},
/obj/machinery/autolathe,
/turf/open/floor/plasteel/white,
/area/science/circuit)
-"Qqj" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/floorgrime,
-/area/science/misc_lab)
-"Qql" = (
-/obj/structure/table/reinforced,
-/obj/item/device/radio/intercom{
- pixel_x = -30
+"quT" = (
+/obj/structure/lattice,
+/obj/structure/grille/broken,
+/turf/open/space/basic,
+/area/space/nearstation)
+"rmX" = (
+/obj/structure/table,
+/obj/item/reagent_containers/food/drinks/beer,
+/turf/open/floor/plating,
+/area/maintenance/starboard/aft)
+"rKP" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
},
-/turf/open/floor/plasteel/white,
-/area/science/circuit)
-"Qqm" = (
-/obj/structure/chair/office/light,
-/turf/open/floor/plasteel/white,
-/area/science/circuit)
-"Qqn" = (
-/obj/machinery/rnd/protolathe/department/science,
-/obj/structure/sign/poster/official/random{
- pixel_x = 32
- },
-/turf/open/floor/plasteel/white,
-/area/science/circuit)
-"Qqp" = (
-/obj/structure/table/reinforced,
-/obj/machinery/light,
-/obj/item/stock_parts/cell/super,
-/obj/item/stock_parts/cell/super,
-/obj/item/stack/sheet/metal/fifty,
-/turf/open/floor/plasteel/white,
-/area/science/circuit)
-"Qqq" = (
+/turf/open/floor/plating,
+/area/construction)
+"saK" = (
/obj/structure/closet/crate,
/obj/item/target/alien,
/obj/item/target/alien,
@@ -55980,7 +54496,13 @@
/obj/item/gun/energy/laser/practice,
/turf/open/floor/plasteel/white,
/area/science/circuit)
-"Qqr" = (
+"sxs" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/table,
+/obj/item/shovel/spade,
+/turf/open/floor/plasteel/hydrofloor,
+/area/hallway/secondary/service)
+"sLv" = (
/obj/structure/closet,
/obj/effect/spawner/lootdrop/maintenance,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -55988,18 +54510,62 @@
},
/turf/open/floor/plating,
/area/maintenance/starboard/aft)
-"Qqs" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/disposalpipe/segment,
+"sOs" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
+/obj/machinery/door/airlock/maintenance/abandoned,
/turf/open/floor/plating,
/area/maintenance/starboard/aft)
-"Qqt" = (
+"sSW" = (
+/obj/structure/chair/office/light,
+/turf/open/floor/plasteel/white,
+/area/science/circuit)
+"tal" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/closed/wall,
+/area/hallway/secondary/service)
+"tMl" = (
+/obj/effect/turf_decal/loading_area,
+/turf/open/floor/plasteel/showroomfloor,
+/area/crew_quarters/kitchen)
+"udp" = (
+/obj/item/crowbar/large,
+/obj/structure/rack,
+/obj/item/device/flashlight,
+/turf/open/floor/plasteel/dark,
+/area/engine/engineering)
+"uhH" = (
+/obj/item/wrench,
+/obj/item/weldingtool,
+/obj/item/clothing/head/welding{
+ pixel_x = -3;
+ pixel_y = 5
+ },
+/obj/structure/rack,
+/turf/open/floor/plasteel/dark,
+/area/engine/engineering)
+"uoB" = (
+/obj/structure/table/reinforced,
+/obj/item/device/multitool,
+/obj/item/screwdriver,
+/obj/machinery/camera{
+ c_tag = "Circuitry Lab North";
+ network = list("SS13","RD")
+ },
+/turf/open/floor/plasteel/white,
+/area/science/circuit)
+"uNu" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line,
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/turf/open/floor/plasteel,
+/area/science/circuit)
+"uVS" = (
/obj/structure/cable{
icon_state = "4-8"
},
@@ -56011,18 +54577,98 @@
},
/turf/open/floor/plating,
/area/maintenance/starboard/aft)
-"Qqu" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
+"vxh" = (
+/obj/structure/table,
+/obj/effect/spawner/lootdrop/maintenance{
+ lootcount = 8;
+ name = "8maintenance loot spawner"
},
/turf/open/floor/plating,
/area/maintenance/starboard/aft)
-"Qqv" = (
+"vzp" = (
+/obj/structure/table/reinforced,
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
+ },
+/turf/open/floor/plasteel/white,
+/area/science/circuit)
+"vCb" = (
+/obj/machinery/rnd/protolathe/department/service,
+/turf/open/floor/plasteel/hydrofloor,
+/area/hallway/secondary/service)
+"vCt" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on,
+/turf/open/floor/plasteel/white,
+/area/science/circuit)
+"vPE" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/machinery/libraryscanner,
+/turf/open/floor/plasteel/white,
+/area/science/circuit)
+"wkN" = (
+/turf/closed/wall,
+/area/science/circuit)
+"wrp" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/hydrofloor,
+/area/hallway/secondary/service)
+"wvX" = (
+/obj/structure/table/reinforced,
+/obj/machinery/light,
+/obj/item/stock_parts/cell/super,
+/obj/item/stock_parts/cell/super,
+/obj/item/stack/sheet/metal/fifty,
+/turf/open/floor/plasteel/white,
+/area/science/circuit)
+"wBd" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 6
+ },
+/turf/closed/wall,
+/area/hallway/secondary/service)
+"wUY" = (
+/obj/structure/table,
+/obj/item/reagent_containers/glass/bucket,
+/turf/open/floor/plasteel/hydrofloor,
+/area/hallway/secondary/service)
+"xhV" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/turf/open/floor/plating,
+/area/construction)
+"xiw" = (
+/obj/machinery/door/airlock{
+ name = "Service Hall";
+ req_access_txt = "0";
+ req_one_access_txt = "25;26;35;28"
+ },
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/effect/landmark/event_spawn,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating,
+/area/hallway/secondary/service)
+"xIa" = (
+/obj/structure/table,
+/obj/effect/spawner/lootdrop/grille_or_trash,
+/turf/open/floor/plating,
+/area/maintenance/starboard/aft)
+"ycu" = (
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
/turf/open/floor/plasteel,
/area/science/circuit)
@@ -61560,11 +60206,11 @@ aaa
aaa
aaa
aaa
-cyc
-cyc
-Qll
-cyc
-cyc
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -61813,19 +60459,19 @@ aaa
aaa
aaa
aaa
-cyf
-cym
-cym
-cym
-cyR
-Qmq
-cyi
-QmU
-cyR
-cym
-cym
-cym
-cyF
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -62069,21 +60715,21 @@ aaa
aaa
aaa
aaa
-cyc
-cyc
-cyo
-cyo
-cyc
-cyc
-cyc
-QmF
-cyc
-cyc
-cyc
-cyo
-cyo
-cyc
-cyc
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -62326,21 +60972,21 @@ aaa
aaa
aaa
aaa
-cyc
-cyc
-cyc
-cyc
-cyc
-Qmg
-Qmr
-cyi
-QmV
-Qng
-cyc
-cyc
-cyc
-cyc
-cyc
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -62583,21 +61229,21 @@ aaa
aaa
aaa
aaa
-cyc
-Qlm
-cyc
-QlL
-QlW
-cyI
-cyI
-cyI
-cyI
-cyI
-cyc
-Qnt
-QnD
-QnP
-cyc
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -62840,21 +61486,21 @@ aaa
aaa
aaa
aaa
-cyR
-Qln
-Qlx
-QlM
-QlX
-Qmi
-cye
-QmG
-Qmw
-cyI
-Qno
-Qnu
-cyi
-QnP
-cyR
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -63097,21 +61743,21 @@ aaa
aaa
aaa
aaa
-cyc
-cyc
-cyc
-cyc
-cyc
-Qmj
-Qmt
-QmH
-cMc
-cyI
-Qnp
-cyi
-cyI
-QnR
-cyR
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -63354,21 +62000,21 @@ aaa
aaa
aaa
aae
-cyR
-Qlo
-Qly
-QlN
-QlY
-Qmk
-Qmt
-QmI
-cMc
-Qnh
-cyc
-Qnv
-QnE
-QnP
-cyc
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -63611,21 +62257,21 @@ aaa
aaa
aaa
aaa
-cyc
-Qlp
-Qlz
-QlO
-QlZ
-cyI
-Qmt
-QmJ
-cMc
-cyI
-cyc
-cyc
-QnF
-cyc
-cyc
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -63868,21 +62514,21 @@ aaa
aaa
aaa
aaa
-cyc
-cyc
-cyc
-cyc
-cyc
-cyI
-Qmw
-QmK
-cye
-cyI
-Qnq
-cyI
-QnG
-QnT
-cyc
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -64125,21 +62771,21 @@ aaa
aaa
aaa
aaa
-cyc
-Qlq
-QlA
-cyn
-cyc
-cLY
-cyI
-cyi
-cyI
-cyI
-cyc
-Qnw
-cyi
-czr
-cyR
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -64359,11 +63005,11 @@ ckq
aaa
aaa
aaa
-aCS
-cMB
-aCV
-aCV
-aCS
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -64373,7 +63019,7 @@ cwU
aaa
aaa
aaa
-cxt
+aaa
aaa
aaa
aaf
@@ -64382,21 +63028,21 @@ aaa
aaa
aaa
aaf
-cyR
-Qlr
-QlB
-QlP
-cyc
-cyc
-cyc
-QmL
-cyc
-cyc
-cyc
-Qnx
-QnH
-QnU
-cyR
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -64616,11 +63262,11 @@ asE
arB
aaa
aaa
-aCS
-aFC
-aEr
-aIG
-aCS
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
arB
@@ -64629,9 +63275,9 @@ cyb
asE
arB
aaa
-cxt
-cxD
-cxt
+aaa
+aaa
+aaa
aaa
aaf
aaa
@@ -64639,21 +63285,21 @@ aaa
aaa
aaf
aaf
-cyR
-Qlr
-cyi
-cyI
-QlD
-cyi
-cyI
-cyI
-cyI
-cyI
-cyc
-Qny
-QnI
-QnV
-cyc
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -64873,11 +63519,11 @@ cwT
aAC
aaa
aaa
-aCS
-cLJ
-aEr
-cLK
-aCS
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aAC
@@ -64886,9 +63532,9 @@ auP
cxY
arB
aaa
-cxy
-cxC
-cCy
+aaa
+aaa
+aaa
aaa
aaf
aaa
@@ -64896,21 +63542,21 @@ aaf
aaa
aAC
aaf
-cyc
-Qlt
-cyI
-QlR
-cyc
-cyI
-cye
-QmM
-cye
-cyI
-cyc
-cyc
-cyc
-cyc
-cyc
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -65129,13 +63775,13 @@ cyb
asE
arB
aaa
-aCS
-aCS
-aCS
-aHs
-aCS
-aCS
-aCS
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
arB
asE
@@ -65143,9 +63789,9 @@ cyb
avP
arB
aaa
-cxu
-cLQ
-cxu
+aaa
+aaa
+aaa
aaa
arB
awW
@@ -65153,21 +63799,21 @@ awW
asE
arB
aaf
-cyc
-cyc
-QlD
-cyc
-cyc
-Qmn
-Qmw
-QmN
-Qmw
-Qni
-cyc
-Qnz
-QnJ
-QnW
-cyc
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -65386,45 +64032,45 @@ ayk
awW
aAD
awW
-aCS
-aEo
-aEr
-aEr
-aEr
-aKg
-aCS
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
awW
awW
awW
aQG
aRX
arB
-cxu
-cxu
-cCw
-cxu
-cxu
+aaa
+aaa
+aaa
+aaa
+aaa
arB
awY
ayk
awW
aAD
awW
-Qll
-Qlu
-cyI
-cyi
-Qmb
-cyI
-Qmk
-QmO
-cyI
-cyI
-Qnr
-cyI
-QnK
-QnX
-cyR
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -65643,24 +64289,24 @@ ayl
azy
auP
cIh
-aCU
-aEr
-aFE
-aFE
-aFE
-aEr
-aCU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
azy
auP
cIh
ayl
aRY
awW
-cxw
-cxB
-cxC
-cxI
-cxw
+aaa
+aaa
+aaa
+aaa
+aaa
awW
awZ
ayl
@@ -65668,20 +64314,20 @@ beK
auP
cyt
cyd
-cyi
-QlF
-cyx
-Qmb
-cyi
-cyI
-cMa
-cyi
-cyI
-cyc
-cye
-czm
-QnY
-cyc
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -65900,45 +64546,45 @@ ayk
awW
awW
awW
-aCS
-aEq
-aEr
-aEr
-aEr
-cLL
-aCS
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
awW
awW
awW
awV
aRY
awW
-cxu
-cxB
-cxC
-cxI
-cxu
+aaa
+aaa
+aaa
+aaa
+aaa
awW
awZ
ayk
awW
awW
awW
-cyc
-cyc
-QlG
-cyc
-cyc
-cyI
-cye
-QmP
-cye
-Qnj
-cyc
-cyc
-cyc
-cyc
-cyc
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -66157,45 +64803,45 @@ cqr
azz
aAF
awW
-aCV
-aEt
-aFE
-aFE
-aFE
-aEr
-aCV
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
awW
aOf
azz
aPu
aRY
awW
-cxu
-cLP
-cxC
-cxC
-cxu
+aaa
+aaa
+aaa
+aaa
+aaa
awW
awZ
aym
azz
aAF
awW
-cyc
-cyk
-QlH
-QlS
-Qmd
-cyI
-cye
-QmQ
-Qmw
-cyI
-Qns
-QnA
-QnL
-QnZ
-cyc
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -66414,45 +65060,45 @@ aIK
ayl
aAE
awW
-aCV
-aEs
-aEr
-aEr
-aEr
-aEr
-aCV
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
awW
aOe
ayl
ayl
aRY
awW
-cCu
-cxC
-cCx
-cxC
-cCz
+aaa
+aaa
+aaa
+aaa
+aaa
awW
awZ
ayl
ayl
aAE
awW
-cyR
-cyj
-QlI
-QlI
-Qme
-cyI
-cyI
-cyi
-cyI
-cyI
-cMf
-cyi
-QnM
-Qoa
-cyR
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -66671,45 +65317,45 @@ aIK
ayl
aAH
awW
-aCV
-aEv
-aFE
-aFE
-aFE
-aEr
-aCV
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
awW
aOh
ayl
ayl
aRY
awW
-cxu
-cxC
-cxC
-cLR
-cxu
+aaa
+aaa
+aaa
+aaa
+aaa
awW
awZ
ayl
ayl
bgi
awW
-cyR
-Qlv
-QlI
-QlU
-cyc
-cyc
-cyc
-QmR
-cyc
-cyc
-cyc
-QnB
-QnN
-Qob
-cyR
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -66928,45 +65574,45 @@ cry
azA
aAG
awW
-aCV
-aEu
-aEr
-aEr
-aEr
-aEr
-aCV
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
awW
aOg
azA
aQH
aRY
awW
-cxu
-cxB
-cxC
-cxI
-cxu
+aaa
+aaa
+aaa
+aaa
+aaa
awW
awZ
ayn
azA
bgh
awW
-cyc
-Qlw
-QlK
-QlV
-cyc
-cyw
-QmC
-cyI
-cye
-Qnk
-cyc
-QnC
-QnO
-Qoc
-cyc
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -67185,45 +65831,45 @@ crz
awW
awW
awW
-aCS
-aEw
-aFE
-aFE
-aFE
-aKh
-aCS
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
awW
awW
awW
awV
aRY
awW
-cxw
-cxB
-cxC
-cxI
-cxw
+aaa
+aaa
+aaa
+aaa
+aaa
awW
awZ
ayk
awW
awW
awW
-cyc
-cyc
-cyR
-cyc
-cyc
-Qmo
-QmD
-cyI
-Qnd
-Qnl
-cyc
-cyc
-cyR
-cyc
-cyc
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -67442,24 +66088,24 @@ aIK
azy
auP
cIh
-aCU
-aEr
-aEr
-aEr
-aEr
-aEr
-aCU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
azy
auP
cIh
ayl
aRY
awW
-cxu
-cxw
+aaa
+aaa
cxE
-cxw
-cxu
+aaa
+aaa
awW
awZ
ayl
@@ -67470,13 +66116,13 @@ aaa
aaa
aaa
aaa
-cyR
-Qmp
-cyI
-QmS
-Qne
-Qnm
-cyR
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -67699,13 +66345,13 @@ ayp
awW
aAD
awW
-aCS
-aEy
-aEy
-aEy
-aEy
-aEy
-aCS
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
awW
awW
awW
@@ -67727,13 +66373,13 @@ aaa
aaa
aaa
aaa
-cyR
-cLZ
-cyO
-QmT
-Qnf
-Qnn
-cyR
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -67956,13 +66602,13 @@ ayo
azB
awW
aaa
-aCS
-aEx
-aFF
+aaa
+aaa
+aaa
cIg
-aFF
-aKi
-aCS
+aaa
+aaa
+aaa
aaa
awW
aPt
@@ -67984,13 +66630,13 @@ aaa
aaa
aaa
aaa
-Qmf
-cyR
-cyR
-cyR
-cyR
-cyR
-Qmf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -71837,17 +70483,17 @@ bea
bfq
bji
bkF
-cys
-cys
-cys
-cys
-cys
-cys
-cys
-cys
-cys
-cys
-cys
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -72094,18 +70740,18 @@ bdZ
bhO
bjh
bkE
-cys
-cyB
-cyB
-cyB
-cyB
-cMb
-cyB
-cyB
-cyB
-czf
-cys
-czs
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -72351,18 +70997,18 @@ aXQ
bhQ
bjj
bkF
-cys
-cyB
-cyB
-cyB
-cyB
-cyB
-cyB
-cyB
-cyB
-cyB
-czp
-czt
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -72608,18 +71254,18 @@ aZt
bhQ
bjj
bkF
-cys
-cLX
-cyB
-cyB
-cyB
-cyB
-cyB
-cyB
-cyB
-cyB
-czp
-czt
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -72865,18 +71511,18 @@ bgr
bhQ
bjj
bkF
-cys
-cyB
-cyB
-cyB
-cyB
-cyB
-cyB
-cyB
-cyB
-cyB
-czp
-czt
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -73122,18 +71768,18 @@ bfa
bhQ
bjk
bkE
-cys
-cyB
-cyB
-cyB
-cyB
-cyS
-cyB
-cyB
-cyB
-czf
-cys
-czu
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -73379,17 +72025,17 @@ bgs
bhQ
bjk
bkF
-cys
-cys
-cys
-cyN
-cyQ
-cys
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
cyT
-cyZ
-cys
-cys
-cys
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -75449,13 +74095,13 @@ aaa
aaa
aaa
aaa
-cTg
-cTg
-cTi
-cTg
-cTi
-cTg
-cTg
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
bCq
bPS
@@ -75706,13 +74352,13 @@ aaa
aaa
aaa
aaa
-cTg
-bGg
-cTo
-cMl
-bHx
-cTx
-cTg
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
bLv
bPR
@@ -75963,13 +74609,13 @@ bxx
bxu
bxu
bDi
-cTi
-bGh
-bHx
-cTo
-bHx
-bLt
-bMF
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
bCq
bPS
@@ -76198,7 +74844,7 @@ aWu
aYa
aZD
aZD
-Qpb
+hcE
aZD
aZD
bff
@@ -76220,13 +74866,13 @@ bzP
bAS
bxu
aaa
-cTg
-bGg
-cTo
-cTo
-bHx
-bLs
-cTg
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
bLv
bPT
@@ -76461,7 +75107,7 @@ aZF
aZF
bgy
aZE
-QoN
+bjr
bjr
ama
bmh
@@ -76477,13 +75123,13 @@ bzR
byd
bxx
aaa
-cTg
-cTg
-cTi
+aaa
+aaa
+aaa
bJc
-cTi
-cTg
-cTg
+aaa
+aaa
+aaa
aaa
bCq
bPV
@@ -76717,7 +75363,7 @@ baS
bdS
bdU
ckQ
-QoZ
+gjl
bjq
bjr
bjr
@@ -77488,7 +76134,7 @@ bcS
bbt
bfi
beD
-QoZ
+gjl
aZE
biA
bmg
@@ -77738,13 +76384,13 @@ aTH
aPK
aWz
aWC
-QoZ
-QoZ
-QoZ
+gjl
+gjl
+gjl
bcT
-QoZ
-QoZ
-QoZ
+gjl
+gjl
+gjl
aZE
bju
biv
@@ -77958,15 +76604,15 @@ aaa
aaa
aaa
aaa
-akD
-akD
-ajX
-akD
-akD
-ajX
-akD
-akD
-akD
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -78215,15 +76861,15 @@ aaa
aaa
aaa
aaa
-ajX
-akC
-alj
-alY
-amI
-amI
-anM
-aop
-aoY
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -78271,7 +76917,7 @@ bjv
btv
buc
bxz
-QoP
+eVL
bwV
byy
bBa
@@ -78472,15 +77118,15 @@ aaa
aaa
aaa
aaa
-ajX
-akF
-alm
-akD
-cLI
-amI
-amI
-aop
-aoY
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -78729,15 +77375,15 @@ aaa
aaa
aaa
aaa
-ajX
-akE
-all
-alZ
-amJ
-anr
-amI
-aop
-aoY
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
arP
@@ -78782,9 +77428,9 @@ bnz
bpA
bbR
bkM
-bbR
+jlm
bud
-QoO
+eyM
kSb
bAZ
bGm
@@ -78986,15 +77632,15 @@ aaa
aaa
aaa
aaa
-akD
-akD
-alo
-akD
-akD
-akD
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
anO
-akD
-akD
+aaa
+aaa
aaa
aaa
arP
@@ -82700,7 +81346,7 @@ aaf
aaT
aaT
aaT
-Qoi
+gXs
aaf
aaf
aaf
@@ -82913,7 +81559,7 @@ bNJ
bNJ
bKx
cjL
-Pvz
+gbq
bNI
bUz
bVJ
@@ -83215,9 +81861,9 @@ ccw
ccw
ccw
aaa
-Qod
+eRz
aaT
-Qod
+eRz
aaa
aaa
aaa
@@ -83465,11 +82111,11 @@ cqb
cAo
cGt
cgx
-QoA
+jMY
csd
cHa
csd
-QoH
+uhH
ccw
aaa
aaT
@@ -83722,8 +82368,8 @@ cFJ
cSH
cGu
cGH
-QoB
-QoB
+fsQ
+fsQ
cGR
csd
csd
@@ -83983,7 +82629,7 @@ cGS
cHb
cHg
cHn
-QoI
+oDF
ccw
aaf
aaT
@@ -84234,7 +82880,7 @@ cEz
cMD
cFL
cGf
-Qov
+kQq
cMm
ciZ
cHc
@@ -84491,7 +83137,7 @@ cFe
cMD
cFM
czE
-Qov
+kQq
ccw
cGT
csd
@@ -85010,7 +83656,7 @@ cMm
cGV
csd
cGV
-QoG
+noK
csd
ccw
aaa
@@ -85519,7 +84165,7 @@ cFh
cMD
cFM
czE
-Qov
+kQq
ccw
cGT
csd
@@ -85776,7 +84422,7 @@ cEz
cMD
cFR
cSJ
-Qov
+kQq
cMm
ciZ
cHd
@@ -86033,13 +84679,13 @@ cFj
cEf
cFS
cGg
-Qoz
+mBv
cGI
cGS
cHe
cHe
cHr
-QoI
+oDF
ccw
aaf
aaT
@@ -86292,8 +84938,8 @@ cFT
cSK
cGx
cGK
-QoC
-QoC
+nzh
+nzh
cGY
csd
csd
@@ -86549,11 +85195,11 @@ cqb
cGh
cGC
cey
-QoD
+ijc
csd
cEk
csd
-QoK
+udp
ccw
aaf
aaT
@@ -87326,7 +85972,7 @@ aaf
aaf
aaf
aaf
-Qoi
+gXs
aaf
aaf
aaf
@@ -88610,7 +87256,7 @@ aaa
aaa
aaa
aaa
-Qod
+eRz
aaa
aaa
aaa
@@ -88867,7 +87513,7 @@ aae
aaa
aaa
aaa
-Qod
+eRz
aaa
aaa
aaa
@@ -89124,7 +87770,7 @@ aaa
aaa
aaa
aaa
-Qof
+quT
aaa
aaa
aaa
@@ -89381,7 +88027,7 @@ aaa
aaa
aaa
aaa
-Qod
+eRz
aaa
aaa
aaa
@@ -89638,7 +88284,7 @@ aaa
aaa
aaa
aaa
-Qof
+quT
aaa
aaa
aaa
@@ -89895,7 +88541,7 @@ aaa
aaa
aaa
aaa
-Qoi
+gXs
aaa
aaa
aaa
@@ -90152,7 +88798,7 @@ aaa
aaa
aaa
aaa
-Qof
+quT
aaa
aaa
aaa
@@ -90409,7 +89055,7 @@ aaa
aaa
aaa
aaa
-Qod
+eRz
aaa
aaa
aaa
@@ -90666,7 +89312,7 @@ aaa
aaa
aaa
aaa
-Qol
+jAD
aaa
aaa
aaa
@@ -90870,7 +89516,7 @@ bvh
bzS
bBc
bCJ
-QoU
+gZG
cCp
bvd
bKH
@@ -90923,7 +89569,7 @@ aaa
aaa
aaa
aaa
-Qod
+eRz
aaa
aaa
aaa
@@ -91180,7 +89826,7 @@ aaa
aaa
aaa
aaa
-Qod
+eRz
aaa
aaa
aaa
@@ -91437,7 +90083,7 @@ aaa
aaa
aaa
aaa
-Qof
+quT
aaa
aaa
aaa
@@ -91694,7 +90340,7 @@ aaa
aaa
aaa
aaa
-Qod
+eRz
aaa
aaa
aaa
@@ -91951,7 +90597,7 @@ aaa
aaa
aaa
aaa
-Qof
+quT
aaa
aaa
aaa
@@ -92208,7 +90854,7 @@ aaa
aaa
aaa
aaa
-Qof
+quT
aaa
aaa
aaa
@@ -92465,7 +91111,7 @@ aaa
aaa
aaa
aaa
-Qol
+jAD
aaa
aaa
aaa
@@ -93696,7 +92342,7 @@ bAu
bvj
bCN
bEa
-QoY
+pHl
bFA
bIm
bJD
@@ -94689,7 +93335,7 @@ alP
aGL
aHY
aQj
-QoL
+iNn
aMk
aNK
aOM
@@ -94947,7 +93593,7 @@ aGL
avI
aJK
aKV
-QoT
+tMl
aMl
aMF
aJI
@@ -95446,7 +94092,7 @@ aag
alO
arp
alO
-anf
+awD
anf
anf
awD
@@ -95708,12 +94354,12 @@ anf
anf
aEl
anf
-alP
-alP
-alP
-alP
-alP
-alP
+cVb
+cVb
+cVb
+cVb
+cVb
+cVb
aGQ
aIk
aIp
@@ -95725,7 +94371,7 @@ aJI
aJI
aSP
aUh
-QoM
+aJI
aJI
aJI
aJI
@@ -95965,12 +94611,12 @@ auC
alP
anf
anf
-alP
-arA
-anf
-alP
-atw
-alP
+cVb
+jbf
+wrp
+fnC
+kPd
+xiw
aGS
aIm
aIp
@@ -96222,13 +94868,13 @@ anf
alP
awE
anf
-apE
-anf
-anf
-alP
-anf
-alP
-aCE
+cVb
+vCb
+wUY
+khb
+sxs
+tal
+aCI
aIj
aJB
aKD
@@ -96479,12 +95125,12 @@ apC
apC
alP
anf
-alP
-alP
-alP
-alP
-awD
-ayf
+cVb
+cVb
+cVb
+cVb
+cVb
+wBd
aGC
aIl
aIq
@@ -97534,9 +96180,9 @@ bci
beB
bfS
bfS
-QoV
-QoW
-QoX
+kQk
+ipA
+gbT
cTO
bmZ
bon
@@ -97766,7 +96412,7 @@ aoP
auF
azr
anf
-anf
+atw
alP
alP
aFo
@@ -98784,7 +97430,7 @@ aaf
aaf
aaf
apC
-anf
+arA
anf
asx
anf
@@ -104252,7 +102898,7 @@ bOB
bPs
bYo
bSc
-Qqj
+pNx
cbd
ccT
bSc
@@ -104499,18 +103145,18 @@ bMv
bNv
bMv
bSl
-Qpp
-Qpp
-Qpp
-Qpp
-Qpp
-QpS
-QpY
+wkN
+wkN
+wkN
+wkN
+wkN
+lAB
+lQG
bPb
bQG
-QpS
-Qpp
-Qpp
+lAB
+wkN
+wkN
bSl
bQZ
bQZ
@@ -104755,18 +103401,18 @@ bLi
bMz
bNy
bOH
-Qpp
+wkN
bQY
-QpC
+vzp
bTo
bUp
-QpP
-QpT
+mNi
+mRe
bXs
bPL
bQI
bTo
-Qql
+eaI
cbZ
bSl
cmo
@@ -105012,18 +103658,18 @@ bFU
bMy
bNx
bOG
-Qpp
-Qpx
+wkN
+uoB
bSk
bXs
bXs
-QpQ
-QpU
-QpU
+lMg
+qeQ
+qeQ
bPF
bQI
bXs
-Qqm
+sSW
cbY
bSl
cOe
@@ -105269,19 +103915,19 @@ bFU
bMA
bNz
bOI
-Qpp
+wkN
bRa
cbe
bTp
-QpM
+vCt
bVs
-Qqv
+fKl
bXt
bPM
bZh
-Qqh
+itG
cbe
-Qqp
+wvX
bSl
cOe
ceS
@@ -105527,14 +104173,14 @@ bEC
bEC
bEC
bSl
-Qpy
+dMZ
bXs
bXs
bXs
-QpR
-QpW
-Qqa
-Qqc
+gwd
+ycu
+oHU
+uNu
bXs
bXs
bXs
@@ -105544,7 +104190,7 @@ cOe
ceR
cbf
cbv
-Qqt
+uVS
cQw
cjD
cjD
@@ -105785,23 +104431,23 @@ bNA
cOe
bSl
bRb
-QpF
-QpJ
+flc
+vPE
bUq
bVt
-QpX
-Qqb
-Qqd
-Qqe
-Qqi
-Qqn
-Qqq
+dfh
+jSO
+jgm
+oUh
+qpv
+jrE
+saK
bSl
cOx
-Qqr
+sLv
ckS
cNW
-Qqu
+jVl
cds
cjD
ckt
@@ -106039,7 +104685,7 @@ bKb
cNX
cNZ
cNZ
-Qpj
+jCq
bSl
bSl
bSl
@@ -106296,9 +104942,9 @@ bKd
cNY
bMC
cOb
-Qpk
+jHt
bPO
-QpA
+kob
bSm
bTr
bTr
@@ -106312,7 +104958,7 @@ cbg
bTr
bTr
bTr
-Qqs
+nGt
cbg
bTr
cct
@@ -106553,7 +105199,7 @@ bEs
bEs
bEs
cNW
-Qpl
+sOs
cNW
cNW
cNW
@@ -106810,7 +105456,7 @@ bKf
bLk
bEs
bNC
-Qpm
+nRG
cbf
cbf
cbf
@@ -107283,23 +105929,23 @@ aaa
aaa
aaa
aaa
-cwI
-cwI
-cwI
-cxg
-cwI
+aaa
+aaa
+aaa
+aaa
+aaa
afa
-cwI
-crx
-crx
-crx
-cwI
-cxK
-cwI
-cxK
-cwI
-cwI
-cwI
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -107323,9 +105969,9 @@ bIW
bKe
bLm
bEs
-Qpi
-Qpn
-Qpv
+rmX
+xIa
+vxh
cNW
aaa
aaa
@@ -107334,7 +105980,7 @@ aaa
aaf
cNW
bYs
-Qpm
+nRG
ciJ
cbf
cbf
@@ -107537,27 +106183,27 @@ aaa
aaa
aaa
aaa
-cwI
-cwI
-cwI
-cwI
-cwY
-cxd
-cxe
-cwI
-cLO
-anq
-anq
-anq
-anq
-anq
-cLS
-cwI
-cxQ
-cLU
-cxU
-cwI
-cwI
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -107793,28 +106439,28 @@ aae
aaa
aaa
aaa
-cwI
-crO
-cwK
-cwP
-cwI
-cwY
-cxe
-cxh
-cwI
-cxo
-cwL
-cwL
-cwL
-cwL
-cwL
-cxL
-cwI
-cxQ
-cxQ
-cxU
-cxX
-cxZ
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -108050,28 +106696,28 @@ aaa
aaa
aaa
aaa
-crx
-crN
-cwJ
-cwO
-cwI
-cwY
-cxe
-cxh
-cwI
-cwL
-cxq
-cxq
-cxq
-cxq
-cxq
-cwL
-cxM
-cxQ
-cxQ
-cxV
-cxX
-cxZ
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -108307,28 +106953,28 @@ aaa
aaa
aaa
aaa
-crx
-cwF
-cwL
-cwR
-cwI
-crx
-cxf
-crx
-cxm
-cwL
-cxr
-cxr
-cxr
-cxr
-cxr
-cwL
-cwI
-cxR
-cLV
-cxV
-cxX
-cxZ
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -108564,28 +107210,28 @@ aaa
aaa
aaa
aaa
-crx
-crQ
-cwL
-cwQ
-cwI
-cwZ
-cwL
-cxi
-cLN
-cwL
-cwL
-cwL
-cwL
-cwL
-cwL
-cLT
-cwW
-cwI
-cwI
-cwI
-cxX
-cxZ
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -108821,28 +107467,28 @@ aaa
aaa
aaa
aaa
-crx
-cwF
-cwL
-cwL
-cwX
-cwL
-cwL
-anq
-cxj
-cwL
-cxq
-cxq
-cxq
-cxq
-cxq
-cwL
-crx
-cxc
-cLW
-cxc
-cxX
-cxZ
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -109078,28 +107724,28 @@ aaa
aaa
aaa
aaa
-crx
-cwG
-amB
-amB
-cwW
-cxa
-cwL
-cxj
-cxj
-cwL
-cxr
-cxr
-cxr
-cxr
-cxr
-cwL
-cxO
-cxa
-cxa
-cxa
-cxX
-cxZ
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -109335,28 +107981,28 @@ aaa
aaa
aaa
aaa
-cwI
-crO
-cwN
-cwS
-cwI
-cxc
-cwL
-cwL
-cwL
-cwL
-cwL
-cwL
-cwL
-cwL
-cwL
-cwL
-crx
-cxa
-cxa
-cxa
-cxX
-cxZ
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -109593,27 +108239,27 @@ aaa
aaa
aaa
aaa
-cwI
-cwI
-cwI
-cwI
-cxb
-cLM
-cxa
-cxa
-cxp
-cxs
-cxs
-cxs
-cxs
-cxs
-cxp
-crx
-cxS
-cxT
-cxS
-cwI
-cwI
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -109853,23 +108499,23 @@ aaa
aaa
aaa
aaa
-cwI
-crx
-cwI
-crx
-cwI
-cwI
-cwI
-crx
-crx
-crx
-cwI
-cwI
-cwI
-crx
-cwI
-crx
-cwI
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
diff --git a/_maps/map_files/CitadelStation/CitadelStation-1.2.2.dmm b/_maps/map_files/CitadelStation/CitadelStation-1.2.2.dmm
deleted file mode 100644
index 935e2445a2..0000000000
--- a/_maps/map_files/CitadelStation/CitadelStation-1.2.2.dmm
+++ /dev/null
@@ -1,128260 +0,0 @@
-//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
-"aaa" = (
-/turf/open/space,
-/area/space)
-"aab" = (
-/obj/structure/lattice,
-/turf/open/space,
-/area/space)
-"aac" = (
-/turf/closed/wall/r_wall,
-/area/security/processing{
- name = "Permabrig"
- })
-"aad" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- name = "regular air vent";
- on = 1
- },
-/obj/structure/closet,
-/turf/open/floor/plasteel,
-/area/security/processing{
- name = "Permabrig"
- })
-"aae" = (
-/obj/machinery/light/small{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/security/processing{
- name = "Permabrig"
- })
-"aaf" = (
-/obj/structure/bed,
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 2;
- name = "regular air scrubber";
- on = 1
- },
-/obj/machinery/camera{
- c_tag = "Prison Cell 1";
- network = list("SS13","Prison")
- },
-/turf/open/floor/plasteel,
-/area/security/processing{
- name = "Permabrig"
- })
-"aag" = (
-/turf/closed/wall,
-/area/security/processing{
- name = "Permabrig"
- })
-"aah" = (
-/obj/structure/bed,
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 2;
- name = "regular air scrubber";
- on = 1
- },
-/obj/machinery/camera{
- c_tag = "Prison Cell 2";
- network = list("SS13","Prison")
- },
-/turf/open/floor/plasteel,
-/area/security/processing{
- name = "Permabrig"
- })
-"aai" = (
-/obj/structure/toilet{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- req_access_txt = 1
- },
-/turf/open/floor/plasteel,
-/area/security/processing{
- name = "Permabrig"
- })
-"aaj" = (
-/turf/open/floor/plasteel,
-/area/security/processing{
- name = "Permabrig"
- })
-"aak" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- tag = "icon-intact (NORTH)";
- icon_state = "intact";
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/security/processing{
- name = "Permabrig"
- })
-"aal" = (
-/obj/machinery/shower{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- req_access_txt = 1
- },
-/turf/open/floor/plasteel,
-/area/security/processing{
- name = "Permabrig"
- })
-"aam" = (
-/obj/structure/table,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- tag = "icon-intact (NORTH)";
- icon_state = "intact";
- dir = 1
- },
-/obj/machinery/button/door{
- id = "permacell1";
- normaldoorcontrol = 1;
- pixel_y = -24;
- specialfunctions = 4
- },
-/turf/open/floor/plasteel,
-/area/security/processing{
- name = "Permabrig"
- })
-"aan" = (
-/obj/machinery/shower{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- req_access_txt = 1
- },
-/obj/machinery/button/door{
- id = "permacell1";
- normaldoorcontrol = 1;
- pixel_y = -24;
- specialfunctions = 4
- },
-/turf/open/floor/plasteel,
-/area/security/processing{
- name = "Permabrig"
- })
-"aao" = (
-/obj/structure/table,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- tag = "icon-intact (NORTH)";
- icon_state = "intact";
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/security/processing{
- name = "Permabrig"
- })
-"aap" = (
-/turf/open/space,
-/obj/machinery/porta_turret/syndicate{
- dir = 9
- },
-/turf/closed/wall/mineral/plastitanium{
- dir = 8;
- icon_state = "diagonalWall3"
- },
-/area/shuttle/syndicate)
-"aaq" = (
-/turf/closed/wall/mineral/plastitanium,
-/area/shuttle/syndicate)
-"aar" = (
-/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)
-"aas" = (
-/turf/open/space,
-/obj/machinery/porta_turret/syndicate{
- dir = 5
- },
-/turf/closed/wall/mineral/plastitanium{
- dir = 1;
- icon_state = "diagonalWall3"
- },
-/area/shuttle/syndicate)
-"aat" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- req_access_txt = 1
- },
-/turf/closed/wall,
-/area/security/processing{
- name = "Permabrig"
- })
-"aau" = (
-/obj/machinery/door/poddoor/preopen{
- id = "permacell";
- name = "cell blast door"
- },
-/obj/machinery/door/airlock/glass{
- id_tag = "permacell1";
- name = "Cell 1"
- },
-/turf/open/floor/plasteel,
-/area/security/processing{
- name = "Permabrig"
- })
-"aav" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- tag = "icon-intact (NORTH)";
- icon_state = "intact";
- dir = 1
- },
-/turf/closed/wall,
-/area/security/processing{
- name = "Permabrig"
- })
-"aaw" = (
-/obj/machinery/door/poddoor/preopen{
- id = "permacell";
- name = "cell blast door"
- },
-/obj/machinery/door/airlock/glass{
- id_tag = "permacell2";
- name = "Cell 2"
- },
-/turf/open/floor/plasteel,
-/area/security/processing{
- name = "Permabrig"
- })
-"aax" = (
-/obj/structure/table,
-/obj/machinery/microwave,
-/turf/open/floor/mineral/plastitanium,
-/area/shuttle/syndicate)
-"aay" = (
-/turf/open/floor/mineral/plastitanium,
-/area/shuttle/syndicate)
-"aaz" = (
-/obj/structure/table,
-/obj/item/device/flashlight/lamp{
- pixel_x = 4;
- pixel_y = 1
- },
-/turf/open/floor/mineral/plastitanium,
-/area/shuttle/syndicate)
-"aaA" = (
-/obj/machinery/computer/shuttle/syndicate,
-/turf/open/floor/mineral/plastitanium,
-/area/shuttle/syndicate)
-"aaB" = (
-/obj/structure/table,
-/obj/machinery/button/door{
- id = "syndieshutters";
- name = "remote shutter control";
- req_access_txt = "150"
- },
-/turf/open/floor/mineral/plastitanium,
-/area/shuttle/syndicate)
-"aaC" = (
-/obj/structure/frame/computer,
-/turf/open/floor/mineral/plastitanium,
-/area/shuttle/syndicate)
-"aaD" = (
-/obj/machinery/biogenerator,
-/turf/open/floor/plasteel/green/side{
- dir = 9
- },
-/area/security/processing{
- name = "Permabrig"
- })
-"aaE" = (
-/obj/machinery/seed_extractor,
-/turf/open/floor/plasteel/green/side{
- dir = 1
- },
-/area/security/processing{
- name = "Permabrig"
- })
-"aaF" = (
-/turf/open/floor/plasteel/green/side{
- dir = 1
- },
-/area/security/processing{
- name = "Permabrig"
- })
-"aaG" = (
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/machinery/vending/cola/random,
-/turf/open/floor/plasteel/green/side{
- dir = 8
- },
-/area/security/processing{
- name = "Permabrig"
- })
-"aaH" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 5
- },
-/obj/structure/closet/crate/bin,
-/obj/machinery/camera{
- c_tag = "Prison Common Room North";
- network = list("SS13","Prison")
- },
-/turf/open/floor/plasteel,
-/area/security/processing{
- name = "Permabrig"
- })
-"aaI" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/security/processing{
- name = "Permabrig"
- })
-"aaJ" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- tag = "icon-intact (NORTH)";
- icon_state = "intact";
- dir = 1
- },
-/obj/machinery/button/door{
- id = "permacell1";
- normaldoorcontrol = 1;
- pixel_y = 24;
- req_access_txt = "1";
- specialfunctions = 4
- },
-/turf/open/floor/plasteel,
-/area/security/processing{
- name = "Permabrig"
- })
-"aaK" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- tag = "icon-manifold-b-f (NORTH)";
- dir = 1
- },
-/obj/machinery/light{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/security/processing{
- name = "Permabrig"
- })
-"aaL" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 9;
- pixel_y = 0
- },
-/obj/machinery/button/door{
- id = "permacell2";
- normaldoorcontrol = 1;
- pixel_y = 24;
- req_access_txt = "1";
- specialfunctions = 4
- },
-/turf/open/floor/plasteel,
-/area/security/processing{
- name = "Permabrig"
- })
-"aaM" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- tag = "icon-intact (NORTH)";
- icon_state = "intact";
- dir = 1
- },
-/obj/structure/bookcase,
-/turf/open/floor/plasteel,
-/area/security/processing{
- name = "Permabrig"
- })
-"aaN" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile{
- obj_integrity = 5000;
- max_integrity = 5000;
- name = "hardened window"
- },
-/obj/structure/cable{
- icon_state = "0-2";
- pixel_y = 1;
- d2 = 2
- },
-/obj/machinery/door/poddoor/preopen{
- id = "permalock"
- },
-/turf/open/floor/plating,
-/area/security/processing{
- name = "Permabrig"
- })
-"aaO" = (
-/turf/open/floor/plasteel/red/side{
- dir = 8
- },
-/area/security/processing{
- name = "Permabrig"
- })
-"aaP" = (
-/obj/structure/table,
-/obj/item/paper_bin{
- pixel_x = -3;
- pixel_y = 7
- },
-/turf/open/floor/plasteel/red/side{
- dir = 4
- },
-/area/security/processing{
- name = "Permabrig"
- })
-"aaQ" = (
-/obj/structure/table,
-/obj/item/storage/box/donkpockets{
- pixel_x = 3;
- pixel_y = 3
- },
-/obj/machinery/light{
- icon_state = "tube1";
- dir = 8
- },
-/turf/open/floor/mineral/plastitanium,
-/area/shuttle/syndicate)
-"aaR" = (
-/obj/structure/chair/comfy/beige{
- dir = 1;
- icon_state = "comfychair"
- },
-/turf/open/floor/mineral/plastitanium,
-/area/shuttle/syndicate)
-"aaS" = (
-/obj/machinery/light{
- dir = 4
- },
-/turf/open/floor/mineral/plastitanium,
-/area/shuttle/syndicate)
-"aaT" = (
-/turf/open/space,
-/area/space/nearstation)
-"aaU" = (
-/obj/item/device/plant_analyzer,
-/turf/open/floor/plasteel/green/side{
- dir = 8
- },
-/area/security/processing{
- name = "Permabrig"
- })
-"aaV" = (
-/obj/item/reagent_containers/glass/bucket,
-/turf/open/floor/plasteel,
-/area/security/processing{
- name = "Permabrig"
- })
-"aaW" = (
-/turf/open/floor/plasteel/green/side{
- dir = 8
- },
-/area/security/processing{
- name = "Permabrig"
- })
-"aaX" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/security/processing{
- name = "Permabrig"
- })
-"aaY" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- req_access_txt = 1
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- tag = "icon-intact (WEST)";
- icon_state = "intact";
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/security/processing{
- name = "Permabrig"
- })
-"aaZ" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- tag = "icon-intact (WEST)";
- icon_state = "intact";
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/security/processing{
- name = "Permabrig"
- })
-"aba" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 9
- },
-/obj/structure/table,
-/obj/machinery/computer/libraryconsole/bookmanagement{
- pixel_y = 0
- },
-/turf/open/floor/plasteel,
-/area/security/processing{
- name = "Permabrig"
- })
-"abb" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile{
- obj_integrity = 5000;
- max_integrity = 5000;
- name = "hardened window"
- },
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/obj/structure/cable,
-/obj/machinery/door/poddoor/preopen{
- id = "permalock"
- },
-/turf/open/floor/plating,
-/area/security/processing{
- name = "Permabrig"
- })
-"abc" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/red/side{
- dir = 8
- },
-/area/security/processing{
- name = "Permabrig"
- })
-"abd" = (
-/obj/structure/table,
-/obj/item/folder/red,
-/obj/item/pen,
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
- },
-/turf/open/floor/plasteel/red/side{
- dir = 4
- },
-/area/security/processing{
- name = "Permabrig"
- })
-"abe" = (
-/obj/structure/table,
-/obj/item/stack/sheet/glass{
- amount = 10
- },
-/obj/item/device/multitool,
-/turf/open/floor/mineral/plastitanium,
-/area/shuttle/syndicate)
-"abf" = (
-/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)
-"abg" = (
-/obj/structure/closet/syndicate/personal,
-/turf/open/floor/mineral/plastitanium,
-/area/shuttle/syndicate)
-"abh" = (
-/obj/machinery/light{
- dir = 8
- },
-/obj/structure/sign/electricshock{
- pixel_x = -32
- },
-/turf/open/floor/plasteel/green/side{
- dir = 8
- },
-/area/security/processing{
- name = "Permabrig"
- })
-"abi" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- req_access_txt = 1
- },
-/turf/open/floor/plasteel,
-/area/security/processing{
- name = "Permabrig"
- })
-"abj" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 6
- },
-/obj/structure/sign/electricshock{
- pixel_x = -32
- },
-/turf/open/floor/plasteel/red/side{
- dir = 8
- },
-/area/security/processing{
- name = "Permabrig"
- })
-"abk" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 8;
- name = "regular air vent";
- on = 1
- },
-/obj/machinery/light{
- dir = 4
- },
-/obj/structure/cable{
- tag = "icon-1-2";
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/red/side{
- dir = 4
- },
-/area/security/processing{
- name = "Permabrig"
- })
-"abl" = (
-/turf/closed/mineral,
-/area/ruin/unpowered{
- name = "Asteroid"
- })
-"abm" = (
-/turf/open/space,
-/turf/closed/wall/mineral/plastitanium{
- icon_state = "diagonalWall3"
- },
-/area/shuttle/syndicate)
-"abn" = (
-/obj/machinery/door/window{
- name = "Cockpit";
- req_access_txt = "150"
- },
-/turf/open/floor/mineral/plastitanium,
-/area/shuttle/syndicate)
-"abo" = (
-/turf/open/space,
-/turf/closed/wall/mineral/plastitanium{
- dir = 4;
- icon_state = "diagonalWall3"
- },
-/area/shuttle/syndicate)
-"abp" = (
-/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/security/processing{
- name = "Permabrig"
- })
-"abq" = (
-/obj/machinery/hydroponics/soil,
-/obj/item/seeds/potato,
-/turf/open/floor/grass,
-/area/security/processing{
- name = "Permabrig"
- })
-"abr" = (
-/turf/open/floor/plasteel/green,
-/area/security/processing{
- name = "Permabrig"
- })
-"abs" = (
-/obj/machinery/hydroponics/soil,
-/turf/open/floor/grass,
-/area/security/processing{
- name = "Permabrig"
- })
-"abt" = (
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/machinery/vending/sustenance,
-/turf/open/floor/plasteel/green/side{
- dir = 8
- },
-/area/security/processing{
- name = "Permabrig"
- })
-"abu" = (
-/obj/machinery/door/poddoor/preopen{
- id = "holding blast"
- },
-/obj/machinery/door/airlock/glass,
-/turf/open/floor/plasteel,
-/area/security/processing{
- name = "Permabrig"
- })
-"abv" = (
-/obj/machinery/light/small{
- dir = 1
- },
-/obj/structure/table,
-/turf/open/floor/plasteel,
-/area/security/processing{
- name = "Permabrig"
- })
-"abw" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- req_access_txt = 1
- },
-/obj/machinery/computer/security/telescreen{
- desc = "Used for watching Prison Wing holding areas.";
- dir = 4;
- name = "Prison Monitor";
- network = list("Prison");
- pixel_x = -30;
- pixel_y = 0
- },
-/turf/open/floor/plasteel/red/side{
- dir = 8
- },
-/area/security/processing{
- name = "Permabrig"
- })
-"abx" = (
-/obj/structure/cable{
- tag = "icon-1-2";
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/red/side{
- dir = 4
- },
-/area/security/processing{
- name = "Permabrig"
- })
-"aby" = (
-/turf/open/space,
-/area/shuttle/syndicate)
-"abz" = (
-/obj/structure/table,
-/obj/item/stack/cable_coil,
-/obj/item/crowbar/red,
-/turf/open/floor/mineral/plastitanium,
-/area/shuttle/syndicate)
-"abA" = (
-/obj/structure/table,
-/obj/item/storage/box/zipties{
- pixel_x = 1;
- pixel_y = 2
- },
-/turf/open/floor/mineral/plastitanium,
-/area/shuttle/syndicate)
-"abB" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/structure/cable{
- icon_state = "0-2";
- pixel_y = 1;
- d2 = 2
- },
-/obj/structure/cable,
-/turf/open/floor/plating,
-/area/security/processing{
- name = "Permabrig"
- })
-"abC" = (
-/obj/machinery/hydroponics/soil,
-/obj/item/seeds/cherry,
-/turf/open/floor/grass,
-/area/security/processing{
- name = "Permabrig"
- })
-"abD" = (
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/table,
-/turf/open/floor/plasteel/green/side{
- dir = 8
- },
-/area/security/processing{
- name = "Permabrig"
- })
-"abE" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 4;
- name = "regular air vent";
- on = 1
- },
-/turf/open/floor/plasteel,
-/area/security/processing{
- name = "Permabrig"
- })
-"abF" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- tag = "icon-intact (NORTH)";
- icon_state = "intact";
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/security/processing{
- name = "Permabrig"
- })
-"abG" = (
-/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,
-/turf/open/floor/plasteel,
-/area/security/processing{
- name = "Permabrig"
- })
-"abH" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/closed/wall,
-/area/security/processing{
- name = "Permabrig"
- })
-"abI" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/flasher{
- id = "holding";
- pixel_x = -30
- },
-/turf/open/floor/plasteel,
-/area/security/processing{
- name = "Permabrig"
- })
-"abJ" = (
-/obj/machinery/door/airlock/glass_security{
- name = "Holding Area";
- req_access_txt = "2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/security/processing{
- name = "Permabrig"
- })
-"abK" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 4;
- initialize_directions = 11
- },
-/turf/open/floor/plasteel/red/side{
- dir = 8
- },
-/area/security/processing{
- name = "Permabrig"
- })
-"abL" = (
-/turf/open/floor/plating/asteroid/airless{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/ruin/unpowered{
- name = "Asteroid"
- })
-"abM" = (
-/obj/structure/chair{
- dir = 8
- },
-/turf/open/floor/mineral/plastitanium,
-/area/shuttle/syndicate)
-"abN" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/turf/closed/wall/r_wall,
-/area/security/processing{
- name = "Permabrig"
- })
-"abO" = (
-/obj/structure/sign/electricshock{
- pixel_x = -32
- },
-/turf/open/floor/plasteel/green,
-/area/security/processing{
- name = "Permabrig"
- })
-"abP" = (
-/obj/structure/chair/stool,
-/turf/open/floor/plasteel,
-/area/security/processing{
- name = "Permabrig"
- })
-"abQ" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- req_access_txt = 1
- },
-/obj/machinery/light{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/security/processing{
- name = "Permabrig"
- })
-"abR" = (
-/obj/structure/closet/wardrobe/orange,
-/turf/open/floor/plasteel,
-/area/security/processing{
- name = "Permabrig"
- })
-"abS" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- req_access_txt = 1
- },
-/obj/machinery/button/flasher{
- id = "holding";
- pixel_x = -24;
- pixel_y = 5;
- req_access_txt = "1"
- },
-/obj/machinery/button/door{
- id = "holding blast";
- name = "Holding Cell Lock";
- pixel_x = -24;
- pixel_y = -5;
- req_access_txt = "1"
- },
-/obj/machinery/button/door{
- id = "permacell";
- pixel_x = -38;
- pixel_y = -5;
- req_access_txt = "1"
- },
-/turf/open/floor/plasteel/red/side{
- dir = 8
- },
-/area/security/processing{
- name = "Permabrig"
- })
-"abT" = (
-/obj/machinery/camera/autoname{
- tag = "icon-camera (WEST)";
- icon_state = "camera";
- dir = 8
- },
-/obj/structure/cable{
- tag = "icon-1-2";
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/red/side{
- dir = 4
- },
-/area/security/processing{
- name = "Permabrig"
- })
-"abU" = (
-/obj/machinery/light{
- icon_state = "tube1";
- dir = 8
- },
-/turf/open/floor/mineral/plastitanium,
-/area/shuttle/syndicate)
-"abV" = (
-/obj/structure/chair{
- dir = 8
- },
-/obj/machinery/light{
- dir = 4
- },
-/turf/open/floor/mineral/plastitanium,
-/area/shuttle/syndicate)
-"abW" = (
-/obj/machinery/porta_turret/syndicate{
- dir = 4
- },
-/turf/closed/wall/mineral/plastitanium,
-/area/shuttle/syndicate)
-"abX" = (
-/obj/machinery/hydroponics/soil,
-/obj/item/cultivator,
-/turf/open/floor/grass,
-/area/security/processing{
- name = "Permabrig"
- })
-"abY" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 4;
- name = "regular air scrubber";
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel,
-/area/security/processing{
- name = "Permabrig"
- })
-"abZ" = (
-/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/security/processing{
- name = "Permabrig"
- })
-"aca" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- tag = "icon-intact (WEST)";
- icon_state = "intact";
- dir = 8
- },
-/turf/closed/wall,
-/area/security/processing{
- name = "Permabrig"
- })
-"acb" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- tag = "icon-intact (WEST)";
- icon_state = "intact";
- dir = 8
- },
-/obj/machinery/flasher{
- id = "holding";
- pixel_x = -30
- },
-/turf/open/floor/plasteel,
-/area/security/processing{
- name = "Permabrig"
- })
-"acc" = (
-/obj/machinery/door/airlock/glass_security{
- name = "Holding Area";
- req_access_txt = "2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- tag = "icon-intact (WEST)";
- icon_state = "intact";
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/security/processing{
- name = "Permabrig"
- })
-"acd" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- req_access_txt = 1
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- tag = "icon-intact (WEST)";
- icon_state = "intact";
- dir = 8
- },
-/turf/open/floor/plasteel/red/side{
- dir = 8
- },
-/area/security/processing{
- name = "Permabrig"
- })
-"ace" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 10
- },
-/obj/structure/cable{
- tag = "icon-1-2";
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/red/side{
- dir = 4
- },
-/area/security/processing{
- name = "Permabrig"
- })
-"acf" = (
-/obj/effect/landmark{
- name = "carpspawn"
- },
-/turf/open/space,
-/area/space)
-"acg" = (
-/turf/closed/mineral/random,
-/area/ruin/unpowered{
- name = "Asteroid"
- })
-"ach" = (
-/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)
-"aci" = (
-/obj/machinery/suit_storage_unit/syndicate,
-/turf/open/floor/mineral/plastitanium,
-/area/shuttle/syndicate)
-"acj" = (
-/obj/structure/closet/syndicate/nuclear,
-/turf/open/floor/mineral/plastitanium,
-/area/shuttle/syndicate)
-"ack" = (
-/obj/machinery/hydroponics/soil,
-/obj/item/seeds/carrot,
-/turf/open/floor/grass,
-/area/security/processing{
- name = "Permabrig"
- })
-"acl" = (
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/table,
-/obj/effect/holodeck_effect/cards,
-/turf/open/floor/plasteel/green/side{
- dir = 8
- },
-/area/security/processing{
- name = "Permabrig"
- })
-"acm" = (
-/obj/machinery/light/small,
-/obj/structure/table,
-/turf/open/floor/plasteel,
-/area/security/processing{
- name = "Permabrig"
- })
-"acn" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- req_access_txt = 1
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 4;
- name = "regular air scrubber";
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/obj/machinery/computer/security/telescreen{
- desc = "Used for watching Prison Wing holding areas.";
- dir = 4;
- name = "Prison Monitor";
- network = list("Prison");
- pixel_x = -30;
- pixel_y = 0
- },
-/turf/open/floor/plasteel/red/side{
- dir = 8
- },
-/area/security/processing{
- name = "Permabrig"
- })
-"aco" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 4;
- initialize_directions = 11
- },
-/obj/structure/cable{
- tag = "icon-1-2";
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/red/side{
- dir = 4
- },
-/area/security/processing{
- name = "Permabrig"
- })
-"acp" = (
-/obj/structure/chair/stool{
- pixel_y = 8
- },
-/turf/open/floor/mineral/plastitanium,
-/area/shuttle/syndicate)
-"acq" = (
-/obj/structure/table,
-/obj/item/device/aicard,
-/turf/open/floor/mineral/plastitanium,
-/area/shuttle/syndicate)
-"acr" = (
-/obj/machinery/door/poddoor{
- id = "smindicate";
- name = "outer blast door"
- },
-/obj/machinery/button/door{
- id = "smindicate";
- name = "external door control";
- pixel_x = -26;
- pixel_y = 0;
- 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
- },
-/turf/open/floor/plating,
-/area/shuttle/syndicate)
-"acs" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
- icon_state = "space";
- layer = 4;
- name = "EXTERNAL AIRLOCK";
- pixel_x = 0
- },
-/turf/closed/wall/mineral/plastitanium,
-/area/shuttle/syndicate)
-"act" = (
-/obj/machinery/light{
- dir = 8
- },
-/obj/structure/sign/electricshock{
- pixel_x = -32
- },
-/turf/open/floor/plasteel/green,
-/area/security/processing{
- name = "Permabrig"
- })
-"acu" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- req_access_txt = 1
- },
-/obj/structure/sign/electricshock{
- pixel_x = -32
- },
-/turf/open/floor/plasteel/red/side{
- dir = 8
- },
-/area/security/processing{
- name = "Permabrig"
- })
-"acv" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- tag = "icon-intact (NORTH)";
- icon_state = "intact";
- dir = 1
- },
-/obj/structure/cable{
- tag = "icon-1-2";
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/red/side{
- dir = 4
- },
-/area/security/processing{
- name = "Permabrig"
- })
-"acw" = (
-/obj/machinery/suit_storage_unit/syndicate,
-/obj/machinery/light{
- icon_state = "tube1";
- dir = 8
- },
-/turf/open/floor/mineral/plastitanium,
-/area/shuttle/syndicate)
-"acx" = (
-/obj/structure/table,
-/obj/item/grenade/plastic/c4{
- pixel_x = 2;
- pixel_y = -5
- },
-/obj/item/grenade/plastic/c4{
- pixel_x = -3;
- pixel_y = 3
- },
-/obj/item/grenade/plastic/c4{
- pixel_x = 2;
- pixel_y = -3
- },
-/obj/item/grenade/plastic/c4{
- pixel_x = -2;
- pixel_y = -1
- },
-/obj/item/grenade/plastic/c4{
- pixel_x = 3;
- pixel_y = 3
- },
-/obj/machinery/light{
- dir = 4
- },
-/turf/open/floor/mineral/plastitanium,
-/area/shuttle/syndicate)
-"acy" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/shuttle/syndicate)
-"acz" = (
-/obj/machinery/door/window{
- name = "Ready Room";
- req_access_txt = "150"
- },
-/turf/open/floor/mineral/plastitanium,
-/area/shuttle/syndicate)
-"acA" = (
-/obj/machinery/hydroponics/soil,
-/obj/item/seeds/apple,
-/turf/open/floor/grass,
-/area/security/processing{
- name = "Permabrig"
- })
-"acB" = (
-/obj/structure/window/reinforced{
- dir = 8
- },
-/turf/open/floor/plasteel/green/side{
- dir = 8
- },
-/area/security/processing{
- name = "Permabrig"
- })
-"acC" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 10
- },
-/turf/open/floor/plasteel,
-/area/security/processing{
- name = "Permabrig"
- })
-"acD" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- req_access_txt = 1
- },
-/turf/open/floor/plasteel/red/side{
- dir = 8
- },
-/area/security/processing{
- name = "Permabrig"
- })
-"acE" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- tag = "icon-intact (NORTH)";
- icon_state = "intact";
- dir = 1
- },
-/obj/machinery/light{
- dir = 4
- },
-/obj/structure/cable{
- tag = "icon-1-2";
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/red/side{
- dir = 4
- },
-/area/security/processing{
- name = "Permabrig"
- })
-"acF" = (
-/obj/machinery/door/window{
- dir = 4;
- name = "EVA Storage";
- req_access_txt = "150"
- },
-/turf/open/floor/mineral/plastitanium,
-/area/shuttle/syndicate)
-"acG" = (
-/obj/machinery/door/airlock/external{
- req_access_txt = "150"
- },
-/turf/open/floor/mineral/plastitanium,
-/area/shuttle/syndicate)
-"acH" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/structure/sign/electricshock{
- pixel_y = -32
- },
-/obj/structure/cable{
- icon_state = "0-2";
- pixel_y = 1;
- d2 = 2
- },
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/turf/open/floor/plating,
-/area/security/processing{
- name = "Permabrig"
- })
-"acI" = (
-/obj/machinery/hydroponics/soil,
-/obj/item/seeds/watermelon,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/grass,
-/area/security/processing{
- name = "Permabrig"
- })
-"acJ" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/green,
-/area/security/processing{
- name = "Permabrig"
- })
-"acK" = (
-/obj/machinery/hydroponics/soil,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/grass,
-/area/security/processing{
- name = "Permabrig"
- })
-"acL" = (
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/green/side{
- dir = 8
- },
-/area/security/processing{
- name = "Permabrig"
- })
-"acM" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 6
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/camera{
- c_tag = "Prison Common Room South";
- dir = 1;
- network = list("SS13","Prison")
- },
-/turf/open/floor/plasteel,
-/area/security/processing{
- name = "Permabrig"
- })
-"acN" = (
-/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/security/processing{
- name = "Permabrig"
- })
-"acO" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- tag = "icon-intact (NORTH)";
- icon_state = "intact";
- dir = 1
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/button/door{
- id = "permacell3";
- normaldoorcontrol = 1;
- pixel_y = -24;
- req_access_txt = "1";
- specialfunctions = 4
- },
-/turf/open/floor/plasteel,
-/area/security/processing{
- name = "Permabrig"
- })
-"acP" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
-/obj/machinery/light,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel,
-/area/security/processing{
- name = "Permabrig"
- })
-"acQ" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 10
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel,
-/area/security/processing{
- name = "Permabrig"
- })
-"acR" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel,
-/area/security/processing{
- name = "Permabrig"
- })
-"acS" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- tag = "icon-intact (NORTH)";
- icon_state = "intact";
- dir = 1
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/button/door{
- id = "permacell4";
- normaldoorcontrol = 1;
- pixel_y = -24;
- req_access_txt = "1";
- specialfunctions = 4
- },
-/turf/open/floor/plasteel,
-/area/security/processing{
- name = "Permabrig"
- })
-"acT" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile{
- obj_integrity = 5000;
- max_integrity = 5000;
- name = "hardened window"
- },
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/obj/structure/cable{
- tag = "icon-0-8";
- icon_state = "0-8"
- },
-/obj/structure/cable,
-/obj/machinery/door/poddoor/preopen{
- id = "permalock"
- },
-/turf/open/floor/plating,
-/area/security/processing{
- name = "Permabrig"
- })
-"acU" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- req_access_txt = 1
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/red/side{
- dir = 8
- },
-/area/security/processing{
- name = "Permabrig"
- })
-"acV" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- tag = "icon-intact (NORTH)";
- icon_state = "intact";
- dir = 1
- },
-/obj/structure/cable{
- tag = "icon-2-8";
- icon_state = "2-8"
- },
-/obj/structure/cable{
- tag = "icon-1-2";
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/red/side{
- dir = 4
- },
-/area/security/processing{
- name = "Permabrig"
- })
-"acW" = (
-/turf/closed/wall/r_wall,
-/area/security/processing{
- name = "Prisoner Processing"
- })
-"acX" = (
-/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)
-"acY" = (
-/turf/open/space,
-/turf/closed/wall/mineral/plastitanium{
- dir = 1;
- icon_state = "diagonalWall3"
- },
-/area/shuttle/syndicate)
-"acZ" = (
-/obj/machinery/door/poddoor/preopen{
- id = "permacell";
- name = "cell blast door"
- },
-/obj/machinery/door/airlock/glass{
- id_tag = "permacell3";
- name = "Cell 3"
- },
-/turf/open/floor/plasteel/floorgrime,
-/area/security/processing{
- name = "Permabrig"
- })
-"ada" = (
-/obj/machinery/door/poddoor/preopen{
- id = "permacell";
- name = "cell blast door"
- },
-/obj/machinery/door/airlock/glass{
- id_tag = "permacell4";
- name = "Cell 4"
- },
-/turf/open/floor/plasteel,
-/area/security/processing{
- name = "Permabrig"
- })
-"adb" = (
-/obj/machinery/door/airlock/glass_security{
- name = "Prison Wing";
- req_access_txt = "1"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- req_access_txt = 1
- },
-/turf/open/floor/plasteel/red/side{
- dir = 8
- },
-/area/security/processing{
- name = "Permabrig"
- })
-"adc" = (
-/obj/machinery/door/airlock/glass_security{
- name = "Prison Wing";
- req_access_txt = "1"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- tag = "icon-intact (NORTH)";
- icon_state = "intact";
- dir = 1
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/turf/open/floor/plasteel/red/side{
- dir = 4
- },
-/area/security/processing{
- name = "Permabrig"
- })
-"add" = (
-/obj/structure/closet/crate/bin,
-/turf/open/floor/plasteel{
- icon_state = "redfull"
- },
-/area/security/processing{
- name = "Prisoner Processing"
- })
-"ade" = (
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/filingcabinet,
-/turf/open/floor/plasteel{
- icon_state = "redfull"
- },
-/area/security/processing{
- name = "Prisoner Processing"
- })
-"adf" = (
-/obj/machinery/camera/autoname,
-/turf/open/floor/plasteel{
- icon_state = "redfull"
- },
-/area/security/processing{
- name = "Prisoner Processing"
- })
-"adg" = (
-/obj/structure/table,
-/obj/item/clothing/under/rank/prisoner,
-/obj/item/clothing/under/rank/prisoner,
-/obj/item/clothing/under/rank/prisoner,
-/obj/item/clothing/under/rank/prisoner,
-/obj/item/clothing/under/rank/prisoner,
-/turf/open/floor/plasteel{
- icon_state = "redfull"
- },
-/area/security/processing{
- name = "Prisoner Processing"
- })
-"adh" = (
-/obj/structure/table,
-/obj/item/storage/box/prisoner,
-/turf/open/floor/plasteel{
- icon_state = "redfull"
- },
-/area/security/processing{
- name = "Prisoner Processing"
- })
-"adi" = (
-/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)
-"adj" = (
-/obj/structure/lattice,
-/turf/open/space,
-/area/space/nearstation)
-"adk" = (
-/obj/structure/table,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- tag = "icon-intact (NORTH)";
- icon_state = "intact";
- dir = 1
- },
-/obj/machinery/button/door{
- id = "permacell3";
- normaldoorcontrol = 1;
- pixel_y = 24;
- specialfunctions = 4
- },
-/obj/machinery/camera{
- c_tag = "Prison Cell 3";
- network = list("SS13","Prison")
- },
-/turf/open/floor/plasteel,
-/area/security/processing{
- name = "Permabrig"
- })
-"adl" = (
-/obj/structure/table,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- tag = "icon-intact (NORTH)";
- icon_state = "intact";
- dir = 1
- },
-/obj/machinery/button/door{
- id = "permacell4";
- normaldoorcontrol = 1;
- pixel_y = 24;
- specialfunctions = 4
- },
-/obj/machinery/camera{
- c_tag = "Prison Cell 4";
- network = list("SS13","Prison")
- },
-/turf/open/floor/plasteel,
-/area/security/processing{
- name = "Permabrig"
- })
-"adm" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- req_access_txt = 1
- },
-/obj/effect/turf_decal/delivery,
-/obj/machinery/door/poddoor/preopen{
- id = "permalock"
- },
-/turf/open/floor/plasteel/red/side{
- dir = 8
- },
-/area/security/processing{
- name = "Permabrig"
- })
-"adn" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- tag = "icon-intact (NORTH)";
- icon_state = "intact";
- dir = 1
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/effect/turf_decal/delivery,
-/obj/machinery/door/poddoor/preopen{
- id = "permalock"
- },
-/turf/open/floor/plasteel/red/side{
- dir = 4
- },
-/area/security/processing{
- name = "Permabrig"
- })
-"ado" = (
-/turf/open/floor/plasteel/red/side{
- dir = 5
- },
-/area/security/processing{
- name = "Prisoner Processing"
- })
-"adp" = (
-/obj/structure/table,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/item/storage/box/zipties,
-/turf/open/floor/plasteel{
- icon_state = "redfull"
- },
-/area/security/processing{
- name = "Prisoner Processing"
- })
-"adq" = (
-/turf/open/floor/plasteel,
-/area/security/processing{
- name = "Prisoner Processing"
- })
-"adr" = (
-/obj/machinery/light{
- dir = 4
- },
-/turf/open/floor/plasteel{
- icon_state = "redfull"
- },
-/area/security/processing{
- name = "Prisoner Processing"
- })
-"ads" = (
-/turf/closed/mineral/random/labormineral,
-/area/ruin/unpowered{
- name = "Asteroid"
- })
-"adt" = (
-/obj/machinery/sleeper/syndie{
- dir = 4
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/syndicate)
-"adu" = (
-/turf/open/floor/mineral/titanium,
-/area/shuttle/syndicate)
-"adv" = (
-/obj/machinery/portable_atmospherics/canister/oxygen,
-/turf/open/floor/mineral/titanium,
-/area/shuttle/syndicate)
-"adw" = (
-/obj/structure/tank_dispenser/oxygen,
-/turf/open/floor/mineral/titanium,
-/area/shuttle/syndicate)
-"adx" = (
-/obj/structure/table,
-/obj/item/stack/medical/ointment,
-/obj/item/stack/medical/bruise_pack,
-/obj/structure/extinguisher_cabinet{
- pixel_x = -5;
- pixel_y = 30
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/syndicate)
-"ady" = (
-/obj/structure/table,
-/obj/item/stock_parts/cell/high{
- pixel_x = -3;
- pixel_y = 3
- },
-/obj/item/stock_parts/cell/high,
-/turf/open/floor/mineral/plastitanium,
-/area/shuttle/syndicate)
-"adz" = (
-/obj/structure/table,
-/obj/item/screwdriver{
- pixel_y = 9
- },
-/obj/item/device/assembly/voice{
- pixel_y = 3
- },
-/turf/open/floor/mineral/plastitanium,
-/area/shuttle/syndicate)
-"adA" = (
-/obj/structure/table,
-/obj/item/wrench,
-/obj/item/device/assembly/infra,
-/turf/open/floor/mineral/plastitanium,
-/area/shuttle/syndicate)
-"adB" = (
-/obj/structure/table,
-/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
- },
-/turf/open/floor/mineral/plastitanium,
-/area/shuttle/syndicate)
-"adC" = (
-/obj/structure/table,
-/obj/item/weldingtool/largetank{
- pixel_y = 3
- },
-/obj/item/device/multitool,
-/turf/open/floor/mineral/plastitanium,
-/area/shuttle/syndicate)
-"adD" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- req_access_txt = 1
- },
-/turf/open/floor/plasteel/red/side{
- dir = 8
- },
-/area/security/processing{
- name = "Prisoner Processing"
- })
-"adE" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- tag = "icon-intact (NORTH)";
- icon_state = "intact";
- dir = 1
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/turf/open/floor/plasteel,
-/area/security/processing{
- name = "Prisoner Processing"
- })
-"adF" = (
-/obj/machinery/power/apc{
- cell_type = 10000;
- dir = 1;
- name = "Permabrig APC";
- pixel_x = 0;
- pixel_y = 24
- },
-/obj/structure/cable{
- tag = "icon-0-8";
- icon_state = "0-8"
- },
-/turf/open/floor/plasteel,
-/area/security/processing{
- name = "Prisoner Processing"
- })
-"adG" = (
-/turf/open/floor/plasteel/red/side{
- dir = 4
- },
-/area/security/processing{
- name = "Prisoner Processing"
- })
-"adH" = (
-/obj/structure/table,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/item/restraints/handcuffs,
-/obj/item/restraints/handcuffs,
-/turf/open/floor/plasteel{
- icon_state = "redfull"
- },
-/area/security/processing{
- name = "Prisoner Processing"
- })
-"adI" = (
-/obj/structure/closet/secure_closet/brig,
-/turf/open/floor/plasteel{
- icon_state = "redfull"
- },
-/area/security/processing{
- name = "Prisoner Processing"
- })
-"adJ" = (
-/obj/structure/bed/roller,
-/obj/machinery/light{
- icon_state = "tube1";
- dir = 8
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/syndicate)
-"adK" = (
-/obj/structure/sign/bluecross_2,
-/turf/closed/wall/mineral/plastitanium,
-/area/shuttle/syndicate)
-"adL" = (
-/obj/structure/table,
-/obj/item/storage/toolbox/syndicate,
-/obj/item/crowbar/red,
-/turf/open/floor/mineral/plastitanium,
-/area/shuttle/syndicate)
-"adM" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- tag = "icon-vent_map (NORTH)";
- name = "regular air vent";
- icon_state = "vent_map";
- dir = 1;
- on = 1
- },
-/obj/structure/closet,
-/turf/open/floor/plasteel,
-/area/security/processing{
- name = "Permabrig"
- })
-"adN" = (
-/obj/machinery/light/small,
-/turf/open/floor/plasteel,
-/area/security/processing{
- name = "Permabrig"
- })
-"adO" = (
-/obj/structure/bed,
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 1;
- name = "regular air scrubber";
- on = 1
- },
-/turf/open/floor/plasteel,
-/area/security/processing{
- name = "Permabrig"
- })
-"adP" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- tag = "icon-intact (NORTH)";
- icon_state = "intact";
- dir = 1
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/turf/open/floor/plasteel,
-/area/security/processing{
- name = "Prisoner Processing"
- })
-"adQ" = (
-/turf/open/floor/plasteel{
- icon_state = "redfull"
- },
-/area/security/processing{
- name = "Prisoner Processing"
- })
-"adR" = (
-/obj/machinery/door/window{
- dir = 4;
- name = "Infirmary";
- req_access_txt = "150"
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/syndicate)
-"adS" = (
-/obj/machinery/door/window/westright{
- name = "Tool Storage";
- req_access_txt = "150"
- },
-/turf/open/floor/mineral/plastitanium,
-/area/shuttle/syndicate)
-"adT" = (
-/turf/closed/wall/r_wall,
-/area/medical/virology)
-"adU" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/medical/virology)
-"adV" = (
-/obj/structure/lattice,
-/turf/open/space,
-/area/medical/virology)
-"adW" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 8;
- initialize_directions = 11
- },
-/turf/open/floor/plasteel/red/side{
- dir = 8
- },
-/area/security/processing{
- name = "Prisoner Processing"
- })
-"adX" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- tag = "icon-intact (NORTH)";
- icon_state = "intact";
- dir = 1
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/turf/open/floor/plasteel,
-/area/security/processing{
- name = "Prisoner Processing"
- })
-"adY" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 8;
- name = "regular air vent";
- on = 1
- },
-/turf/open/floor/plasteel,
-/area/security/processing{
- name = "Prisoner Processing"
- })
-"adZ" = (
-/obj/structure/table,
-/obj/item/storage/fancy/donut_box,
-/turf/open/floor/plasteel/red/side{
- dir = 4
- },
-/area/security/processing{
- name = "Prisoner Processing"
- })
-"aea" = (
-/obj/machinery/computer/prisoner,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/turf/open/floor/plasteel{
- icon_state = "redfull"
- },
-/area/security/processing{
- name = "Prisoner Processing"
- })
-"aeb" = (
-/obj/machinery/computer/secure_data,
-/turf/open/floor/plasteel{
- icon_state = "redfull"
- },
-/area/security/processing{
- name = "Prisoner Processing"
- })
-"aec" = (
-/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)
-"aed" = (
-/obj/machinery/door/window{
- dir = 8;
- name = "Tool Storage";
- req_access_txt = "150"
- },
-/turf/open/floor/mineral/plastitanium,
-/area/shuttle/syndicate)
-"aee" = (
-/obj/machinery/recharge_station,
-/obj/machinery/light{
- dir = 4
- },
-/turf/open/floor/mineral/plastitanium,
-/area/shuttle/syndicate)
-"aef" = (
-/mob/living/carbon/monkey,
-/turf/open/floor/plasteel/freezer,
-/area/medical/virology)
-"aeg" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel/freezer,
-/area/medical/virology)
-"aeh" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- on = 1
- },
-/obj/machinery/light/small{
- dir = 1
- },
-/turf/open/floor/plasteel/freezer,
-/area/medical/virology)
-"aei" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 6
- },
-/obj/machinery/light{
- dir = 1
- },
-/turf/open/floor/plasteel/red/side{
- dir = 1
- },
-/area/security/processing{
- name = "Prisoner Processing"
- })
-"aej" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel{
- icon_state = "redfull"
- },
-/area/security/processing{
- name = "Prisoner Processing"
- })
-"aek" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/closed/wall/r_wall,
-/area/security/processing{
- name = "Prisoner Processing"
- })
-"ael" = (
-/obj/structure/sign/biohazard{
- pixel_y = 32
- },
-/obj/machinery/shower{
- icon_state = "shower";
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 9
- },
-/turf/open/floor/plasteel/white,
-/area/security/processing{
- name = "Prisoner Processing"
- })
-"aem" = (
-/obj/structure/sink{
- pixel_y = 28
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plasteel/white,
-/area/security/processing{
- name = "Prisoner Processing"
- })
-"aen" = (
-/obj/structure/sign/securearea{
- pixel_x = 0;
- pixel_y = 32
- },
-/obj/machinery/shower{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 10
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 5
- },
-/turf/open/floor/plasteel/white,
-/area/security/processing{
- name = "Prisoner Processing"
- })
-"aeo" = (
-/turf/closed/wall,
-/area/security/processing{
- name = "Prisoner Processing"
- })
-"aep" = (
-/obj/machinery/camera/autoname,
-/turf/open/floor/plasteel/red/side{
- dir = 1
- },
-/area/security/processing{
- name = "Prisoner Processing"
- })
-"aeq" = (
-/obj/structure/table,
-/obj/item/paper,
-/obj/item/reagent_containers/food/snacks/donut/jelly,
-/turf/open/floor/plasteel/red/side{
- dir = 4
- },
-/area/security/processing{
- name = "Prisoner Processing"
- })
-"aer" = (
-/obj/item/clothing/gloves/color/latex,
-/obj/item/clothing/mask/surgical,
-/obj/item/reagent_containers/spray/cleaner,
-/obj/structure/table/glass,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/window/reinforced{
- dir = 1;
- pixel_y = 1
- },
-/turf/open/floor/plasteel/whitered/side{
- dir = 9
- },
-/area/security/processing{
- name = "Prisoner Processing"
- })
-"aes" = (
-/obj/structure/bed,
-/obj/item/bedsheet/red,
-/obj/structure/window/reinforced{
- dir = 1;
- pixel_y = 1
- },
-/turf/open/floor/plasteel/whitered/side{
- tag = "icon-whitered (NORTH)";
- icon_state = "whitered";
- dir = 1
- },
-/area/security/processing{
- name = "Prisoner Processing"
- })
-"aet" = (
-/obj/item/storage/firstaid/regular{
- pixel_x = 3;
- pixel_y = 3
- },
-/obj/item/storage/firstaid/regular,
-/obj/structure/table/glass,
-/obj/structure/window/reinforced{
- dir = 1;
- pixel_y = 1
- },
-/turf/open/floor/plasteel/whitered/side{
- dir = 1
- },
-/area/security/processing{
- name = "Prisoner Processing"
- })
-"aeu" = (
-/turf/open/floor/plating/asteroid/airless,
-/area/ruin/unpowered{
- name = "Asteroid"
- })
-"aev" = (
-/obj/machinery/porta_turret/syndicate{
- dir = 5
- },
-/turf/closed/wall/mineral/plastitanium,
-/area/shuttle/syndicate)
-"aew" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/table,
-/obj/item/bodypart/r_arm/robot,
-/obj/item/bodypart/l_arm/robot,
-/turf/open/floor/mineral/titanium,
-/area/shuttle/syndicate)
-"aex" = (
-/obj/machinery/door/window{
- dir = 1;
- name = "Surgery";
- req_access_txt = "150"
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/syndicate)
-"aey" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/syndicate)
-"aez" = (
-/obj/structure/table,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/item/storage/firstaid/regular{
- pixel_x = 3;
- pixel_y = 3
- },
-/obj/item/storage/firstaid/brute,
-/obj/item/storage/firstaid/regular{
- pixel_x = -3;
- pixel_y = -3
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/syndicate)
-"aeA" = (
-/obj/structure/table,
-/obj/item/storage/firstaid/regular{
- pixel_x = 3;
- pixel_y = 3
- },
-/obj/item/storage/firstaid/fire,
-/obj/item/storage/firstaid/regular{
- pixel_x = -3;
- pixel_y = -3
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/syndicate)
-"aeB" = (
-/obj/structure/table,
-/obj/item/device/sbeacondrop/bomb{
- pixel_y = 5
- },
-/obj/item/device/sbeacondrop/bomb,
-/turf/open/floor/mineral/plastitanium,
-/area/shuttle/syndicate)
-"aeC" = (
-/obj/structure/table,
-/obj/item/grenade/syndieminibomb{
- pixel_x = 4;
- pixel_y = 2
- },
-/obj/item/grenade/syndieminibomb{
- pixel_x = -1
- },
-/turf/open/floor/mineral/plastitanium,
-/area/shuttle/syndicate)
-"aeD" = (
-/obj/machinery/recharge_station,
-/turf/open/floor/mineral/plastitanium,
-/area/shuttle/syndicate)
-"aeE" = (
-/obj/structure/bed/roller,
-/turf/open/floor/plasteel/freezer,
-/area/medical/virology)
-"aeF" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/mob/living/carbon/monkey,
-/turf/open/floor/plasteel/freezer,
-/area/medical/virology)
-"aeG" = (
-/obj/effect/landmark{
- name = "blobstart"
- },
-/turf/open/floor/plasteel/freezer,
-/area/medical/virology)
-"aeH" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/mob/living/carbon/monkey,
-/turf/open/floor/plasteel/freezer,
-/area/medical/virology)
-"aeI" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/structure/cable/yellow{
- d2 = 4;
- icon_state = "0-4"
- },
-/turf/open/floor/plating,
-/area/medical/virology)
-"aeJ" = (
-/obj/item/storage/box/beakers{
- pixel_x = 2;
- pixel_y = 2
- },
-/obj/item/storage/box/syringes,
-/obj/machinery/power/apc{
- cell_type = 5000;
- dir = 1;
- name = "Virology APC";
- pixel_x = 0;
- pixel_y = 24
- },
-/obj/structure/cable/yellow{
- d2 = 4;
- icon_state = "0-4"
- },
-/obj/structure/cable/yellow{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/structure/table/glass,
-/turf/open/floor/plasteel/whitegreen/side{
- dir = 9
- },
-/area/medical/virology)
-"aeK" = (
-/obj/item/book/manual/wiki/infections{
- pixel_y = 7
- },
-/obj/item/reagent_containers/syringe/antiviral,
-/obj/item/reagent_containers/dropper,
-/obj/item/reagent_containers/spray/cleaner,
-/obj/structure/cable/yellow{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/structure/table/glass,
-/turf/open/floor/plasteel/whitegreen/side{
- dir = 5
- },
-/area/medical/virology)
-"aeL" = (
-/obj/machinery/smartfridge/chemistry/virology/preloaded,
-/obj/machinery/airalarm{
- frequency = 1439;
- pixel_y = 23
- },
-/turf/open/floor/plasteel/whitegreen,
-/area/medical/virology)
-"aeM" = (
-/obj/machinery/reagentgrinder{
- pixel_y = 8
- },
-/obj/structure/table/glass,
-/turf/open/floor/plasteel/whitegreen/side{
- dir = 9
- },
-/area/medical/virology)
-"aeN" = (
-/obj/item/clothing/gloves/color/latex,
-/obj/item/device/healthanalyzer,
-/obj/item/clothing/glasses/hud/health,
-/obj/structure/reagent_dispensers/virusfood{
- density = 0;
- pixel_x = 0;
- pixel_y = 30
- },
-/obj/structure/table/glass,
-/turf/open/floor/plasteel/whitegreen/side{
- dir = 5
- },
-/area/medical/virology)
-"aeO" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 6
- },
-/turf/open/floor/plasteel/red/side{
- dir = 8
- },
-/area/security/processing{
- name = "Prisoner Processing"
- })
-"aeP" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- req_access_txt = 1
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/structure/cable/yellow{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4";
- tag = ""
- },
-/turf/open/floor/plasteel{
- icon_state = "redfull"
- },
-/area/security/processing{
- name = "Prisoner Processing"
- })
-"aeQ" = (
-/obj/machinery/doorButtons/access_button{
- idDoor = "virology_airlock_interior2";
- idSelf = "virology_airlock_control2";
- name = "Virology Access Button";
- pixel_x = 26;
- pixel_y = 28;
- req_access_txt = "3"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8";
- d1 = 4;
- d2 = 8
- },
-/turf/open/floor/plasteel/red/side{
- dir = 4
- },
-/area/security/processing{
- name = "Prisoner Processing"
- })
-"aeR" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/virology{
- autoclose = 0;
- frequency = 1449;
- icon_state = "door_locked";
- id_tag = "virology_airlock_interior2";
- locked = 1;
- name = "Virology Interior Airlock";
- req_access_txt = "39"
- },
-/turf/open/floor/plasteel{
- icon_state = "redfull"
- },
-/area/security/processing{
- name = "Prisoner Processing"
- })
-"aeS" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 8;
- on = 1
- },
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/doorButtons/access_button{
- idDoor = "virology_airlock_interior2";
- idSelf = "virology_airlock_control2";
- name = "Virology Access Button";
- pixel_x = -26;
- pixel_y = 28;
- req_access_txt = "3"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/security/processing{
- name = "Prisoner Processing"
- })
-"aeT" = (
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/white,
-/area/security/processing{
- name = "Prisoner Processing"
- })
-"aeU" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 1;
- on = 1
- },
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/security/processing{
- name = "Prisoner Processing"
- })
-"aeV" = (
-/obj/machinery/doorButtons/access_button{
- idDoor = "virology_airlock_exterior2";
- idSelf = "virology_airlock_control2";
- name = "Virology Access Button";
- pixel_x = 0;
- pixel_y = 24;
- req_access_txt = "3"
- },
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/virology{
- autoclose = 0;
- frequency = 1449;
- icon_state = "door_locked";
- id_tag = "virology_airlock_exterior2";
- locked = 1;
- name = "Virology Exterior Airlock";
- req_access_txt = "39"
- },
-/turf/open/floor/plasteel{
- icon_state = "redfull"
- },
-/area/security/processing{
- name = "Prisoner Processing"
- })
-"aeW" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/red/side{
- dir = 8
- },
-/area/security/processing{
- name = "Prisoner Processing"
- })
-"aeX" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/mob/living/simple_animal/bot/secbot/pingsky,
-/turf/open/floor/plasteel{
- icon_state = "redfull"
- },
-/area/security/processing{
- name = "Prisoner Processing"
- })
-"aeY" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/red/side{
- dir = 4
- },
-/area/security/processing{
- name = "Prisoner Processing"
- })
-"aeZ" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- req_access_txt = 1
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/red/side{
- dir = 8
- },
-/area/security/processing{
- name = "Prisoner Processing"
- })
-"afa" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- tag = "icon-intact (NORTH)";
- icon_state = "intact";
- dir = 1
- },
-/obj/structure/cable{
- tag = "icon-1-2";
- icon_state = "1-2"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/turf/open/floor/plasteel,
-/area/security/processing{
- name = "Prisoner Processing"
- })
-"afb" = (
-/obj/structure/table,
-/turf/open/floor/plasteel/red/side{
- dir = 4
- },
-/area/security/processing{
- name = "Prisoner Processing"
- })
-"afc" = (
-/obj/structure/window/reinforced{
- dir = 8
- },
-/turf/open/floor/plasteel/whitered/side{
- dir = 8
- },
-/area/security/processing{
- name = "Prisoner Processing"
- })
-"afd" = (
-/turf/open/floor/plasteel/white,
-/area/security/processing{
- name = "Prisoner Processing"
- })
-"afe" = (
-/obj/machinery/iv_drip,
-/obj/item/reagent_containers/blood/empty,
-/turf/open/floor/plasteel/whitered/side{
- dir = 4
- },
-/area/security/processing{
- name = "Prisoner Processing"
- })
-"aff" = (
-/obj/structure/table,
-/obj/item/surgicaldrill,
-/obj/item/circular_saw,
-/obj/machinery/light{
- icon_state = "tube1";
- dir = 8
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/syndicate)
-"afg" = (
-/obj/structure/sink{
- dir = 4;
- icon_state = "sink";
- pixel_x = 11;
- pixel_y = 0
- },
-/obj/structure/mirror{
- pixel_x = 30
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/syndicate)
-"afh" = (
-/obj/machinery/nuclearbomb/syndicate,
-/obj/machinery/door/window{
- dir = 1;
- name = "Secure Storage";
- req_access_txt = "150"
- },
-/turf/open/floor/mineral/plastitanium,
-/area/shuttle/syndicate)
-"afi" = (
-/obj/machinery/telecomms/allinone{
- intercept = 1
- },
-/turf/open/floor/mineral/plastitanium,
-/area/shuttle/syndicate)
-"afj" = (
-/turf/closed/wall,
-/area/medical/virology)
-"afk" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/cable/yellow{
- d2 = 2;
- icon_state = "0-2"
- },
-/turf/open/floor/plating,
-/area/medical/virology)
-"afl" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass_virology{
- name = "Test Subject Cell";
- req_access_txt = "39"
- },
-/turf/open/floor/plasteel/freezer,
-/area/medical/virology)
-"afm" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/cable/yellow{
- d2 = 2;
- icon_state = "0-2"
- },
-/turf/open/floor/plating,
-/area/medical/virology)
-"afn" = (
-/obj/item/paper_bin{
- pixel_x = -2;
- pixel_y = 9
- },
-/obj/machinery/light/small{
- dir = 8
- },
-/obj/structure/table/glass,
-/obj/structure/sign/deathsposal{
- pixel_x = -30;
- pixel_y = 0
- },
-/turf/open/floor/plasteel/whitegreen/side{
- dir = 8
- },
-/area/medical/virology)
-"afo" = (
-/obj/structure/chair/office/light{
- dir = 1;
- pixel_y = 3
- },
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/whitegreen/corner{
- dir = 4
- },
-/area/medical/virology)
-"afp" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- on = 1
- },
-/turf/open/floor/plasteel/whitegreen/side{
- dir = 1
- },
-/area/medical/virology)
-"afq" = (
-/obj/structure/chair/office/light{
- dir = 4
- },
-/obj/effect/landmark/start{
- name = "Virologist"
- },
-/turf/open/floor/plasteel/whitegreen/corner{
- dir = 1
- },
-/area/medical/virology)
-"afr" = (
-/obj/item/folder/white{
- pixel_x = 4;
- pixel_y = -3
- },
-/obj/item/folder/white{
- pixel_x = 4;
- pixel_y = -3
- },
-/obj/item/pen/red,
-/obj/machinery/requests_console{
- department = "Virology";
- name = "Virology Requests Console";
- pixel_x = 29;
- pixel_y = 0
- },
-/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/structure/table/glass,
-/turf/open/floor/plasteel/whitegreen/side{
- dir = 4
- },
-/area/medical/virology)
-"afs" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- tag = "icon-intact (NORTH)";
- icon_state = "intact";
- dir = 1
- },
-/turf/open/floor/plasteel{
- icon_state = "redfull"
- },
-/area/security/processing{
- name = "Prisoner Processing"
- })
-"aft" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- req_access_txt = 1
- },
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/red/side,
-/area/security/processing{
- name = "Prisoner Processing"
- })
-"afu" = (
-/obj/machinery/doorButtons/airlock_controller{
- idExterior = "virology_airlock_exterior2";
- idInterior = "virology_airlock_interior2";
- idSelf = "virology_airlock_control2";
- name = "Virology Access Console";
- pixel_x = 22;
- pixel_y = 8;
- req_access_txt = "3"
- },
-/turf/open/floor/plasteel{
- icon_state = "redfull"
- },
-/area/security/processing{
- name = "Prisoner Processing"
- })
-"afv" = (
-/obj/structure/closet/emcloset,
-/obj/item/device/radio/intercom{
- pixel_x = -28;
- pixel_y = 0
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 10
- },
-/turf/open/floor/plasteel/white,
-/area/security/processing{
- name = "Prisoner Processing"
- })
-"afw" = (
-/obj/machinery/camera{
- c_tag = "Virology - Airlock";
- dir = 1;
- network = list("SS13","Medbay")
- },
-/obj/machinery/light,
-/obj/structure/closet/l3closet,
-/obj/machinery/firealarm{
- dir = 1;
- pixel_y = -24
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 2
- },
-/turf/open/floor/plasteel/white,
-/area/security/processing{
- name = "Prisoner Processing"
- })
-"afx" = (
-/obj/structure/closet/l3closet,
-/obj/effect/turf_decal/stripes/line{
- dir = 6
- },
-/turf/open/floor/plasteel/white,
-/area/security/processing{
- name = "Prisoner Processing"
- })
-"afy" = (
-/obj/machinery/light,
-/turf/open/floor/plasteel/red/side,
-/area/security/processing{
- name = "Prisoner Processing"
- })
-"afz" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 8
- },
-/obj/structure/cable{
- tag = "icon-1-2";
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel,
-/area/security/processing{
- name = "Prisoner Processing"
- })
-"afA" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 8;
- name = "regular air scrubber";
- on = 1;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel,
-/area/security/processing{
- name = "Prisoner Processing"
- })
-"afB" = (
-/obj/machinery/door/window/westleft{
- base_state = "left";
- dir = 8;
- icon_state = "left";
- name = "Brig Infirmary";
- req_access_txt = "0"
- },
-/turf/open/floor/plasteel/whitered/side{
- dir = 8
- },
-/area/security/processing{
- name = "Prisoner Processing"
- })
-"afC" = (
-/obj/structure/bed/roller,
-/obj/item/clothing/suit/straight_jacket,
-/turf/open/floor/plasteel/whitered/side{
- dir = 4
- },
-/area/security/processing{
- name = "Prisoner Processing"
- })
-"afD" = (
-/obj/structure/table,
-/obj/item/cautery,
-/obj/item/scalpel,
-/turf/open/floor/mineral/titanium,
-/area/shuttle/syndicate)
-"afE" = (
-/obj/structure/table/optable,
-/obj/item/surgical_drapes,
-/turf/open/floor/mineral/titanium,
-/area/shuttle/syndicate)
-"afF" = (
-/obj/structure/table,
-/obj/item/retractor,
-/obj/item/hemostat,
-/turf/open/floor/mineral/titanium,
-/area/shuttle/syndicate)
-"afG" = (
-/obj/structure/shuttle/engine/heater,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/shuttle/syndicate)
-"afH" = (
-/obj/structure/reagent_dispensers/fueltank,
-/turf/open/floor/mineral/plastitanium,
-/area/shuttle/syndicate)
-"afI" = (
-/obj/structure/table,
-/obj/item/stack/sheet/metal{
- amount = 50
- },
-/obj/item/stack/sheet/glass{
- amount = 50
- },
-/obj/item/stack/rods{
- amount = 50
- },
-/turf/open/floor/mineral/plastitanium,
-/area/shuttle/syndicate)
-"afJ" = (
-/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)
-"afK" = (
-/obj/item/device/radio/intercom{
- pixel_x = -28;
- pixel_y = 0
- },
-/obj/machinery/airalarm{
- frequency = 1439;
- pixel_y = 23
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 6
- },
-/obj/machinery/camera{
- c_tag = "Virology - Cells";
- dir = 4;
- network = list("SS13","Medbay")
- },
-/obj/machinery/chem_dispenser,
-/turf/open/floor/plasteel/whitegreen/side{
- dir = 9
- },
-/area/medical/virology)
-"afL" = (
-/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
- },
-/obj/machinery/iv_drip,
-/turf/open/floor/plasteel/whitegreen/side{
- dir = 1
- },
-/area/medical/virology)
-"afM" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/whitegreen/side{
- dir = 1
- },
-/area/medical/virology)
-"afN" = (
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 2
- },
-/turf/open/floor/plasteel/whitegreen/side{
- dir = 1
- },
-/area/medical/virology)
-"afO" = (
-/obj/structure/rack,
-/obj/item/crowbar/red,
-/obj/machinery/light_switch{
- pixel_x = 0;
- pixel_y = 26
- },
-/obj/item/wrench,
-/obj/item/restraints/handcuffs,
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 1
- },
-/turf/open/floor/plasteel/whitegreen/side{
- dir = 5
- },
-/area/medical/virology)
-"afP" = (
-/obj/structure/grille,
-/obj/structure/window/fulltile,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/medical/virology)
-"afQ" = (
-/obj/machinery/disposal/bin,
-/obj/structure/disposalpipe/trunk,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/whitegreen/side{
- dir = 8
- },
-/area/medical/virology)
-"afR" = (
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 1
- },
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"afS" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 2
- },
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"afT" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"afU" = (
-/obj/machinery/computer/pandemic{
- layer = 2.5;
- pixel_x = -4
- },
-/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/item/device/radio/intercom{
- pixel_x = 28;
- pixel_y = 0
- },
-/turf/open/floor/plasteel/whitegreen/side{
- dir = 4
- },
-/area/medical/virology)
-"afV" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/closed/wall/r_wall,
-/area/medical/virology)
-"afW" = (
-/obj/structure/sign/biohazard,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- tag = "icon-intact (NORTH)";
- icon_state = "intact";
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/closed/wall/r_wall,
-/area/security/processing{
- name = "Prisoner Processing"
- })
-"afX" = (
-/obj/machinery/door/airlock/glass_security{
- name = "Virology Transfer";
- req_access_txt = "3"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 9;
- pixel_y = 0
- },
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel{
- icon_state = "redfull"
- },
-/area/security/processing{
- name = "Prisoner Processing"
- })
-"afY" = (
-/obj/structure/sign/biohazard,
-/turf/closed/wall/r_wall,
-/area/security/processing{
- name = "Prisoner Processing"
- })
-"afZ" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- req_access_txt = 1
- },
-/obj/structure/sign/electricshock{
- pixel_x = -32
- },
-/turf/open/floor/plasteel/red/side{
- dir = 8
- },
-/area/security/processing{
- name = "Prisoner Processing"
- })
-"aga" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- tag = "icon-intact (NORTH)";
- icon_state = "intact";
- dir = 1
- },
-/obj/structure/cable{
- tag = "icon-1-2";
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel,
-/area/security/processing{
- name = "Prisoner Processing"
- })
-"agb" = (
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/bodycontainer/morgue,
-/turf/open/floor/plasteel/whitered/side{
- dir = 8
- },
-/area/security/processing{
- name = "Prisoner Processing"
- })
-"agc" = (
-/turf/closed/mineral/random/low_chance,
-/area/ruin/unpowered{
- name = "Asteroid"
- })
-"agd" = (
-/obj/structure/shuttle/engine/propulsion{
- icon_state = "propulsion_l"
- },
-/turf/open/floor/plating,
-/area/shuttle/syndicate)
-"age" = (
-/obj/structure/shuttle/engine/propulsion,
-/turf/open/floor/plating,
-/area/shuttle/syndicate)
-"agf" = (
-/obj/structure/shuttle/engine/propulsion{
- icon_state = "propulsion_r"
- },
-/turf/open/floor/plating,
-/area/shuttle/syndicate)
-"agg" = (
-/obj/structure/cable/yellow{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/table/glass,
-/obj/item/storage/box/beakers,
-/turf/open/floor/plasteel/whitegreen/side{
- dir = 8
- },
-/area/medical/virology)
-"agh" = (
-/obj/structure/chair/office/light{
- 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"
- },
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"agi" = (
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"agj" = (
-/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)
-"agk" = (
-/obj/structure/cable/yellow{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/whitegreen/side{
- dir = 4
- },
-/area/medical/virology)
-"agl" = (
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass_virology{
- name = "Containment Cells";
- req_access_txt = "39"
- },
-/turf/open/floor/plasteel/whitegreen,
-/area/medical/virology)
-"agm" = (
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel/whitegreen/side{
- dir = 8
- },
-/area/medical/virology)
-"agn" = (
-/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/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 5
- },
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"ago" = (
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 10
- },
-/obj/effect/landmark{
- name = "lightsout"
- },
-/obj/machinery/holopad,
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"agp" = (
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"agq" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 6
- },
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/whitegreen/side{
- dir = 4
- },
-/area/medical/virology)
-"agr" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/door/airlock/virology{
- name = "Virology Access";
- req_access_txt = "39"
- },
-/turf/open/floor/plasteel/whitegreen,
-/area/medical/virology)
-"ags" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
-/obj/structure/cable/yellow{
- icon_state = "4-8";
- d1 = 4;
- d2 = 8
- },
-/turf/open/floor/plasteel/whitegreen/side{
- dir = 6
- },
-/area/medical/virology)
-"agt" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 10
- },
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8";
- tag = ""
- },
-/turf/open/floor/plasteel/whitegreen/side{
- dir = 1
- },
-/area/medical/virology)
-"agu" = (
-/turf/open/floor/plasteel/whitegreen/side{
- dir = 10
- },
-/area/medical/virology)
-"agv" = (
-/obj/structure/closet/secure_closet/warden,
-/turf/open/floor/plasteel/showroomfloor,
-/area/security/processing{
- name = "Prisoner Processing"
- })
-"agw" = (
-/obj/structure/closet/secure_closet/armory3,
-/turf/open/floor/plasteel/showroomfloor,
-/area/security/processing{
- name = "Prisoner Processing"
- })
-"agx" = (
-/obj/machinery/light{
- dir = 1
- },
-/obj/structure/table,
-/obj/item/paper_bin{
- pixel_x = -3;
- pixel_y = 7
- },
-/turf/open/floor/plasteel/showroomfloor,
-/area/security/processing{
- name = "Prisoner Processing"
- })
-"agy" = (
-/obj/structure/table,
-/obj/item/folder/red,
-/obj/item/pen,
-/obj/machinery/computer/security/telescreen{
- desc = "Used for watching Prison Wing holding areas.";
- name = "Prison Monitor";
- network = list("Prison");
- pixel_x = 0;
- pixel_y = 30
- },
-/turf/open/floor/plasteel/showroomfloor,
-/area/security/processing{
- name = "Prisoner Processing"
- })
-"agz" = (
-/obj/structure/filingcabinet,
-/turf/open/floor/plasteel/showroomfloor,
-/area/security/processing{
- name = "Prisoner Processing"
- })
-"agA" = (
-/obj/structure/table,
-/obj/item/storage/box/prisoner,
-/obj/item/card/id/prisoner,
-/turf/open/floor/plasteel/showroomfloor,
-/area/security/processing{
- name = "Prisoner Processing"
- })
-"agB" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/turf/open/floor/plating,
-/area/security/processing{
- name = "Prisoner Processing"
- })
-"agC" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- tag = "icon-intact (NORTH)";
- icon_state = "intact";
- dir = 1
- },
-/obj/structure/cable{
- tag = "icon-1-2";
- icon_state = "1-2"
- },
-/obj/structure/cable{
- tag = "icon-2-8";
- icon_state = "2-8"
- },
-/turf/open/floor/plasteel,
-/area/security/processing{
- name = "Prisoner Processing"
- })
-"agD" = (
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/bodycontainer/morgue,
-/obj/structure/window/reinforced,
-/turf/open/floor/plasteel/whitered/side{
- dir = 10
- },
-/area/security/processing{
- name = "Prisoner Processing"
- })
-"agE" = (
-/obj/structure/window/reinforced,
-/turf/open/floor/plasteel/whitered/side,
-/area/security/processing{
- name = "Prisoner Processing"
- })
-"agF" = (
-/obj/machinery/sleeper{
- icon_state = "sleeper-open";
- dir = 8
- },
-/obj/structure/window/reinforced,
-/turf/open/floor/plasteel/whitered/side{
- dir = 6
- },
-/area/security/processing{
- name = "Prisoner Processing"
- })
-"agG" = (
-/obj/machinery/light/small,
-/turf/open/floor/plating/airless/astplate{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/fore)
-"agH" = (
-/turf/open/floor/plating/airless/astplate{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/fore)
-"agI" = (
-/turf/closed/mineral/random/high_chance,
-/area/ruin/unpowered{
- name = "Asteroid"
- })
-"agJ" = (
-/turf/open/space,
-/obj/machinery/porta_turret/syndicate{
- dir = 6
- },
-/turf/closed/wall/mineral/plastitanium{
- dir = 4;
- icon_state = "diagonalWall3"
- },
-/area/shuttle/syndicate)
-"agK" = (
-/turf/open/space,
-/obj/machinery/porta_turret/syndicate{
- dir = 10
- },
-/turf/closed/wall/mineral/plastitanium{
- icon_state = "diagonalWall3"
- },
-/area/shuttle/syndicate)
-"agL" = (
-/obj/structure/table/glass,
-/obj/item/paper_bin{
- 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;
- pixel_y = 0
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/whitegreen/side{
- dir = 10
- },
-/area/medical/virology)
-"agM" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel/whitegreen/side,
-/area/medical/virology)
-"agN" = (
-/obj/machinery/firealarm{
- dir = 1;
- pixel_y = -24
- },
-/obj/machinery/light,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/whitegreen/side,
-/area/medical/virology)
-"agO" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 1
- },
-/turf/open/floor/plasteel/whitegreen/side,
-/area/medical/virology)
-"agP" = (
-/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;
- icon_state = "sink";
- pixel_x = 11;
- pixel_y = 0
- },
-/turf/open/floor/plasteel/whitegreen/side{
- dir = 6
- },
-/area/medical/virology)
-"agQ" = (
-/obj/structure/grille,
-/obj/structure/window/fulltile,
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 1;
- initialize_directions = 11
- },
-/turf/open/floor/plating,
-/area/medical/virology)
-"agR" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel/whitegreen/side{
- dir = 10
- },
-/area/medical/virology)
-"agS" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/whitegreen/side,
-/area/medical/virology)
-"agT" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/whitegreen/side,
-/area/medical/virology)
-"agU" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 2;
- initialize_directions = 11
- },
-/turf/open/floor/plasteel/whitegreen/side,
-/area/medical/virology)
-"agV" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 9
- },
-/obj/machinery/camera{
- c_tag = "Virology - Lab";
- dir = 8;
- network = list("SS13","Medbay")
- },
-/obj/structure/sink{
- dir = 4;
- icon_state = "sink";
- pixel_x = 11;
- pixel_y = 0
- },
-/obj/machinery/light_switch{
- pixel_x = 26;
- pixel_y = 0
- },
-/turf/open/floor/plasteel/whitegreen/side{
- dir = 6
- },
-/area/medical/virology)
-"agW" = (
-/turf/open/floor/plasteel/whitegreen/side{
- dir = 8
- },
-/area/medical/virology)
-"agX" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- tag = "icon-intact (NORTH)";
- icon_state = "intact";
- dir = 1
- },
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"agY" = (
-/obj/machinery/light{
- icon_state = "tube1";
- dir = 4
- },
-/turf/open/floor/plasteel/whitegreen/side{
- dir = 4
- },
-/area/medical/virology)
-"agZ" = (
-/obj/machinery/button/door{
- id = "permalock";
- name = "Perma Lockdown";
- pixel_x = -24
- },
-/turf/open/floor/plasteel/showroomfloor,
-/area/security/processing{
- name = "Prisoner Processing"
- })
-"aha" = (
-/obj/structure/chair/office/light,
-/turf/open/floor/plasteel/showroomfloor,
-/area/security/processing{
- name = "Prisoner Processing"
- })
-"ahb" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 4;
- name = "regular air scrubber";
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel/showroomfloor,
-/area/security/processing{
- name = "Prisoner Processing"
- })
-"ahc" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- tag = "icon-intact (WEST)";
- icon_state = "intact";
- dir = 8
- },
-/turf/open/floor/plasteel/showroomfloor,
-/area/security/processing{
- name = "Prisoner Processing"
- })
-"ahd" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- name = "regular air vent";
- on = 1
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- tag = "icon-intact (WEST)";
- icon_state = "intact";
- dir = 8
- },
-/turf/open/floor/plasteel/showroomfloor,
-/area/security/processing{
- name = "Prisoner Processing"
- })
-"ahe" = (
-/obj/machinery/door/airlock/glass_security{
- name = "Brig Desk";
- req_access_txt = "3"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- tag = "icon-intact (WEST)";
- icon_state = "intact";
- dir = 8
- },
-/turf/open/floor/plasteel/showroomfloor,
-/area/security/processing{
- name = "Prisoner Processing"
- })
-"ahf" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- req_access_txt = 1
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- tag = "icon-intact (WEST)";
- icon_state = "intact";
- dir = 8
- },
-/turf/open/floor/plasteel/red/side{
- dir = 8
- },
-/area/security/processing{
- name = "Prisoner Processing"
- })
-"ahg" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 4;
- initialize_directions = 11
- },
-/obj/structure/cable{
- tag = "icon-1-2";
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel,
-/area/security/processing{
- name = "Prisoner Processing"
- })
-"ahh" = (
-/obj/machinery/camera/autoname{
- tag = "icon-camera (SOUTHWEST)";
- icon_state = "camera";
- dir = 10
- },
-/turf/open/floor/plasteel{
- icon_state = "redfull"
- },
-/area/security/processing{
- name = "Prisoner Processing"
- })
-"ahi" = (
-/obj/machinery/door/airlock/glass_security{
- name = "Xenobio Transfer";
- req_access_txt = "3"
- },
-/turf/open/floor/plasteel{
- icon_state = "redfull"
- },
-/area/security/processing{
- name = "Prisoner Processing"
- })
-"ahj" = (
-/obj/machinery/light/small{
- dir = 4
- },
-/obj/machinery/button/door{
- id = "misclab";
- name = "Test Chamber Blast Doors";
- pixel_x = 0;
- pixel_y = 24;
- req_access_txt = "0";
- req_one_access_txt = "55; 3"
- },
-/turf/open/floor/plasteel{
- icon_state = "redfull"
- },
-/area/security/processing{
- name = "Prisoner Processing"
- })
-"ahk" = (
-/turf/closed/wall,
-/area/maintenance/fore)
-"ahl" = (
-/obj/machinery/door/airlock/external{
- name = "Mining Airlock";
- req_access = null;
- req_access_txt = "48"
- },
-/turf/open/floor/noslip,
-/area/maintenance/fore)
-"ahm" = (
-/obj/structure/grille,
-/obj/structure/window/fulltile,
-/obj/structure/cable/yellow,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating,
-/area/medical/virology)
-"ahn" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass_virology{
- name = "Isolation B";
- req_access_txt = "39"
- },
-/turf/open/floor/plasteel/freezer,
-/area/medical/virology)
-"aho" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass_virology{
- name = "Isolation A";
- req_access_txt = "39"
- },
-/turf/open/floor/plasteel/freezer,
-/area/medical/virology)
-"ahp" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/turf/closed/wall,
-/area/medical/virology)
-"ahq" = (
-/obj/structure/closet/wardrobe/virology_white,
-/obj/item/storage/backpack/satchel/vir,
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/obj/machinery/firealarm{
- dir = 8;
- pixel_x = -26;
- pixel_y = 0
- },
-/turf/open/floor/plasteel/vault,
-/area/medical/virology)
-"ahr" = (
-/obj/structure/closet/crate/freezer,
-/obj/item/reagent_containers/blood/empty,
-/obj/item/reagent_containers/blood/empty{
- pixel_x = -3;
- pixel_y = -3
- },
-/obj/item/reagent_containers/blood/AMinus,
-/obj/item/reagent_containers/blood/BMinus{
- pixel_x = -4;
- pixel_y = 4
- },
-/obj/item/reagent_containers/blood/BPlus{
- pixel_x = 1;
- pixel_y = 2
- },
-/obj/item/reagent_containers/blood/OMinus,
-/obj/item/reagent_containers/blood/OPlus{
- pixel_x = -2;
- pixel_y = -1
- },
-/obj/item/reagent_containers/blood/random,
-/obj/item/reagent_containers/blood/random,
-/obj/item/reagent_containers/blood/random,
-/turf/open/floor/plasteel/vault,
-/area/medical/virology)
-"ahs" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/vault,
-/area/medical/virology)
-"aht" = (
-/obj/structure/closet/secure_closet/medical1,
-/turf/open/floor/plasteel/vault,
-/area/medical/virology)
-"ahu" = (
-/obj/structure/closet/l3closet/virology,
-/obj/structure/extinguisher_cabinet{
- pixel_x = 0;
- pixel_y = -30
- },
-/turf/open/floor/plasteel/vault,
-/area/medical/virology)
-"ahv" = (
-/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"
- },
-/turf/open/floor/plasteel/whitegreen/side{
- tag = "icon-whitegreen (NORTHEAST)";
- icon_state = "whitegreen";
- dir = 5
- },
-/area/medical/virology)
-"ahw" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- tag = "icon-intact (NORTH)";
- icon_state = "intact";
- dir = 1
- },
-/turf/open/floor/plasteel/whitegreen/side,
-/area/medical/virology)
-"ahx" = (
-/turf/open/floor/plasteel/whitegreen/side{
- dir = 9
- },
-/area/medical/virology)
-"ahy" = (
-/obj/machinery/computer/prisoner,
-/turf/open/floor/plasteel/showroomfloor,
-/area/security/processing{
- name = "Prisoner Processing"
- })
-"ahz" = (
-/obj/machinery/computer/security,
-/turf/open/floor/plasteel/showroomfloor,
-/area/security/processing{
- name = "Prisoner Processing"
- })
-"ahA" = (
-/obj/machinery/computer/secure_data,
-/turf/open/floor/plasteel/showroomfloor,
-/area/security/processing{
- name = "Prisoner Processing"
- })
-"ahB" = (
-/obj/structure/rack,
-/obj/item/storage/box/zipties,
-/obj/item/melee/baton,
-/turf/open/floor/plasteel/showroomfloor,
-/area/security/processing{
- name = "Prisoner Processing"
- })
-"ahC" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- req_access_txt = 1
- },
-/turf/open/floor/plasteel/showroomfloor,
-/area/security/processing{
- name = "Prisoner Processing"
- })
-"ahD" = (
-/turf/open/floor/plasteel/showroomfloor,
-/area/security/processing{
- name = "Prisoner Processing"
- })
-"ahE" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/obj/structure/sign/electricshock{
- pixel_y = -32
- },
-/turf/open/floor/plating,
-/area/security/processing{
- name = "Prisoner Processing"
- })
-"ahF" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- tag = "icon-intact (NORTH)";
- icon_state = "intact";
- dir = 1
- },
-/obj/structure/cable{
- tag = "icon-1-2";
- icon_state = "1-2"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/structure/cable{
- tag = "icon-2-8";
- icon_state = "2-8"
- },
-/turf/open/floor/plasteel,
-/area/security/processing{
- name = "Prisoner Processing"
- })
-"ahG" = (
-/obj/machinery/power/apc{
- cell_type = 10000;
- dir = 2;
- name = "Prisoner Processing APC";
- pixel_x = 0;
- pixel_y = -24
- },
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/turf/open/floor/plasteel,
-/area/security/processing{
- name = "Prisoner Processing"
- })
-"ahH" = (
-/obj/machinery/light,
-/obj/structure/closet/emcloset,
-/turf/open/floor/plasteel{
- icon_state = "redfull"
- },
-/area/security/processing{
- name = "Prisoner Processing"
- })
-"ahI" = (
-/obj/structure/closet/firecloset,
-/turf/open/floor/plasteel{
- icon_state = "redfull"
- },
-/area/security/processing{
- name = "Prisoner Processing"
- })
-"ahJ" = (
-/obj/effect/turf_decal/delivery,
-/obj/machinery/door/window/southleft{
- dir = 1;
- name = "Test Chamber";
- req_access_txt = "3"
- },
-/turf/open/floor/plasteel{
- icon_state = "redfull"
- },
-/area/security/processing{
- name = "Prisoner Processing"
- })
-"ahK" = (
-/obj/structure/sign/xeno_warning_mining{
- pixel_x = -30
- },
-/obj/structure/sign/vacuum{
- pixel_x = 30
- },
-/turf/open/floor/noslip,
-/area/maintenance/fore)
-"ahL" = (
-/obj/structure/window/reinforced{
- dir = 1;
- pixel_y = 1
- },
-/obj/structure/closet/crate,
-/obj/item/storage/backpack/satchel/leather/withwallet,
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"ahM" = (
-/obj/structure/window/reinforced{
- dir = 1;
- pixel_y = 1
- },
-/obj/structure/closet/crate{
- icon_state = "crateopen";
- opened = 1
- },
-/obj/item/hatchet,
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"ahN" = (
-/obj/structure/window/reinforced{
- dir = 1;
- pixel_y = 1
- },
-/obj/structure/closet/crate{
- icon_state = "crateopen";
- opened = 1
- },
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"ahO" = (
-/obj/structure/window/reinforced{
- dir = 1;
- pixel_y = 1
- },
-/turf/closed/wall,
-/area/maintenance/fore)
-"ahP" = (
-/obj/structure/window/reinforced{
- dir = 1;
- pixel_y = 1
- },
-/obj/structure/table,
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"ahQ" = (
-/obj/structure/window/reinforced{
- dir = 1;
- pixel_y = 1
- },
-/obj/structure/table,
-/obj/item/storage/belt,
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"ahR" = (
-/obj/structure/window/reinforced{
- dir = 1;
- pixel_y = 1
- },
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"ahS" = (
-/obj/structure/window/reinforced{
- dir = 1;
- pixel_y = 1
- },
-/obj/item/device/radio,
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"ahT" = (
-/obj/structure/window/reinforced{
- dir = 1;
- pixel_y = 1
- },
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/closet,
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"ahU" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/item/bedsheet/medical,
-/obj/structure/bed,
-/turf/open/floor/plasteel/freezer,
-/area/medical/virology)
-"ahV" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 1;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel/freezer,
-/area/medical/virology)
-"ahW" = (
-/obj/structure/bed,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/item/bedsheet/medical,
-/turf/open/floor/plasteel/freezer,
-/area/medical/virology)
-"ahX" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/disposalpipe/segment,
-/turf/closed/wall,
-/area/medical/virology)
-"ahY" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/door/airlock/virology{
- name = "Break Room";
- req_access_txt = "39"
- },
-/turf/open/floor/plasteel/whitegreen,
-/area/medical/virology)
-"ahZ" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/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"
- },
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"aia" = (
-/obj/structure/sign/biohazard,
-/turf/closed/wall,
-/area/medical/virology)
-"aib" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/security/processing{
- name = "Prisoner Processing"
- })
-"aic" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- req_access_txt = 1
- },
-/turf/open/floor/plating,
-/area/security/processing{
- name = "Prisoner Processing"
- })
-"aid" = (
-/obj/machinery/door/airlock/glass_security{
- name = "Prisoner Processing";
- req_access_txt = "2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- req_access_txt = 1
- },
-/turf/open/floor/plasteel,
-/area/security/processing{
- name = "Prisoner Processing"
- })
-"aie" = (
-/obj/machinery/door/airlock/glass_security{
- name = "Prisoner Processing";
- req_access_txt = "2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- tag = "icon-intact (NORTH)";
- icon_state = "intact";
- dir = 1
- },
-/obj/structure/cable{
- tag = "icon-1-2";
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel,
-/area/security/processing{
- name = "Prisoner Processing"
- })
-"aif" = (
-/obj/effect/decal/remains/human,
-/obj/effect/decal/cleanable/blood/old,
-/turf/open/floor/plating/asteroid/airless,
-/area/security/processing{
- name = "Prisoner Processing"
- })
-"aig" = (
-/obj/item/clothing/mask/facehugger/dead,
-/obj/effect/decal/cleanable/xenoblood,
-/turf/open/floor/plating/asteroid/airless,
-/area/security/processing{
- name = "Prisoner Processing"
- })
-"aih" = (
-/obj/effect/turf_decal/delivery,
-/obj/machinery/door/airlock/glass_security{
- name = "Xenobio Transfer";
- req_access_txt = "3"
- },
-/turf/open/floor/plasteel{
- icon_state = "redfull"
- },
-/area/security/processing{
- name = "Prisoner Processing"
- })
-"aii" = (
-/obj/item/stack/sheet/cardboard,
-/obj/item/pickaxe,
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"aij" = (
-/obj/structure/closet/cardboard,
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"aik" = (
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"ail" = (
-/obj/machinery/door/airlock/maintenance_hatch,
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"aim" = (
-/obj/item/caution,
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"ain" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 1;
- on = 1
- },
-/turf/open/floor/plasteel/freezer,
-/area/medical/virology)
-"aio" = (
-/obj/machinery/light/small{
- dir = 4
- },
-/turf/open/floor/plasteel/freezer,
-/area/medical/virology)
-"aip" = (
-/obj/machinery/light/small{
- dir = 8
- },
-/turf/open/floor/plasteel/freezer,
-/area/medical/virology)
-"aiq" = (
-/obj/effect/landmark{
- name = "xeno_spawn";
- pixel_x = -1
- },
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 1;
- on = 1
- },
-/turf/open/floor/plasteel/freezer,
-/area/medical/virology)
-"air" = (
-/obj/structure/table/glass,
-/obj/machinery/newscaster{
- pixel_x = -30
- },
-/obj/item/folder/white{
- pixel_x = 4;
- pixel_y = -3
- },
-/obj/item/folder/white{
- pixel_x = 4;
- pixel_y = -3
- },
-/obj/item/paper,
-/obj/item/pen/red,
-/obj/structure/extinguisher_cabinet{
- pixel_x = 0;
- pixel_y = 30
- },
-/turf/open/floor/plasteel/whitegreen/side{
- dir = 9
- },
-/area/medical/virology)
-"ais" = (
-/obj/structure/chair/office/light{
- dir = 8
- },
-/obj/machinery/light{
- dir = 1
- },
-/obj/machinery/computer/security/telescreen/entertainment{
- pixel_x = 0;
- pixel_y = 29
- },
-/turf/open/floor/plasteel/whitegreen/side{
- dir = 1
- },
-/area/medical/virology)
-"ait" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/whitegreen/side{
- dir = 1
- },
-/area/medical/virology)
-"aiu" = (
-/obj/structure/table/glass,
-/obj/item/storage/box/donkpockets{
- pixel_x = 3;
- pixel_y = 3
- },
-/obj/machinery/light_switch{
- pixel_x = 0;
- pixel_y = 26
- },
-/obj/machinery/camera{
- c_tag = "Virology - Break Room";
- dir = 2;
- network = list("SS13","Medbay")
- },
-/turf/open/floor/plasteel/whitegreen/side{
- dir = 1
- },
-/area/medical/virology)
-"aiv" = (
-/obj/item/device/radio/intercom{
- freerange = 0;
- frequency = 1459;
- name = "Station Intercom (General)";
- pixel_x = 29
- },
-/obj/structure/table/glass,
-/obj/machinery/microwave{
- pixel_x = -3;
- pixel_y = 6
- },
-/turf/open/floor/plasteel/whitegreen/side{
- dir = 5
- },
-/area/medical/virology)
-"aiw" = (
-/obj/structure/sink{
- icon_state = "sink";
- dir = 8;
- pixel_x = -12;
- pixel_y = 2
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 9
- },
-/obj/machinery/doorButtons/access_button{
- idDoor = "virology_airlock_interior";
- idSelf = "virology_airlock_control";
- name = "Virology Access Button";
- pixel_x = 8;
- pixel_y = 28;
- req_access_txt = "39"
- },
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"aix" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 1;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"aiy" = (
-/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)
-"aiz" = (
-/obj/structure/closet/crate{
- icon_state = "crateopen";
- opened = 1
- },
-/turf/open/floor/plasteel,
-/area/security/processing{
- name = "Prisoner Processing"
- })
-"aiA" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 4;
- name = "regular air vent";
- on = 1
- },
-/turf/open/floor/plasteel,
-/area/security/processing{
- name = "Prisoner Processing"
- })
-"aiB" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
-/turf/open/floor/plasteel,
-/area/security/processing{
- name = "Prisoner Processing"
- })
-"aiC" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/security/processing{
- name = "Prisoner Processing"
- })
-"aiD" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 2;
- name = "regular air scrubber";
- on = 1
- },
-/obj/machinery/light{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/security/processing{
- name = "Prisoner Processing"
- })
-"aiE" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/security/processing{
- name = "Prisoner Processing"
- })
-"aiF" = (
-/obj/machinery/portable_atmospherics/canister/air,
-/turf/open/floor/plating,
-/area/construction/hallway{
- name = "Secure Workstations Common Area"
- })
-"aiG" = (
-/obj/machinery/light/small{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/construction/hallway{
- name = "Secure Workstations Common Area"
- })
-"aiH" = (
-/obj/structure/reagent_dispensers/fueltank,
-/turf/open/floor/plating,
-/area/construction/hallway{
- name = "Secure Workstations Common Area"
- })
-"aiI" = (
-/turf/closed/wall/r_wall,
-/area/toxins/xenobiology)
-"aiJ" = (
-/obj/machinery/door/poddoor/preopen{
- id = "misclab";
- name = "test chamber blast door"
- },
-/turf/open/floor/engine,
-/area/toxins/xenobiology)
-"aiK" = (
-/obj/structure/sign/xeno_warning_mining{
- pixel_x = -30
- },
-/obj/structure/sign/vacuum{
- pixel_x = 30
- },
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"aiL" = (
-/obj/machinery/light/small{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"aiM" = (
-/obj/machinery/light/small{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"aiN" = (
-/obj/structure/sign/pods,
-/turf/closed/wall,
-/area/maintenance/fore)
-"aiO" = (
-/obj/machinery/camera{
- c_tag = "Security Escape Pod";
- dir = 4;
- network = list("SS13")
- },
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"aiP" = (
-/obj/structure/shuttle/engine/propulsion/burst{
- dir = 8
- },
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/pod_4)
-"aiQ" = (
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/pod_4)
-"aiR" = (
-/obj/structure/table/glass,
-/obj/item/reagent_containers/dropper,
-/obj/item/reagent_containers/syringe,
-/obj/item/reagent_containers/glass/beaker,
-/turf/open/floor/plasteel/freezer,
-/area/medical/virology)
-"aiS" = (
-/obj/structure/table/glass,
-/obj/item/folder/white{
- pixel_y = 4
- },
-/obj/item/pen/red,
-/turf/open/floor/plasteel/freezer,
-/area/medical/virology)
-"aiT" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 8
- },
-/turf/closed/wall,
-/area/medical/virology)
-"aiU" = (
-/obj/structure/table/glass,
-/obj/item/paper_bin{
- pixel_x = -2;
- pixel_y = 9
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/whitegreen/side{
- dir = 8
- },
-/area/medical/virology)
-"aiV" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 8;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"aiW" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"aiX" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 8;
- on = 1
- },
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"aiY" = (
-/obj/structure/sink{
- dir = 4;
- icon_state = "sink";
- pixel_x = 11;
- pixel_y = 0
- },
-/turf/open/floor/plasteel/whitegreen/side{
- dir = 4
- },
-/area/medical/virology)
-"aiZ" = (
-/obj/machinery/shower{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/machinery/camera/autoname{
- tag = "icon-camera (EAST)";
- icon_state = "camera";
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"aja" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"ajb" = (
-/obj/machinery/airalarm{
- dir = 8;
- icon_state = "alarm0";
- pixel_x = 24
- },
-/obj/structure/closet/l3closet,
-/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"ajc" = (
-/obj/machinery/door/airlock/glass_security{
- id_tag = null;
- name = "Prisoner Storage";
- req_access_txt = "63"
- },
-/turf/open/floor/plasteel,
-/area/security/processing{
- name = "Prisoner Processing"
- })
-"ajd" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 5
- },
-/turf/open/floor/plasteel,
-/area/security/processing{
- name = "Prisoner Processing"
- })
-"aje" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- req_access_txt = 1
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- tag = "icon-intact (WEST)";
- icon_state = "intact";
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/security/processing{
- name = "Prisoner Processing"
- })
-"ajf" = (
-/obj/machinery/portable_atmospherics/canister/oxygen,
-/turf/open/floor/plating,
-/area/construction/hallway{
- name = "Secure Workstations Common Area"
- })
-"ajg" = (
-/turf/open/floor/plating,
-/area/construction/hallway{
- name = "Secure Workstations Common Area"
- })
-"ajh" = (
-/obj/structure/reagent_dispensers/watertank,
-/turf/open/floor/plating,
-/area/construction/hallway{
- name = "Secure Workstations Common Area"
- })
-"aji" = (
-/turf/open/floor/engine,
-/area/toxins/xenobiology)
-"ajj" = (
-/obj/machinery/light{
- dir = 1
- },
-/turf/open/floor/engine,
-/area/toxins/xenobiology)
-"ajk" = (
-/obj/machinery/camera{
- c_tag = "Xenobiology Test Chamber";
- dir = 2;
- network = list("Xeno","RD");
- pixel_x = 0
- },
-/turf/open/floor/engine,
-/area/toxins/xenobiology)
-"ajl" = (
-/obj/structure/statue/sandstone/assistant,
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"ajm" = (
-/obj/structure/grille,
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"ajn" = (
-/obj/structure/grille{
- density = 0;
- icon_state = "brokengrille"
- },
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"ajo" = (
-/obj/structure/rack,
-/obj/effect/spawner/lootdrop/maintenance{
- lootcount = 2;
- name = "2maintenance loot spawner"
- },
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"ajp" = (
-/obj/structure/rack,
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"ajq" = (
-/obj/structure/closet/crate/internals,
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"ajr" = (
-/obj/structure/closet/firecloset/full,
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"ajs" = (
-/obj/structure/closet/emcloset,
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"ajt" = (
-/obj/structure/mopbucket,
-/obj/item/mop,
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"aju" = (
-/obj/structure/closet,
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"ajv" = (
-/obj/machinery/door/airlock/external{
- name = "Escape Pod Four";
- req_access_txt = "0"
- },
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"ajw" = (
-/obj/machinery/door/airlock/titanium{
- name = "Escape Pod Airlock"
- },
-/obj/docking_port/mobile/pod{
- dir = 4;
- id = "pod4";
- name = "escape pod 4";
- port_angle = 180;
- preferred_direction = 4
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/pod_4)
-"ajx" = (
-/obj/item/device/radio/intercom{
- pixel_y = 25
- },
-/obj/item/storage/pod{
- pixel_x = 6;
- pixel_y = -32
- },
-/obj/structure/chair{
- dir = 4
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/pod_4)
-"ajy" = (
-/obj/machinery/computer/shuttle/pod{
- pixel_y = -32;
- possible_destinations = "pod_asteroid3";
- shuttleId = "pod3"
- },
-/obj/structure/chair{
- dir = 4
- },
-/obj/machinery/status_display{
- density = 0;
- layer = 3;
- pixel_x = 0;
- pixel_y = 32
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/pod_4)
-"ajz" = (
-/obj/structure/grille,
-/obj/structure/window/shuttle,
-/turf/open/floor/plating,
-/area/shuttle/pod_4)
-"ajA" = (
-/obj/docking_port/stationary/random{
- dir = 4;
- id = "pod_asteroid4";
- name = "asteroid"
- },
-/turf/open/space,
-/area/space/nearstation)
-"ajB" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/disposalpipe/segment,
-/turf/closed/wall/r_wall,
-/area/medical/virology)
-"ajC" = (
-/obj/machinery/airalarm{
- dir = 4;
- pixel_x = -23;
- pixel_y = 0
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 6
- },
-/turf/open/floor/plasteel/whitegreen/side{
- dir = 10
- },
-/area/medical/virology)
-"ajD" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 1
- },
-/turf/open/floor/plasteel/whitegreen/side,
-/area/medical/virology)
-"ajE" = (
-/obj/structure/chair/stool,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 9;
- pixel_y = 0
- },
-/turf/open/floor/plasteel/whitegreen/side,
-/area/medical/virology)
-"ajF" = (
-/obj/structure/chair/stool,
-/turf/open/floor/plasteel/whitegreen/side,
-/area/medical/virology)
-"ajG" = (
-/obj/structure/chair/stool,
-/obj/machinery/firealarm{
- dir = 4;
- pixel_x = 24
- },
-/turf/open/floor/plasteel/whitegreen/side{
- dir = 6
- },
-/area/medical/virology)
-"ajH" = (
-/obj/structure/sink{
- icon_state = "sink";
- dir = 8;
- pixel_x = -12;
- pixel_y = 2
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 10
- },
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"ajI" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/components/unary/vent_pump{
- on = 1
- },
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"ajJ" = (
-/obj/structure/closet/l3closet,
-/obj/effect/turf_decal/stripes/line{
- dir = 6
- },
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"ajK" = (
-/obj/machinery/light/small{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/security/processing{
- name = "Prisoner Processing"
- })
-"ajL" = (
-/obj/machinery/door/airlock/glass_security{
- name = "Brig Desk";
- req_access_txt = "1"
- },
-/obj/structure/cable{
- icon_state = "2-4";
- tag = "icon-2-8"
- },
-/turf/open/floor/plasteel/black,
-/area/security/processing{
- name = "Prisoner Processing"
- })
-"ajM" = (
-/obj/structure/grille,
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/security/processing{
- name = "Prisoner Processing"
- })
-"ajN" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/closed/wall,
-/area/security/processing{
- name = "Prisoner Processing"
- })
-"ajO" = (
-/obj/machinery/door/airlock/glass_security{
- 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/supply/hidden{
- req_access_txt = 1
- },
-/turf/open/floor/plasteel/red/side{
- dir = 9
- },
-/area/security/processing{
- name = "Prisoner Processing"
- })
-"ajP" = (
-/obj/machinery/door/airlock/glass_security{
- id_tag = "innerbrig";
- name = "Brig";
- req_access_txt = "63"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- tag = "icon-intact (NORTH)";
- icon_state = "intact";
- dir = 1
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
- },
-/obj/structure/cable{
- tag = "icon-1-2";
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/red/side{
- dir = 5
- },
-/area/security/processing{
- name = "Prisoner Processing"
- })
-"ajQ" = (
-/obj/machinery/power/smes,
-/obj/structure/cable{
- icon_state = "0-2";
- pixel_y = 1;
- d2 = 2
- },
-/turf/open/floor/plating,
-/area/construction/hallway{
- name = "Secure Workstations Common Area"
- })
-"ajR" = (
-/obj/machinery/power/terminal{
- tag = "icon-term (WEST)";
- icon_state = "term";
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "0-2";
- pixel_y = 1;
- d2 = 2
- },
-/obj/effect/landmark{
- name = "blobstart"
- },
-/turf/open/floor/plating,
-/area/construction/hallway{
- name = "Secure Workstations Common Area"
- })
-"ajS" = (
-/obj/item/storage/box/lights,
-/turf/open/floor/plating,
-/area/construction/hallway{
- name = "Secure Workstations Common Area"
- })
-"ajT" = (
-/turf/closed/wall,
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"ajU" = (
-/obj/structure/closet/emcloset,
-/obj/machinery/light/small{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"ajV" = (
-/obj/structure/disposaloutlet{
- tag = "icon-outlet (WEST)";
- icon_state = "outlet";
- dir = 8
- },
-/obj/structure/disposalpipe/trunk{
- dir = 4
- },
-/turf/open/floor/plating/airless,
-/area/space/nearstation)
-"ajW" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plating/airless,
-/area/space/nearstation)
-"ajX" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 6
- },
-/turf/open/floor/plating/airless,
-/area/space/nearstation)
-"ajY" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 9
- },
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/turf/open/floor/plating,
-/area/medical/virology)
-"ajZ" = (
-/obj/machinery/atmospherics/components/unary/tank/air{
- dir = 1
- },
-/turf/open/floor/plasteel/vault,
-/area/medical/virology)
-"aka" = (
-/obj/machinery/atmospherics/components/unary/portables_connector/visible{
- dir = 1;
- name = "virology air connector port"
- },
-/obj/machinery/portable_atmospherics/canister/air,
-/turf/open/floor/plasteel/vault,
-/area/medical/virology)
-"akb" = (
-/obj/item/trash/popcorn,
-/obj/structure/table/glass,
-/turf/open/floor/plasteel/vault,
-/area/medical/virology)
-"akc" = (
-/obj/item/reagent_containers/food/snacks/sosjerky,
-/obj/structure/table/glass,
-/turf/open/floor/plasteel/vault,
-/area/medical/virology)
-"akd" = (
-/obj/item/trash/cheesie{
- pixel_y = 4
- },
-/obj/structure/table/glass,
-/turf/open/floor/plasteel/vault,
-/area/medical/virology)
-"ake" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/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/machinery/doorButtons/access_button{
- idDoor = "virology_airlock_exterior";
- idSelf = "virology_airlock_control";
- name = "Virology Access Button";
- pixel_x = -24;
- pixel_y = 0;
- req_access_txt = "39"
- },
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"akf" = (
-/obj/structure/sign/biohazard,
-/turf/closed/wall/r_wall,
-/area/medical/virology)
-"akg" = (
-/obj/structure/closet/secure_closet/brig,
-/turf/open/floor/plasteel,
-/area/security/processing{
- name = "Prisoner Processing"
- })
-"akh" = (
-/obj/machinery/button/door{
- id = "briggate";
- name = "Desk Shutters";
- pixel_x = -26;
- pixel_y = 6;
- req_access_txt = "0"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/button/flasher{
- id = "brigentry";
- pixel_x = -28;
- pixel_y = -8
- },
-/turf/open/floor/plasteel/black,
-/area/security/processing{
- name = "Prisoner Processing"
- })
-"aki" = (
-/obj/machinery/computer/secure_data,
-/turf/open/floor/plasteel/black,
-/area/security/processing{
- name = "Prisoner Processing"
- })
-"akj" = (
-/obj/structure/table/reinforced,
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "briggate";
- name = "security shutters"
- },
-/obj/machinery/door/window/eastleft{
- name = "Brig Desk";
- req_access_txt = "1"
- },
-/obj/item/paper_bin{
- pixel_x = -3;
- pixel_y = 7
- },
-/turf/open/floor/plasteel/black,
-/area/security/processing{
- name = "Prisoner Processing"
- })
-"akk" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- req_access_txt = 1
- },
-/turf/open/floor/plasteel/red/side{
- dir = 9
- },
-/area/security/processing{
- name = "Prisoner Processing"
- })
-"akl" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- tag = "icon-intact (NORTH)";
- icon_state = "intact";
- dir = 1
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/turf/open/floor/plasteel/red/side{
- dir = 5
- },
-/area/security/processing{
- name = "Prisoner Processing"
- })
-"akm" = (
-/obj/machinery/light/small{
- dir = 8
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/turf/open/floor/plating,
-/area/construction/hallway{
- name = "Secure Workstations Common Area"
- })
-"akn" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
- },
-/turf/open/floor/plating,
-/area/construction/hallway{
- name = "Secure Workstations Common Area"
- })
-"ako" = (
-/obj/item/extinguisher,
-/turf/open/floor/plating,
-/area/construction/hallway{
- name = "Secure Workstations Common Area"
- })
-"akp" = (
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/engine,
-/area/toxins/xenobiology)
-"akq" = (
-/turf/closed/mineral,
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"akr" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"aks" = (
-/obj/machinery/atmospherics/components/unary/outlet_injector/on{
- dir = 1
- },
-/turf/open/floor/plating/airless,
-/area/space/nearstation)
-"akt" = (
-/turf/closed/wall/r_wall,
-/area/construction/hallway{
- name = "Secure Workstations Common Area"
- })
-"aku" = (
-/turf/open/floor/plasteel,
-/area/construction/hallway{
- name = "Secure Workstations Common Area"
- })
-"akv" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- req_access_txt = 1
- },
-/turf/open/floor/plasteel,
-/area/construction/hallway{
- name = "Secure Workstations Common Area"
- })
-"akw" = (
-/obj/machinery/light/small{
- dir = 8
- },
-/obj/machinery/button/door{
- desc = "A remote control switch for the medbay foyer.";
- id = "outerbrig";
- name = "Brig Exterior Doors Control";
- normaldoorcontrol = 1;
- pixel_x = -26;
- pixel_y = -5;
- req_access_txt = "63"
- },
-/obj/machinery/button/door{
- desc = "A remote control switch for the medbay foyer.";
- id = "innerbrig";
- name = "Brig Interior Doors Control";
- normaldoorcontrol = 1;
- pixel_x = -26;
- pixel_y = 5;
- req_access_txt = "63"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/black,
-/area/security/processing{
- name = "Prisoner Processing"
- })
-"akx" = (
-/obj/structure/chair/office/dark{
- dir = 4
- },
-/turf/open/floor/plasteel/black,
-/area/security/processing{
- name = "Prisoner Processing"
- })
-"aky" = (
-/obj/structure/table/reinforced,
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "briggate";
- name = "security shutters"
- },
-/obj/machinery/door/window/eastright{
- name = "Brig Desk";
- req_access_txt = "2"
- },
-/obj/item/restraints/handcuffs,
-/obj/item/device/radio/off,
-/turf/open/floor/plasteel/black,
-/area/security/processing{
- name = "Prisoner Processing"
- })
-"akz" = (
-/obj/machinery/flasher{
- id = "brigentry";
- pixel_x = 28
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- tag = "icon-intact (NORTH)";
- icon_state = "intact";
- dir = 1
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/turf/open/floor/plasteel/red/side{
- dir = 5
- },
-/area/security/processing{
- name = "Prisoner Processing"
- })
-"akA" = (
-/obj/machinery/space_heater,
-/turf/open/floor/plating,
-/area/construction/hallway{
- name = "Secure Workstations Common Area"
- })
-"akB" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/construction/hallway{
- name = "Secure Workstations Common Area"
- })
-"akC" = (
-/obj/machinery/portable_atmospherics/scrubber,
-/turf/open/floor/plating,
-/area/construction/hallway{
- name = "Secure Workstations Common Area"
- })
-"akD" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'HIGH VOLTAGE'";
- icon_state = "shock";
- name = "HIGH VOLTAGE"
- },
-/turf/closed/wall/r_wall,
-/area/toxins/xenobiology)
-"akE" = (
-/obj/structure/disposaloutlet{
- dir = 1
- },
-/obj/structure/disposalpipe/trunk,
-/turf/open/floor/engine,
-/area/toxins/xenobiology)
-"akF" = (
-/obj/structure/window/reinforced{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"akG" = (
-/turf/open/floor/grass,
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"akH" = (
-/obj/structure/flora/rock/pile,
-/turf/open/floor/grass,
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"akI" = (
-/obj/structure/flora/grass/green,
-/turf/open/floor/grass,
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"akJ" = (
-/obj/machinery/power/apc{
- dir = 8;
- name = "Fore Maintenance APC";
- pixel_x = -25;
- pixel_y = 3
- },
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
- },
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"akK" = (
-/obj/structure/window/reinforced{
- dir = 1;
- layer = 2.9
- },
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"akL" = (
-/obj/structure/window/reinforced{
- dir = 1;
- layer = 2.9
- },
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/reagent_dispensers/fueltank,
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"akM" = (
-/obj/structure/closet/crate/bin,
-/turf/open/floor/plasteel,
-/area/construction/hallway{
- name = "Secure Workstations Common Area"
- })
-"akN" = (
-/obj/structure/closet/emcloset,
-/turf/open/floor/plasteel,
-/area/construction/hallway{
- name = "Secure Workstations Common Area"
- })
-"akO" = (
-/obj/structure/closet/firecloset,
-/turf/open/floor/plasteel,
-/area/construction/hallway{
- name = "Secure Workstations Common Area"
- })
-"akP" = (
-/turf/closed/wall,
-/area/construction/hallway{
- name = "Secure Workstations Common Area"
- })
-"akQ" = (
-/obj/structure/table/reinforced,
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "briggate";
- name = "security shutters"
- },
-/obj/machinery/door/window/southleft{
- name = "Brig Desk";
- req_access_txt = "1"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4";
- tag = ""
- },
-/obj/structure/sign/electricshock{
- pixel_x = -32
- },
-/turf/open/floor/plasteel/black,
-/area/security/processing{
- name = "Prisoner Processing"
- })
-"akR" = (
-/obj/structure/table/reinforced,
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "briggate";
- name = "security shutters"
- },
-/obj/machinery/door/window/southleft{
- base_state = "right";
- icon_state = "right";
- name = "Brig Desk";
- req_access_txt = "1"
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/black,
-/area/security/processing{
- name = "Prisoner Processing"
- })
-"akS" = (
-/obj/structure/grille,
-/obj/machinery/door/poddoor/preopen{
- id = "briggate";
- name = "security blast door"
- },
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/security/processing{
- name = "Prisoner Processing"
- })
-"akT" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass_security{
- id_tag = "outerbrig";
- name = "Brig";
- req_access_txt = "63"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- req_access_txt = 1
- },
-/turf/open/floor/plasteel/red/side{
- dir = 9
- },
-/area/security/processing{
- name = "Prisoner Processing"
- })
-"akU" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass_security{
- id_tag = "outerbrig";
- name = "Brig";
- req_access_txt = "63"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- tag = "icon-intact (NORTH)";
- icon_state = "intact";
- dir = 1
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/turf/open/floor/plasteel/red/side{
- dir = 5
- },
-/area/security/processing{
- name = "Prisoner Processing"
- })
-"akV" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'HIGH VOLTAGE'";
- icon_state = "shock";
- name = "HIGH VOLTAGE"
- },
-/turf/closed/wall/r_wall,
-/area/security/processing{
- name = "Prisoner Processing"
- })
-"akW" = (
-/obj/machinery/door/airlock/maintenance_hatch,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel,
-/area/construction/hallway{
- name = "Secure Workstations Common Area"
- })
-"akX" = (
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
- },
-/obj/machinery/shieldwallgen{
- req_access = list(55)
- },
-/turf/open/floor/plating,
-/area/toxins/xenobiology)
-"akY" = (
-/obj/structure/grille,
-/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/toxins/xenobiology)
-"akZ" = (
-/obj/structure/grille,
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
- },
-/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/toxins/xenobiology)
-"ala" = (
-/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";
- pixel_y = 0
- },
-/obj/machinery/door/poddoor/preopen{
- id = "misclab";
- name = "test chamber blast door"
- },
-/turf/open/floor/engine,
-/area/toxins/xenobiology)
-"alb" = (
-/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/toxins/xenobiology)
-"alc" = (
-/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,
-/turf/open/floor/engine,
-/area/toxins/xenobiology)
-"ald" = (
-/obj/machinery/light{
- dir = 1
- },
-/obj/structure/flora/grass/green,
-/turf/open/floor/grass,
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"ale" = (
-/obj/structure/cable{
- icon_state = "2-4";
- tag = "icon-2-8"
- },
-/turf/open/floor/grass,
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"alf" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/grass,
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"alg" = (
-/obj/machinery/power/apc{
- dir = 2;
- name = "Sleeping Room 3 APC";
- pixel_y = -24
- },
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/turf/open/floor/grass,
-/area/crew_quarters/sleep{
- name = "\improper Dormitory Suite 3"
- })
-"alh" = (
-/obj/machinery/light,
-/turf/open/floor/grass,
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"ali" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"alj" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/grille,
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"alk" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/grille,
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"all" = (
-/turf/closed/wall,
-/area/crew_quarters/sleep)
-"alm" = (
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/closet/lasertag/blue,
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"aln" = (
-/obj/machinery/light{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/construction/hallway{
- name = "Secure Workstations Common Area"
- })
-"alo" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 6
- },
-/turf/open/floor/plasteel,
-/area/construction/hallway{
- name = "Secure Workstations Common Area"
- })
-"alp" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- tag = "icon-intact (WEST)";
- icon_state = "intact";
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/construction/hallway{
- name = "Secure Workstations Common Area"
- })
-"alq" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/construction/hallway{
- name = "Secure Workstations Common Area"
- })
-"alr" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- req_access_txt = 1
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/construction/hallway{
- name = "Secure Workstations Common Area"
- })
-"als" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 9
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/turf/open/floor/plasteel,
-/area/construction/hallway{
- name = "Secure Workstations Common Area"
- })
-"alt" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/turf/open/floor/plasteel,
-/area/construction/hallway{
- name = "Secure Workstations Common Area"
- })
-"alu" = (
-/obj/structure/cable{
- tag = "icon-1-8";
- icon_state = "1-8"
- },
-/turf/open/floor/plasteel,
-/area/construction/hallway{
- name = "Secure Workstations Common Area"
- })
-"alv" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 2
- },
-/obj/structure/chair/stool,
-/turf/open/floor/plasteel,
-/area/toxins/xenobiology)
-"alw" = (
-/obj/item/wrench,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 2
- },
-/turf/open/floor/plasteel,
-/area/toxins/xenobiology)
-"alx" = (
-/obj/machinery/computer/security/telescreen{
- name = "Test Chamber Moniter";
- network = list("Xeno");
- pixel_x = 0;
- pixel_y = 2
- },
-/obj/structure/table/reinforced,
-/obj/effect/turf_decal/stripes/line{
- dir = 2
- },
-/turf/open/floor/plasteel,
-/area/toxins/xenobiology)
-"aly" = (
-/obj/machinery/button/door{
- id = "misclab";
- name = "Test Chamber Blast Doors";
- pixel_x = 0;
- pixel_y = -2;
- req_access_txt = "55"
- },
-/obj/structure/table/reinforced,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 6
- },
-/turf/open/floor/plasteel,
-/area/toxins/xenobiology)
-"alz" = (
-/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/toxins/xenobiology)
-"alA" = (
-/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/toxins/xenobiology)
-"alB" = (
-/obj/item/clothing/mask/gas,
-/obj/item/clothing/mask/gas,
-/obj/item/clothing/mask/gas,
-/obj/item/clothing/glasses/science,
-/obj/item/clothing/glasses/science,
-/obj/structure/table,
-/obj/effect/turf_decal/stripes/line{
- dir = 2
- },
-/turf/open/floor/plasteel,
-/area/toxins/xenobiology)
-"alC" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 2
- },
-/turf/open/floor/plasteel,
-/area/toxins/xenobiology)
-"alD" = (
-/obj/structure/rack,
-/obj/item/device/paicard,
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"alE" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/grass,
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"alF" = (
-/turf/closed/wall,
-/area/crew_quarters/sleep{
- name = "\improper Dormitory Suite 3"
- })
-"alG" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/tinted/fulltile,
-/obj/machinery/door/firedoor/heavy,
-/turf/open/floor/plating,
-/area/crew_quarters/sleep{
- name = "\improper Dormitory Suite 3"
- })
-"alH" = (
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/grille,
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"alI" = (
-/obj/structure/table,
-/obj/item/coin/iron,
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"alJ" = (
-/obj/structure/chair{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"alK" = (
-/obj/structure/closet/wardrobe/mixed,
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"alL" = (
-/obj/structure/bed,
-/obj/item/bedsheet,
-/obj/machinery/button/door{
- id = "bunk1";
- name = "Bunk Bolt Control 1";
- normaldoorcontrol = 1;
- pixel_x = -25;
- pixel_y = 0;
- req_access_txt = "0";
- specialfunctions = 4
- },
-/turf/open/floor/carpet,
-/area/crew_quarters/sleep)
-"alM" = (
-/obj/machinery/door/airlock{
- id_tag = "bunk1";
- name = "Bunk 1"
- },
-/turf/open/floor/carpet,
-/area/crew_quarters/sleep)
-"alN" = (
-/turf/open/floor/plasteel,
-/area/crew_quarters/sleep)
-"alO" = (
-/obj/machinery/door/airlock{
- id_tag = "bunk2";
- name = "Bunk 2"
- },
-/turf/open/floor/carpet,
-/area/crew_quarters/sleep)
-"alP" = (
-/obj/structure/bed,
-/obj/item/bedsheet,
-/obj/machinery/button/door{
- id = "bunk2";
- name = "Bunk Bolt Control 2";
- normaldoorcontrol = 1;
- pixel_x = 25;
- pixel_y = 0;
- req_access_txt = "0";
- specialfunctions = 4
- },
-/turf/open/floor/carpet,
-/area/crew_quarters/sleep)
-"alQ" = (
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/closet/lasertag/red,
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"alR" = (
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/pod_3)
-"alS" = (
-/obj/structure/shuttle/engine/propulsion/burst{
- dir = 4;
- icon_state = "propulsion";
- tag = "icon-propulsion (WEST)"
- },
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/pod_3)
-"alT" = (
-/obj/structure/closet/emcloset,
-/turf/open/floor/plating,
-/area/construction/hallway{
- name = "Secure Workstations Common Area"
- })
-"alU" = (
-/obj/structure/sign/pods,
-/turf/closed/wall,
-/area/construction/hallway{
- name = "Secure Workstations Common Area"
- })
-"alV" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 6
- },
-/obj/machinery/light{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/construction/hallway{
- name = "Secure Workstations Common Area"
- })
-"alW" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- tag = "icon-intact (WEST)";
- icon_state = "intact";
- dir = 8
- },
-/obj/machinery/camera/autoname,
-/turf/open/floor/plasteel,
-/area/construction/hallway{
- name = "Secure Workstations Common Area"
- })
-"alX" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- req_access_txt = 1
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- tag = "icon-intact (WEST)";
- icon_state = "intact";
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/construction/hallway{
- name = "Secure Workstations Common Area"
- })
-"alY" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 9
- },
-/turf/open/floor/plasteel,
-/area/construction/hallway{
- name = "Secure Workstations Common Area"
- })
-"alZ" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 6
- },
-/turf/open/floor/plasteel,
-/area/construction/hallway{
- name = "Secure Workstations Common Area"
- })
-"ama" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/turf/open/floor/plasteel,
-/area/construction/hallway{
- name = "Secure Workstations Common Area"
- })
-"amb" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 9;
- pixel_y = 0
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel,
-/area/construction/hallway{
- name = "Secure Workstations Common Area"
- })
-"amc" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/turf/open/floor/plasteel,
-/area/construction/hallway{
- name = "Secure Workstations Common Area"
- })
-"amd" = (
-/obj/machinery/camera/autoname{
- tag = "icon-camera (SOUTHWEST)";
- icon_state = "camera";
- dir = 10
- },
-/turf/open/floor/plasteel,
-/area/construction/hallway{
- name = "Secure Workstations Common Area"
- })
-"ame" = (
-/obj/machinery/light,
-/turf/open/floor/plasteel,
-/area/construction/hallway{
- name = "Secure Workstations Common Area"
- })
-"amf" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/research{
- name = "Xenobiology Lab";
- req_access_txt = "55"
- },
-/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
-"amg" = (
-/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
-"amh" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4";
- tag = ""
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0;
- tag = ""
- },
-/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
-"ami" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
-"amj" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/light,
-/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
-"amk" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/camera/autoname{
- tag = "icon-camera (SOUTHWEST)";
- icon_state = "camera";
- dir = 10
- },
-/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
-"aml" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
-"amm" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 6
- },
-/turf/open/floor/plasteel/green/side{
- dir = 9
- },
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"amn" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/green/side{
- dir = 5
- },
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"amo" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/grass,
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"amp" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/closed/wall,
-/area/crew_quarters/sleep{
- name = "\improper Dormitory Suite 3"
- })
-"amq" = (
-/obj/structure/dresser,
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 8;
- name = "regular air scrubber";
- on = 1;
- scrub_Toxins = 0
- },
-/turf/open/floor/carpet,
-/area/crew_quarters/sleep{
- name = "\improper Dormitory Suite 3"
- })
-"amr" = (
-/obj/item/device/radio/intercom{
- name = "Station Intercom";
- pixel_x = 0;
- pixel_y = 24
- },
-/turf/open/floor/carpet,
-/area/crew_quarters/sleep{
- name = "\improper Dormitory Suite 3"
- })
-"ams" = (
-/obj/structure/chair/stool,
-/turf/open/floor/carpet,
-/area/crew_quarters/sleep{
- name = "\improper Dormitory Suite 3"
- })
-"amt" = (
-/obj/structure/table/wood,
-/turf/open/floor/carpet,
-/area/crew_quarters/sleep{
- name = "\improper Dormitory Suite 3"
- })
-"amu" = (
-/obj/structure/bed,
-/obj/item/bedsheet/orange,
-/turf/open/floor/carpet,
-/area/crew_quarters/sleep{
- name = "\improper Dormitory Suite 3"
- })
-"amv" = (
-/obj/structure/table,
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"amw" = (
-/obj/machinery/light/small{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/sleep)
-"amx" = (
-/obj/machinery/portable_atmospherics/pump,
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"amy" = (
-/obj/docking_port/stationary/random{
- dir = 8;
- id = "pod_asteroid2";
- name = "asteroid"
- },
-/turf/open/space,
-/area/space)
-"amz" = (
-/obj/structure/grille,
-/obj/structure/window/shuttle,
-/turf/open/floor/plating,
-/area/shuttle/pod_3)
-"amA" = (
-/obj/machinery/computer/shuttle/pod{
- pixel_x = 0;
- pixel_y = -32;
- possible_destinations = "pod_asteroid2";
- shuttleId = "pod2"
- },
-/obj/structure/chair{
- dir = 8
- },
-/obj/machinery/status_display{
- density = 0;
- layer = 3;
- pixel_x = 0;
- pixel_y = 32
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/pod_3)
-"amB" = (
-/obj/item/storage/pod{
- pixel_x = 6;
- pixel_y = -28
- },
-/obj/item/device/radio/intercom{
- pixel_x = 0;
- pixel_y = 25
- },
-/obj/structure/chair{
- dir = 8
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/pod_3)
-"amC" = (
-/obj/machinery/door/airlock/titanium{
- name = "Escape Pod Airlock"
- },
-/obj/docking_port/mobile/pod{
- dir = 8;
- id = "pod3";
- name = "escape pod 3";
- port_angle = 180
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/pod_3)
-"amD" = (
-/obj/machinery/door/airlock/external{
- cyclelinkeddir = 1;
- name = "Escape Pod Three"
- },
-/turf/open/floor/plating,
-/area/construction/hallway{
- name = "Secure Workstations Common Area"
- })
-"amE" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 1;
- name = "regular air scrubber";
- on = 1
- },
-/turf/open/floor/plasteel,
-/area/construction/hallway{
- name = "Secure Workstations Common Area"
- })
-"amF" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 4;
- name = "regular air vent";
- on = 1
- },
-/turf/open/floor/plasteel,
-/area/construction/hallway{
- name = "Secure Workstations Common Area"
- })
-"amG" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/construction/hallway{
- name = "Secure Workstations Common Area"
- })
-"amH" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 10
- },
-/turf/open/floor/plasteel,
-/area/construction/hallway{
- name = "Secure Workstations Common Area"
- })
-"amI" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- name = "regular air vent";
- on = 1
- },
-/turf/open/floor/plasteel,
-/area/construction/hallway{
- name = "Secure Workstations Common Area"
- })
-"amJ" = (
-/turf/closed/wall/r_wall,
-/area/maintenance/fpmaint{
- name = "Secure Workstations Maintenance"
- })
-"amK" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- req_access_txt = 1
- },
-/turf/closed/wall/r_wall,
-/area/maintenance/fpmaint{
- name = "Secure Workstations Maintenance"
- })
-"amL" = (
-/obj/machinery/door/airlock/highsecurity{
- name = "Secure Workstations";
- req_access_txt = "0";
- req_one_access_txt = "39; 63; 55; 19"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/cable{
- tag = "icon-1-2";
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel,
-/area/maintenance/fpmaint{
- name = "Secure Workstations Maintenance"
- })
-"amM" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
-"amN" = (
-/turf/closed/wall,
-/area/toxins/xenobiology)
-"amO" = (
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/machinery/droneDispenser,
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"amP" = (
-/obj/structure/rack,
-/obj/item/stack/sheet/metal{
- amount = 50
- },
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"amQ" = (
-/obj/structure/table,
-/obj/item/drone_shell,
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"amR" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/green/side{
- dir = 8
- },
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"amS" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel,
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"amT" = (
-/turf/open/floor/plasteel,
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"amU" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock{
- id_tag = "cabin3";
- name = "Cabin 3"
- },
-/turf/open/floor/carpet,
-/area/crew_quarters/sleep{
- name = "\improper Dormitory Suite 3"
- })
-"amV" = (
-/turf/open/floor/carpet,
-/area/crew_quarters/sleep{
- name = "\improper Dormitory Suite 3"
- })
-"amW" = (
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/carpet,
-/area/crew_quarters/sleep{
- name = "\improper Dormitory Suite 3"
- })
-"amX" = (
-/obj/effect/landmark{
- name = "blobstart"
- },
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"amY" = (
-/obj/structure/bed,
-/obj/item/bedsheet,
-/obj/machinery/button/door{
- id = "bunk3";
- name = "Bunk Bolt Control 3";
- normaldoorcontrol = 1;
- pixel_x = -25;
- pixel_y = 0;
- req_access_txt = "0";
- specialfunctions = 4
- },
-/turf/open/floor/carpet,
-/area/crew_quarters/sleep)
-"amZ" = (
-/obj/machinery/door/airlock{
- id_tag = "bunk3";
- name = "Bunk 3"
- },
-/turf/open/floor/carpet,
-/area/crew_quarters/sleep)
-"ana" = (
-/obj/machinery/door/airlock{
- id_tag = "bunk4";
- name = "Bunk 4"
- },
-/turf/open/floor/carpet,
-/area/crew_quarters/sleep)
-"anb" = (
-/obj/structure/bed,
-/obj/item/bedsheet,
-/obj/machinery/button/door{
- id = "bunk4";
- name = "Bunk Bolt Control 4";
- normaldoorcontrol = 1;
- pixel_x = 25;
- pixel_y = 0;
- req_access_txt = "0";
- specialfunctions = 4
- },
-/turf/open/floor/carpet,
-/area/crew_quarters/sleep)
-"anc" = (
-/obj/structure/closet/crate/engineering,
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"and" = (
-/obj/machinery/camera{
- c_tag = "Arrivals Escape Pod 3";
- dir = 8
- },
-/obj/machinery/light/small,
-/turf/open/floor/plating,
-/area/construction/hallway{
- name = "Secure Workstations Common Area"
- })
-"ane" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 5
- },
-/turf/open/floor/plasteel,
-/area/construction/hallway{
- name = "Secure Workstations Common Area"
- })
-"anf" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/light,
-/turf/open/floor/plasteel,
-/area/construction/hallway{
- name = "Secure Workstations Common Area"
- })
-"ang" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
-/turf/open/floor/plasteel,
-/area/construction/hallway{
- name = "Secure Workstations Common Area"
- })
-"anh" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/closed/wall/r_wall,
-/area/maintenance/fpmaint{
- name = "Secure Workstations Maintenance"
- })
-"ani" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 4
- },
-/obj/structure/closet/secure_closet/medical1,
-/obj/structure/sign/securearea{
- pixel_y = 32
- },
-/turf/open/floor/plating,
-/area/maintenance/fpmaint{
- name = "Secure Workstations Maintenance"
- })
-"anj" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/cable{
- tag = "icon-1-2";
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/maintenance/fpmaint{
- name = "Secure Workstations Maintenance"
- })
-"ank" = (
-/obj/machinery/power/apc{
- dir = 8;
- name = "Xenobiology APC";
- pixel_x = -25
- },
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
- },
-/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
-"anl" = (
-/obj/machinery/camera{
- c_tag = "Custodial Closet"
- },
-/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
-"anm" = (
-/obj/machinery/monkey_recycler,
-/obj/machinery/firealarm{
- dir = 2;
- pixel_y = 24
- },
-/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
-"ann" = (
-/obj/machinery/processor{
- desc = "A machine used to process slimes and retrieve their extract.";
- name = "Slime Processor"
- },
-/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
-"ano" = (
-/obj/machinery/smartfridge/extract/preloaded,
-/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
-"anp" = (
-/obj/structure/table,
-/obj/machinery/reagentgrinder,
-/obj/machinery/airalarm{
- frequency = 1439;
- pixel_y = 23
- },
-/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
-"anq" = (
-/obj/structure/closet/l3closet/scientist,
-/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
-"anr" = (
-/obj/structure/closet/l3closet/scientist,
-/obj/machinery/light_switch{
- pixel_x = 0;
- pixel_y = 28
- },
-/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
-"ans" = (
-/obj/machinery/camera/autoname{
- tag = "icon-camera (NORTH)";
- icon_state = "camera";
- dir = 1
- },
-/turf/open/floor/grass,
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"ant" = (
-/obj/machinery/power/apc{
- dir = 2;
- name = "Sleeping Room 4 APC";
- pixel_y = -24
- },
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/turf/open/floor/grass,
-/area/crew_quarters/sleep{
- name = "\improper Dormitory Suite 4"
- })
-"anu" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/turf/open/floor/grass,
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"anv" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/turf/open/floor/plasteel/green/side{
- dir = 8
- },
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"anw" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 6
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/turf/open/floor/plasteel/green/side{
- dir = 4
- },
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"anx" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/grass,
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"any" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/closed/wall,
-/area/crew_quarters/sleep{
- name = "\improper Dormitory Suite 3"
- })
-"anz" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 8;
- name = "regular air vent";
- on = 1
- },
-/obj/machinery/button/door{
- id = "cabin3";
- name = "Cabin Bolt Control 3";
- normaldoorcontrol = 1;
- pixel_x = -25;
- pixel_y = 0;
- req_access_txt = "0";
- specialfunctions = 4
- },
-/turf/open/floor/carpet,
-/area/crew_quarters/sleep{
- name = "\improper Dormitory Suite 3"
- })
-"anA" = (
-/obj/machinery/light,
-/obj/machinery/firealarm{
- dir = 1;
- pixel_x = 0;
- pixel_y = -26
- },
-/obj/structure/table/wood,
-/turf/open/floor/carpet,
-/area/crew_quarters/sleep{
- name = "\improper Dormitory Suite 3"
- })
-"anB" = (
-/obj/machinery/airalarm{
- dir = 1;
- icon_state = "alarm0";
- pixel_y = -22
- },
-/obj/structure/table/wood,
-/turf/open/floor/carpet,
-/area/crew_quarters/sleep{
- name = "\improper Dormitory Suite 3"
- })
-"anC" = (
-/obj/structure/grille{
- density = 0;
- icon_state = "brokengrille"
- },
-/obj/item/shard,
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"anD" = (
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"anE" = (
-/obj/structure/chair{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"anF" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'.";
- name = "KEEP CLEAR: DOCKING AREA";
- pixel_y = 0
- },
-/turf/closed/wall/r_wall,
-/area/construction/hallway{
- name = "Secure Workstations Common Area"
- })
-"anG" = (
-/obj/machinery/door/airlock/external,
-/turf/open/floor/noslip,
-/area/construction/hallway{
- name = "Secure Workstations Common Area"
- })
-"anH" = (
-/turf/open/floor/carpet,
-/area/construction/hallway{
- name = "Secure Workstations Common Area"
- })
-"anI" = (
-/obj/structure/chair/comfy/brown{
- dir = 4
- },
-/turf/open/floor/carpet,
-/area/construction/hallway{
- name = "Secure Workstations Common Area"
- })
-"anJ" = (
-/obj/structure/table/wood,
-/turf/open/floor/carpet,
-/area/construction/hallway{
- name = "Secure Workstations Common Area"
- })
-"anK" = (
-/obj/structure/chair/comfy/brown{
- dir = 8
- },
-/turf/open/floor/carpet,
-/area/construction/hallway{
- name = "Secure Workstations Common Area"
- })
-"anL" = (
-/turf/open/floor/plasteel{
- icon_state = "delivery"
- },
-/area/construction/hallway{
- name = "Secure Workstations Common Area"
- })
-"anM" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- tag = "icon-manifold (WEST)";
- icon_state = "manifold";
- dir = 8
- },
-/obj/machinery/light/small{
- dir = 8
- },
-/obj/structure/closet/secure_closet/chemical,
-/turf/open/floor/plating,
-/area/maintenance/fpmaint{
- name = "Secure Workstations Maintenance"
- })
-"anN" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/cable{
- tag = "icon-1-2";
- icon_state = "1-2"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4";
- tag = "90Curve"
- },
-/turf/open/floor/plating,
-/area/maintenance/fpmaint{
- name = "Secure Workstations Maintenance"
- })
-"anO" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/door/airlock/maintenance{
- name = "Xenobiology Maintenance";
- req_access_txt = "55"
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/toxins/xenobiology)
-"anP" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/cable{
- tag = "icon-1-8";
- icon_state = "1-8"
- },
-/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
-"anQ" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
-"anR" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
-"anS" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
-"anT" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
-"anU" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 10
- },
-/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
-"anV" = (
-/turf/closed/wall,
-/area/crew_quarters/sleep{
- name = "\improper Dormitory Suite 4"
- })
-"anW" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/tinted/fulltile,
-/obj/machinery/door/firedoor/heavy,
-/turf/open/floor/plating,
-/area/crew_quarters/sleep{
- name = "\improper Dormitory Suite 4"
- })
-"anX" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/green/side{
- dir = 4
- },
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"anY" = (
-/obj/machinery/light{
- dir = 4
- },
-/turf/open/floor/grass,
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"anZ" = (
-/obj/machinery/door/window/northright,
-/turf/open/floor/plasteel{
- icon_state = "freezerfloor"
- },
-/area/crew_quarters/sleep{
- name = "\improper Dormitory Suite 3"
- })
-"aoa" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"aob" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"aoc" = (
-/obj/structure/bed,
-/obj/item/bedsheet,
-/obj/machinery/button/door{
- id = "bunk5";
- name = "Bunk Bolt Control 5";
- normaldoorcontrol = 1;
- pixel_x = -25;
- pixel_y = 0;
- req_access_txt = "0";
- specialfunctions = 4
- },
-/turf/open/floor/carpet,
-/area/crew_quarters/sleep)
-"aod" = (
-/obj/machinery/door/airlock{
- id_tag = "bunk5";
- name = "Bunk 5"
- },
-/turf/open/floor/carpet,
-/area/crew_quarters/sleep)
-"aoe" = (
-/obj/machinery/door/airlock{
- id_tag = "bunk6";
- name = "Bunk 6"
- },
-/turf/open/floor/carpet,
-/area/crew_quarters/sleep)
-"aof" = (
-/obj/structure/bed,
-/obj/item/bedsheet,
-/obj/machinery/button/door{
- id = "bunk6";
- name = "Bunk Bolt Control 6";
- normaldoorcontrol = 1;
- pixel_x = 25;
- pixel_y = 0;
- req_access_txt = "0";
- specialfunctions = 4
- },
-/turf/open/floor/carpet,
-/area/crew_quarters/sleep)
-"aog" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/construction/hallway{
- name = "Secure Workstations Common Area"
- })
-"aoh" = (
-/turf/open/floor/noslip,
-/area/construction/hallway{
- name = "Secure Workstations Common Area"
- })
-"aoi" = (
-/obj/machinery/vending/cola,
-/turf/open/floor/plasteel,
-/area/construction/hallway{
- name = "Secure Workstations Common Area"
- })
-"aoj" = (
-/obj/machinery/vending/snack,
-/turf/open/floor/plasteel,
-/area/construction/hallway{
- name = "Secure Workstations Common Area"
- })
-"aok" = (
-/obj/machinery/vending/coffee,
-/turf/open/floor/plasteel,
-/area/construction/hallway{
- name = "Secure Workstations Common Area"
- })
-"aol" = (
-/obj/structure/table/wood,
-/obj/item/device/flashlight/lamp/green,
-/turf/open/floor/carpet,
-/area/construction/hallway{
- name = "Secure Workstations Common Area"
- })
-"aom" = (
-/turf/closed/wall/r_wall,
-/area/construction/hallway{
- name = "Secure Workstations Hallway"
- })
-"aon" = (
-/obj/machinery/door/airlock/highsecurity{
- name = "Secure Workstations";
- req_access_txt = "0";
- req_one_access_txt = "39; 63; 55; 19"
- },
-/turf/open/floor/plasteel,
-/area/construction/hallway{
- name = "Secure Workstations Hallway"
- })
-"aoo" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- req_access_txt = 1
- },
-/obj/structure/closet/crate/freezer/surplus_limbs,
-/turf/open/floor/plating,
-/area/maintenance/fpmaint{
- name = "Secure Workstations Maintenance"
- })
-"aop" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 8
- },
-/obj/structure/cable{
- tag = "icon-1-2";
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/maintenance/fpmaint{
- name = "Secure Workstations Maintenance"
- })
-"aoq" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/closed/wall/r_wall,
-/area/toxins/xenobiology)
-"aor" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
-"aos" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/structure/chair/comfy/black,
-/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
-"aot" = (
-/obj/effect/landmark/start{
- name = "Scientist"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/structure/chair/comfy/black,
-/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
-"aou" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 9
- },
-/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
-"aov" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/obj/machinery/holopad,
-/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
-"aow" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 1;
- external_pressure_bound = 101.325;
- on = 1;
- pressure_checks = 1
- },
-/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
-"aox" = (
-/obj/structure/chair/stool,
-/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
-"aoy" = (
-/obj/structure/bed,
-/obj/item/bedsheet/patriot,
-/turf/open/floor/carpet,
-/area/crew_quarters/sleep{
- name = "\improper Dormitory Suite 4"
- })
-"aoz" = (
-/obj/structure/dresser,
-/turf/open/floor/carpet,
-/area/crew_quarters/sleep{
- name = "\improper Dormitory Suite 4"
- })
-"aoA" = (
-/obj/structure/chair/stool,
-/turf/open/floor/carpet,
-/area/crew_quarters/sleep{
- name = "\improper Dormitory Suite 4"
- })
-"aoB" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 4;
- name = "regular air scrubber";
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/obj/structure/table/wood,
-/obj/item/device/radio/intercom{
- name = "Station Intercom";
- pixel_x = 0;
- pixel_y = 24
- },
-/turf/open/floor/carpet,
-/area/crew_quarters/sleep{
- name = "\improper Dormitory Suite 4"
- })
-"aoC" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/closed/wall,
-/area/crew_quarters/sleep{
- name = "\improper Dormitory Suite 4"
- })
-"aoD" = (
-/obj/structure/flora/grass/green,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/grass,
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"aoE" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/green/side{
- dir = 8
- },
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"aoF" = (
-/obj/machinery/camera/autoname{
- tag = "icon-camera (NORTHWEST)";
- icon_state = "camera";
- dir = 9
- },
-/turf/open/floor/grass,
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"aoG" = (
-/obj/item/storage/secure/safe{
- pixel_x = 32
- },
-/turf/open/floor/carpet,
-/area/crew_quarters/sleep{
- name = "\improper Dormitory Suite 3"
- })
-"aoH" = (
-/obj/structure/toilet,
-/turf/open/floor/plasteel{
- icon_state = "freezerfloor"
- },
-/area/crew_quarters/sleep{
- name = "\improper Dormitory Suite 3"
- })
-"aoI" = (
-/turf/open/floor/plasteel{
- icon_state = "freezerfloor"
- },
-/area/crew_quarters/sleep{
- name = "\improper Dormitory Suite 3"
- })
-"aoJ" = (
-/obj/effect/landmark{
- name = "carpspawn"
- },
-/turf/open/space,
-/area/space/nearstation)
-"aoK" = (
-/obj/structure/sign/securearea{
- pixel_y = 32
- },
-/turf/open/floor/plasteel{
- icon_state = "delivery"
- },
-/area/construction/hallway{
- name = "Secure Workstations Hallway"
- })
-"aoL" = (
-/turf/open/floor/plasteel{
- icon_state = "delivery"
- },
-/area/construction/hallway{
- name = "Secure Workstations Hallway"
- })
-"aoM" = (
-/turf/closed/wall,
-/area/maintenance/fpmaint{
- name = "Secure Workstations Maintenance"
- })
-"aoN" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- req_access_txt = 1
- },
-/turf/closed/wall,
-/area/maintenance/fpmaint{
- name = "Secure Workstations Maintenance"
- })
-"aoO" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/cable{
- tag = "icon-1-2";
- icon_state = "1-2"
- },
-/obj/machinery/door/airlock/maintenance_hatch,
-/turf/open/floor/plating,
-/area/maintenance/fpmaint{
- name = "Secure Workstations Maintenance"
- })
-"aoP" = (
-/obj/structure/closet/crate/bin,
-/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
-"aoQ" = (
-/obj/machinery/computer/camera_advanced/xenobio,
-/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
-"aoR" = (
-/obj/machinery/light,
-/obj/structure/table/glass,
-/obj/item/storage/box/monkeycubes,
-/obj/item/storage/box/monkeycubes,
-/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
-"aoS" = (
-/obj/structure/table/glass,
-/obj/item/folder/white,
-/obj/item/pen,
-/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
-"aoT" = (
-/obj/structure/table,
-/obj/item/extinguisher{
- pixel_x = 4;
- pixel_y = 3
- },
-/obj/item/extinguisher,
-/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
-"aoU" = (
-/obj/structure/table,
-/obj/machinery/requests_console{
- department = "Science";
- departmentType = 2;
- name = "Science Requests Console";
- pixel_x = 0;
- pixel_y = -30
- },
-/obj/item/paper_bin{
- pixel_x = 1;
- pixel_y = 9
- },
-/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
-"aoV" = (
-/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/light,
-/obj/item/device/radio/intercom{
- name = "Station Intercom (General)";
- pixel_y = -29
- },
-/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
-"aoW" = (
-/obj/structure/table,
-/obj/item/storage/box/beakers{
- pixel_x = 2;
- pixel_y = 2
- },
-/obj/item/storage/box/syringes,
-/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
-"aoX" = (
-/obj/structure/reagent_dispensers/watertank,
-/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
-"aoY" = (
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/closet,
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"aoZ" = (
-/turf/open/floor/carpet,
-/area/crew_quarters/sleep{
- name = "\improper Dormitory Suite 4"
- })
-"apa" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock{
- id_tag = "cabin4";
- name = "Cabin 4"
- },
-/turf/open/floor/carpet,
-/area/crew_quarters/sleep{
- name = "\improper Dormitory Suite 4"
- })
-"apb" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"apc" = (
-/obj/structure/closet/secure_closet/personal/cabinet,
-/turf/open/floor/carpet,
-/area/crew_quarters/sleep{
- name = "\improper Dormitory Suite 3"
- })
-"apd" = (
-/obj/machinery/shower{
- tag = "icon-shower (NORTH)";
- icon_state = "shower";
- dir = 1
- },
-/turf/open/floor/plasteel{
- icon_state = "freezerfloor"
- },
-/area/crew_quarters/sleep{
- name = "\improper Dormitory Suite 3"
- })
-"ape" = (
-/obj/machinery/light/small,
-/turf/open/floor/plasteel{
- icon_state = "freezerfloor"
- },
-/area/crew_quarters/sleep{
- name = "\improper Dormitory Suite 3"
- })
-"apf" = (
-/obj/machinery/light{
- icon_state = "tube1";
- dir = 8
- },
-/turf/open/floor/grass,
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"apg" = (
-/obj/effect/spawner/lootdrop/crate_spawner,
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"aph" = (
-/obj/structure/closet/crate,
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"api" = (
-/obj/structure/bed,
-/obj/item/bedsheet,
-/obj/machinery/button/door{
- id = "bunk7";
- name = "Bunk Bolt Control 7";
- normaldoorcontrol = 1;
- pixel_x = -25;
- pixel_y = 0;
- req_access_txt = "0";
- specialfunctions = 4
- },
-/turf/open/floor/carpet,
-/area/crew_quarters/sleep)
-"apj" = (
-/obj/machinery/door/airlock{
- id_tag = "bunk7";
- name = "Bunk 7"
- },
-/turf/open/floor/carpet,
-/area/crew_quarters/sleep)
-"apk" = (
-/obj/machinery/door/airlock{
- id_tag = "bunk8";
- name = "Bunk 8"
- },
-/turf/open/floor/carpet,
-/area/crew_quarters/sleep)
-"apl" = (
-/obj/structure/bed,
-/obj/item/bedsheet,
-/obj/machinery/button/door{
- id = "bunk8";
- name = "Bunk Bolt Control 8";
- normaldoorcontrol = 1;
- pixel_x = 25;
- pixel_y = 0;
- req_access_txt = "0";
- specialfunctions = 4
- },
-/turf/open/floor/carpet,
-/area/crew_quarters/sleep)
-"apm" = (
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/abandoned)
-"apn" = (
-/obj/machinery/door/airlock/titanium,
-/obj/docking_port/mobile{
- dheight = 0;
- dir = 2;
- dwidth = 11;
- height = 22;
- id = "whiteship";
- launch_status = 0;
- name = "NT Medical Ship";
- port_angle = -90;
- preferred_direction = 4;
- roundstart_move = "whiteship_away";
- timid = null;
- width = 35
- },
-/obj/docking_port/stationary{
- dir = 2;
- dwidth = 11;
- height = 22;
- id = "whiteship_home";
- name = "SS13 Arrival Docking";
- turf_type = /turf/open/space;
- width = 35
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"apo" = (
-/obj/machinery/door/airlock/titanium,
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"app" = (
-/turf/closed/wall,
-/area/construction/hallway{
- name = "Secure Workstations Hallway"
- })
-"apq" = (
-/turf/open/floor/plasteel/red/corner{
- dir = 1
- },
-/area/construction/hallway{
- name = "Secure Workstations Hallway"
- })
-"apr" = (
-/turf/open/floor/plasteel,
-/area/construction/hallway{
- name = "Secure Workstations Hallway"
- })
-"aps" = (
-/turf/open/floor/plasteel/red/corner,
-/area/construction/hallway{
- name = "Secure Workstations Hallway"
- })
-"apt" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- req_access_txt = 1
- },
-/turf/open/floor/plating,
-/area/maintenance/fpmaint{
- name = "Secure Workstations Maintenance"
- })
-"apu" = (
-/obj/structure/sign/biohazard,
-/turf/closed/wall,
-/area/toxins/xenobiology)
-"apv" = (
-/obj/machinery/door/firedoor,
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
-"apw" = (
-/obj/machinery/door/firedoor,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
-"apx" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/light{
- icon_state = "tube1";
- dir = 4
- },
-/obj/machinery/camera{
- c_tag = "Xenobiology North";
- dir = 8;
- network = list("SS13","RD")
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
-"apy" = (
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/closet,
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"apz" = (
-/obj/structure/rack,
-/obj/item/device/flashlight/lantern,
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"apA" = (
-/obj/machinery/airalarm{
- dir = 1;
- icon_state = "alarm0";
- pixel_y = -22
- },
-/obj/structure/table/wood,
-/turf/open/floor/carpet,
-/area/crew_quarters/sleep{
- name = "\improper Dormitory Suite 4"
- })
-"apB" = (
-/obj/machinery/light,
-/obj/machinery/firealarm{
- dir = 1;
- pixel_x = 0;
- pixel_y = -26
- },
-/obj/structure/table/wood,
-/turf/open/floor/carpet,
-/area/crew_quarters/sleep{
- name = "\improper Dormitory Suite 4"
- })
-"apC" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 4;
- name = "regular air vent";
- on = 1
- },
-/obj/machinery/button/door{
- id = "cabin4";
- name = "Cabin Bolt Control 4";
- normaldoorcontrol = 1;
- pixel_x = 25;
- pixel_y = 0;
- req_access_txt = "0";
- specialfunctions = 4
- },
-/turf/open/floor/carpet,
-/area/crew_quarters/sleep{
- name = "\improper Dormitory Suite 4"
- })
-"apD" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/closed/wall,
-/area/crew_quarters/sleep{
- name = "\improper Dormitory Suite 4"
- })
-"apE" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/green/side{
- dir = 8
- },
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"apF" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 4;
- initialize_directions = 11
- },
-/turf/open/floor/plasteel/green/side{
- dir = 4
- },
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"apG" = (
-/obj/machinery/power/apc{
- cell_type = 5000;
- dir = 4;
- name = "Biodome APC";
- pixel_x = 24;
- pixel_y = 0
- },
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
- },
-/turf/open/floor/grass,
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"apH" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/obj/machinery/door/airlock/maintenance_hatch,
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"apI" = (
-/obj/machinery/camera/autoname{
- tag = "icon-camera (NORTHWEST)";
- icon_state = "camera";
- dir = 9
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/sleep)
-"apJ" = (
-/obj/item/storage/box/emptysandbags,
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"apK" = (
-/obj/structure/shuttle/engine/propulsion{
- dir = 8;
- icon_state = "propulsion_l"
- },
-/turf/open/floor/plating/airless,
-/area/shuttle/abandoned)
-"apL" = (
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"apM" = (
-/obj/structure/table,
-/obj/item/device/radio/off,
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"apN" = (
-/obj/structure/table,
-/obj/item/screwdriver,
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"apO" = (
-/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
- },
-/turf/open/floor/plasteel/red/corner,
-/area/construction/hallway{
- name = "Secure Workstations Hallway"
- })
-"apP" = (
-/obj/structure/disposalpipe/trunk{
- dir = 4
- },
-/obj/structure/disposaloutlet,
-/turf/open/floor/engine,
-/area/toxins/xenobiology)
-"apQ" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/engine,
-/area/toxins/xenobiology)
-"apR" = (
-/obj/structure/grille,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
- },
-/obj/machinery/door/poddoor/preopen{
- id = "xenobio3";
- name = "containment blast door"
- },
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/engine,
-/area/toxins/xenobiology)
-"apS" = (
-/obj/machinery/disposal/bin,
-/obj/structure/disposalpipe/trunk{
- dir = 8
- },
-/obj/structure/window/reinforced,
-/obj/effect/turf_decal/stripes/line{
- dir = 6
- },
-/turf/open/floor/plasteel,
-/area/toxins/xenobiology)
-"apT" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
-"apU" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
-"apV" = (
-/obj/structure/window/reinforced,
-/obj/structure/table/reinforced,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/obj/machinery/button/door{
- id = "xenobio8";
- name = "Containment Blast Doors";
- pixel_x = 0;
- pixel_y = 4;
- req_access_txt = "55"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 10
- },
-/turf/open/floor/plasteel,
-/area/toxins/xenobiology)
-"apW" = (
-/obj/structure/grille,
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
- },
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/machinery/door/poddoor/preopen{
- id = "xenobio8";
- name = "containment blast door"
- },
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/engine,
-/area/toxins/xenobiology)
-"apX" = (
-/obj/machinery/door/window/northright,
-/turf/open/floor/plasteel{
- icon_state = "freezerfloor"
- },
-/area/crew_quarters/sleep{
- name = "\improper Dormitory Suite 4"
- })
-"apY" = (
-/obj/item/storage/secure/safe{
- pixel_x = 32
- },
-/turf/open/floor/carpet,
-/area/crew_quarters/sleep{
- name = "\improper Dormitory Suite 4"
- })
-"apZ" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"aqa" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel,
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"aqb" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/cable{
- tag = "icon-1-8";
- icon_state = "1-8"
- },
-/turf/open/floor/plasteel,
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"aqc" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/door/airlock/maintenance{
- req_access_txt = "12"
- },
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"aqd" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"aqe" = (
-/obj/structure/cable{
- tag = "icon-1-8";
- icon_state = "1-8"
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/sleep)
-"aqf" = (
-/obj/machinery/door/airlock{
- name = "Privacy Bunks";
- req_access_txt = "0"
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/sleep)
-"aqg" = (
-/obj/machinery/light{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/sleep)
-"aqh" = (
-/obj/machinery/door/airlock/maintenance{
- req_access_txt = "12"
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/sleep)
-"aqi" = (
-/obj/structure/shuttle/engine/propulsion{
- dir = 8;
- icon_state = "propulsion"
- },
-/turf/open/floor/plating/airless,
-/area/shuttle/abandoned)
-"aqj" = (
-/obj/structure/shuttle/engine/heater{
- icon_state = "heater";
- dir = 8
- },
-/obj/structure/window/reinforced{
- dir = 4
- },
-/turf/open/floor/plating/airless,
-/area/shuttle/abandoned)
-"aqk" = (
-/turf/open/floor/plating,
-/turf/closed/wall/mineral/titanium/interior,
-/area/shuttle/abandoned)
-"aql" = (
-/obj/machinery/computer/pod{
- id = "oldship_gun"
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"aqm" = (
-/obj/machinery/camera/autoname{
- tag = "icon-camera (NORTHEAST)";
- icon_state = "camera";
- dir = 5
- },
-/turf/open/floor/plasteel/red/corner{
- dir = 1
- },
-/area/construction/hallway{
- name = "Secure Workstations Hallway"
- })
-"aqn" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 4;
- name = "regular air scrubber";
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel/red/corner,
-/area/construction/hallway{
- name = "Secure Workstations Hallway"
- })
-"aqo" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/closed/wall,
-/area/maintenance/fpmaint{
- name = "Secure Workstations Maintenance"
- })
-"aqp" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- req_access_txt = 1
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/fpmaint{
- name = "Secure Workstations Maintenance"
- })
-"aqq" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 4
- },
-/obj/structure/cable{
- tag = "icon-1-2";
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/maintenance/fpmaint{
- name = "Secure Workstations Maintenance"
- })
-"aqr" = (
-/obj/effect/landmark{
- name = "revenantspawn"
- },
-/turf/open/floor/engine,
-/area/toxins/xenobiology)
-"aqs" = (
-/obj/machinery/door/window/northleft{
- base_state = "right";
- dir = 8;
- icon_state = "right";
- name = "Containment Pen";
- req_access_txt = "55"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/obj/machinery/door/poddoor/preopen{
- id = "xenobio3";
- name = "containment blast door"
- },
-/turf/open/floor/engine,
-/area/toxins/xenobiology)
-"aqt" = (
-/obj/machinery/door/window/northleft{
- dir = 4;
- name = "Containment Pen";
- req_access_txt = "55"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/toxins/xenobiology)
-"aqu" = (
-/obj/machinery/door/window/northleft{
- base_state = "right";
- dir = 8;
- icon_state = "right";
- name = "Containment Pen";
- req_access_txt = "55"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/toxins/xenobiology)
-"aqv" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/obj/machinery/door/window/northleft{
- dir = 4;
- name = "Containment Pen";
- req_access_txt = "55"
- },
-/obj/machinery/door/poddoor/preopen{
- id = "xenobio8";
- name = "containment blast door"
- },
-/turf/open/floor/engine,
-/area/toxins/xenobiology)
-"aqw" = (
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/window/reinforced{
- dir = 1;
- pixel_y = 1
- },
-/obj/structure/closet/crate/freezer,
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"aqx" = (
-/obj/structure/window/reinforced{
- dir = 1;
- pixel_y = 1
- },
-/obj/structure/closet/crate/freezer,
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"aqy" = (
-/obj/structure/window/reinforced{
- dir = 1;
- pixel_y = 1
- },
-/obj/structure/closet,
-/obj/item/bodypart/head,
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"aqz" = (
-/obj/machinery/iv_drip,
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"aqA" = (
-/obj/structure/rack,
-/obj/item/storage/fancy/candle_box,
-/obj/item/lighter,
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"aqB" = (
-/turf/open/floor/plasteel{
- icon_state = "freezerfloor"
- },
-/area/crew_quarters/sleep{
- name = "\improper Dormitory Suite 4"
- })
-"aqC" = (
-/obj/structure/toilet,
-/turf/open/floor/plasteel{
- icon_state = "freezerfloor"
- },
-/area/crew_quarters/sleep{
- name = "\improper Dormitory Suite 4"
- })
-"aqD" = (
-/obj/machinery/camera/autoname{
- tag = "icon-camera (NORTHEAST)";
- icon_state = "camera";
- dir = 5
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/sleep)
-"aqE" = (
-/turf/open/floor/plating,
-/area/shuttle/abandoned)
-"aqF" = (
-/turf/open/floor/mineral/titanium,
-/turf/closed/wall/mineral/titanium/interior,
-/area/shuttle/abandoned)
-"aqG" = (
-/obj/structure/rack,
-/obj/item/clothing/suit/space/hardsuit/medical,
-/obj/item/clothing/mask/breath,
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"aqH" = (
-/obj/machinery/door/airlock/glass,
-/turf/open/floor/plating,
-/area/shuttle/abandoned)
-"aqI" = (
-/obj/machinery/mass_driver{
- dir = 4;
- icon_state = "mass_driver";
- id = "oldship_gun"
- },
-/turf/open/floor/plating,
-/area/shuttle/abandoned)
-"aqJ" = (
-/obj/machinery/door/poddoor{
- id = "oldship_gun";
- name = "pod bay door"
- },
-/turf/open/floor/plating,
-/area/shuttle/abandoned)
-"aqK" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/construction/hallway{
- name = "Secure Workstations Hallway"
- })
-"aqL" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- req_access_txt = 1
- },
-/obj/structure/rack,
-/turf/open/floor/plating,
-/area/maintenance/fpmaint{
- name = "Secure Workstations Maintenance"
- })
-"aqM" = (
-/obj/structure/grille,
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/obj/structure/cable,
-/obj/machinery/door/poddoor/preopen{
- id = "xenobio3";
- name = "containment blast door"
- },
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/engine,
-/area/toxins/xenobiology)
-"aqN" = (
-/obj/structure/table/reinforced,
-/obj/machinery/button/door{
- id = "xenobio3";
- name = "Containment Blast Doors";
- pixel_x = 0;
- pixel_y = 4;
- req_access_txt = "55"
- },
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 5
- },
-/turf/open/floor/plasteel,
-/area/toxins/xenobiology)
-"aqO" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
-"aqP" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/machinery/disposal/bin,
-/obj/structure/disposalpipe/trunk{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 9
- },
-/turf/open/floor/plasteel,
-/area/toxins/xenobiology)
-"aqQ" = (
-/obj/structure/grille,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable,
-/obj/machinery/door/poddoor/preopen{
- id = "xenobio8";
- name = "containment blast door"
- },
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/engine,
-/area/toxins/xenobiology)
-"aqR" = (
-/obj/structure/disposalpipe/trunk{
- dir = 8
- },
-/obj/structure/disposaloutlet{
- dir = 1
- },
-/turf/open/floor/engine,
-/area/toxins/xenobiology)
-"aqS" = (
-/obj/structure/bed,
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"aqT" = (
-/obj/machinery/light/small,
-/turf/open/floor/plasteel{
- icon_state = "freezerfloor"
- },
-/area/crew_quarters/sleep{
- name = "\improper Dormitory Suite 4"
- })
-"aqU" = (
-/obj/machinery/shower{
- tag = "icon-shower (NORTH)";
- icon_state = "shower";
- dir = 1
- },
-/turf/open/floor/plasteel{
- icon_state = "freezerfloor"
- },
-/area/crew_quarters/sleep{
- name = "\improper Dormitory Suite 4"
- })
-"aqV" = (
-/obj/structure/closet/secure_closet/personal/cabinet,
-/turf/open/floor/carpet,
-/area/crew_quarters/sleep{
- name = "\improper Dormitory Suite 4"
- })
-"aqW" = (
-/obj/structure/closet/secure_closet/personal/cabinet,
-/turf/open/floor/wood,
-/area/crew_quarters/sleep)
-"aqX" = (
-/obj/item/device/radio/intercom{
- name = "Station Intercom";
- pixel_x = 0;
- pixel_y = 24
- },
-/turf/open/floor/wood,
-/area/crew_quarters/sleep)
-"aqY" = (
-/obj/structure/bed,
-/obj/item/bedsheet/green,
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 4;
- name = "regular air vent";
- on = 1
- },
-/turf/open/floor/wood,
-/area/crew_quarters/sleep)
-"aqZ" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/closed/wall,
-/area/crew_quarters/sleep)
-"ara" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/sleep)
-"arb" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/sleep)
-"arc" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 8;
- name = "regular air vent";
- on = 1
- },
-/obj/structure/closet/secure_closet/personal/cabinet,
-/turf/open/floor/wood,
-/area/crew_quarters/sleep)
-"ard" = (
-/obj/machinery/light/small{
- dir = 4
- },
-/turf/open/floor/wood,
-/area/crew_quarters/sleep)
-"are" = (
-/obj/structure/bed,
-/obj/item/bedsheet,
-/obj/machinery/button/door{
- id = "bunk9";
- name = "Bunk Bolt Control 9";
- normaldoorcontrol = 1;
- pixel_x = -25;
- pixel_y = 0;
- req_access_txt = "0";
- specialfunctions = 4
- },
-/turf/open/floor/carpet,
-/area/crew_quarters/sleep)
-"arf" = (
-/obj/machinery/door/airlock{
- id_tag = "bunk9";
- name = "Bunk 9"
- },
-/turf/open/floor/carpet,
-/area/crew_quarters/sleep)
-"arg" = (
-/obj/machinery/door/airlock{
- id_tag = "bunk10";
- name = "Bunk 10"
- },
-/turf/open/floor/carpet,
-/area/crew_quarters/sleep)
-"arh" = (
-/obj/structure/bed,
-/obj/item/bedsheet,
-/obj/machinery/button/door{
- id = "bunk10";
- name = "Bunk Bolt Control 10";
- normaldoorcontrol = 1;
- pixel_x = 25;
- pixel_y = 0;
- req_access_txt = "0";
- specialfunctions = 4
- },
-/turf/open/floor/carpet,
-/area/crew_quarters/sleep)
-"ari" = (
-/obj/item/paint/green,
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"arj" = (
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/item/paint/yellow,
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"ark" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- req_access_txt = 1
- },
-/obj/structure/rack,
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/open/floor/plating,
-/area/maintenance/fpmaint{
- name = "Secure Workstations Maintenance"
- })
-"arl" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'HIGH VOLTAGE'";
- icon_state = "shock";
- name = "HIGH VOLTAGE"
- },
-/turf/closed/wall,
-/area/toxins/xenobiology)
-"arm" = (
-/obj/machinery/light{
- icon_state = "tube1";
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
-"arn" = (
-/obj/structure/sink{
- dir = 4;
- icon_state = "sink";
- pixel_x = 11;
- pixel_y = 0
- },
-/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
-"aro" = (
-/obj/structure/table_frame,
-/obj/item/shard{
- icon_state = "small"
- },
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"arp" = (
-/obj/structure/showcase/horrific_experiment,
-/obj/effect/decal/cleanable/blood/old,
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"arq" = (
-/obj/structure/reagent_dispensers/fueltank,
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"arr" = (
-/obj/machinery/light{
- dir = 4
- },
-/obj/structure/flora/grass/green,
-/turf/open/floor/grass,
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"ars" = (
-/obj/machinery/light/small{
- dir = 8
- },
-/obj/machinery/button/door{
- id = "Dorm5";
- name = "Dorm Bolt Control";
- normaldoorcontrol = 1;
- pixel_x = -25;
- pixel_y = 0;
- req_access_txt = "0";
- specialfunctions = 4
- },
-/turf/open/floor/wood,
-/area/crew_quarters/sleep)
-"art" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 4;
- name = "regular air scrubber";
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/turf/open/floor/wood,
-/area/crew_quarters/sleep)
-"aru" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/wood,
-/area/crew_quarters/sleep)
-"arv" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/machinery/door/airlock{
- id_tag = "Dorm5";
- name = "Dorm 5"
- },
-/turf/open/floor/wood,
-/area/crew_quarters/sleep)
-"arw" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/sleep)
-"arx" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/sleep)
-"ary" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/machinery/door/airlock{
- id_tag = "Dorm4";
- name = "Dorm 4"
- },
-/turf/open/floor/wood,
-/area/crew_quarters/sleep)
-"arz" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 8;
- name = "regular air scrubber";
- on = 1;
- scrub_Toxins = 0
- },
-/turf/open/floor/wood,
-/area/crew_quarters/sleep)
-"arA" = (
-/obj/structure/bed,
-/obj/item/bedsheet/brown,
-/obj/machinery/button/door{
- id = "Dorm4";
- name = "Dorm Bolt Control";
- normaldoorcontrol = 1;
- pixel_x = 25;
- pixel_y = 0;
- req_access_txt = "0";
- specialfunctions = 4
- },
-/turf/open/floor/wood,
-/area/crew_quarters/sleep)
-"arB" = (
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/item/paint/violet,
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"arC" = (
-/obj/structure/shuttle/engine/propulsion{
- dir = 8;
- icon_state = "propulsion_r"
- },
-/turf/open/floor/plating/airless,
-/area/shuttle/abandoned)
-"arD" = (
-/obj/machinery/door/airlock/titanium,
-/turf/open/floor/plating,
-/area/shuttle/abandoned)
-"arE" = (
-/obj/item/stock_parts/cell{
- charge = 100;
- maxcharge = 15000
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"arF" = (
-/obj/structure/rack,
-/obj/item/tank/internals/emergency_oxygen,
-/obj/item/tank/internals/emergency_oxygen,
-/obj/item/tank/internals/emergency_oxygen,
-/obj/item/tank/internals/emergency_oxygen,
-/obj/item/storage/toolbox/mechanical,
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"arG" = (
-/obj/structure/frame/computer{
- anchored = 1
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"arH" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- req_access_txt = 1
- },
-/obj/structure/closet,
-/turf/open/floor/plating,
-/area/maintenance/fpmaint{
- name = "Secure Workstations Maintenance"
- })
-"arI" = (
-/obj/structure/grille,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
- },
-/obj/machinery/door/poddoor/preopen{
- id = "xenobio2";
- name = "containment blast door"
- },
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/engine,
-/area/toxins/xenobiology)
-"arJ" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
-"arK" = (
-/obj/structure/window/reinforced,
-/obj/structure/table/reinforced,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/obj/machinery/button/door{
- id = "xenobio7";
- name = "Containment Blast Doors";
- pixel_x = 0;
- pixel_y = 4;
- req_access_txt = "55"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 10
- },
-/turf/open/floor/plasteel,
-/area/toxins/xenobiology)
-"arL" = (
-/obj/structure/grille,
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
- },
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/machinery/door/poddoor/preopen{
- id = "xenobio7";
- name = "containment blast door"
- },
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/engine,
-/area/toxins/xenobiology)
-"arM" = (
-/obj/effect/decal/cleanable/blood/tracks,
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"arN" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/crew_quarters/sleep)
-"arO" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/light{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/sleep)
-"arP" = (
-/obj/structure/bed,
-/obj/item/bedsheet,
-/obj/machinery/button/door{
- id = "bunk11";
- name = "Bunk Bolt Control 11";
- normaldoorcontrol = 1;
- pixel_x = -25;
- pixel_y = 0;
- req_access_txt = "0";
- specialfunctions = 4
- },
-/turf/open/floor/carpet,
-/area/crew_quarters/sleep)
-"arQ" = (
-/obj/machinery/door/airlock{
- id_tag = "bunk11";
- name = "Bunk 11"
- },
-/turf/open/floor/carpet,
-/area/crew_quarters/sleep)
-"arR" = (
-/obj/machinery/door/airlock{
- id_tag = "bunk12";
- name = "Bunk 12"
- },
-/turf/open/floor/carpet,
-/area/crew_quarters/sleep)
-"arS" = (
-/obj/structure/bed,
-/obj/item/bedsheet,
-/obj/machinery/button/door{
- id = "bunk12";
- name = "Bunk Bolt Control 12";
- normaldoorcontrol = 1;
- pixel_x = 25;
- pixel_y = 0;
- req_access_txt = "0";
- specialfunctions = 4
- },
-/turf/open/floor/carpet,
-/area/crew_quarters/sleep)
-"arT" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/tinted/fulltile,
-/obj/machinery/door/firedoor/heavy,
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"arU" = (
-/obj/structure/chair{
- dir = 1
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"arV" = (
-/obj/item/shard{
- icon_state = "medium"
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"arW" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 4;
- name = "regular air vent";
- on = 1
- },
-/turf/open/floor/plasteel/red/corner{
- dir = 1
- },
-/area/construction/hallway{
- name = "Secure Workstations Hallway"
- })
-"arX" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/construction/hallway{
- name = "Secure Workstations Hallway"
- })
-"arY" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/red/corner,
-/area/construction/hallway{
- name = "Secure Workstations Hallway"
- })
-"arZ" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/closed/wall,
-/area/maintenance/fpmaint{
- name = "Secure Workstations Maintenance"
- })
-"asa" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/fpmaint{
- name = "Secure Workstations Maintenance"
- })
-"asb" = (
-/obj/effect/landmark{
- name = "revenantspawn"
- },
-/mob/living/simple_animal/slime,
-/turf/open/floor/engine,
-/area/toxins/xenobiology)
-"asc" = (
-/obj/machinery/door/window/northleft{
- base_state = "right";
- dir = 8;
- icon_state = "right";
- name = "Containment Pen";
- req_access_txt = "55"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/obj/machinery/door/poddoor/preopen{
- id = "xenobio2";
- name = "containment blast door"
- },
-/turf/open/floor/engine,
-/area/toxins/xenobiology)
-"asd" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/obj/machinery/door/window/northleft{
- dir = 4;
- name = "Containment Pen";
- req_access_txt = "55"
- },
-/obj/machinery/door/poddoor/preopen{
- id = "xenobio7";
- name = "containment blast door"
- },
-/turf/open/floor/engine,
-/area/toxins/xenobiology)
-"ase" = (
-/obj/item/shard{
- icon_state = "medium"
- },
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"asf" = (
-/obj/item/surgical_drapes,
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"asg" = (
-/obj/structure/flora/bush,
-/turf/open/floor/grass,
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"ash" = (
-/obj/machinery/power/apc{
- dir = 2;
- name = "Sleeping Room 2 APC";
- pixel_y = -24
- },
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/turf/open/floor/grass,
-/area/crew_quarters/sleep{
- name = "\improper Dormitory Suite 2"
- })
-"asi" = (
-/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/plasteel/green/side{
- dir = 4
- },
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"asj" = (
-/obj/machinery/light/small{
- dir = 8
- },
-/obj/machinery/button/door{
- id = "Dorm6";
- name = "Dorm Bolt Control";
- normaldoorcontrol = 1;
- pixel_x = -25;
- pixel_y = 0;
- req_access_txt = "0";
- specialfunctions = 4
- },
-/turf/open/floor/wood,
-/area/crew_quarters/sleep)
-"ask" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 4;
- name = "regular air scrubber";
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/obj/item/device/radio/intercom{
- name = "Station Intercom";
- pixel_x = 0;
- pixel_y = 24
- },
-/turf/open/floor/wood,
-/area/crew_quarters/sleep)
-"asl" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/machinery/door/airlock{
- id_tag = "Dorm6";
- name = "Dorm 6"
- },
-/turf/open/floor/wood,
-/area/crew_quarters/sleep)
-"asm" = (
-/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/crew_quarters/sleep)
-"asn" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/machinery/door/airlock{
- id_tag = "Dorm3";
- name = "Dorm 3"
- },
-/turf/open/floor/wood,
-/area/crew_quarters/sleep)
-"aso" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 8;
- name = "regular air scrubber";
- on = 1;
- scrub_Toxins = 0
- },
-/obj/item/device/radio/intercom{
- name = "Station Intercom";
- pixel_x = 0;
- pixel_y = 24
- },
-/turf/open/floor/wood,
-/area/crew_quarters/sleep)
-"asp" = (
-/obj/structure/bed,
-/obj/item/bedsheet/blue,
-/turf/open/floor/wood,
-/area/crew_quarters/sleep)
-"asq" = (
-/obj/structure/table,
-/obj/item/paper_bin/construction,
-/obj/item/storage/crayons,
-/obj/item/paint/red,
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"asr" = (
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/item/paint/green,
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"ass" = (
-/obj/structure/grille,
-/obj/structure/window/shuttle,
-/turf/open/floor/plating,
-/area/shuttle/abandoned)
-"ast" = (
-/obj/structure/grille,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable,
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/obj/machinery/door/poddoor/preopen{
- id = "xenobio2";
- name = "containment blast door"
- },
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/engine,
-/area/toxins/xenobiology)
-"asu" = (
-/obj/structure/table/reinforced,
-/obj/machinery/button/door{
- id = "xenobio2";
- name = "Containment Blast Doors";
- pixel_x = 0;
- pixel_y = 4;
- req_access_txt = "55"
- },
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 5
- },
-/turf/open/floor/plasteel,
-/area/toxins/xenobiology)
-"asv" = (
-/obj/structure/grille,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable,
-/obj/machinery/door/poddoor/preopen{
- id = "xenobio7";
- name = "containment blast door"
- },
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/engine,
-/area/toxins/xenobiology)
-"asw" = (
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/closet/wardrobe/white/medical,
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"asx" = (
-/obj/structure/bed,
-/obj/effect/decal/cleanable/blood/old,
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"asy" = (
-/turf/closed/wall,
-/area/crew_quarters/sleep{
- name = "\improper Dormitory Suite 2"
- })
-"asz" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/tinted/fulltile,
-/obj/machinery/door/firedoor/heavy,
-/turf/open/floor/plating,
-/area/crew_quarters/sleep{
- name = "\improper Dormitory Suite 2"
- })
-"asA" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/door/firedoor,
-/turf/open/floor/plating,
-/area/crew_quarters/sleep)
-"asB" = (
-/turf/open/floor/wood,
-/area/crew_quarters/sleep)
-"asC" = (
-/obj/structure/bed,
-/obj/item/bedsheet/yellow,
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 4;
- name = "regular air vent";
- on = 1
- },
-/turf/open/floor/wood,
-/area/crew_quarters/sleep)
-"asD" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/crew_quarters/sleep)
-"asE" = (
-/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,
-/turf/open/floor/plasteel,
-/area/crew_quarters/sleep)
-"asF" = (
-/obj/machinery/light/small{
- dir = 4
- },
-/obj/machinery/button/door{
- id = "Dorm3";
- name = "Dorm Bolt Control";
- normaldoorcontrol = 1;
- pixel_x = 25;
- pixel_y = 0;
- req_access_txt = "0";
- specialfunctions = 4
- },
-/turf/open/floor/wood,
-/area/crew_quarters/sleep)
-"asG" = (
-/obj/structure/bed,
-/obj/item/bedsheet,
-/obj/machinery/button/door{
- id = "bunk13";
- name = "Bunk Bolt Control 13";
- normaldoorcontrol = 1;
- pixel_x = -25;
- pixel_y = 0;
- req_access_txt = "0";
- specialfunctions = 4
- },
-/turf/open/floor/carpet,
-/area/crew_quarters/sleep)
-"asH" = (
-/obj/machinery/door/airlock{
- id_tag = "bunk13";
- name = "Bunk 13"
- },
-/turf/open/floor/carpet,
-/area/crew_quarters/sleep)
-"asI" = (
-/obj/machinery/door/airlock{
- id_tag = "bunk14";
- name = "Bunk 14"
- },
-/turf/open/floor/carpet,
-/area/crew_quarters/sleep)
-"asJ" = (
-/obj/structure/bed,
-/obj/item/bedsheet,
-/obj/machinery/button/door{
- id = "bunk14";
- name = "Bunk Bolt Control 14";
- normaldoorcontrol = 1;
- pixel_x = 25;
- pixel_y = 0;
- req_access_txt = "0";
- specialfunctions = 4
- },
-/turf/open/floor/carpet,
-/area/crew_quarters/sleep)
-"asK" = (
-/obj/item/device/camera,
-/obj/item/device/camera_film,
-/obj/item/device/camera_film,
-/obj/structure/closet/crate,
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"asL" = (
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/item/paint/white,
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"asM" = (
-/obj/machinery/light{
- dir = 8
- },
-/turf/open/floor/plasteel/red/corner{
- dir = 1
- },
-/area/construction/hallway{
- name = "Secure Workstations Hallway"
- })
-"asN" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- req_access_txt = 1
- },
-/obj/structure/grille{
- density = 0;
- icon_state = "brokengrille"
- },
-/turf/open/floor/plating,
-/area/maintenance/fpmaint{
- name = "Secure Workstations Maintenance"
- })
-"asO" = (
-/obj/structure/sink{
- icon_state = "sink";
- dir = 8;
- pixel_x = -12;
- pixel_y = 2
- },
-/obj/machinery/camera{
- c_tag = "Xenobiology South";
- dir = 4;
- network = list("SS13","RD")
- },
-/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
-"asP" = (
-/obj/machinery/light{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
-"asQ" = (
-/obj/structure/sign/xeno_warning_mining{
- pixel_x = -30
- },
-/turf/open/floor/plating/asteroid/airless{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/ruin/unpowered{
- name = "Asteroid"
- })
-"asR" = (
-/obj/machinery/camera/autoname{
- dir = 1;
- network = list("SS13")
- },
-/turf/open/floor/plating/asteroid/airless{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/fpmaint{
- name = "Secure Workstations Maintenance"
- })
-"asS" = (
-/turf/open/floor/plating,
-/area/maintenance/fpmaint{
- name = "Secure Workstations Maintenance"
- })
-"asT" = (
-/obj/structure/barricade/wooden,
-/turf/open/floor/plating,
-/area/maintenance/fpmaint{
- name = "Secure Workstations Maintenance"
- })
-"asU" = (
-/obj/effect/decal/cleanable/blood/gibs,
-/obj/effect/decal/cleanable/blood/innards,
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"asV" = (
-/obj/machinery/light/small{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"asW" = (
-/obj/machinery/light{
- icon_state = "tube1";
- dir = 4
- },
-/obj/structure/flora/grass/green,
-/turf/open/floor/grass,
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"asX" = (
-/obj/structure/bed,
-/obj/item/bedsheet/red,
-/turf/open/floor/carpet,
-/area/crew_quarters/sleep{
- name = "\improper Dormitory Suite 2"
- })
-"asY" = (
-/obj/structure/dresser,
-/turf/open/floor/carpet,
-/area/crew_quarters/sleep{
- name = "\improper Dormitory Suite 2"
- })
-"asZ" = (
-/obj/structure/chair/stool,
-/turf/open/floor/carpet,
-/area/crew_quarters/sleep{
- name = "\improper Dormitory Suite 2"
- })
-"ata" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 4;
- name = "regular air scrubber";
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/obj/structure/table/wood,
-/obj/item/device/radio/intercom{
- name = "Station Intercom";
- pixel_x = 0;
- pixel_y = 24
- },
-/turf/open/floor/carpet,
-/area/crew_quarters/sleep{
- name = "\improper Dormitory Suite 2"
- })
-"atb" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/closed/wall,
-/area/crew_quarters/sleep{
- name = "\improper Dormitory Suite 2"
- })
-"atc" = (
-/obj/structure/table/wood,
-/obj/item/device/paicard,
-/turf/open/floor/plasteel,
-/area/crew_quarters/sleep)
-"atd" = (
-/obj/structure/table/wood,
-/obj/item/device/analyzer,
-/turf/open/floor/plasteel,
-/area/crew_quarters/sleep)
-"ate" = (
-/obj/machinery/vending/clothing,
-/turf/open/floor/plasteel,
-/area/crew_quarters/sleep)
-"atf" = (
-/obj/structure/table/wood,
-/obj/item/paper_bin,
-/turf/open/floor/plasteel,
-/area/crew_quarters/sleep)
-"atg" = (
-/obj/machinery/status_display{
- density = 0;
- layer = 4
- },
-/turf/closed/wall,
-/area/crew_quarters/sleep)
-"ath" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/extinguisher_cabinet{
- pixel_x = 24
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/sleep)
-"ati" = (
-/obj/structure/closet/crate,
-/obj/item/seeds/cocoapod,
-/obj/item/seeds/chili,
-/obj/item/seeds/coffee,
-/obj/item/seeds/eggplant,
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"atj" = (
-/obj/structure/window/reinforced{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"atk" = (
-/obj/machinery/door/window,
-/turf/open/floor/mineral/titanium/purple,
-/area/shuttle/abandoned)
-"atl" = (
-/obj/structure/bed,
-/obj/item/bedsheet,
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/turf/open/floor/mineral/titanium/purple,
-/area/shuttle/abandoned)
-"atm" = (
-/obj/structure/table,
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"atn" = (
-/obj/structure/table,
-/obj/item/gun/energy/laser/retro,
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"ato" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- req_access_txt = 1
- },
-/obj/structure/grille,
-/turf/open/floor/plating,
-/area/maintenance/fpmaint{
- name = "Secure Workstations Maintenance"
- })
-"atp" = (
-/obj/structure/grille,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
- },
-/obj/machinery/door/poddoor/preopen{
- id = "xenobio1";
- name = "containment blast door"
- },
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/engine,
-/area/toxins/xenobiology)
-"atq" = (
-/obj/structure/window/reinforced,
-/obj/structure/table/reinforced,
-/obj/machinery/button/door{
- id = "xenobio6";
- name = "Containment Blast Doors";
- pixel_x = 0;
- pixel_y = 4;
- req_access_txt = "55"
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 10
- },
-/turf/open/floor/plasteel,
-/area/toxins/xenobiology)
-"atr" = (
-/obj/structure/grille,
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
- },
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/machinery/door/poddoor/preopen{
- id = "xenobio6";
- name = "containment blast door"
- },
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/engine,
-/area/toxins/xenobiology)
-"ats" = (
-/obj/machinery/light/small{
- dir = 4
- },
-/turf/open/floor/plating/airless/astplate{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/fpmaint{
- name = "Secure Workstations Maintenance"
- })
-"att" = (
-/obj/structure/sign/xeno_warning_mining{
- pixel_x = -30
- },
-/turf/open/floor/plating,
-/area/maintenance/fpmaint{
- name = "Secure Workstations Maintenance"
- })
-"atu" = (
-/obj/machinery/door/airlock/maintenance_hatch{
- locked = 1
- },
-/obj/structure/holosign/barrier,
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"atv" = (
-/obj/item/cigbutt,
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"atw" = (
-/turf/open/floor/carpet,
-/area/crew_quarters/sleep{
- name = "\improper Dormitory Suite 2"
- })
-"atx" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock{
- id_tag = "cabin2";
- name = "Cabin 2"
- },
-/turf/open/floor/carpet,
-/area/crew_quarters/sleep{
- name = "\improper Dormitory Suite 2"
- })
-"aty" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"atz" = (
-/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/green/side{
- dir = 4
- },
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"atA" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/closed/wall,
-/area/crew_quarters/sleep)
-"atB" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/machinery/light{
- icon_state = "tube1";
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/sleep)
-"atC" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/sleep)
-"atD" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/machinery/camera/autoname{
- tag = "icon-camera (SOUTHEAST)";
- icon_state = "camera";
- dir = 6
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/sleep)
-"atE" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/machinery/airalarm{
- frequency = 1439;
- locked = 0;
- pixel_y = 23
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/sleep)
-"atF" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/item/device/radio/intercom{
- name = "Station Intercom";
- pixel_x = 0;
- pixel_y = 24
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/sleep)
-"atG" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 4
- },
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plasteel,
-/area/crew_quarters/sleep)
-"atH" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 8
- },
-/obj/machinery/firealarm{
- dir = 4;
- pixel_x = 28;
- pixel_y = 0
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/sleep)
-"atI" = (
-/obj/structure/bed,
-/obj/item/bedsheet,
-/obj/machinery/button/door{
- id = "bunk15";
- name = "Bunk Bolt Control 15";
- normaldoorcontrol = 1;
- pixel_x = -25;
- pixel_y = 0;
- req_access_txt = "0";
- specialfunctions = 4
- },
-/turf/open/floor/carpet,
-/area/crew_quarters/sleep)
-"atJ" = (
-/obj/machinery/door/airlock{
- id_tag = "bunk15";
- name = "Bunk 15"
- },
-/turf/open/floor/carpet,
-/area/crew_quarters/sleep)
-"atK" = (
-/obj/machinery/door/airlock{
- id_tag = "bunk16";
- name = "Bunk 16"
- },
-/turf/open/floor/carpet,
-/area/crew_quarters/sleep)
-"atL" = (
-/obj/structure/bed,
-/obj/item/bedsheet,
-/obj/machinery/button/door{
- id = "bunk16";
- name = "Bunk Bolt Control 16";
- normaldoorcontrol = 1;
- pixel_x = 25;
- pixel_y = 0;
- req_access_txt = "0";
- specialfunctions = 4
- },
-/turf/open/floor/carpet,
-/area/crew_quarters/sleep)
-"atM" = (
-/obj/machinery/door/airlock/glass,
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"atN" = (
-/obj/structure/chair{
- dir = 4
- },
-/obj/effect/decal/remains/human,
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"atO" = (
-/obj/machinery/computer/shuttle/white_ship,
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"atP" = (
-/obj/machinery/door/window/northleft{
- base_state = "right";
- dir = 8;
- icon_state = "right";
- name = "Containment Pen";
- req_access_txt = "55"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/obj/machinery/door/poddoor/preopen{
- id = "xenobio1";
- name = "containment blast door"
- },
-/turf/open/floor/engine,
-/area/toxins/xenobiology)
-"atQ" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/obj/machinery/door/window/northleft{
- dir = 4;
- name = "Containment Pen";
- req_access_txt = "55"
- },
-/obj/machinery/door/poddoor/preopen{
- id = "xenobio6";
- name = "containment blast door"
- },
-/turf/open/floor/engine,
-/area/toxins/xenobiology)
-"atR" = (
-/turf/open/floor/plating/airless/astplate{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/fpmaint{
- name = "Secure Workstations Maintenance"
- })
-"atS" = (
-/obj/machinery/light/small,
-/turf/open/floor/plating/airless/astplate{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/fpmaint{
- name = "Secure Workstations Maintenance"
- })
-"atT" = (
-/obj/machinery/door/airlock/external{
- name = "Mining Airlock";
- req_access = null;
- req_access_txt = "48"
- },
-/turf/open/floor/noslip,
-/area/maintenance/fpmaint{
- name = "Secure Workstations Maintenance"
- })
-"atU" = (
-/obj/structure/sign/vacuum{
- pixel_y = 32
- },
-/turf/open/floor/noslip,
-/area/maintenance/fpmaint{
- name = "Secure Workstations Maintenance"
- })
-"atV" = (
-/obj/structure/door_assembly/door_assembly_mai,
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"atW" = (
-/obj/structure/barricade/wooden,
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"atX" = (
-/obj/machinery/airalarm{
- dir = 1;
- icon_state = "alarm0";
- pixel_y = -22
- },
-/obj/structure/table/wood,
-/turf/open/floor/carpet,
-/area/crew_quarters/sleep{
- name = "\improper Dormitory Suite 2"
- })
-"atY" = (
-/obj/machinery/light,
-/obj/machinery/firealarm{
- dir = 1;
- pixel_x = 0;
- pixel_y = -26
- },
-/obj/structure/table/wood,
-/turf/open/floor/carpet,
-/area/crew_quarters/sleep{
- name = "\improper Dormitory Suite 2"
- })
-"atZ" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 4;
- name = "regular air vent";
- on = 1
- },
-/obj/machinery/button/door{
- id = "cabin2";
- name = "Cabin Bolt Control 2";
- normaldoorcontrol = 1;
- pixel_x = 25;
- pixel_y = 0;
- req_access_txt = "0";
- specialfunctions = 4
- },
-/turf/open/floor/carpet,
-/area/crew_quarters/sleep{
- name = "\improper Dormitory Suite 2"
- })
-"aua" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/closed/wall,
-/area/crew_quarters/sleep{
- name = "\improper Dormitory Suite 2"
- })
-"aub" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/cable{
- tag = "icon-1-4";
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 4;
- initialize_directions = 11
- },
-/turf/open/floor/plasteel,
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"auc" = (
-/obj/machinery/door/airlock{
- name = "Dormitories";
- req_access_txt = "0"
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/sleep)
-"aud" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/sleep)
-"aue" = (
-/obj/structure/chair/stool,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/effect/landmark/start{
- name = "Assistant"
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/sleep)
-"auf" = (
-/obj/structure/table/wood,
-/obj/item/storage/wallet,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/sleep)
-"aug" = (
-/obj/structure/table/wood,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/sleep)
-"auh" = (
-/obj/structure/table/wood,
-/obj/item/storage/box/hug/medical,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/sleep)
-"aui" = (
-/obj/structure/chair/stool,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/sleep)
-"auj" = (
-/obj/structure/cable{
- tag = "icon-2-8";
- icon_state = "2-8"
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/sleep)
-"auk" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
-/area/crew_quarters/sleep)
-"aul" = (
-/obj/machinery/door/airlock{
- id_tag = "Dorm2";
- name = "Dorm 2"
- },
-/turf/open/floor/wood,
-/area/crew_quarters/sleep)
-"aum" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 2;
- name = "regular air scrubber";
- on = 1
- },
-/turf/open/floor/wood,
-/area/crew_quarters/sleep)
-"aun" = (
-/obj/structure/bed,
-/obj/item/bedsheet,
-/obj/machinery/button/door{
- id = "Dorm2";
- name = "Dorm Bolt Control";
- normaldoorcontrol = 1;
- pixel_x = 25;
- pixel_y = 0;
- req_access_txt = "0";
- specialfunctions = 4
- },
-/turf/open/floor/wood,
-/area/crew_quarters/sleep)
-"auo" = (
-/obj/structure/kitchenspike_frame,
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"aup" = (
-/obj/machinery/portable_atmospherics/canister/oxygen,
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"auq" = (
-/obj/structure/table,
-/obj/item/tank/internals/oxygen,
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"aur" = (
-/obj/structure/grille,
-/obj/structure/cable,
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/obj/machinery/door/poddoor/preopen{
- id = "xenobio1";
- name = "containment blast door"
- },
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/engine,
-/area/toxins/xenobiology)
-"aus" = (
-/obj/structure/table/reinforced,
-/obj/machinery/button/door{
- id = "xenobio1";
- name = "Containment Blast Doors";
- pixel_x = 0;
- pixel_y = 4;
- req_access_txt = "55"
- },
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 4;
- on = 1
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/obj/machinery/light,
-/obj/effect/turf_decal/stripes/line{
- dir = 5
- },
-/turf/open/floor/plasteel,
-/area/toxins/xenobiology)
-"aut" = (
-/obj/structure/grille,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable,
-/obj/machinery/door/poddoor/preopen{
- id = "xenobio6";
- name = "containment blast door"
- },
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/engine,
-/area/toxins/xenobiology)
-"auu" = (
-/obj/machinery/camera/autoname{
- dir = 4;
- network = list("SS13")
- },
-/turf/open/floor/plating/airless/astplate{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/fpmaint{
- name = "Secure Workstations Maintenance"
- })
-"auv" = (
-/obj/structure/closet,
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"auw" = (
-/obj/structure/table,
-/obj/structure/bedsheetbin,
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"aux" = (
-/obj/structure/table,
-/obj/item/lighter/greyscale,
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"auy" = (
-/obj/structure/table,
-/obj/item/hatchet/cutterblade,
-/obj/item/retractor,
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"auz" = (
-/obj/structure/table,
-/obj/item/storage/firstaid,
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"auA" = (
-/obj/machinery/door/window/northright,
-/turf/open/floor/plasteel{
- icon_state = "freezerfloor"
- },
-/area/crew_quarters/sleep{
- name = "\improper Dormitory Suite 2"
- })
-"auB" = (
-/obj/item/storage/secure/safe{
- pixel_x = 32
- },
-/turf/open/floor/carpet,
-/area/crew_quarters/sleep{
- name = "\improper Dormitory Suite 2"
- })
-"auC" = (
-/obj/machinery/status_display,
-/turf/closed/wall,
-/area/crew_quarters/sleep)
-"auD" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- name = "regular air vent";
- on = 1
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/sleep)
-"auE" = (
-/obj/structure/chair/stool,
-/turf/open/floor/plasteel,
-/area/crew_quarters/sleep)
-"auF" = (
-/obj/structure/table/wood,
-/turf/open/floor/plasteel,
-/area/crew_quarters/sleep)
-"auG" = (
-/obj/structure/table/wood,
-/obj/item/storage/briefcase,
-/turf/open/floor/plasteel,
-/area/crew_quarters/sleep)
-"auH" = (
-/obj/structure/table/wood,
-/obj/item/storage/crayons,
-/turf/open/floor/plasteel,
-/area/crew_quarters/sleep)
-"auI" = (
-/obj/structure/chair/stool,
-/obj/effect/landmark/start{
- name = "Assistant"
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/sleep)
-"auJ" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/sleep)
-"auK" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 4;
- name = "regular air scrubber";
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/sleep)
-"auL" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 2;
- initialize_directions = 11
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/sleep)
-"auM" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 4
- },
-/turf/closed/wall,
-/area/crew_quarters/sleep)
-"auN" = (
-/obj/structure/bed,
-/obj/item/bedsheet,
-/obj/machinery/button/door{
- id = "bunk17";
- name = "Bunk Bolt Control 17";
- normaldoorcontrol = 1;
- pixel_x = -25;
- pixel_y = 0;
- req_access_txt = "0";
- specialfunctions = 4
- },
-/turf/open/floor/carpet,
-/area/crew_quarters/sleep)
-"auO" = (
-/obj/machinery/door/airlock{
- id_tag = "bunk17";
- name = "Bunk 17"
- },
-/turf/open/floor/carpet,
-/area/crew_quarters/sleep)
-"auP" = (
-/obj/machinery/door/airlock{
- id_tag = "bunk18";
- name = "Bunk 18"
- },
-/turf/open/floor/carpet,
-/area/crew_quarters/sleep)
-"auQ" = (
-/obj/structure/bed,
-/obj/item/bedsheet,
-/obj/machinery/button/door{
- id = "bunk18";
- name = "Bunk Bolt Control 18";
- normaldoorcontrol = 1;
- pixel_x = 25;
- pixel_y = 0;
- req_access_txt = "0";
- specialfunctions = 4
- },
-/turf/open/floor/carpet,
-/area/crew_quarters/sleep)
-"auR" = (
-/obj/structure/easel,
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"auS" = (
-/obj/structure/bed,
-/obj/item/bedsheet,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/turf/open/floor/mineral/titanium/purple,
-/area/shuttle/abandoned)
-"auT" = (
-/obj/machinery/door/window/northright,
-/obj/effect/decal/remains/human,
-/turf/open/floor/mineral/titanium/purple,
-/area/shuttle/abandoned)
-"auU" = (
-/obj/structure/rack,
-/obj/item/clothing/shoes/winterboots,
-/obj/item/clothing/suit/hooded/wintercoat,
-/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
-"auV" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 6
- },
-/obj/structure/closet,
-/turf/open/floor/plating,
-/area/maintenance/fpmaint{
- name = "Secure Workstations Maintenance"
- })
-"auW" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/fpmaint{
- name = "Secure Workstations Maintenance"
- })
-"auX" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 10
- },
-/turf/open/floor/plating,
-/area/maintenance/fpmaint{
- name = "Secure Workstations Maintenance"
- })
-"auY" = (
-/turf/open/floor/plasteel{
- icon_state = "freezerfloor"
- },
-/area/crew_quarters/sleep{
- name = "\improper Dormitory Suite 2"
- })
-"auZ" = (
-/obj/structure/toilet,
-/turf/open/floor/plasteel{
- icon_state = "freezerfloor"
- },
-/area/crew_quarters/sleep{
- name = "\improper Dormitory Suite 2"
- })
-"ava" = (
-/obj/machinery/light{
- dir = 8
- },
-/turf/open/floor/grass,
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"avb" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel/green/side{
- dir = 8
- },
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"avc" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 8
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel/green/side{
- dir = 4
- },
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"avd" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/flora/grass/green,
-/turf/open/floor/grass,
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"ave" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/crew_quarters/sleep)
-"avf" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/sleep)
-"avg" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/sleep)
-"avh" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/firealarm{
- dir = 1;
- pixel_x = 0;
- pixel_y = -26
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/sleep)
-"avi" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/disposalpipe/junction{
- icon_state = "pipe-j1";
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/sleep)
-"avj" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/cable{
- tag = "icon-1-4";
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/sleep)
-"avk" = (
-/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/plasteel,
-/area/crew_quarters/sleep)
-"avl" = (
-/obj/structure/cable{
- tag = "icon-2-8";
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/sleep)
-"avm" = (
-/obj/machinery/door/airlock{
- id_tag = "Dorm1";
- name = "Dorm 1"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/wood,
-/area/crew_quarters/sleep)
-"avn" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/wood,
-/area/crew_quarters/sleep)
-"avo" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 1;
- name = "regular air scrubber";
- on = 1
- },
-/obj/item/device/radio/intercom{
- name = "Station Intercom";
- pixel_x = 0;
- pixel_y = 24
- },
-/turf/open/floor/wood,
-/area/crew_quarters/sleep)
-"avp" = (
-/obj/structure/bed,
-/obj/item/bedsheet/ian,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/button/door{
- id = "Dorm1";
- name = "Dorm Bolt Control";
- normaldoorcontrol = 1;
- pixel_x = 25;
- pixel_y = 0;
- req_access_txt = "0";
- specialfunctions = 4
- },
-/turf/open/floor/wood,
-/area/crew_quarters/sleep)
-"avq" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/closed/wall,
-/area/crew_quarters/fitness)
-"avr" = (
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"avs" = (
-/obj/item/paint/black,
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"avt" = (
-/obj/machinery/portable_atmospherics/scrubber,
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"avu" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 2;
- external_pressure_bound = 140;
- on = 1;
- pressure_checks = 0
- },
-/obj/machinery/camera{
- c_tag = "Xenobiology Kill Room";
- dir = 4;
- network = list("SS13","RD")
- },
-/turf/open/floor/circuit{
- name = "Killroom Floor";
- initial_gas_mix = "n2=500;TEMP=80"
- },
-/area/toxins/xenobiology)
-"avv" = (
-/turf/open/floor/circuit{
- name = "Killroom Floor";
- initial_gas_mix = "n2=500;TEMP=80"
- },
-/area/toxins/xenobiology)
-"avw" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 2;
- external_pressure_bound = 120;
- initialize_directions = 1;
- internal_pressure_bound = 4000;
- on = 1;
- pressure_checks = 2;
- pump_direction = 0
- },
-/turf/open/floor/circuit{
- name = "Killroom Floor";
- initial_gas_mix = "n2=500;TEMP=80"
- },
-/area/toxins/xenobiology)
-"avx" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/structure/sign/biohazard,
-/turf/open/floor/plating,
-/area/toxins/xenobiology)
-"avy" = (
-/obj/machinery/atmospherics/components/unary/thermomachine/freezer{
- target_temperature = 80;
- dir = 2;
- on = 1
- },
-/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
-"avz" = (
-/obj/structure/rack,
-/obj/item/pickaxe,
-/turf/open/floor/plating/airless/astplate{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/fpmaint{
- name = "Secure Workstations Maintenance"
- })
-"avA" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plating,
-/area/maintenance/fpmaint{
- name = "Secure Workstations Maintenance"
- })
-"avB" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 6
- },
-/turf/open/floor/plating,
-/area/maintenance/fpmaint{
- name = "Secure Workstations Maintenance"
- })
-"avC" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/maintenance/fpmaint{
- name = "Secure Workstations Maintenance"
- })
-"avD" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 10
- },
-/turf/open/floor/plating,
-/area/maintenance/fpmaint{
- name = "Secure Workstations Maintenance"
- })
-"avE" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"avF" = (
-/obj/machinery/light/small,
-/turf/open/floor/plasteel{
- icon_state = "freezerfloor"
- },
-/area/crew_quarters/sleep{
- name = "\improper Dormitory Suite 2"
- })
-"avG" = (
-/obj/machinery/shower{
- tag = "icon-shower (NORTH)";
- icon_state = "shower";
- dir = 1
- },
-/turf/open/floor/plasteel{
- icon_state = "freezerfloor"
- },
-/area/crew_quarters/sleep{
- name = "\improper Dormitory Suite 2"
- })
-"avH" = (
-/obj/structure/closet/secure_closet/personal/cabinet,
-/turf/open/floor/carpet,
-/area/crew_quarters/sleep{
- name = "\improper Dormitory Suite 2"
- })
-"avI" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/camera/autoname{
- tag = "icon-camera (NORTHEAST)";
- icon_state = "camera";
- dir = 5
- },
-/turf/open/floor/plasteel/green/side{
- dir = 8
- },
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"avJ" = (
-/obj/machinery/washing_machine,
-/turf/open/floor/plasteel/barber,
-/area/crew_quarters/sleep)
-"avK" = (
-/obj/structure/table/wood,
-/obj/structure/bedsheetbin,
-/turf/open/floor/plasteel/barber,
-/area/crew_quarters/sleep)
-"avL" = (
-/obj/structure/disposalpipe/trunk{
- dir = 1
- },
-/obj/machinery/disposal/bin,
-/turf/open/floor/plasteel,
-/area/crew_quarters/sleep)
-"avM" = (
-/obj/machinery/light,
-/obj/structure/closet/emcloset,
-/turf/open/floor/plasteel,
-/area/crew_quarters/sleep)
-"avN" = (
-/obj/structure/cable,
-/obj/machinery/power/apc{
- dir = 2;
- name = "Dormitory APC";
- pixel_y = -24
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/sleep)
-"avO" = (
-/obj/structure/table,
-/turf/open/floor/plasteel,
-/area/crew_quarters/sleep)
-"avP" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 5
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/sleep)
-"avQ" = (
-/turf/closed/wall,
-/area/crew_quarters/fitness)
-"avR" = (
-/turf/open/floor/engine{
- name = "Holodeck Projector Floor"
- },
-/area/holodeck/rec_center)
-"avS" = (
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"avT" = (
-/obj/item/paint/paint_remover,
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"avU" = (
-/obj/machinery/camera/autoname{
- tag = "icon-camera (NORTHWEST)";
- icon_state = "camera";
- dir = 9
- },
-/turf/open/floor/plasteel/red/corner,
-/area/construction/hallway{
- name = "Secure Workstations Hallway"
- })
-"avV" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/door/airlock/maintenance_hatch,
-/obj/structure/cable{
- tag = "icon-1-2";
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/maintenance/fpmaint{
- name = "Secure Workstations Maintenance"
- })
-"avW" = (
-/obj/machinery/light,
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 5
- },
-/turf/open/floor/circuit{
- name = "Killroom Floor";
- initial_gas_mix = "n2=500;TEMP=80"
- },
-/area/toxins/xenobiology)
-"avX" = (
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 4
- },
-/turf/open/floor/circuit{
- name = "Killroom Floor";
- initial_gas_mix = "n2=500;TEMP=80"
- },
-/area/toxins/xenobiology)
-"avY" = (
-/obj/machinery/light,
-/obj/machinery/atmospherics/pipe/manifold/general/visible,
-/turf/open/floor/circuit{
- name = "Killroom Floor";
- initial_gas_mix = "n2=500;TEMP=80"
- },
-/area/toxins/xenobiology)
-"avZ" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/research{
- name = "Kill Chamber";
- req_access_txt = "55"
- },
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/toxins/xenobiology)
-"awa" = (
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
-"awb" = (
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 9
- },
-/obj/structure/table,
-/obj/item/folder/white,
-/obj/item/pen,
-/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
-"awc" = (
-/obj/structure/rack,
-/obj/item/tank/internals/oxygen,
-/turf/open/floor/plating/airless/astplate{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/fpmaint{
- name = "Secure Workstations Maintenance"
- })
-"awd" = (
-/obj/machinery/atmospherics/components/unary/portables_connector{
- tag = "icon-connector_map (NORTH)";
- icon_state = "connector_map";
- dir = 1
- },
-/turf/open/floor/plating,
-/area/maintenance/fpmaint{
- name = "Secure Workstations Maintenance"
- })
-"awe" = (
-/obj/machinery/atmospherics/components/binary/valve,
-/turf/open/floor/plating,
-/area/maintenance/fpmaint{
- name = "Secure Workstations Maintenance"
- })
-"awf" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating,
-/area/maintenance/fpmaint{
- name = "Secure Workstations Maintenance"
- })
-"awg" = (
-/obj/effect/decal/cleanable/blood/old,
-/obj/item/shovel,
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"awh" = (
-/obj/structure/closet/secure_closet/personal,
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"awi" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/light{
- dir = 8
- },
-/obj/machinery/door/firedoor,
-/turf/open/floor/plasteel/green/side{
- dir = 8
- },
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"awj" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/item/device/radio/intercom{
- desc = "Talk smack through this.";
- dir = 4;
- pixel_x = 28;
- syndie = 1
- },
-/obj/machinery/door/firedoor,
-/turf/open/floor/plasteel/green/side{
- dir = 4
- },
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"awk" = (
-/turf/closed/wall,
-/area/crew_quarters/toilet)
-"awl" = (
-/obj/machinery/door/airlock{
- id_tag = "AuxShower";
- name = "Shower"
- },
-/turf/open/floor/plasteel{
- icon_state = "freezerfloor"
- },
-/area/crew_quarters/toilet)
-"awm" = (
-/obj/machinery/status_display{
- density = 0;
- layer = 4
- },
-/turf/closed/wall,
-/area/crew_quarters/fitness)
-"awn" = (
-/obj/structure/cable{
- tag = "icon-1-2";
- icon_state = "1-2"
- },
-/obj/machinery/door/airlock/glass{
- name = "Fitness"
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/fitness)
-"awo" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/closet/firecloset/full,
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"awp" = (
-/obj/item/paint/blue,
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"awq" = (
-/obj/item/device/multitool,
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"awr" = (
-/obj/structure/chair,
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"aws" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/toxins/xenobiology)
-"awt" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plating,
-/area/toxins/xenobiology)
-"awu" = (
-/obj/machinery/portable_atmospherics/canister/oxygen,
-/turf/open/floor/plating/airless/astplate{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/fpmaint{
- name = "Secure Workstations Maintenance"
- })
-"awv" = (
-/obj/structure/sign/xeno_warning_mining{
- pixel_x = -30
- },
-/turf/open/floor/noslip,
-/area/maintenance/fpmaint{
- name = "Secure Workstations Maintenance"
- })
-"aww" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/closet,
-/turf/open/floor/plating,
-/area/maintenance/fpmaint{
- name = "Secure Workstations Maintenance"
- })
-"awx" = (
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 0;
- name = "Air Out";
- on = 0
- },
-/turf/open/floor/plating,
-/area/maintenance/fpmaint{
- name = "Secure Workstations Maintenance"
- })
-"awy" = (
-/obj/machinery/light/small,
-/turf/open/floor/plating,
-/area/maintenance/fpmaint{
- name = "Secure Workstations Maintenance"
- })
-"awz" = (
-/obj/machinery/atmospherics/components/unary/tank/air,
-/turf/open/floor/plating,
-/area/maintenance/fpmaint{
- name = "Secure Workstations Maintenance"
- })
-"awA" = (
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 1;
- name = "Air In";
- on = 1
- },
-/turf/open/floor/plating,
-/area/maintenance/fpmaint{
- name = "Secure Workstations Maintenance"
- })
-"awB" = (
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 2;
- name = "Waste Out";
- on = 1
- },
-/turf/open/floor/plating,
-/area/maintenance/fpmaint{
- name = "Secure Workstations Maintenance"
- })
-"awC" = (
-/obj/structure/grille,
-/obj/item/shard,
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"awD" = (
-/obj/structure/reagent_dispensers/watertank,
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"awE" = (
-/obj/item/storage/firstaid,
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"awF" = (
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/turf/open/floor/plasteel/green,
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"awG" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel/green,
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"awH" = (
-/obj/machinery/power/apc{
- dir = 2;
- name = "Sleeping Room 1 APC";
- pixel_y = -24
- },
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel/green,
-/area/crew_quarters/sleep{
- name = "\improper Dormitory Suites"
- })
-"awI" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 8;
- initialize_directions = 11
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/turf/open/floor/plasteel/green/side{
- dir = 8
- },
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"awJ" = (
-/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
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/turf/open/floor/plasteel/green/side{
- dir = 4
- },
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"awK" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/closed/wall,
-/area/crew_quarters/toilet)
-"awL" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/structure/sink{
- icon_state = "sink";
- dir = 8;
- pixel_x = -12;
- pixel_y = 2
- },
-/obj/structure/mirror{
- pixel_x = -32
- },
-/turf/open/floor/plasteel{
- icon_state = "freezerfloor"
- },
-/area/crew_quarters/toilet)
-"awM" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/machinery/camera/autoname,
-/turf/open/floor/plasteel{
- icon_state = "freezerfloor"
- },
-/area/crew_quarters/toilet)
-"awN" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/machinery/airalarm{
- frequency = 1439;
- locked = 0;
- pixel_y = 23
- },
-/turf/open/floor/plasteel{
- icon_state = "freezerfloor"
- },
-/area/crew_quarters/toilet)
-"awO" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel{
- icon_state = "freezerfloor"
- },
-/area/crew_quarters/toilet)
-"awP" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 1
- },
-/turf/open/floor/plasteel{
- icon_state = "freezerfloor"
- },
-/area/crew_quarters/toilet)
-"awQ" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/machinery/shower{
- dir = 8
- },
-/turf/open/floor/plasteel{
- icon_state = "freezerfloor"
- },
-/area/crew_quarters/toilet)
-"awR" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/closed/wall,
-/area/crew_quarters/fitness)
-"awS" = (
-/obj/structure/closet/boxinggloves,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/fitness)
-"awT" = (
-/obj/structure/closet/athletic_mixed,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/fitness)
-"awU" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 10
- },
-/obj/machinery/light{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/fitness)
-"awV" = (
-/obj/structure/cable{
- tag = "icon-1-2";
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/fitness)
-"awW" = (
-/turf/open/floor/plasteel,
-/area/crew_quarters/fitness)
-"awX" = (
-/obj/item/device/radio/intercom{
- name = "Station Intercom";
- pixel_x = 0;
- pixel_y = 24
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/fitness)
-"awY" = (
-/obj/machinery/computer/arcade,
-/turf/open/floor/plasteel,
-/area/crew_quarters/fitness)
-"awZ" = (
-/obj/structure/chair/stool,
-/turf/open/floor/plasteel,
-/area/crew_quarters/fitness)
-"axa" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/door/firedoor,
-/turf/open/floor/plating,
-/area/crew_quarters/fitness)
-"axb" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/closet/emcloset,
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"axc" = (
-/obj/structure/closet/secure_closet/bar,
-/turf/open/floor/plating,
-/area/maintenance/fpmaint{
- name = "Secure Workstations Maintenance"
- })
-"axd" = (
-/obj/structure/chair{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/fpmaint{
- name = "Secure Workstations Maintenance"
- })
-"axe" = (
-/obj/structure/chair,
-/turf/open/floor/plating,
-/area/maintenance/fpmaint{
- name = "Secure Workstations Maintenance"
- })
-"axf" = (
-/obj/structure/table,
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/open/floor/plating,
-/area/maintenance/fpmaint{
- name = "Secure Workstations Maintenance"
- })
-"axg" = (
-/obj/structure/table,
-/obj/item/chair,
-/turf/open/floor/plating,
-/area/maintenance/fpmaint{
- name = "Secure Workstations Maintenance"
- })
-"axh" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/closed/wall,
-/area/maintenance/fpmaint{
- name = "Secure Workstations Maintenance"
- })
-"axi" = (
-/obj/machinery/door/airlock/maintenance_hatch{
- name = "Secure Workstations Distro"
- },
-/turf/open/floor/plating,
-/area/maintenance/fpmaint{
- name = "Secure Workstations Maintenance"
- })
-"axj" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/closed/wall,
-/area/maintenance/fpmaint{
- name = "Secure Workstations Maintenance"
- })
-"axk" = (
-/obj/structure/grille,
-/obj/item/shard{
- icon_state = "medium"
- },
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"axl" = (
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel/green,
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"axm" = (
-/turf/closed/wall,
-/area/crew_quarters/sleep{
- name = "\improper Dormitory Suites"
- })
-"axn" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock{
- id_tag = "cabin1";
- name = "Cabin 1"
- },
-/turf/open/floor/carpet,
-/area/crew_quarters/sleep{
- name = "\improper Dormitory Suites"
- })
-"axo" = (
-/obj/machinery/light{
- dir = 8
- },
-/obj/structure/sink{
- icon_state = "sink";
- dir = 8;
- pixel_x = -12;
- pixel_y = 2
- },
-/obj/structure/mirror{
- pixel_x = -32
- },
-/turf/open/floor/plasteel{
- icon_state = "freezerfloor"
- },
-/area/crew_quarters/toilet)
-"axp" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 4;
- name = "regular air vent";
- on = 1
- },
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plasteel{
- icon_state = "freezerfloor"
- },
-/area/crew_quarters/toilet)
-"axq" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 10
- },
-/turf/open/floor/plasteel{
- icon_state = "freezerfloor"
- },
-/area/crew_quarters/toilet)
-"axr" = (
-/turf/open/floor/plasteel{
- icon_state = "freezerfloor"
- },
-/area/crew_quarters/toilet)
-"axs" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 1;
- name = "regular air scrubber";
- on = 1
- },
-/obj/item/bikehorn/rubberducky,
-/turf/open/floor/plasteel{
- icon_state = "freezerfloor"
- },
-/area/crew_quarters/toilet)
-"axt" = (
-/obj/machinery/shower{
- dir = 8
- },
-/turf/open/floor/plasteel{
- icon_state = "freezerfloor"
- },
-/area/crew_quarters/toilet)
-"axu" = (
-/obj/structure/cable{
- icon_state = "2-4";
- tag = "icon-2-8"
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/fitness)
-"axv" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/fitness)
-"axw" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 1;
- name = "regular air scrubber";
- on = 1
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/fitness)
-"axx" = (
-/obj/structure/cable{
- tag = "icon-1-8";
- icon_state = "1-8"
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/fitness)
-"axy" = (
-/obj/structure/chair/stool,
-/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
- },
-/turf/open/floor/plasteel/green/corner,
-/area/crew_quarters/fitness)
-"axz" = (
-/obj/structure/disposalpipe/segment,
-/turf/closed/wall,
-/area/crew_quarters/fitness)
-"axA" = (
-/obj/item/scalpel,
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"axB" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 5
- },
-/obj/structure/cable{
- tag = "icon-1-2";
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/maintenance/fpmaint{
- name = "Secure Workstations Maintenance"
- })
-"axC" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/maintenance/fpmaint{
- name = "Secure Workstations Maintenance"
- })
-"axD" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 1
- },
-/obj/machinery/light/small{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/maintenance/fpmaint{
- name = "Secure Workstations Maintenance"
- })
-"axE" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/structure/closet/emcloset,
-/obj/structure/sign/vacuum{
- pixel_y = 32
- },
-/turf/open/floor/plating,
-/area/maintenance/fpmaint{
- name = "Secure Workstations Maintenance"
- })
-"axF" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 9
- },
-/turf/closed/wall,
-/area/maintenance/fpmaint{
- name = "Secure Workstations Maintenance"
- })
-"axG" = (
-/obj/structure/closet/firecloset,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- req_access_txt = 1
- },
-/turf/open/floor/plating,
-/area/maintenance/fpmaint{
- name = "Secure Workstations Maintenance"
- })
-"axH" = (
-/obj/machinery/light/small{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/maintenance/fpmaint{
- name = "Secure Workstations Maintenance"
- })
-"axI" = (
-/obj/structure/closet/emcloset,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plating,
-/area/maintenance/fpmaint{
- name = "Secure Workstations Maintenance"
- })
-"axJ" = (
-/obj/machinery/door/airlock/maintenance{
- req_access_txt = "12"
- },
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"axK" = (
-/obj/structure/flora/grass/green,
-/turf/open/floor/plasteel,
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"axL" = (
-/obj/structure/dresser,
-/obj/item/device/radio/intercom{
- name = "Station Intercom";
- pixel_x = 0;
- pixel_y = 24
- },
-/turf/open/floor/carpet,
-/area/crew_quarters/sleep{
- name = "\improper Dormitory Suites"
- })
-"axM" = (
-/turf/open/floor/carpet,
-/area/crew_quarters/sleep{
- name = "\improper Dormitory Suites"
- })
-"axN" = (
-/obj/machinery/button/door{
- id = "cabin1";
- name = "Cabin Bolt Control 1";
- normaldoorcontrol = 1;
- pixel_x = 0;
- pixel_y = 25;
- req_access_txt = "0";
- specialfunctions = 4
- },
-/turf/open/floor/carpet,
-/area/crew_quarters/sleep{
- name = "\improper Dormitory Suites"
- })
-"axO" = (
-/obj/machinery/door/window/westleft,
-/turf/open/floor/plasteel{
- icon_state = "freezerfloor"
- },
-/area/crew_quarters/sleep{
- name = "\improper Dormitory Suites"
- })
-"axP" = (
-/turf/open/floor/plasteel{
- icon_state = "freezerfloor"
- },
-/area/crew_quarters/sleep{
- name = "\improper Dormitory Suites"
- })
-"axQ" = (
-/obj/machinery/shower{
- dir = 8
- },
-/turf/open/floor/plasteel{
- icon_state = "freezerfloor"
- },
-/area/crew_quarters/sleep{
- name = "\improper Dormitory Suites"
- })
-"axR" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/door/airlock{
- name = "Unisex Restrooms";
- req_access_txt = "0"
- },
-/turf/open/floor/plasteel{
- icon_state = "freezerfloor"
- },
-/area/crew_quarters/toilet)
-"axS" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel{
- icon_state = "freezerfloor"
- },
-/area/crew_quarters/toilet)
-"axT" = (
-/obj/structure/cable{
- tag = "icon-2-8";
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- req_access_txt = 1
- },
-/turf/open/floor/plasteel{
- icon_state = "freezerfloor"
- },
-/area/crew_quarters/toilet)
-"axU" = (
-/obj/machinery/light,
-/turf/open/floor/plasteel{
- icon_state = "freezerfloor"
- },
-/area/crew_quarters/toilet)
-"axV" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/fitness)
-"axW" = (
-/obj/structure/window/reinforced{
- dir = 8;
- pixel_x = 0
- },
-/obj/structure/window/reinforced{
- dir = 1;
- layer = 2.9
- },
-/turf/open/floor/plasteel{
- icon_state = "dark"
- },
-/area/crew_quarters/fitness)
-"axX" = (
-/obj/structure/window/reinforced{
- dir = 1;
- layer = 2.9
- },
-/turf/open/floor/plasteel{
- icon_state = "dark"
- },
-/area/crew_quarters/fitness)
-"axY" = (
-/obj/machinery/door/window/eastright{
- base_state = "left";
- icon_state = "left";
- name = "Fitness Ring"
- },
-/obj/structure/window/reinforced{
- dir = 1;
- layer = 2.9
- },
-/turf/open/floor/plasteel{
- icon_state = "dark"
- },
-/area/crew_quarters/fitness)
-"axZ" = (
-/turf/open/floor/plasteel/green/side{
- tag = "icon-green (EAST)";
- icon_state = "green";
- dir = 4
- },
-/area/crew_quarters/fitness)
-"aya" = (
-/obj/machinery/door/airlock/glass{
- name = "Holodeck Door"
- },
-/turf/open/floor/plasteel{
- icon_state = "dark"
- },
-/area/crew_quarters/fitness)
-"ayb" = (
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel{
- icon_state = "dark"
- },
-/area/crew_quarters/fitness)
-"ayc" = (
-/obj/machinery/camera/autoname,
-/turf/open/floor/plasteel{
- icon_state = "dark"
- },
-/area/crew_quarters/fitness)
-"ayd" = (
-/obj/structure/table,
-/obj/item/storage/firstaid/regular{
- pixel_x = 6;
- pixel_y = -5
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"aye" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 5
- },
-/turf/open/floor/plating,
-/area/maintenance/fpmaint{
- name = "Secure Workstations Maintenance"
- })
-"ayf" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4";
- tag = "90Curve"
- },
-/turf/open/floor/plating,
-/area/maintenance/fpmaint{
- name = "Secure Workstations Maintenance"
- })
-"ayg" = (
-/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/fpmaint{
- name = "Secure Workstations Maintenance"
- })
-"ayh" = (
-/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/plating,
-/area/maintenance/fpmaint{
- name = "Secure Workstations Maintenance"
- })
-"ayi" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 1
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plating,
-/area/maintenance/fpmaint{
- name = "Secure Workstations Maintenance"
- })
-"ayj" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/door/airlock/maintenance_hatch,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plating,
-/area/maintenance/fpmaint{
- name = "Secure Workstations Maintenance"
- })
-"ayk" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
- },
-/turf/open/floor/plating,
-/area/maintenance/fpmaint{
- name = "Secure Workstations Maintenance"
- })
-"ayl" = (
-/obj/machinery/door/airlock/maintenance_hatch,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/fpmaint{
- name = "Secure Workstations Maintenance"
- })
-"aym" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 9
- },
-/turf/open/floor/plating,
-/area/maintenance/fpmaint{
- name = "Secure Workstations Maintenance"
- })
-"ayn" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/table,
-/obj/item/shovel,
-/turf/open/floor/plating,
-/area/maintenance/fpmaint{
- name = "Secure Workstations Maintenance"
- })
-"ayo" = (
-/obj/structure/grille,
-/obj/structure/window/fulltile,
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"ayp" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/tinted/fulltile,
-/obj/machinery/door/firedoor/heavy,
-/turf/open/floor/plating,
-/area/crew_quarters/sleep{
- name = "\improper Dormitory Suites"
- })
-"ayq" = (
-/obj/structure/chair/stool,
-/turf/open/floor/carpet,
-/area/crew_quarters/sleep{
- name = "\improper Dormitory Suites"
- })
-"ayr" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 4;
- name = "regular air scrubber";
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/turf/open/floor/carpet,
-/area/crew_quarters/sleep{
- name = "\improper Dormitory Suites"
- })
-"ays" = (
-/obj/machinery/airalarm{
- dir = 8;
- icon_state = "alarm0";
- pixel_x = 24
- },
-/obj/structure/table/wood,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/carpet,
-/area/crew_quarters/sleep{
- name = "\improper Dormitory Suites"
- })
-"ayt" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/closed/wall,
-/area/crew_quarters/sleep{
- name = "\improper Dormitory Suites"
- })
-"ayu" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/structure/toilet{
- dir = 4
- },
-/turf/open/floor/plasteel{
- icon_state = "freezerfloor"
- },
-/area/crew_quarters/sleep{
- name = "\improper Dormitory Suites"
- })
-"ayv" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/machinery/light/small{
- dir = 4
- },
-/turf/open/floor/plasteel{
- icon_state = "freezerfloor"
- },
-/area/crew_quarters/sleep{
- name = "\improper Dormitory Suites"
- })
-"ayw" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 4;
- initialize_directions = 11
- },
-/turf/open/floor/plasteel/green/side{
- dir = 8
- },
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"ayx" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 8;
- initialize_directions = 11
- },
-/turf/open/floor/plasteel/green/side{
- dir = 4
- },
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"ayy" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/closed/wall,
-/area/crew_quarters/toilet)
-"ayz" = (
-/obj/machinery/power/apc{
- dir = 4;
- name = "Dormitory Bathrooms APC";
- pixel_x = 26;
- pixel_y = 0
- },
-/obj/structure/cable,
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
-/turf/open/floor/plasteel{
- icon_state = "freezerfloor"
- },
-/area/crew_quarters/toilet)
-"ayA" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/closed/wall,
-/area/crew_quarters/fitness)
-"ayB" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/fitness)
-"ayC" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/item/device/radio/beacon,
-/turf/open/floor/plasteel,
-/area/crew_quarters/fitness)
-"ayD" = (
-/obj/structure/window/reinforced{
- dir = 8;
- pixel_x = 0
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel{
- icon_state = "dark"
- },
-/area/crew_quarters/fitness)
-"ayE" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plasteel{
- icon_state = "dark"
- },
-/area/crew_quarters/fitness)
-"ayF" = (
-/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel{
- icon_state = "dark"
- },
-/area/crew_quarters/fitness)
-"ayG" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/holopad,
-/turf/open/floor/plasteel,
-/area/crew_quarters/fitness)
-"ayH" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 8;
- name = "regular air vent";
- on = 1
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/fitness)
-"ayI" = (
-/obj/structure/table,
-/obj/item/stack/medical/ointment{
- pixel_x = -3;
- pixel_y = 3
- },
-/obj/item/stack/medical/gauze,
-/obj/item/stack/medical/bruise_pack,
-/turf/open/floor/plasteel/redgreen/side{
- tag = "icon-redgreen (EAST)";
- icon_state = "redgreen";
- dir = 4
- },
-/area/crew_quarters/fitness)
-"ayJ" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/computer/holodeck,
-/turf/open/floor/plasteel{
- icon_state = "dark"
- },
-/area/crew_quarters/fitness)
-"ayK" = (
-/turf/open/floor/plasteel{
- icon_state = "dark"
- },
-/area/crew_quarters/fitness)
-"ayL" = (
-/obj/machinery/sleeper{
- icon_state = "sleeper-open";
- dir = 8
- },
-/obj/effect/decal/remains/human,
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"ayM" = (
-/obj/machinery/door/airlock/maintenance_hatch,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/turf/open/floor/plating,
-/area/maintenance/fpmaint{
- name = "Secure Workstations Maintenance"
- })
-"ayN" = (
-/obj/effect/decal/cleanable/robot_debris,
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"ayO" = (
-/obj/structure/table/wood,
-/turf/open/floor/carpet,
-/area/crew_quarters/sleep{
- name = "\improper Dormitory Suites"
- })
-"ayP" = (
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/carpet,
-/area/crew_quarters/sleep{
- name = "\improper Dormitory Suites"
- })
-"ayQ" = (
-/obj/machinery/firealarm{
- dir = 4;
- pixel_x = 28;
- pixel_y = 0
- },
-/obj/structure/table/wood,
-/obj/machinery/light{
- icon_state = "tube1";
- dir = 4
- },
-/turf/open/floor/carpet,
-/area/crew_quarters/sleep{
- name = "\improper Dormitory Suites"
- })
-"ayR" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/camera/autoname{
- tag = "icon-camera (WEST)";
- icon_state = "camera";
- dir = 8
- },
-/turf/open/floor/plasteel/green/side{
- dir = 4
- },
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"ayS" = (
-/obj/structure/toilet,
-/obj/machinery/light/small{
- dir = 1
- },
-/turf/open/floor/plasteel{
- icon_state = "freezerfloor"
- },
-/area/crew_quarters/toilet)
-"ayT" = (
-/obj/machinery/door/airlock{
- name = "Unisex Restrooms";
- req_access_txt = "0"
- },
-/turf/open/floor/plasteel{
- icon_state = "freezerfloor"
- },
-/area/crew_quarters/toilet)
-"ayU" = (
-/obj/machinery/light/small{
- dir = 1
- },
-/obj/structure/toilet,
-/turf/open/floor/plasteel{
- icon_state = "freezerfloor"
- },
-/area/crew_quarters/toilet)
-"ayV" = (
-/obj/structure/closet/lasertag/red,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/fitness)
-"ayW" = (
-/obj/structure/window/reinforced,
-/obj/machinery/door/window/eastright{
- base_state = "left";
- dir = 8;
- icon_state = "left";
- name = "Fitness Ring"
- },
-/turf/open/floor/plasteel{
- icon_state = "dark"
- },
-/area/crew_quarters/fitness)
-"ayX" = (
-/obj/structure/window/reinforced,
-/turf/open/floor/plasteel{
- icon_state = "dark"
- },
-/area/crew_quarters/fitness)
-"ayY" = (
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
- },
-/turf/open/floor/plasteel{
- icon_state = "dark"
- },
-/area/crew_quarters/fitness)
-"ayZ" = (
-/turf/open/floor/plasteel/red/side{
- tag = "icon-red (EAST)";
- icon_state = "red";
- dir = 4
- },
-/area/crew_quarters/fitness)
-"aza" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/chair/stool,
-/obj/machinery/light{
- dir = 8
- },
-/turf/open/floor/plasteel{
- icon_state = "dark"
- },
-/area/crew_quarters/fitness)
-"azb" = (
-/obj/machinery/door/airlock/glass{
- name = "Secure Workstations Access"
- },
-/obj/structure/sign/securearea{
- pixel_y = 32
- },
-/turf/open/floor/plasteel,
-/area/construction/hallway{
- name = "Secure Workstations Hallway"
- })
-"azc" = (
-/turf/open/floor/plasteel/red/corner{
- tag = "icon-redcorner (EAST)";
- icon_state = "redcorner";
- dir = 4
- },
-/area/construction/hallway{
- name = "Secure Workstations Hallway"
- })
-"azd" = (
-/obj/machinery/light{
- dir = 1
- },
-/turf/open/floor/plasteel/red/corner{
- tag = "icon-redcorner (EAST)";
- icon_state = "redcorner";
- dir = 4
- },
-/area/construction/hallway{
- name = "Secure Workstations Hallway"
- })
-"aze" = (
-/obj/machinery/camera/autoname{
- tag = "icon-camera (SOUTHEAST)";
- icon_state = "camera";
- dir = 6
- },
-/turf/open/floor/plasteel/red/corner{
- tag = "icon-redcorner (EAST)";
- icon_state = "redcorner";
- dir = 4
- },
-/area/construction/hallway{
- name = "Secure Workstations Hallway"
- })
-"azf" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 1;
- name = "regular air scrubber";
- on = 1
- },
-/turf/open/floor/plasteel/red/corner{
- tag = "icon-redcorner (EAST)";
- icon_state = "redcorner";
- dir = 4
- },
-/area/construction/hallway{
- name = "Secure Workstations Hallway"
- })
-"azg" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- req_access_txt = 1
- },
-/turf/open/floor/plasteel/red/corner{
- tag = "icon-redcorner (EAST)";
- icon_state = "redcorner";
- dir = 4
- },
-/area/construction/hallway{
- name = "Secure Workstations Hallway"
- })
-"azh" = (
-/obj/structure/sign/securearea{
- pixel_x = 32
- },
-/turf/open/floor/plasteel{
- icon_state = "delivery"
- },
-/area/construction/hallway{
- name = "Secure Workstations Hallway"
- })
-"azi" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 1;
- name = "regular air scrubber";
- on = 1
- },
-/obj/machinery/camera/autoname,
-/turf/open/floor/plasteel,
-/area/construction/hallway{
- name = "Secure Workstations Hallway"
- })
-"azj" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/turf/open/floor/plasteel,
-/area/construction/hallway{
- name = "Secure Workstations Hallway"
- })
-"azk" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- req_access_txt = 1
- },
-/obj/machinery/light/small{
- dir = 1
- },
-/obj/structure/sign/securearea{
- pixel_x = 32
- },
-/turf/open/floor/plasteel,
-/area/construction/hallway{
- name = "Secure Workstations Hallway"
- })
-"azl" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 4;
- name = "regular air scrubber";
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel,
-/area/construction/hallway{
- name = "Secure Workstations Hallway"
- })
-"azm" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/construction/hallway{
- name = "Secure Workstations Hallway"
- })
-"azn" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/construction/hallway{
- name = "Secure Workstations Hallway"
- })
-"azo" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 4
- },
-/obj/machinery/camera/autoname{
- tag = "icon-camera (NORTHWEST)";
- icon_state = "camera";
- dir = 9
- },
-/turf/open/floor/plasteel,
-/area/construction/hallway{
- name = "Secure Workstations Hallway"
- })
-"azp" = (
-/obj/machinery/recharge_station,
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"azq" = (
-/obj/item/robot_suit,
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"azr" = (
-/obj/item/bodypart/chest/robot,
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"azs" = (
-/obj/structure/table,
-/obj/machinery/juicer,
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"azt" = (
-/obj/structure/rack,
-/obj/item/bodypart/head/robot,
-/obj/item/bodypart/l_arm/robot,
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"azu" = (
-/obj/structure/rack,
-/obj/item/bodypart/l_leg/robot,
-/obj/item/bodypart/r_arm/robot,
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"azv" = (
-/obj/structure/rack,
-/obj/item/bodypart/r_leg/robot,
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"azw" = (
-/obj/structure/bed,
-/obj/item/bedsheet/purple,
-/turf/open/floor/carpet,
-/area/crew_quarters/sleep{
- name = "\improper Dormitory Suites"
- })
-"azx" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 4;
- name = "regular air vent";
- on = 1
- },
-/turf/open/floor/carpet,
-/area/crew_quarters/sleep{
- name = "\improper Dormitory Suites"
- })
-"azy" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/carpet,
-/area/crew_quarters/sleep{
- name = "\improper Dormitory Suites"
- })
-"azz" = (
-/obj/item/storage/secure/safe{
- pixel_y = 32
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/carpet,
-/area/crew_quarters/sleep{
- name = "\improper Dormitory Suites"
- })
-"azA" = (
-/obj/structure/closet/secure_closet/personal/cabinet,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/carpet,
-/area/crew_quarters/sleep{
- name = "\improper Dormitory Suites"
- })
-"azB" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/closed/wall,
-/area/crew_quarters/sleep{
- name = "\improper Dormitory Suites"
- })
-"azC" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/light{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/green/side{
- dir = 8
- },
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"azD" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/green/side{
- dir = 4
- },
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"azE" = (
-/obj/machinery/door/airlock{
- id_tag = "Toilet1";
- name = "Unit 1"
- },
-/turf/open/floor/plasteel{
- icon_state = "freezerfloor"
- },
-/area/crew_quarters/toilet)
-"azF" = (
-/obj/machinery/door/airlock{
- name = "Unit 2"
- },
-/turf/open/floor/plasteel{
- icon_state = "freezerfloor"
- },
-/area/crew_quarters/toilet)
-"azG" = (
-/obj/machinery/door/airlock{
- id_tag = "AuxToilet3";
- name = "Unit 3"
- },
-/turf/open/floor/plasteel{
- icon_state = "freezerfloor"
- },
-/area/crew_quarters/toilet)
-"azH" = (
-/obj/structure/closet/lasertag/blue,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/fitness)
-"azI" = (
-/obj/structure/chair/stool,
-/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
- },
-/turf/open/floor/plasteel/red/corner{
- tag = "icon-redcorner (EAST)";
- icon_state = "redcorner";
- dir = 4
- },
-/area/crew_quarters/fitness)
-"azJ" = (
-/obj/machinery/door/airlock/maintenance_hatch{
- name = "Fitness room maintenance hatch"
- },
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"azK" = (
-/obj/machinery/light{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/construction/hallway{
- name = "Secure Workstations Hallway"
- })
-"azL" = (
-/obj/machinery/door/airlock/glass{
- name = "Secure Workstations Access"
- },
-/turf/open/floor/plasteel,
-/area/construction/hallway{
- name = "Secure Workstations Hallway"
- })
-"azM" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- req_access_txt = 1
- },
-/turf/open/floor/plasteel,
-/area/construction/hallway{
- name = "Secure Workstations Hallway"
- })
-"azN" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4";
- tag = ""
- },
-/turf/open/floor/plasteel,
-/area/construction/hallway{
- name = "Secure Workstations Hallway"
- })
-"azO" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- req_access_txt = 1
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0;
- tag = ""
- },
-/turf/open/floor/plasteel,
-/area/construction/hallway{
- name = "Secure Workstations Hallway"
- })
-"azP" = (
-/obj/machinery/door/airlock/highsecurity{
- name = "Secure Workstations";
- req_access_txt = "0";
- req_one_access_txt = "39; 63; 55; 19"
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0;
- tag = ""
- },
-/turf/open/floor/plasteel,
-/area/construction/hallway{
- name = "Secure Workstations Hallway"
- })
-"azQ" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0;
- tag = ""
- },
-/turf/open/floor/plasteel{
- icon_state = "delivery"
- },
-/area/construction/hallway{
- name = "Secure Workstations Hallway"
- })
-"azR" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0;
- tag = ""
- },
-/turf/open/floor/plasteel,
-/area/construction/hallway{
- name = "Secure Workstations Hallway"
- })
-"azS" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0;
- tag = ""
- },
-/mob/living/simple_animal/bot/secbot/beepsky{
- name = "Officer Beepsky"
- },
-/turf/open/floor/plasteel,
-/area/construction/hallway{
- name = "Secure Workstations Hallway"
- })
-"azT" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/navbeacon{
- codes_txt = "patrol;next_patrol=EVA";
- location = "Security"
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0;
- tag = ""
- },
-/turf/open/floor/plasteel,
-/area/construction/hallway{
- name = "Secure Workstations Hallway"
- })
-"azU" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
- },
-/turf/open/floor/plasteel,
-/area/construction/hallway{
- name = "Secure Workstations Hallway"
- })
-"azV" = (
-/turf/closed/wall,
-/area/library)
-"azW" = (
-/obj/machinery/door/airlock/maintenance{
- name = "Game Room Maintenance"
- },
-/turf/open/floor/plating,
-/area/library)
-"azX" = (
-/obj/machinery/power/apc{
- dir = 2;
- name = "Fitness Room APC";
- pixel_x = 0;
- pixel_y = -24
- },
-/obj/structure/cable,
-/turf/open/floor/plasteel,
-/area/crew_quarters/fitness)
-"azY" = (
-/obj/structure/table,
-/obj/item/storage/firstaid/regular,
-/turf/open/floor/plasteel,
-/area/crew_quarters/fitness)
-"azZ" = (
-/obj/structure/table,
-/turf/open/floor/plasteel,
-/area/crew_quarters/fitness)
-"aAa" = (
-/obj/machinery/light,
-/obj/structure/chair/stool,
-/turf/open/floor/plasteel,
-/area/crew_quarters/fitness)
-"aAb" = (
-/obj/structure/chair/stool,
-/obj/machinery/camera/autoname{
- tag = "icon-camera (NORTH)";
- icon_state = "camera";
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/fitness)
-"aAc" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/closet/wardrobe/yellow,
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"aAd" = (
-/turf/closed/mineral/diamond,
-/area/ruin/unpowered{
- name = "Asteroid"
- })
-"aAe" = (
-/turf/open/floor/plasteel/red/corner{
- tag = "icon-redcorner (WEST)";
- icon_state = "redcorner";
- dir = 8
- },
-/area/construction/hallway{
- name = "Secure Workstations Hallway"
- })
-"aAf" = (
-/obj/machinery/light,
-/turf/open/floor/plasteel/red/corner{
- tag = "icon-redcorner (WEST)";
- icon_state = "redcorner";
- dir = 8
- },
-/area/construction/hallway{
- name = "Secure Workstations Hallway"
- })
-"aAg" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- tag = "icon-vent_map (NORTH)";
- name = "regular air vent";
- icon_state = "vent_map";
- dir = 1;
- on = 1
- },
-/turf/open/floor/plasteel/red/corner{
- tag = "icon-redcorner (WEST)";
- icon_state = "redcorner";
- dir = 8
- },
-/area/construction/hallway{
- name = "Secure Workstations Hallway"
- })
-"aAh" = (
-/obj/structure/closet/emcloset,
-/turf/open/floor/plasteel{
- icon_state = "delivery"
- },
-/area/construction/hallway{
- name = "Secure Workstations Hallway"
- })
-"aAi" = (
-/obj/machinery/light/small,
-/obj/structure/sign/securearea{
- pixel_x = -32
- },
-/turf/open/floor/plasteel,
-/area/construction/hallway{
- name = "Secure Workstations Hallway"
- })
-"aAj" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- tag = "icon-vent_map (NORTH)";
- name = "regular air vent";
- icon_state = "vent_map";
- dir = 1;
- on = 1
- },
-/obj/structure/sign/vacuum{
- pixel_y = -32
- },
-/turf/open/floor/plasteel,
-/area/construction/hallway{
- name = "Secure Workstations Hallway"
- })
-"aAk" = (
-/obj/structure/sign/securearea{
- pixel_x = -32
- },
-/obj/structure/closet/emcloset,
-/turf/open/floor/plasteel{
- icon_state = "delivery"
- },
-/area/construction/hallway{
- name = "Secure Workstations Hallway"
- })
-"aAl" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 4;
- name = "regular air vent";
- on = 1
- },
-/turf/open/floor/plasteel,
-/area/construction/hallway{
- name = "Secure Workstations Hallway"
- })
-"aAm" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- tag = "icon-manifold-b-f (EAST)";
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/construction/hallway{
- name = "Secure Workstations Hallway"
- })
-"aAn" = (
-/obj/machinery/navbeacon{
- codes_txt = "patrol;next_patrol=Security";
- location = "EVA2"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/construction/hallway{
- name = "Secure Workstations Hallway"
- })
-"aAo" = (
-/turf/open/floor/wood{
- baseturf = /turf/open/floor/plating/asteroid
- },
-/area/library)
-"aAp" = (
-/obj/structure/noticeboard{
- desc = "A board for pinning important game notes on..";
- name = "Game Board";
- pixel_y = 32
- },
-/obj/machinery/holopad,
-/turf/open/floor/wood{
- baseturf = /turf/open/floor/plating/asteroid
- },
-/area/library)
-"aAq" = (
-/obj/machinery/status_display{
- density = 0;
- layer = 4;
- pixel_x = 32;
- pixel_y = 32
- },
-/obj/machinery/camera/autoname,
-/turf/open/floor/wood{
- baseturf = /turf/open/floor/plating/asteroid
- },
-/area/library)
-"aAr" = (
-/obj/machinery/photocopier,
-/turf/open/floor/wood{
- baseturf = /turf/open/floor/plating/asteroid
- },
-/area/library)
-"aAs" = (
-/obj/structure/bookcase/random/adult,
-/turf/open/floor/wood,
-/area/library)
-"aAt" = (
-/obj/structure/table/wood,
-/obj/item/device/camera_film,
-/obj/item/device/camera_film,
-/obj/item/device/camera,
-/turf/open/floor/wood,
-/area/library)
-"aAu" = (
-/obj/structure/bookcase{
- name = "Forbidden Knowledge"
- },
-/turf/open/floor/wood,
-/area/library)
-"aAv" = (
-/obj/structure/filingcabinet,
-/turf/open/floor/wood,
-/area/library)
-"aAw" = (
-/turf/open/floor/plasteel/green,
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"aAx" = (
-/obj/machinery/door/firedoor,
-/turf/open/floor/plasteel/green,
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"aAy" = (
-/obj/machinery/light,
-/turf/open/floor/plasteel/green,
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"aAz" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/closet/wardrobe/green,
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"aAA" = (
-/obj/machinery/door/airlock/maintenance_hatch,
-/turf/open/floor/noslip,
-/area/construction/hallway{
- name = "Secure Workstations Hallway"
- })
-"aAB" = (
-/obj/machinery/door/airlock/glass{
- name = "Secure Workstations Access"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/sign/securearea{
- pixel_x = -32
- },
-/turf/open/floor/plasteel,
-/area/construction/hallway{
- name = "Secure Workstations Hallway"
- })
-"aAC" = (
-/obj/machinery/door/airlock/glass{
- name = "Secure Workstations Access"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel,
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"aAD" = (
-/obj/machinery/light{
- icon_state = "tube1";
- dir = 8
- },
-/turf/open/floor/wood{
- baseturf = /turf/open/floor/plating/asteroid
- },
-/area/library)
-"aAE" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 6
- },
-/obj/structure/chair/comfy/brown{
- dir = 4
- },
-/turf/open/floor/carpet,
-/area/library)
-"aAF" = (
-/obj/structure/table/wood,
-/obj/item/device/paicard,
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 1
- },
-/turf/open/floor/carpet,
-/area/library)
-"aAG" = (
-/obj/structure/chair/office/dark,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/carpet,
-/area/library)
-"aAH" = (
-/obj/structure/table/wood,
-/obj/item/device/laser_pointer/blue,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/carpet,
-/area/library)
-"aAI" = (
-/obj/structure/chair/comfy/brown{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/carpet,
-/area/library)
-"aAJ" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/wood{
- baseturf = /turf/open/floor/plating/asteroid
- },
-/area/library)
-"aAK" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/closed/wall,
-/area/library)
-"aAL" = (
-/obj/item/device/radio/intercom{
- dir = 0;
- name = "Station Intercom (General)";
- pixel_x = -27;
- pixel_y = 0
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/wood,
-/area/library)
-"aAM" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/wood,
-/area/library)
-"aAN" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 8;
- name = "regular air scrubber";
- on = 1;
- scrub_Toxins = 0
- },
-/turf/open/floor/wood,
-/area/library)
-"aAO" = (
-/turf/open/floor/wood,
-/area/library)
-"aAP" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/tinted/fulltile,
-/obj/machinery/door/firedoor,
-/turf/open/floor/plating,
-/area/library)
-"aAQ" = (
-/turf/closed/wall,
-/area/crew_quarters/cafeteria{
- name = "Cafe"
- })
-"aAR" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/door/firedoor,
-/turf/open/floor/plating,
-/area/crew_quarters/cafeteria{
- name = "Cafe"
- })
-"aAS" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4";
- tag = "90Curve"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 5
- },
-/turf/open/floor/plasteel/green/corner{
- dir = 4
- },
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"aAT" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/green/side{
- dir = 1
- },
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"aAU" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/light{
- dir = 1
- },
-/turf/open/floor/plasteel/green/side{
- dir = 1
- },
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"aAV" = (
-/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/supply/hidden{
- dir = 10
- },
-/turf/open/floor/plasteel/green/side{
- dir = 5
- },
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"aAW" = (
-/obj/structure/cable{
- tag = "icon-2-8";
- icon_state = "2-8"
- },
-/obj/structure/closet/wardrobe/grey,
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"aAX" = (
-/obj/structure/closet/wardrobe/yellow,
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"aAY" = (
-/obj/structure/closet/wardrobe/pink,
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"aAZ" = (
-/obj/structure/disposalpipe/segment,
-/turf/closed/wall,
-/area/maintenance/fore)
-"aBa" = (
-/obj/structure/table/wood,
-/obj/machinery/chem_dispenser/drinks/beer{
- name = "dusty old booze dispenser"
- },
-/obj/effect/decal/cleanable/cobweb,
-/turf/open/floor/wood{
- baseturf = /turf/open/floor/plating/asteroid
- },
-/area/maintenance/fore)
-"aBb" = (
-/obj/machinery/smartfridge/drinks{
- icon_state = "boozeomat";
- name = "dusty old drink showcase"
- },
-/turf/open/floor/wood{
- baseturf = /turf/open/floor/plating/asteroid
- },
-/area/maintenance/fore)
-"aBc" = (
-/obj/structure/table/wood,
-/obj/structure/reagent_dispensers/beerkeg,
-/obj/machinery/light/small{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"aBd" = (
-/obj/structure/chair/stool,
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"aBe" = (
-/turf/open/floor/wood{
- icon_state = "wood-broken4"
- },
-/area/maintenance/fore)
-"aBf" = (
-/turf/open/floor/wood{
- baseturf = /turf/open/floor/plating/asteroid
- },
-/area/maintenance/fore)
-"aBg" = (
-/turf/open/floor/wood{
- icon_state = "wood-broken6"
- },
-/area/maintenance/fore)
-"aBh" = (
-/obj/machinery/door/airlock/maintenance_hatch,
-/turf/open/floor/wood{
- baseturf = /turf/open/floor/plating/asteroid
- },
-/area/maintenance/fore)
-"aBi" = (
-/obj/structure/bed,
-/turf/open/floor/carpet,
-/area/maintenance/fore)
-"aBj" = (
-/obj/structure/table,
-/obj/item/storage/fancy/candle_box,
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"aBk" = (
-/obj/machinery/portable_atmospherics/canister/air,
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"aBl" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/red/corner{
- dir = 1
- },
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"aBm" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/red/corner,
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"aBn" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/chair/comfy/brown{
- dir = 4
- },
-/turf/open/floor/carpet,
-/area/library)
-"aBo" = (
-/obj/structure/table/wood,
-/obj/item/toy/cards/deck,
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 1;
- name = "regular air scrubber";
- on = 1
- },
-/turf/open/floor/carpet,
-/area/library)
-"aBp" = (
-/obj/structure/table/wood,
-/obj/item/storage/pill_bottle/dice,
-/turf/open/floor/carpet,
-/area/library)
-"aBq" = (
-/obj/structure/table/wood,
-/turf/open/floor/carpet,
-/area/library)
-"aBr" = (
-/obj/structure/chair/comfy/brown{
- dir = 8
- },
-/turf/open/floor/carpet,
-/area/library)
-"aBs" = (
-/obj/structure/table/wood,
-/obj/item/folder,
-/turf/open/floor/wood{
- baseturf = /turf/open/floor/plating/asteroid
- },
-/area/library)
-"aBt" = (
-/obj/machinery/power/apc{
- dir = 8;
- name = "Library APC";
- pixel_x = -25
- },
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/turf/open/floor/wood,
-/area/library)
-"aBu" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/turf/open/floor/wood,
-/area/library)
-"aBv" = (
-/obj/effect/landmark/start{
- name = "Curator"
- },
-/turf/open/floor/wood,
-/area/library)
-"aBw" = (
-/obj/machinery/light/small{
- dir = 4
- },
-/turf/open/floor/wood,
-/area/library)
-"aBx" = (
-/obj/machinery/light/small/built{
- tag = "icon-bulb1 (WEST)";
- icon_state = "bulb1";
- dir = 8
- },
-/obj/machinery/airalarm{
- frequency = 1439;
- locked = 0;
- pixel_y = 23
- },
-/turf/open/floor/wood,
-/area/crew_quarters/cafeteria{
- name = "Cafe"
- })
-"aBy" = (
-/turf/open/floor/wood,
-/area/crew_quarters/cafeteria{
- name = "Cafe"
- })
-"aBz" = (
-/obj/structure/chair/wood/normal{
- icon_state = "wooden_chair";
- dir = 4
- },
-/turf/open/floor/wood,
-/area/crew_quarters/cafeteria{
- name = "Cafe"
- })
-"aBA" = (
-/obj/structure/table/wood/fancy,
-/obj/item/candle,
-/obj/machinery/light/small/built{
- tag = "icon-bulb1 (EAST)";
- icon_state = "bulb1";
- dir = 4
- },
-/turf/open/floor/wood,
-/area/crew_quarters/cafeteria{
- name = "Cafe"
- })
-"aBB" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 5
- },
-/turf/open/floor/plasteel/green/side{
- dir = 10
- },
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"aBC" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 1
- },
-/turf/open/floor/plasteel/green/side,
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"aBD" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"aBE" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/green/side,
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"aBF" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 10
- },
-/turf/open/floor/plasteel/green/corner{
- dir = 8
- },
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"aBG" = (
-/obj/structure/cable{
- tag = "icon-1-2";
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/green/side{
- dir = 4
- },
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"aBH" = (
-/obj/structure/closet/crate{
- icon_state = "crateopen";
- opened = 1
- },
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"aBI" = (
-/obj/structure/cable{
- tag = "icon-1-2";
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"aBJ" = (
-/obj/structure/table/wood,
-/turf/open/floor/wood{
- baseturf = /turf/open/floor/plating/asteroid
- },
-/area/maintenance/fore)
-"aBK" = (
-/obj/structure/chair/stool,
-/turf/open/floor/wood{
- baseturf = /turf/open/floor/plating/asteroid
- },
-/area/maintenance/fore)
-"aBL" = (
-/turf/open/floor/wood{
- icon_state = "wood-broken5"
- },
-/area/maintenance/fore)
-"aBM" = (
-/obj/structure/table/wood,
-/obj/item/stack/tile/wood{
- amount = 50
- },
-/turf/open/floor/wood{
- baseturf = /turf/open/floor/plating/asteroid
- },
-/area/maintenance/fore)
-"aBN" = (
-/obj/structure/closet,
-/turf/open/floor/wood{
- icon_state = "wood-broken7"
- },
-/area/maintenance/fore)
-"aBO" = (
-/turf/open/floor/wood{
- icon_state = "wood-broken"
- },
-/area/maintenance/fore)
-"aBP" = (
-/obj/structure/table,
-/obj/item/device/laser_pointer/blue,
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"aBQ" = (
-/obj/structure/closet/firecloset,
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"aBR" = (
-/obj/machinery/portable_atmospherics/canister/oxygen,
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"aBS" = (
-/obj/structure/rack,
-/obj/item/storage/pill_bottle/dice,
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"aBT" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/camera/autoname{
- tag = "icon-camera (NORTHEAST)";
- icon_state = "camera";
- dir = 5
- },
-/turf/open/floor/plasteel/red/corner{
- dir = 1
- },
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"aBU" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/carpet,
-/area/library)
-"aBV" = (
-/obj/structure/chair/comfy/brown{
- dir = 1
- },
-/turf/open/floor/carpet,
-/area/library)
-"aBW" = (
-/obj/structure/chair/comfy/brown{
- dir = 1
- },
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/carpet,
-/area/library)
-"aBX" = (
-/turf/open/floor/carpet,
-/area/library)
-"aBY" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- name = "regular air vent";
- on = 1
- },
-/turf/open/floor/wood{
- baseturf = /turf/open/floor/plating/asteroid
- },
-/area/library)
-"aBZ" = (
-/obj/structure/table/wood,
-/obj/item/paper_bin,
-/obj/machinery/light{
- icon_state = "tube1";
- dir = 4
- },
-/turf/open/floor/wood{
- baseturf = /turf/open/floor/plating/asteroid
- },
-/area/library)
-"aCa" = (
-/obj/machinery/camera/autoname{
- tag = "icon-camera (EAST)";
- icon_state = "camera";
- dir = 4
- },
-/obj/item/storage/bag/books,
-/turf/open/floor/wood,
-/area/library)
-"aCb" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/turf/open/floor/wood,
-/area/library)
-"aCc" = (
-/obj/structure/table/wood,
-/obj/item/paper_bin,
-/obj/machinery/atmospherics/components/unary/vent_pump{
- name = "regular air vent";
- on = 1
- },
-/turf/open/floor/wood,
-/area/library)
-"aCd" = (
-/obj/structure/table/wood/fancy,
-/turf/open/floor/wood,
-/area/crew_quarters/cafeteria{
- name = "Cafe"
- })
-"aCe" = (
-/obj/structure/chair/wood/normal{
- icon_state = "wooden_chair";
- dir = 8
- },
-/turf/open/floor/wood,
-/area/crew_quarters/cafeteria{
- name = "Cafe"
- })
-"aCf" = (
-/obj/structure/chair/wood/normal{
- dir = 1
- },
-/turf/open/floor/wood,
-/area/crew_quarters/cafeteria{
- name = "Cafe"
- })
-"aCg" = (
-/obj/structure/window/reinforced{
- dir = 1;
- pixel_y = 0
- },
-/turf/open/floor/wood,
-/area/crew_quarters/cafeteria{
- name = "Cafe"
- })
-"aCh" = (
-/obj/structure/window/reinforced{
- dir = 1;
- pixel_y = 0
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/wood,
-/area/crew_quarters/cafeteria{
- name = "Cafe"
- })
-"aCi" = (
-/obj/structure/window/reinforced{
- dir = 1;
- pixel_y = 0
- },
-/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
- },
-/obj/item/twohanded/required/kirbyplants{
- tag = "icon-plant-17";
- icon_state = "plant-17"
- },
-/turf/open/floor/wood,
-/area/crew_quarters/cafeteria{
- name = "Cafe"
- })
-"aCj" = (
-/obj/structure/cable{
- tag = "icon-1-2";
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/light{
- dir = 4
- },
-/turf/open/floor/plasteel/green/side{
- dir = 4
- },
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"aCk" = (
-/turf/closed/wall,
-/area/janitor)
-"aCl" = (
-/obj/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"aCm" = (
-/obj/structure/table/wood,
-/obj/machinery/chem_dispenser/drinks{
- name = "dusty old soda dispenser"
- },
-/turf/open/floor/wood{
- icon_state = "wood-broken7"
- },
-/area/maintenance/fore)
-"aCn" = (
-/obj/structure/table/wood,
-/obj/item/reagent_containers/food/drinks/drinkingglass,
-/turf/open/floor/wood{
- baseturf = /turf/open/floor/plating/asteroid
- },
-/area/maintenance/fore)
-"aCo" = (
-/obj/structure/chair/stool,
-/turf/open/floor/wood{
- icon_state = "wood-broken3"
- },
-/area/maintenance/fore)
-"aCp" = (
-/obj/structure/rack,
-/obj/item/storage/box/cups,
-/turf/open/floor/wood{
- baseturf = /turf/open/floor/plating/asteroid
- },
-/area/maintenance/fore)
-"aCq" = (
-/obj/structure/rack,
-/obj/item/storage/box/drinkingglasses,
-/turf/open/floor/wood{
- baseturf = /turf/open/floor/plating/asteroid
- },
-/area/maintenance/fore)
-"aCr" = (
-/obj/item/chair/stool,
-/obj/machinery/light/small{
- dir = 4
- },
-/turf/open/floor/wood{
- baseturf = /turf/open/floor/plating/asteroid
- },
-/area/maintenance/fore)
-"aCs" = (
-/obj/structure/window/reinforced{
- dir = 1;
- layer = 2.9
- },
-/obj/structure/rack,
-/obj/item/restraints/handcuffs/fake/kinky,
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"aCt" = (
-/obj/structure/window/reinforced{
- dir = 1;
- layer = 2.9
- },
-/obj/structure/rack,
-/obj/item/stack/tile/carpet{
- amount = 40
- },
-/turf/open/floor/carpet,
-/area/maintenance/fore)
-"aCu" = (
-/obj/machinery/vending/kink,
-/obj/machinery/light/small{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"aCv" = (
-/obj/structure/window/reinforced{
- dir = 1;
- layer = 2.9
- },
-/obj/structure/filingcabinet/chestdrawer/wheeled,
-/obj/effect/decal/cleanable/cobweb{
- icon_state = "cobweb2"
- },
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"aCw" = (
-/obj/machinery/light/small{
- brightness = 3;
- dir = 8
- },
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"aCx" = (
-/obj/structure/rack,
-/obj/item/storage/backpack/clown,
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"aCy" = (
-/obj/structure/closet/cabinet,
-/obj/item/toy/figure/assistant,
-/obj/item/toy/figure/atmos,
-/obj/item/toy/figure/bartender,
-/obj/item/toy/figure/borg,
-/obj/item/toy/figure/botanist,
-/obj/item/toy/figure/captain,
-/obj/item/toy/figure/cargotech,
-/obj/item/toy/figure/ce,
-/obj/item/toy/figure/chaplain,
-/obj/item/toy/figure/chef,
-/obj/item/toy/figure/chemist,
-/obj/item/toy/figure/clown,
-/obj/item/toy/figure/cmo,
-/obj/item/toy/figure/detective,
-/obj/item/toy/figure/dsquad,
-/obj/item/toy/figure/engineer,
-/obj/item/toy/figure/geneticist,
-/obj/item/toy/figure/hop,
-/obj/item/toy/figure/hos,
-/obj/item/toy/figure/ian,
-/obj/item/toy/figure/janitor,
-/obj/item/toy/figure/lawyer,
-/obj/item/toy/figure/curator,
-/obj/item/toy/figure/md,
-/obj/item/toy/figure/mime,
-/obj/item/toy/figure/miner,
-/obj/item/toy/figure/ninja,
-/obj/item/toy/figure/qm,
-/obj/item/toy/figure/rd,
-/obj/item/toy/figure/roboticist,
-/obj/item/toy/figure/scientist,
-/obj/item/toy/figure/secofficer,
-/obj/item/toy/figure/syndie,
-/obj/item/toy/figure/virologist,
-/obj/item/toy/figure/warden,
-/obj/item/toy/figure/wizard,
-/obj/item/toy/minimeteor,
-/turf/open/floor/wood{
- baseturf = /turf/open/floor/plating/asteroid
- },
-/area/library)
-"aCz" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/wood{
- baseturf = /turf/open/floor/plating/asteroid
- },
-/area/library)
-"aCA" = (
-/obj/item/device/radio/intercom{
- dir = 4;
- name = "Station Intercom (General)";
- pixel_x = 0;
- pixel_y = -27
- },
-/turf/open/floor/wood{
- baseturf = /turf/open/floor/plating/asteroid
- },
-/area/library)
-"aCB" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 8;
- initialize_directions = 11
- },
-/turf/open/floor/wood{
- baseturf = /turf/open/floor/plating/asteroid
- },
-/area/library)
-"aCC" = (
-/obj/structure/filingcabinet/chestdrawer,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/wood{
- baseturf = /turf/open/floor/plating/asteroid
- },
-/area/library)
-"aCD" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/closed/wall,
-/area/library)
-"aCE" = (
-/obj/structure/table/wood,
-/obj/item/device/flashlight/lamp/green,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/wood,
-/area/library)
-"aCF" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/turf/open/floor/wood,
-/area/library)
-"aCG" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 9
- },
-/obj/structure/table/wood,
-/obj/item/folder,
-/obj/item/clothing/glasses/monocle,
-/turf/open/floor/wood,
-/area/library)
-"aCH" = (
-/obj/structure/chair/wood/normal{
- tag = "icon-wooden_chair (WEST)";
- icon_state = "wooden_chair";
- dir = 8
- },
-/turf/open/floor/wood,
-/area/library)
-"aCI" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 4;
- name = "regular air scrubber";
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/obj/structure/table/wood/fancy,
-/obj/item/twohanded/required/kirbyplants{
- icon_state = "plant-15";
- pixel_x = 0;
- pixel_y = 12;
- tag = "icon-plant-15"
- },
-/turf/open/floor/wood,
-/area/crew_quarters/cafeteria{
- name = "Cafe"
- })
-"aCJ" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 10
- },
-/obj/structure/chair/wood/normal{
- icon_state = "wooden_chair";
- dir = 8
- },
-/turf/open/floor/wood,
-/area/crew_quarters/cafeteria{
- name = "Cafe"
- })
-"aCK" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- name = "regular air vent";
- on = 1
- },
-/turf/open/floor/wood,
-/area/crew_quarters/cafeteria{
- name = "Cafe"
- })
-"aCL" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass{
- name = "Cafe"
- },
-/turf/open/floor/wood,
-/area/crew_quarters/cafeteria{
- name = "Cafe"
- })
-"aCM" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/wood,
-/area/crew_quarters/cafeteria{
- name = "Cafe"
- })
-"aCN" = (
-/obj/structure/chair/wood/normal,
-/turf/open/floor/wood,
-/area/crew_quarters/cafeteria{
- name = "Cafe"
- })
-"aCO" = (
-/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
- },
-/turf/open/floor/wood,
-/area/crew_quarters/cafeteria{
- name = "Cafe"
- })
-"aCP" = (
-/obj/structure/closet/l3closet,
-/obj/item/clothing/shoes/galoshes,
-/turf/open/floor/plasteel,
-/area/janitor)
-"aCQ" = (
-/obj/structure/closet/jcloset,
-/turf/open/floor/plasteel,
-/area/janitor)
-"aCR" = (
-/obj/machinery/light{
- dir = 1
- },
-/obj/machinery/washing_machine,
-/turf/open/floor/plasteel,
-/area/janitor)
-"aCS" = (
-/obj/item/device/radio/intercom{
- name = "Station Intercom";
- pixel_x = 0;
- pixel_y = 24
- },
-/turf/open/floor/plasteel,
-/area/janitor)
-"aCT" = (
-/obj/machinery/door/window/westleft{
- name = "Janitoral Delivery";
- req_access_txt = "26"
- },
-/obj/structure/window/reinforced,
-/turf/open/floor/plasteel{
- icon_state = "delivery"
- },
-/area/janitor)
-"aCU" = (
-/obj/machinery/navbeacon{
- codes_txt = "delivery;dir=8";
- freq = 1400;
- location = "Janitor"
- },
-/obj/structure/plasticflaps{
- opacity = 1
- },
-/turf/open/floor/plasteel{
- icon_state = "bot"
- },
-/area/janitor)
-"aCV" = (
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/cable{
- tag = "icon-1-2";
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"aCW" = (
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/window/reinforced{
- dir = 1;
- layer = 2.9
- },
-/turf/open/floor/plating/asteroid/airless{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/ruin/unpowered{
- name = "Asteroid"
- })
-"aCX" = (
-/obj/structure/window/reinforced{
- dir = 1;
- layer = 2.9
- },
-/turf/open/floor/plating/asteroid/airless{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/ruin/unpowered{
- name = "Asteroid"
- })
-"aCY" = (
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 1;
- layer = 2.9
- },
-/turf/open/floor/plating/asteroid/airless{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/ruin/unpowered{
- name = "Asteroid"
- })
-"aCZ" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"aDa" = (
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/closet/jcloset,
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"aDb" = (
-/turf/open/floor/carpet,
-/area/maintenance/fore)
-"aDc" = (
-/obj/item/stack/tile/carpet,
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"aDd" = (
-/obj/structure/table,
-/obj/item/device/flashlight/lantern,
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"aDe" = (
-/obj/structure/table,
-/obj/item/reagent_containers/glass/beaker/large,
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"aDf" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/closed/wall,
-/area/library)
-"aDg" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass{
- name = "Game Room"
- },
-/turf/open/floor/wood,
-/area/library)
-"aDh" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/closed/wall,
-/area/library)
-"aDi" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/obj/machinery/door/firedoor,
-/obj/machinery/door/morgue{
- name = "Private Study";
- req_access_txt = "37"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/turf/open/floor/wood,
-/area/library)
-"aDj" = (
-/obj/structure/table/wood/fancy,
-/obj/item/twohanded/required/kirbyplants{
- icon_state = "plant-15";
- pixel_x = 0;
- pixel_y = 12;
- tag = "icon-plant-15"
- },
-/turf/open/floor/wood,
-/area/crew_quarters/cafeteria{
- name = "Cafe"
- })
-"aDk" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 8;
- initialize_directions = 11
- },
-/obj/structure/chair/wood/normal{
- icon_state = "wooden_chair";
- dir = 8
- },
-/turf/open/floor/wood,
-/area/crew_quarters/cafeteria{
- name = "Cafe"
- })
-"aDl" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/wood,
-/area/crew_quarters/cafeteria{
- name = "Cafe"
- })
-"aDm" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/wood,
-/area/crew_quarters/cafeteria{
- name = "Cafe"
- })
-"aDn" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/structure/chair/wood/normal,
-/turf/open/floor/wood,
-/area/crew_quarters/cafeteria{
- name = "Cafe"
- })
-"aDo" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/closed/wall,
-/area/crew_quarters/cafeteria{
- name = "Cafe"
- })
-"aDp" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 4
- },
-/obj/structure/chair/wood/normal{
- tag = "icon-wooden_chair (EAST)";
- icon_state = "wooden_chair";
- dir = 4
- },
-/turf/open/floor/wood,
-/area/crew_quarters/cafeteria{
- name = "Cafe"
- })
-"aDq" = (
-/obj/structure/table/wood,
-/turf/open/floor/wood,
-/area/crew_quarters/cafeteria{
- name = "Cafe"
- })
-"aDr" = (
-/obj/structure/chair/wood/normal{
- tag = "icon-wooden_chair (WEST)";
- icon_state = "wooden_chair";
- dir = 8
- },
-/turf/open/floor/wood,
-/area/crew_quarters/cafeteria{
- name = "Cafe"
- })
-"aDs" = (
-/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 6
- },
-/obj/item/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1
- },
-/turf/open/floor/wood,
-/area/crew_quarters/cafeteria{
- name = "Cafe"
- })
-"aDt" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/green/side{
- dir = 8
- },
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"aDu" = (
-/obj/structure/cable{
- tag = "icon-1-2";
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,
-/turf/open/floor/plasteel,
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"aDv" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/door/airlock{
- name = "Custodial Closet";
- req_access_txt = "26"
- },
-/turf/open/floor/plasteel,
-/area/janitor)
-"aDw" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/janitor)
-"aDx" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 8;
- name = "regular air vent";
- on = 1
- },
-/turf/open/floor/plasteel,
-/area/janitor)
-"aDy" = (
-/turf/open/floor/plasteel,
-/area/janitor)
-"aDz" = (
-/obj/structure/sink/kitchen{
- dir = 8;
- icon_state = "sink_alt";
- pixel_x = 13;
- tag = "icon-sink_alt (WEST)"
- },
-/turf/open/floor/plasteel,
-/area/janitor)
-"aDA" = (
-/obj/structure/window/reinforced{
- dir = 8
- },
-/turf/open/floor/plating/asteroid/airless{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/ruin/unpowered{
- name = "Asteroid"
- })
-"aDB" = (
-/obj/structure/window/reinforced{
- dir = 4
- },
-/turf/open/floor/plating/asteroid/airless{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/ruin/unpowered{
- name = "Asteroid"
- })
-"aDC" = (
-/obj/item/storage/bag/trash,
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"aDD" = (
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/item/caution,
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"aDE" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/light{
- dir = 8
- },
-/turf/open/floor/plasteel/red/corner{
- dir = 1
- },
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"aDF" = (
-/obj/machinery/airalarm{
- dir = 4;
- pixel_x = -23;
- pixel_y = 0
- },
-/obj/structure/bookcase/random/reference,
-/turf/open/floor/wood,
-/area/library)
-"aDG" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/bookcase/random/reference,
-/turf/open/floor/wood,
-/area/library)
-"aDH" = (
-/obj/structure/bookcase/random/reference,
-/turf/open/floor/wood,
-/area/library)
-"aDI" = (
-/obj/structure/bookcase/manuals/research_and_development,
-/turf/open/floor/wood,
-/area/library)
-"aDJ" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/bookcase/manuals/medical,
-/turf/open/floor/wood,
-/area/library)
-"aDK" = (
-/obj/structure/bookcase/manuals/engineering,
-/turf/open/floor/wood,
-/area/library)
-"aDL" = (
-/obj/structure/noticeboard{
- desc = "A memorial wall for pinning up momentos";
- name = "memorial board";
- pixel_y = 32
- },
-/turf/open/floor/wood,
-/area/library)
-"aDM" = (
-/obj/item/device/radio/intercom{
- freerange = 0;
- frequency = 1459;
- name = "Station Intercom (General)";
- pixel_x = -29;
- pixel_y = 23
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/turf/open/floor/wood,
-/area/library)
-"aDN" = (
-/obj/structure/disposalpipe/trunk{
- dir = 4
- },
-/obj/machinery/disposal/bin,
-/turf/open/floor/wood,
-/area/library)
-"aDO" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/closed/wall,
-/area/library)
-"aDP" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/grass,
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"aDQ" = (
-/obj/structure/disposalpipe/junction{
- dir = 1;
- icon_state = "pipe-j2";
- tag = "icon-pipe-j1 (WEST)"
- },
-/turf/open/floor/plasteel/green,
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"aDR" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/chair/wood/normal{
- icon_state = "wooden_chair";
- dir = 8
- },
-/turf/open/floor/wood,
-/area/crew_quarters/cafeteria{
- name = "Cafe"
- })
-"aDS" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/wood,
-/area/crew_quarters/cafeteria{
- name = "Cafe"
- })
-"aDT" = (
-/obj/structure/table/wood/fancy,
-/obj/item/candle,
-/obj/machinery/firealarm{
- dir = 4;
- pixel_x = 24
- },
-/turf/open/floor/wood,
-/area/crew_quarters/cafeteria{
- name = "Cafe"
- })
-"aDU" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/door/firedoor,
-/turf/open/floor/plating,
-/area/crew_quarters/cafeteria{
- name = "Cafe"
- })
-"aDV" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- req_access_txt = 1
- },
-/turf/closed/wall,
-/area/crew_quarters/cafeteria{
- name = "Cafe"
- })
-"aDW" = (
-/obj/structure/cable{
- tag = "icon-1-2";
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/camera/autoname{
- tag = "icon-camera (WEST)";
- icon_state = "camera";
- dir = 8
- },
-/turf/open/floor/plasteel/green/side{
- dir = 4
- },
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"aDX" = (
-/obj/structure/reagent_dispensers/watertank,
-/turf/open/floor/plasteel,
-/area/janitor)
-"aDY" = (
-/obj/effect/landmark/start{
- name = "Janitor"
- },
-/turf/open/floor/plasteel,
-/area/janitor)
-"aDZ" = (
-/obj/effect/landmark/event_spawn,
-/mob/living/simple_animal/hostile/lizard{
- name = "Wags-His-Tail";
- real_name = "Wags-His-Tail"
- },
-/turf/open/floor/plasteel,
-/area/janitor)
-"aEa" = (
-/obj/machinery/camera/autoname{
- tag = "icon-camera (NORTHWEST)";
- icon_state = "camera";
- dir = 9
- },
-/turf/open/floor/plasteel,
-/area/janitor)
-"aEb" = (
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/machinery/power/apc{
- dir = 8;
- name = "Custodial Closet APC";
- pixel_x = -24
- },
-/obj/structure/cable,
-/turf/open/floor/plating,
-/area/janitor)
-"aEc" = (
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plating/asteroid/airless{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/ruin/unpowered{
- name = "Asteroid"
- })
-"aEd" = (
-/obj/structure/closet/crate/trashcart,
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"aEe" = (
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/reagent_dispensers/watertank,
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"aEf" = (
-/obj/machinery/portable_atmospherics/canister,
-/obj/machinery/atmospherics/components/unary/portables_connector/visible{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"aEg" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 10
- },
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"aEh" = (
-/obj/structure/closet/wardrobe/pjs,
-/obj/machinery/light/small{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"aEi" = (
-/turf/closed/wall,
-/area/chapel/main)
-"aEj" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/wood,
-/area/library)
-"aEk" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 4;
- name = "regular air vent";
- on = 1
- },
-/turf/open/floor/wood,
-/area/library)
-"aEl" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/carpet,
-/area/library)
-"aEm" = (
-/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,
-/turf/open/floor/carpet,
-/area/library)
-"aEn" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/carpet,
-/area/library)
-"aEo" = (
-/obj/structure/table/wood,
-/obj/item/device/flashlight/lamp/green,
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 8;
- name = "regular air vent";
- on = 1
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/turf/open/floor/wood,
-/area/library)
-"aEp" = (
-/obj/item/device/radio/intercom{
- desc = "Talk smack through this.";
- dir = 4;
- pixel_x = 28;
- syndie = 1
- },
-/turf/open/floor/wood,
-/area/library)
-"aEq" = (
-/obj/structure/disposalpipe/junction{
- dir = 1;
- icon_state = "pipe-j1";
- tag = "icon-pipe-j1 (EAST)"
- },
-/turf/open/floor/plasteel/green,
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"aEr" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/closed/wall,
-/area/crew_quarters/cafeteria{
- name = "Cafe"
- })
-"aEs" = (
-/obj/machinery/light/small/built{
- tag = "icon-bulb1 (WEST)";
- icon_state = "bulb1";
- dir = 8
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/wood,
-/area/crew_quarters/cafeteria{
- name = "Cafe"
- })
-"aEt" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/wood,
-/area/crew_quarters/cafeteria{
- name = "Cafe"
- })
-"aEu" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/wood,
-/area/crew_quarters/cafeteria{
- name = "Cafe"
- })
-"aEv" = (
-/obj/machinery/holopad,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/wood,
-/area/crew_quarters/cafeteria{
- name = "Cafe"
- })
-"aEw" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/wood,
-/area/crew_quarters/cafeteria{
- name = "Cafe"
- })
-"aEx" = (
-/obj/structure/chair/wood/normal{
- dir = 1
- },
-/obj/machinery/light/small/built{
- tag = "icon-bulb1 (EAST)";
- icon_state = "bulb1";
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/wood,
-/area/crew_quarters/cafeteria{
- name = "Cafe"
- })
-"aEy" = (
-/obj/structure/disposalpipe/trunk{
- dir = 8
- },
-/obj/machinery/disposal/bin,
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/cafeteria{
- name = "Cafe"
- })
-"aEz" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/table/reinforced,
-/obj/item/storage/box/cups,
-/obj/item/storage/box/cups,
-/obj/item/device/radio/intercom{
- freerange = 0;
- frequency = 1459;
- name = "Station Intercom (General)";
- pixel_x = -29;
- pixel_y = 23
- },
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/cafeteria{
- name = "Cafe"
- })
-"aEA" = (
-/obj/structure/table/reinforced,
-/obj/machinery/chem_dispenser/drinks,
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/cafeteria{
- name = "Cafe"
- })
-"aEB" = (
-/obj/structure/table/reinforced,
-/obj/machinery/microwave,
-/obj/machinery/light{
- dir = 1
- },
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/cafeteria{
- name = "Cafe"
- })
-"aEC" = (
-/obj/structure/table,
-/obj/item/storage/box/donkpockets,
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/cafeteria{
- name = "Cafe"
- })
-"aED" = (
-/obj/structure/table,
-/obj/item/storage/fancy/donut_box,
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/cafeteria{
- name = "Cafe"
- })
-"aEE" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- req_access_txt = 1
- },
-/turf/open/floor/plating,
-/area/crew_quarters/cafeteria{
- name = "Cafe"
- })
-"aEF" = (
-/obj/structure/extinguisher_cabinet{
- pixel_x = -24
- },
-/obj/machinery/portable_atmospherics/canister/water_vapor,
-/turf/open/floor/plasteel,
-/area/janitor)
-"aEG" = (
-/obj/structure/table,
-/obj/structure/bedsheetbin,
-/turf/open/floor/plasteel,
-/area/janitor)
-"aEH" = (
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/window/reinforced,
-/turf/open/floor/plating/asteroid/airless{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/ruin/unpowered{
- name = "Asteroid"
- })
-"aEI" = (
-/obj/structure/window/reinforced,
-/turf/open/floor/plating/asteroid/airless{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/ruin/unpowered{
- name = "Asteroid"
- })
-"aEJ" = (
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/window/reinforced,
-/turf/open/floor/plating/asteroid/airless{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/ruin/unpowered{
- name = "Asteroid"
- })
-"aEK" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"aEL" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- tag = "icon-intact (EAST)";
- icon_state = "intact";
- dir = 4
- },
-/turf/closed/wall,
-/area/maintenance/fore)
-"aEM" = (
-/obj/structure/bed,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- tag = "icon-intact (EAST)";
- icon_state = "intact";
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"aEN" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- tag = "icon-intact (EAST)";
- icon_state = "intact";
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"aEO" = (
-/obj/machinery/light/small,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- tag = "icon-intact (EAST)";
- icon_state = "intact";
- dir = 4
- },
-/obj/structure/table/wood,
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"aEP" = (
-/obj/structure/frame/computer,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- tag = "icon-intact (EAST)";
- icon_state = "intact";
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"aEQ" = (
-/obj/structure/frame,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- tag = "icon-intact (EAST)";
- icon_state = "intact";
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"aER" = (
-/obj/structure/closet/emcloset,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- tag = "icon-intact (EAST)";
- icon_state = "intact";
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"aES" = (
-/obj/structure/closet/firecloset,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- tag = "icon-intact (EAST)";
- icon_state = "intact";
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"aET" = (
-/obj/structure/rack,
-/obj/effect/spawner/lootdrop/maintenance,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- tag = "icon-intact (EAST)";
- icon_state = "intact";
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"aEU" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- tag = "icon-intact (EAST)";
- icon_state = "intact";
- dir = 4
- },
-/turf/closed/wall,
-/area/chapel/main)
-"aEV" = (
-/obj/structure/chair/stool,
-/obj/item/device/radio/intercom{
- broadcasting = 1;
- dir = 8;
- frequency = 1480;
- name = "Confessional Intercom";
- pixel_x = -25
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- tag = "icon-intact (EAST)";
- icon_state = "intact";
- dir = 4
- },
-/turf/open/floor/carpet,
-/area/chapel/main)
-"aEW" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/tinted/fulltile,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- tag = "icon-intact (EAST)";
- icon_state = "intact";
- dir = 4
- },
-/turf/open/floor/plating,
-/area/chapel/main)
-"aEX" = (
-/obj/structure/chair/stool,
-/obj/item/device/radio/intercom{
- broadcasting = 1;
- frequency = 1480;
- name = "Confessional Intercom";
- pixel_x = 25
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- tag = "icon-intact (EAST)";
- icon_state = "intact";
- dir = 4
- },
-/turf/open/floor/carpet,
-/area/chapel/main)
-"aEY" = (
-/obj/structure/closet/radiation,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- tag = "icon-intact (EAST)";
- icon_state = "intact";
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"aEZ" = (
-/obj/machinery/light/small,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- tag = "icon-intact (EAST)";
- icon_state = "intact";
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"aFa" = (
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 8;
- on = 0
- },
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"aFb" = (
-/obj/machinery/door/airlock/maintenance{
- req_access_txt = "12"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- tag = "icon-intact (EAST)";
- icon_state = "intact";
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"aFc" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/red/corner{
- dir = 1
- },
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"aFd" = (
-/obj/structure/bookcase/random/nonfiction,
-/turf/open/floor/wood,
-/area/library)
-"aFe" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/bookcase/random/nonfiction,
-/turf/open/floor/wood,
-/area/library)
-"aFf" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/carpet,
-/area/library)
-"aFg" = (
-/obj/structure/table/wood,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/turf/open/floor/wood,
-/area/library)
-"aFh" = (
-/obj/machinery/photocopier,
-/turf/open/floor/wood,
-/area/library)
-"aFi" = (
-/obj/item/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- layer = 4.1;
- pixel_x = -3;
- pixel_y = 3
- },
-/turf/open/floor/wood,
-/area/crew_quarters/cafeteria{
- name = "Cafe"
- })
-"aFj" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 8;
- initialize_directions = 11
- },
-/turf/open/floor/wood,
-/area/crew_quarters/cafeteria{
- name = "Cafe"
- })
-"aFk" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/wood,
-/area/crew_quarters/cafeteria{
- name = "Cafe"
- })
-"aFl" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/door/airlock/glass{
- name = "Cafe"
- },
-/obj/machinery/status_display{
- density = 0;
- layer = 4;
- pixel_x = 0;
- pixel_y = 31
- },
-/turf/open/floor/wood,
-/area/crew_quarters/cafeteria{
- name = "Cafe"
- })
-"aFm" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/cafeteria{
- name = "Cafe"
- })
-"aFn" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/cafeteria{
- name = "Cafe"
- })
-"aFo" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 1
- },
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/cafeteria{
- name = "Cafe"
- })
-"aFp" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 9
- },
-/turf/open/floor/plating,
-/area/crew_quarters/cafeteria{
- name = "Cafe"
- })
-"aFq" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel/green/side{
- dir = 8
- },
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"aFr" = (
-/obj/structure/cable{
- tag = "icon-1-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/green/side{
- dir = 4
- },
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"aFs" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/machinery/door/airlock{
- name = "Custodial Closet";
- req_access_txt = "26"
- },
-/turf/open/floor/plasteel,
-/area/janitor)
-"aFt" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/janitor)
-"aFu" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 8;
- name = "regular air scrubber";
- on = 1;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel,
-/area/janitor)
-"aFv" = (
-/obj/structure/disposalpipe/trunk{
- dir = 4
- },
-/obj/machinery/disposal/bin,
-/turf/open/floor/plasteel,
-/area/janitor)
-"aFw" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/closed/wall,
-/area/janitor)
-"aFx" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"aFy" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 1;
- layer = 2.9
- },
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"aFz" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/light/small,
-/obj/structure/window/reinforced{
- dir = 1;
- layer = 2.9
- },
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"aFA" = (
-/obj/structure/disposalpipe/junction,
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"aFB" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/maintenance{
- name = "Chapel Maintenance";
- req_access_txt = "12"
- },
-/turf/open/floor/plating,
-/area/chapel/main)
-"aFC" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/morgue{
- name = "Confession Booth"
- },
-/turf/open/floor/plasteel/black,
-/area/chapel/main)
-"aFD" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/morgue{
- name = "Confession Booth (Chaplain)";
- req_access_txt = "22"
- },
-/turf/open/floor/plasteel/black,
-/area/chapel/main)
-"aFE" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/sign/securearea{
- pixel_x = -32
- },
-/obj/machinery/door/firedoor,
-/turf/open/floor/plasteel/red/corner{
- dir = 1
- },
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"aFF" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/sign/securearea{
- pixel_x = 32
- },
-/obj/machinery/door/firedoor,
-/turf/open/floor/plasteel/red/corner,
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"aFG" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 8;
- initialize_directions = 11
- },
-/turf/open/floor/wood,
-/area/library)
-"aFH" = (
-/obj/machinery/light,
-/obj/machinery/firealarm{
- dir = 1;
- pixel_x = 0;
- pixel_y = -26
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/wood,
-/area/library)
-"aFI" = (
-/obj/machinery/camera/autoname{
- tag = "icon-camera (NORTH)";
- icon_state = "camera";
- dir = 1
- },
-/turf/open/floor/wood,
-/area/library)
-"aFJ" = (
-/obj/machinery/light,
-/obj/structure/table/wood,
-/turf/open/floor/wood,
-/area/library)
-"aFK" = (
-/obj/structure/table/wood,
-/obj/item/paper_bin,
-/turf/open/floor/wood,
-/area/library)
-"aFL" = (
-/obj/structure/table/wood,
-/obj/item/folder,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/turf/open/floor/wood,
-/area/library)
-"aFM" = (
-/obj/machinery/bookbinder{
- pixel_y = 0
- },
-/turf/open/floor/wood,
-/area/library)
-"aFN" = (
-/obj/structure/piano,
-/turf/open/floor/wood,
-/area/crew_quarters/cafeteria{
- name = "Cafe"
- })
-"aFO" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 4;
- name = "regular air scrubber";
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/turf/open/floor/wood,
-/area/crew_quarters/cafeteria{
- name = "Cafe"
- })
-"aFP" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 9
- },
-/turf/open/floor/wood,
-/area/crew_quarters/cafeteria{
- name = "Cafe"
- })
-"aFQ" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- tag = "icon-vent_map (NORTH)";
- name = "regular air vent";
- icon_state = "vent_map";
- dir = 1;
- on = 1
- },
-/turf/open/floor/wood,
-/area/crew_quarters/cafeteria{
- name = "Cafe"
- })
-"aFR" = (
-/obj/machinery/door/airlock/glass{
- name = "Cafe"
- },
-/turf/open/floor/wood,
-/area/crew_quarters/cafeteria{
- name = "Cafe"
- })
-"aFS" = (
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/cafeteria{
- name = "Cafe"
- })
-"aFT" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 1;
- name = "regular air scrubber";
- on = 1
- },
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/cafeteria{
- name = "Cafe"
- })
-"aFU" = (
-/obj/structure/chair{
- dir = 4
- },
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/cafeteria{
- name = "Cafe"
- })
-"aFV" = (
-/obj/structure/table,
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/cafeteria{
- name = "Cafe"
- })
-"aFW" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- tag = "icon-vent_map (NORTH)";
- name = "regular air vent";
- icon_state = "vent_map";
- dir = 1;
- on = 1
- },
-/obj/structure/chair{
- dir = 8
- },
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/cafeteria{
- name = "Cafe"
- })
-"aFX" = (
-/obj/machinery/status_display,
-/turf/closed/wall,
-/area/crew_quarters/cafeteria{
- name = "Cafe"
- })
-"aFY" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/door/firedoor,
-/turf/open/floor/plasteel/green/side{
- dir = 8
- },
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"aFZ" = (
-/obj/structure/cable{
- tag = "icon-1-2";
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/door/firedoor,
-/turf/open/floor/plasteel/green/side{
- dir = 4
- },
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"aGa" = (
-/obj/structure/janitorialcart,
-/obj/item/mop,
-/turf/open/floor/plasteel,
-/area/janitor)
-"aGb" = (
-/obj/item/caution,
-/obj/item/caution,
-/obj/item/caution,
-/obj/item/caution,
-/obj/item/caution,
-/obj/item/reagent_containers/glass/bucket,
-/turf/open/floor/plasteel,
-/area/janitor)
-"aGc" = (
-/obj/machinery/light,
-/obj/vehicle/janicart,
-/turf/open/floor/plasteel,
-/area/janitor)
-"aGd" = (
-/obj/structure/table,
-/obj/item/paper_bin{
- pixel_x = -3;
- pixel_y = 7
- },
-/obj/item/key/janitor,
-/turf/open/floor/plasteel,
-/area/janitor)
-"aGe" = (
-/obj/structure/table,
-/obj/item/grenade/chem_grenade/cleaner,
-/obj/item/grenade/chem_grenade/cleaner,
-/obj/item/grenade/chem_grenade/cleaner,
-/obj/machinery/requests_console{
- department = "Janitorial";
- departmentType = 1;
- pixel_y = -29
- },
-/obj/item/reagent_containers/spray/cleaner,
-/turf/open/floor/plasteel,
-/area/janitor)
-"aGf" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/door/airlock/maintenance_hatch,
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"aGg" = (
-/obj/structure/closet/coffin,
-/turf/open/floor/plasteel/black,
-/area/chapel/main)
-"aGh" = (
-/obj/machinery/light{
- dir = 1
- },
-/obj/structure/closet/coffin,
-/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
- },
-/turf/open/floor/plasteel/black,
-/area/chapel/main)
-"aGi" = (
-/obj/structure/filingcabinet/chestdrawer,
-/turf/open/floor/wood,
-/area/chapel/main)
-"aGj" = (
-/turf/open/floor/wood,
-/area/chapel/main)
-"aGk" = (
-/obj/item/device/radio/intercom{
- name = "Station Intercom";
- pixel_x = 0;
- pixel_y = 24
- },
-/turf/open/floor/wood,
-/area/chapel/main)
-"aGl" = (
-/obj/structure/noticeboard{
- desc = "A memorial wall for pinning up momentos";
- name = "memorial board";
- pixel_y = 32
- },
-/turf/open/floor/wood,
-/area/chapel/main)
-"aGm" = (
-/obj/structure/spirit_board,
-/turf/open/floor/wood,
-/area/chapel/main)
-"aGn" = (
-/obj/structure/bookcase{
- name = "Holy Bookcase"
- },
-/turf/open/floor/wood,
-/area/chapel/main)
-"aGo" = (
-/obj/structure/table/wood,
-/obj/item/reagent_containers/food/snacks/grown/harebell,
-/turf/open/floor/wood,
-/area/chapel/main)
-"aGp" = (
-/obj/structure/table/wood,
-/obj/item/device/flashlight/lantern,
-/turf/open/floor/wood,
-/area/chapel/main)
-"aGq" = (
-/obj/machinery/light{
- dir = 1
- },
-/obj/structure/closet/wardrobe/black,
-/turf/open/floor/wood,
-/area/chapel/main)
-"aGr" = (
-/obj/structure/closet/wardrobe/black,
-/turf/open/floor/wood,
-/area/chapel/main)
-"aGs" = (
-/obj/effect/landmark/xmastree,
-/turf/open/floor/plasteel/black,
-/area/chapel/main)
-"aGt" = (
-/obj/machinery/light{
- dir = 1
- },
-/turf/open/floor/plasteel/chapel{
- tag = "icon-chapel (NORTHWEST)";
- icon_state = "chapel";
- dir = 9
- },
-/area/chapel/main)
-"aGu" = (
-/turf/open/floor/plasteel/chapel{
- tag = "icon-chapel (NORTHEAST)";
- icon_state = "chapel";
- dir = 5
- },
-/area/chapel/main)
-"aGv" = (
-/turf/open/floor/plasteel/chapel{
- tag = "icon-chapel (NORTH)";
- icon_state = "chapel";
- dir = 1
- },
-/area/chapel/main)
-"aGw" = (
-/turf/open/floor/plasteel/chapel{
- tag = "icon-chapel (EAST)";
- icon_state = "chapel";
- dir = 4
- },
-/area/chapel/main)
-"aGx" = (
-/turf/open/floor/plasteel/chapel{
- tag = "icon-chapel (NORTHWEST)";
- icon_state = "chapel";
- dir = 9
- },
-/area/chapel/main)
-"aGy" = (
-/obj/machinery/light{
- dir = 1
- },
-/turf/open/floor/plasteel/chapel{
- tag = "icon-chapel (NORTH)";
- icon_state = "chapel";
- dir = 1
- },
-/area/chapel/main)
-"aGz" = (
-/obj/structure/table/wood,
-/obj/item/reagent_containers/food/snacks/poppypretzel,
-/obj/item/reagent_containers/food/snacks/poppypretzel,
-/obj/item/reagent_containers/food/snacks/poppypretzel,
-/obj/item/reagent_containers/food/snacks/poppypretzel,
-/turf/open/floor/plasteel/chapel{
- tag = "icon-chapel (EAST)";
- icon_state = "chapel";
- dir = 4
- },
-/area/chapel/main)
-"aGA" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/green/side{
- dir = 9
- },
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"aGB" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/green/side{
- dir = 5
- },
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"aGC" = (
-/obj/structure/bookcase/random/fiction,
-/turf/open/floor/wood,
-/area/library)
-"aGD" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/bookcase/random/fiction,
-/turf/open/floor/wood,
-/area/library)
-"aGE" = (
-/obj/machinery/newscaster,
-/turf/closed/wall,
-/area/library)
-"aGF" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass{
- name = "Library"
- },
-/turf/open/floor/wood,
-/area/library)
-"aGG" = (
-/obj/machinery/newscaster/security_unit,
-/turf/closed/wall,
-/area/library)
-"aGH" = (
-/obj/structure/filingcabinet/chestdrawer,
-/turf/open/floor/wood,
-/area/library)
-"aGI" = (
-/obj/structure/table/wood,
-/obj/machinery/computer/libraryconsole/bookmanagement{
- pixel_y = 0
- },
-/turf/open/floor/wood,
-/area/library)
-"aGJ" = (
-/obj/structure/chair/wood/normal,
-/obj/effect/landmark/start{
- name = "Assistant"
- },
-/turf/open/floor/wood,
-/area/crew_quarters/cafeteria{
- name = "Cafe"
- })
-"aGK" = (
-/turf/closed/wall,
-/area/maintenance/starboard)
-"aGL" = (
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plating,
-/area/maintenance/starboard)
-"aGM" = (
-/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
- },
-/obj/item/reagent_containers/glass/bucket,
-/turf/open/floor/plating,
-/area/maintenance/starboard)
-"aGN" = (
-/obj/machinery/airalarm{
- dir = 4;
- pixel_x = -23;
- pixel_y = 0
- },
-/obj/structure/closet/coffin,
-/turf/open/floor/plasteel/black,
-/area/chapel/main)
-"aGO" = (
-/obj/structure/closet/coffin,
-/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
- },
-/turf/open/floor/plasteel/black,
-/area/chapel/main)
-"aGP" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 6
- },
-/turf/open/floor/wood,
-/area/chapel/main)
-"aGQ" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 1
- },
-/turf/open/floor/wood,
-/area/chapel/main)
-"aGR" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/wood,
-/area/chapel/main)
-"aGS" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/closed/wall,
-/area/chapel/main)
-"aGT" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/item/device/radio/intercom{
- dir = 8;
- pixel_x = -28
- },
-/turf/open/floor/plasteel/black,
-/area/chapel/main)
-"aGU" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 1
- },
-/turf/open/floor/plasteel/chapel{
- tag = "icon-chapel (SOUTHWEST)";
- icon_state = "chapel";
- dir = 10
- },
-/area/chapel/main)
-"aGV" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/chapel{
- tag = "icon-chapel (SOUTHEAST)";
- icon_state = "chapel";
- dir = 6
- },
-/area/chapel/main)
-"aGW" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/chapel{
- tag = "icon-chapel (WEST)";
- icon_state = "chapel";
- dir = 8
- },
-/area/chapel/main)
-"aGX" = (
-/obj/structure/chair/stool,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/chapel,
-/area/chapel/main)
-"aGY" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/chapel{
- tag = "icon-chapel (SOUTHWEST)";
- icon_state = "chapel";
- dir = 10
- },
-/area/chapel/main)
-"aGZ" = (
-/obj/structure/chair/stool,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/chapel{
- tag = "icon-chapel (SOUTHEAST)";
- icon_state = "chapel";
- dir = 6
- },
-/area/chapel/main)
-"aHa" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 10
- },
-/obj/structure/chair/stool,
-/turf/open/floor/plasteel/chapel{
- tag = "icon-chapel (SOUTHEAST)";
- icon_state = "chapel";
- dir = 6
- },
-/area/chapel/main)
-"aHb" = (
-/turf/open/floor/plasteel/chapel{
- tag = "icon-chapel (WEST)";
- icon_state = "chapel";
- dir = 8
- },
-/area/chapel/main)
-"aHc" = (
-/obj/machinery/airalarm{
- dir = 8;
- icon_state = "alarm0";
- pixel_x = 24
- },
-/obj/structure/table/wood,
-/obj/item/reagent_containers/food/snacks/grown/poppy,
-/turf/open/floor/plasteel/chapel,
-/area/chapel/main)
-"aHd" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/green/side{
- dir = 8
- },
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"aHe" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/green/side{
- dir = 4
- },
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"aHf" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/door/firedoor,
-/turf/open/floor/plating,
-/area/library)
-"aHg" = (
-/turf/open/floor/plasteel/green/side{
- dir = 9
- },
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"aHh" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"aHi" = (
-/turf/open/floor/plasteel/green/side{
- dir = 5
- },
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"aHj" = (
-/obj/machinery/libraryscanner,
-/turf/open/floor/wood,
-/area/library)
-"aHk" = (
-/obj/structure/chair/wood/normal{
- dir = 1
- },
-/turf/open/floor/wood,
-/area/library)
-"aHl" = (
-/obj/structure/disposalpipe/trunk{
- dir = 8
- },
-/obj/machinery/disposal/bin,
-/obj/structure/extinguisher_cabinet{
- pixel_x = -24
- },
-/obj/machinery/light/small/built{
- tag = "icon-bulb1 (WEST)";
- icon_state = "bulb1";
- dir = 8
- },
-/turf/open/floor/wood,
-/area/crew_quarters/cafeteria{
- name = "Cafe"
- })
-"aHm" = (
-/obj/structure/table/wood/fancy,
-/obj/machinery/newscaster{
- dir = 1;
- pixel_y = -30
- },
-/turf/open/floor/wood,
-/area/crew_quarters/cafeteria{
- name = "Cafe"
- })
-"aHn" = (
-/obj/machinery/light/small/built{
- tag = "icon-bulb1 (EAST)";
- icon_state = "bulb1";
- dir = 4
- },
-/obj/item/twohanded/required/kirbyplants{
- tag = "icon-plant-18";
- icon_state = "plant-18"
- },
-/turf/open/floor/wood,
-/area/crew_quarters/cafeteria{
- name = "Cafe"
- })
-"aHo" = (
-/obj/machinery/airalarm{
- dir = 4;
- pixel_x = -23;
- pixel_y = 0
- },
-/obj/machinery/camera/autoname{
- tag = "icon-camera (NORTH)";
- icon_state = "camera";
- dir = 1
- },
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/cafeteria{
- name = "Cafe"
- })
-"aHp" = (
-/obj/machinery/vending/coffee,
-/obj/machinery/light,
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/cafeteria{
- name = "Cafe"
- })
-"aHq" = (
-/obj/machinery/vending/cola/red,
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/cafeteria{
- name = "Cafe"
- })
-"aHr" = (
-/obj/structure/table,
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4";
- tag = ""
- },
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/cafeteria{
- name = "Cafe"
- })
-"aHs" = (
-/obj/structure/table,
-/obj/item/storage/fancy/candle_box,
-/obj/machinery/power/apc{
- dir = 2;
- name = "Cafateria APC";
- pixel_y = -24
- },
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/cafeteria{
- name = "Cafe"
- })
-"aHt" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/turf/open/floor/plasteel/green/side{
- dir = 4
- },
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"aHu" = (
-/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
- },
-/obj/item/storage/backpack/botany,
-/turf/open/floor/plating,
-/area/maintenance/starboard)
-"aHv" = (
-/obj/structure/closet/coffin,
-/obj/machinery/camera/autoname{
- tag = "icon-camera (NORTHEAST)";
- icon_state = "camera";
- dir = 5
- },
-/turf/open/floor/plasteel/black,
-/area/chapel/main)
-"aHw" = (
-/obj/machinery/door/window/eastleft{
- dir = 4;
- name = "Coffin Storage";
- req_access_txt = "22"
- },
-/turf/open/floor/plasteel/black,
-/area/chapel/main)
-"aHx" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/wood,
-/area/chapel/main)
-"aHy" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 1;
- name = "regular air scrubber";
- on = 1
- },
-/turf/open/floor/wood,
-/area/chapel/main)
-"aHz" = (
-/obj/structure/chair/wood/normal{
- tag = "icon-wooden_chair (EAST)";
- icon_state = "wooden_chair";
- dir = 4
- },
-/turf/open/floor/wood,
-/area/chapel/main)
-"aHA" = (
-/obj/structure/table/wood,
-/obj/item/folder,
-/obj/item/pen,
-/turf/open/floor/wood,
-/area/chapel/main)
-"aHB" = (
-/obj/item/device/radio/beacon,
-/turf/open/floor/wood,
-/area/chapel/main)
-"aHC" = (
-/obj/machinery/camera/autoname{
- tag = "icon-camera (NORTHWEST)";
- icon_state = "camera";
- dir = 9
- },
-/turf/open/floor/wood,
-/area/chapel/main)
-"aHD" = (
-/turf/open/floor/plasteel/black,
-/area/chapel/main)
-"aHE" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/carpet,
-/area/chapel/main)
-"aHF" = (
-/obj/structure/table/wood,
-/obj/item/candle,
-/obj/machinery/atmospherics/components/unary/vent_pump{
- name = "regular air vent";
- on = 1
- },
-/turf/open/floor/carpet,
-/area/chapel/main)
-"aHG" = (
-/turf/open/floor/carpet,
-/area/chapel/main)
-"aHH" = (
-/obj/structure/chair/stool,
-/turf/open/floor/carpet,
-/area/chapel/main)
-"aHI" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 1;
- name = "regular air scrubber";
- on = 1
- },
-/turf/open/floor/carpet,
-/area/chapel/main)
-"aHJ" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/chair/stool,
-/turf/open/floor/carpet,
-/area/chapel/main)
-"aHK" = (
-/obj/machinery/camera/autoname{
- tag = "icon-camera (NORTHWEST)";
- icon_state = "camera";
- dir = 9
- },
-/turf/open/floor/carpet,
-/area/chapel/main)
-"aHL" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/door/firedoor,
-/turf/open/floor/plating,
-/area/library)
-"aHM" = (
-/obj/structure/extinguisher_cabinet{
- pixel_x = -24
- },
-/turf/open/floor/plasteel/green/side{
- dir = 8
- },
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"aHN" = (
-/turf/open/floor/plasteel/green/side{
- dir = 4
- },
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"aHO" = (
-/obj/machinery/status_display,
-/turf/closed/wall,
-/area/library)
-"aHP" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/door/firedoor,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/turf/open/floor/plating,
-/area/library)
-"aHQ" = (
-/obj/structure/sign/directions/medical{
- tag = "icon-direction_med (WEST)";
- icon_state = "direction_med";
- dir = 8
- },
-/obj/structure/sign/directions/evac{
- pixel_y = -10
- },
-/obj/structure/sign/directions/security{
- dir = 8;
- icon_state = "direction_sec";
- pixel_y = 10;
- tag = "icon-direction_sec (WEST)"
- },
-/turf/closed/wall,
-/area/crew_quarters/cafeteria{
- name = "Cafe"
- })
-"aHR" = (
-/obj/machinery/newscaster,
-/turf/closed/wall,
-/area/crew_quarters/cafeteria{
- name = "Cafe"
- })
-"aHS" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/door/firedoor,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/turf/open/floor/plating,
-/area/crew_quarters/cafeteria{
- name = "Cafe"
- })
-"aHT" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/light{
- icon_state = "tube1";
- dir = 8
- },
-/turf/open/floor/plasteel/green/side{
- dir = 8
- },
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"aHU" = (
-/obj/structure/flora/rock,
-/turf/open/floor/grass,
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"aHV" = (
-/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
- },
-/turf/open/floor/plating,
-/area/maintenance/starboard)
-"aHW" = (
-/obj/structure/table/wood,
-/obj/item/storage/book/bible,
-/obj/structure/cable{
- icon_state = "2-4";
- tag = "icon-2-8"
- },
-/turf/open/floor/wood,
-/area/chapel/main)
-"aHX" = (
-/obj/structure/table/wood,
-/obj/item/paper_bin,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/wood,
-/area/chapel/main)
-"aHY" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/wood,
-/area/chapel/main)
-"aHZ" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- name = "regular air vent";
- on = 1
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/wood,
-/area/chapel/main)
-"aIa" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/wood,
-/area/chapel/main)
-"aIb" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/centcom{
- name = "Funeral Parlour";
- opacity = 1
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/wood,
-/area/chapel/main)
-"aIc" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/black,
-/area/chapel/main)
-"aId" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/carpet,
-/area/chapel/main)
-"aIe" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/table/wood,
-/obj/item/storage/book/bible,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/turf/open/floor/carpet,
-/area/chapel/main)
-"aIf" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/turf/open/floor/carpet,
-/area/chapel/main)
-"aIg" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/turf/open/floor/carpet,
-/area/chapel/main)
-"aIh" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/centcom{
- name = "Chapel";
- opacity = 1
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/turf/open/floor/plasteel/black,
-/area/chapel/main)
-"aIi" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/turf/open/floor/plasteel/black,
-/area/chapel/main)
-"aIj" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/turf/open/floor/plasteel/green/side{
- dir = 8
- },
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"aIk" = (
-/obj/machinery/navbeacon{
- codes_txt = "patrol;next_patrol=EVA2";
- location = "Dorm"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/cable{
- tag = "icon-2-8";
- icon_state = "2-8"
- },
-/turf/open/floor/plasteel/green/corner{
- dir = 4
- },
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"aIl" = (
-/obj/machinery/light{
- dir = 1
- },
-/turf/open/floor/plasteel/green/side{
- dir = 1
- },
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"aIm" = (
-/turf/open/floor/plasteel/green/side{
- dir = 1
- },
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"aIn" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/green/side{
- dir = 1
- },
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"aIo" = (
-/obj/machinery/camera/autoname{
- tag = "icon-camera (SOUTHEAST)";
- icon_state = "camera";
- dir = 6
- },
-/turf/open/floor/plasteel/green/side{
- dir = 1
- },
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"aIp" = (
-/turf/open/floor/plasteel/green/corner{
- dir = 1
- },
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"aIq" = (
-/turf/open/floor/plasteel/green/corner{
- dir = 4
- },
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"aIr" = (
-/turf/open/floor/plasteel/green/side{
- dir = 1
- },
-/area/space)
-"aIs" = (
-/obj/machinery/navbeacon{
- codes_txt = "patrol;next_patrol=Dorm";
- location = "HOP2"
- },
-/turf/open/floor/plasteel/green/side{
- dir = 1
- },
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"aIt" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/green/side{
- dir = 1
- },
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"aIu" = (
-/obj/machinery/door/firedoor,
-/turf/open/floor/plasteel/green/side{
- dir = 1
- },
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"aIv" = (
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/turf/open/floor/plasteel/green/side{
- dir = 1
- },
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"aIw" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel/green/side{
- dir = 1
- },
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"aIx" = (
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/turf/open/floor/plasteel/green/side{
- dir = 1
- },
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"aIy" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/turf/open/floor/plasteel/green/side{
- dir = 1
- },
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"aIz" = (
-/obj/machinery/navbeacon{
- codes_txt = "patrol;next_patrol=HOP2";
- location = "Stbd"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"aIA" = (
-/obj/machinery/power/apc{
- dir = 2;
- name = "Chapel APC";
- pixel_x = 0;
- pixel_y = -24
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/turf/open/floor/wood,
-/area/chapel/main)
-"aIB" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/structure/cable{
- tag = "icon-2-8";
- icon_state = "2-8"
- },
-/turf/open/floor/wood,
-/area/chapel/main)
-"aIC" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/table/wood,
-/obj/item/storage/fancy/candle_box,
-/obj/item/storage/fancy/candle_box,
-/turf/open/floor/wood,
-/area/chapel/main)
-"aID" = (
-/obj/structure/table/wood,
-/obj/item/device/camera/spooky,
-/turf/open/floor/wood,
-/area/chapel/main)
-"aIE" = (
-/obj/machinery/camera/autoname{
- tag = "icon-camera (NORTHEAST)";
- icon_state = "camera";
- dir = 5
- },
-/turf/open/floor/plasteel/black,
-/area/chapel/main)
-"aIF" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/table/wood,
-/obj/item/candle,
-/obj/structure/cable{
- tag = "icon-1-2";
- icon_state = "1-2"
- },
-/turf/open/floor/carpet,
-/area/chapel/main)
-"aIG" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- name = "regular air vent";
- on = 1
- },
-/turf/open/floor/carpet,
-/area/chapel/main)
-"aIH" = (
-/obj/machinery/navbeacon{
- codes_txt = "patrol;next_patrol=Lockers";
- location = "EVA"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/green/side{
- dir = 8
- },
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"aII" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/cable{
- tag = "icon-1-2";
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/green/corner,
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"aIJ" = (
-/turf/open/floor/plasteel/green/side,
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"aIK" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/green/side,
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"aIL" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/green/side,
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"aIM" = (
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plasteel/green/side,
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"aIN" = (
-/obj/structure/cable{
- tag = "icon-1-4";
- icon_state = "1-4"
- },
-/turf/open/floor/plasteel/green/side,
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"aIO" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/green/side,
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"aIP" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/door/firedoor,
-/turf/open/floor/plasteel/green/corner{
- dir = 8
- },
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"aIQ" = (
-/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,
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"aIR" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel/green/side,
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"aIS" = (
-/obj/structure/cable{
- tag = "icon-2-8";
- icon_state = "2-8"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/turf/open/floor/plasteel/green/side,
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"aIT" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel,
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"aIU" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4";
- tag = "90Curve"
- },
-/turf/open/floor/plasteel/green/side,
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"aIV" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/turf/open/floor/plasteel/green/corner{
- dir = 8
- },
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"aIW" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/turf/open/floor/plasteel/green/side{
- dir = 4
- },
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"aIX" = (
-/obj/structure/sign/botany,
-/turf/closed/wall,
-/area/hydroponics)
-"aIY" = (
-/turf/closed/wall,
-/area/hydroponics)
-"aIZ" = (
-/turf/closed/wall,
-/area/medical/morgue)
-"aJa" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/closed/wall,
-/area/medical/morgue)
-"aJb" = (
-/obj/structure/sign/biohazard,
-/turf/closed/wall,
-/area/medical/morgue)
-"aJc" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/medical{
- name = "Morgue";
- req_access_txt = "6;5;27"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/turf/open/floor/plasteel/black,
-/area/medical/morgue)
-"aJd" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/closed/wall,
-/area/medical/morgue)
-"aJe" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/centcom{
- layer = 2.7;
- name = "Crematorium";
- opacity = 1;
- req_access_txt = "27"
- },
-/turf/open/floor/plasteel/black,
-/area/chapel/main)
-"aJf" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/chapel{
- tag = "icon-chapel (NORTHWEST)";
- icon_state = "chapel";
- dir = 9
- },
-/area/chapel/main)
-"aJg" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/cable{
- tag = "icon-1-2";
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/chapel{
- tag = "icon-chapel (NORTHEAST)";
- icon_state = "chapel";
- dir = 5
- },
-/area/chapel/main)
-"aJh" = (
-/obj/structure/chair/stool,
-/turf/open/floor/plasteel/chapel{
- tag = "icon-chapel (EAST)";
- icon_state = "chapel";
- dir = 4
- },
-/area/chapel/main)
-"aJi" = (
-/obj/structure/chair/stool,
-/turf/open/floor/plasteel/chapel{
- tag = "icon-chapel (NORTHEAST)";
- icon_state = "chapel";
- dir = 5
- },
-/area/chapel/main)
-"aJj" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/chapel{
- tag = "icon-chapel (NORTHWEST)";
- icon_state = "chapel";
- dir = 9
- },
-/area/chapel/main)
-"aJk" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 8
- },
-/obj/structure/chair/stool,
-/turf/open/floor/plasteel/chapel{
- tag = "icon-chapel (NORTHEAST)";
- icon_state = "chapel";
- dir = 5
- },
-/area/chapel/main)
-"aJl" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/chapel{
- tag = "icon-chapel (NORTH)";
- icon_state = "chapel";
- dir = 1
- },
-/area/chapel/main)
-"aJm" = (
-/obj/structure/table/wood,
-/obj/item/reagent_containers/food/drinks/bottle/wine,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/chapel{
- tag = "icon-chapel (EAST)";
- icon_state = "chapel";
- dir = 4
- },
-/area/chapel/main)
-"aJn" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/green/side{
- dir = 8
- },
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"aJo" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
-/obj/structure/cable{
- tag = "icon-1-2";
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/green/side{
- dir = 4
- },
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"aJp" = (
-/obj/structure/flora/grass/green,
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 4;
- initialize_directions = 11
- },
-/turf/open/floor/grass,
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"aJq" = (
-/obj/structure/flora/ausbushes/grassybush,
-/turf/open/floor/grass,
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"aJr" = (
-/obj/structure/flora/ausbushes/pointybush,
-/turf/open/floor/grass,
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"aJs" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/light,
-/turf/open/floor/grass,
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"aJt" = (
-/obj/machinery/door/firedoor,
-/turf/open/floor/plasteel/green/side{
- dir = 10
- },
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"aJu" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/turf/open/floor/plasteel,
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"aJv" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/camera/autoname{
- tag = "icon-camera (NORTH)";
- icon_state = "camera";
- dir = 1
- },
-/turf/open/floor/grass,
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"aJw" = (
-/obj/structure/cable{
- tag = "icon-1-2";
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel,
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"aJx" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/turf/open/floor/plasteel/green/corner{
- dir = 4
- },
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"aJy" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel/green/side{
- dir = 5
- },
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"aJz" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/door/firedoor,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/hydroponics)
-"aJA" = (
-/obj/machinery/disposal/deliveryChute{
- name = "food delivery chute"
- },
-/obj/structure/disposalpipe/trunk{
- dir = 8
- },
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plasteel/hydrofloor,
-/area/hydroponics)
-"aJB" = (
-/obj/machinery/smartfridge,
-/turf/open/floor/plasteel/hydrofloor,
-/area/hydroponics)
-"aJC" = (
-/obj/machinery/hydroponics/constructable,
-/obj/machinery/light{
- dir = 1
- },
-/turf/open/floor/plasteel/hydrofloor,
-/area/hydroponics)
-"aJD" = (
-/obj/machinery/hydroponics/constructable,
-/turf/open/floor/plasteel/hydrofloor,
-/area/hydroponics)
-"aJE" = (
-/obj/machinery/hydroponics/constructable,
-/obj/machinery/camera/autoname,
-/turf/open/floor/plasteel/hydrofloor,
-/area/hydroponics)
-"aJF" = (
-/obj/structure/sink/kitchen{
- pixel_y = 32
- },
-/turf/open/floor/plasteel/hydrofloor,
-/area/hydroponics)
-"aJG" = (
-/obj/structure/reagent_dispensers/watertank,
-/obj/item/reagent_containers/glass/bucket,
-/turf/open/floor/plasteel/hydrofloor,
-/area/hydroponics)
-"aJH" = (
-/obj/machinery/chem_master/condimaster{
- name = "CondiMaster Neo"
- },
-/turf/open/floor/plasteel,
-/area/hydroponics)
-"aJI" = (
-/obj/structure/closet/secure_closet/hydroponics,
-/turf/open/floor/plasteel,
-/area/hydroponics)
-"aJJ" = (
-/obj/structure/bodycontainer/morgue,
-/turf/open/floor/plasteel/black,
-/area/medical/morgue)
-"aJK" = (
-/turf/open/floor/plasteel/black,
-/area/medical/morgue)
-"aJL" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/black,
-/area/medical/morgue)
-"aJM" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/turf/open/floor/plasteel/black,
-/area/medical/morgue)
-"aJN" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 6
- },
-/obj/machinery/light_switch{
- pixel_y = 24
- },
-/turf/open/floor/plasteel/black,
-/area/medical/morgue)
-"aJO" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
-/obj/machinery/light/small{
- dir = 1
- },
-/turf/open/floor/plasteel/black,
-/area/medical/morgue)
-"aJP" = (
-/obj/structure/filingcabinet/medical,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/black,
-/area/medical/morgue)
-"aJQ" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/closed/wall,
-/area/medical/morgue)
-"aJR" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/item/device/radio/intercom{
- dir = 8;
- pixel_x = -28
- },
-/turf/open/floor/plasteel/black,
-/area/chapel/main)
-"aJS" = (
-/obj/structure/bodycontainer/crematorium,
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 1
- },
-/turf/open/floor/plasteel/black,
-/area/chapel/main)
-"aJT" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/closed/wall,
-/area/chapel/main)
-"aJU" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/effect/landmark/xmastree,
-/turf/open/floor/plasteel/black,
-/area/chapel/main)
-"aJV" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/light,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/chapel{
- tag = "icon-chapel (SOUTHWEST)";
- icon_state = "chapel";
- dir = 10
- },
-/area/chapel/main)
-"aJW" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
-/obj/structure/cable{
- tag = "icon-1-2";
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/chapel{
- tag = "icon-chapel (SOUTHEAST)";
- icon_state = "chapel";
- dir = 6
- },
-/area/chapel/main)
-"aJX" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 1
- },
-/turf/open/floor/plasteel/chapel{
- tag = "icon-chapel (WEST)";
- icon_state = "chapel";
- dir = 8
- },
-/area/chapel/main)
-"aJY" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/chapel,
-/area/chapel/main)
-"aJZ" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/chapel{
- tag = "icon-chapel (SOUTHWEST)";
- icon_state = "chapel";
- dir = 10
- },
-/area/chapel/main)
-"aKa" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/chapel{
- tag = "icon-chapel (SOUTHEAST)";
- icon_state = "chapel";
- dir = 6
- },
-/area/chapel/main)
-"aKb" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/chapel{
- tag = "icon-chapel (WEST)";
- icon_state = "chapel";
- dir = 8
- },
-/area/chapel/main)
-"aKc" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
-/turf/open/floor/plasteel/chapel{
- tag = "icon-chapel (SOUTHWEST)";
- icon_state = "chapel";
- dir = 10
- },
-/area/chapel/main)
-"aKd" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/light,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/chapel{
- tag = "icon-chapel (SOUTHEAST)";
- icon_state = "chapel";
- dir = 6
- },
-/area/chapel/main)
-"aKe" = (
-/obj/structure/table/wood,
-/obj/item/reagent_containers/food/snacks/bun,
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 1
- },
-/turf/open/floor/plasteel/chapel,
-/area/chapel/main)
-"aKf" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
-/turf/open/floor/plasteel/green/side{
- dir = 8
- },
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"aKg" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/cable{
- tag = "icon-1-2";
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/green/side{
- dir = 4
- },
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"aKh" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/closed/wall,
-/area/crew_quarters/theatre)
-"aKi" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 10
- },
-/turf/closed/wall,
-/area/crew_quarters/theatre)
-"aKj" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/closed/wall,
-/area/crew_quarters/theatre)
-"aKk" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/door/firedoor,
-/turf/open/floor/plating,
-/area/crew_quarters/theatre)
-"aKl" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/closed/wall,
-/area/crew_quarters/theatre)
-"aKm" = (
-/turf/closed/wall,
-/area/crew_quarters/theatre)
-"aKn" = (
-/obj/structure/flora/ausbushes/pointybush,
-/obj/machinery/camera/autoname{
- tag = "icon-camera (SOUTHWEST)";
- icon_state = "camera";
- dir = 10
- },
-/turf/open/floor/grass,
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"aKo" = (
-/turf/closed/wall,
-/area/crew_quarters/bar)
-"aKp" = (
-/obj/machinery/navbeacon{
- codes_txt = "delivery;dir=2";
- freq = 1400;
- location = "Bar"
- },
-/obj/structure/plasticflaps{
- opacity = 1
- },
-/obj/machinery/door/firedoor/heavy,
-/turf/open/floor/plasteel{
- dir = 2;
- icon_state = "bot"
- },
-/area/crew_quarters/bar)
-"aKq" = (
-/obj/structure/disposalpipe/segment,
-/turf/closed/wall,
-/area/crew_quarters/bar)
-"aKr" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/turf/open/floor/plasteel,
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"aKs" = (
-/obj/machinery/light,
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/machinery/power/apc{
- dir = 2;
- name = "Kitchen APC";
- pixel_y = -24
- },
-/turf/open/floor/grass,
-/area/crew_quarters/kitchen)
-"aKt" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 8
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel,
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"aKu" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"aKv" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/green/side{
- dir = 4
- },
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"aKw" = (
-/obj/structure/table/reinforced,
-/obj/machinery/door/window/northleft{
- dir = 8;
- name = "Hydroponics Desk";
- req_access_txt = "35"
- },
-/obj/machinery/door/firedoor/heavy,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/hydrofloor,
-/area/hydroponics)
-"aKx" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/effect/turf_decal/bot,
-/turf/open/floor/plasteel/hydrofloor,
-/area/hydroponics)
-"aKy" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 1
- },
-/turf/open/floor/plasteel/hydrofloor,
-/area/hydroponics)
-"aKz" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 8;
- name = "regular air vent";
- on = 1
- },
-/turf/open/floor/plasteel/hydrofloor,
-/area/hydroponics)
-"aKA" = (
-/turf/open/floor/plasteel/hydrofloor,
-/area/hydroponics)
-"aKB" = (
-/obj/machinery/airalarm{
- dir = 8;
- icon_state = "alarm0";
- pixel_x = 24
- },
-/turf/open/floor/plasteel/hydrofloor,
-/area/hydroponics)
-"aKC" = (
-/obj/machinery/light/small{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/hydroponics)
-"aKD" = (
-/turf/open/floor/plasteel,
-/area/hydroponics)
-"aKE" = (
-/obj/machinery/door/airlock/maintenance{
- name = "Hydroponics Maintenance";
- req_access_txt = "35";
- req_one_access_txt = "0"
- },
-/turf/open/floor/plating,
-/area/maintenance/starboard)
-"aKF" = (
-/turf/closed/wall/mineral/iron{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/medical/morgue{
- name = "Crypt"
- })
-"aKG" = (
-/obj/structure/bodycontainer/morgue,
-/obj/machinery/light/small{
- dir = 8
- },
-/turf/open/floor/plasteel/black,
-/area/medical/morgue)
-"aKH" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/bodycontainer/morgue,
-/obj/effect/landmark{
- name = "revenantspawn"
- },
-/turf/open/floor/plasteel/black,
-/area/medical/morgue)
-"aKI" = (
-/obj/structure/bodycontainer/morgue,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/turf/open/floor/plasteel/black,
-/area/medical/morgue)
-"aKJ" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/bodycontainer/morgue,
-/obj/effect/landmark{
- name = "revenantspawn"
- },
-/turf/open/floor/plasteel/black,
-/area/medical/morgue)
-"aKK" = (
-/obj/machinery/camera/autoname{
- tag = "icon-camera (NORTHWEST)";
- icon_state = "camera";
- dir = 9
- },
-/turf/open/floor/plasteel/black,
-/area/medical/morgue)
-"aKL" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/airalarm{
- dir = 4;
- pixel_x = -23;
- pixel_y = 0
- },
-/turf/open/floor/plasteel/black,
-/area/chapel/main)
-"aKM" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- tag = "icon-vent_map (NORTH)";
- name = "regular air vent";
- icon_state = "vent_map";
- dir = 1;
- on = 1
- },
-/turf/open/floor/plasteel/black,
-/area/chapel/main)
-"aKN" = (
-/turf/closed/wall,
-/area/chapel/office)
-"aKO" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/closed/wall,
-/area/chapel/office)
-"aKP" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/centcom{
- name = "Chapel Office";
- opacity = 1;
- req_access_txt = "27"
- },
-/obj/structure/cable{
- tag = "icon-1-2";
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/black,
-/area/chapel/office)
-"aKQ" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/closed/wall,
-/area/chapel/office)
-"aKR" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/door/firedoor,
-/turf/open/floor/plating,
-/area/chapel/main)
-"aKS" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/closed/wall,
-/area/chapel/main)
-"aKT" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/door/firedoor,
-/turf/open/floor/plating,
-/area/chapel/main)
-"aKU" = (
-/obj/structure/sign/directions/medical,
-/turf/closed/wall,
-/area/chapel/main)
-"aKV" = (
-/obj/machinery/door/firedoor,
-/turf/open/floor/plasteel/green/side{
- dir = 8
- },
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"aKW" = (
-/obj/structure/cable{
- tag = "icon-1-2";
- icon_state = "1-2"
- },
-/obj/machinery/door/firedoor,
-/obj/structure/cable{
- tag = "icon-1-4";
- icon_state = "1-4"
- },
-/turf/open/floor/plasteel/green/side{
- dir = 4
- },
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"aKX" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/door/firedoor,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/turf/open/floor/plating,
-/area/crew_quarters/theatre)
-"aKY" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/obj/machinery/computer/arcade,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/wood,
-/area/crew_quarters/theatre)
-"aKZ" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
- },
-/obj/machinery/status_display{
- density = 0;
- layer = 4;
- pixel_x = 0;
- pixel_y = 31
- },
-/turf/open/floor/wood,
-/area/crew_quarters/theatre)
-"aLa" = (
-/obj/machinery/computer/slot_machine,
-/turf/open/floor/carpet,
-/area/crew_quarters/theatre)
-"aLb" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/table/wood,
-/obj/item/gun/ballistic/revolver/russian,
-/turf/open/floor/wood,
-/area/crew_quarters/theatre)
-"aLc" = (
-/obj/machinery/vending/clothing,
-/turf/open/floor/wood,
-/area/crew_quarters/theatre)
-"aLd" = (
-/obj/machinery/power/apc{
- dir = 1;
- name = "Theatre APC";
- pixel_x = 0;
- pixel_y = 25
- },
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
- },
-/turf/open/floor/wood,
-/area/crew_quarters/theatre)
-"aLe" = (
-/obj/machinery/light{
- dir = 1
- },
-/obj/structure/dresser,
-/turf/open/floor/wood,
-/area/crew_quarters/theatre)
-"aLf" = (
-/obj/machinery/vending/autodrobe,
-/turf/open/floor/wood,
-/area/crew_quarters/theatre)
-"aLg" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/maintenance{
- name = "Bar Storage Maintenance";
- req_access_txt = "25"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/turf/open/floor/plating,
-/area/crew_quarters/bar)
-"aLh" = (
-/obj/machinery/door/window/southleft{
- base_state = "left";
- dir = 2;
- icon_state = "left";
- name = "Bar Delivery";
- req_access_txt = "25"
- },
-/turf/open/floor/plasteel{
- icon_state = "delivery"
- },
-/area/crew_quarters/bar)
-"aLi" = (
-/turf/closed/wall,
-/area/crew_quarters/kitchen)
-"aLj" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/closed/wall,
-/area/crew_quarters/kitchen)
-"aLk" = (
-/obj/machinery/door/airlock/maintenance{
- name = "Kitchen Maintenance";
- req_access_txt = "28"
- },
-/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/kitchen)
-"aLl" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/camera/autoname{
- tag = "icon-camera (EAST)";
- icon_state = "camera";
- dir = 4
- },
-/turf/open/floor/plasteel/green/side{
- dir = 8
- },
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"aLm" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel,
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"aLn" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/turf/open/floor/plasteel,
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"aLo" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/turf/open/floor/plasteel/green/side{
- dir = 4
- },
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"aLp" = (
-/obj/structure/table/reinforced,
-/obj/machinery/door/window/northleft{
- dir = 8;
- name = "Hydroponics Desk";
- req_access_txt = "35"
- },
-/obj/machinery/door/firedoor/heavy,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/turf/open/floor/plasteel/hydrofloor,
-/area/hydroponics)
-"aLq" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/turf/open/floor/plasteel/hydrofloor,
-/area/hydroponics)
-"aLr" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 5
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/turf/open/floor/plasteel/hydrofloor,
-/area/hydroponics)
-"aLs" = (
-/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/hydrofloor,
-/area/hydroponics)
-"aLt" = (
-/obj/machinery/biogenerator,
-/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/hydrofloor,
-/area/hydroponics)
-"aLu" = (
-/obj/machinery/seed_extractor,
-/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/hydrofloor,
-/area/hydroponics)
-"aLv" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/obj/effect/landmark/start{
- name = "Botanist"
- },
-/turf/open/floor/plasteel/hydrofloor,
-/area/hydroponics)
-"aLw" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
- },
-/turf/open/floor/plasteel/hydrofloor,
-/area/hydroponics)
-"aLx" = (
-/obj/machinery/hydroponics/constructable,
-/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/hydrofloor,
-/area/hydroponics)
-"aLy" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/closed/wall,
-/area/hydroponics)
-"aLz" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/table,
-/obj/machinery/juicer,
-/obj/item/book/manual/hydroponics_pod_people,
-/obj/machinery/camera/autoname{
- tag = "icon-camera (EAST)";
- icon_state = "camera";
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hydroponics)
-"aLA" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 8;
- name = "regular air vent";
- on = 1
- },
-/obj/effect/landmark/start{
- name = "Botanist"
- },
-/turf/open/floor/plasteel,
-/area/hydroponics)
-"aLB" = (
-/obj/structure/closet/wardrobe/botanist,
-/turf/open/floor/plasteel,
-/area/hydroponics)
-"aLC" = (
-/obj/structure/bodycontainer/morgue,
-/obj/effect/landmark{
- name = "revenantspawn"
- },
-/turf/open/floor/plating/airless/astplate{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/medical/morgue{
- name = "Crypt"
- })
-"aLD" = (
-/turf/open/floor/plating/airless/astplate{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/medical/morgue{
- name = "Crypt"
- })
-"aLE" = (
-/obj/structure/bodycontainer/morgue,
-/turf/open/floor/plating/airless/astplate{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/medical/morgue{
- name = "Crypt"
- })
-"aLF" = (
-/obj/machinery/light/small{
- dir = 4
- },
-/turf/open/floor/plating/airless/astplate{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/fore)
-"aLG" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 1;
- name = "regular air scrubber";
- on = 1
- },
-/turf/open/floor/plasteel/black,
-/area/medical/morgue)
-"aLH" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- tag = "icon-vent_map (NORTH)";
- name = "regular air vent";
- icon_state = "vent_map";
- dir = 1;
- on = 1
- },
-/turf/open/floor/plasteel/black,
-/area/medical/morgue)
-"aLI" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/centcom{
- layer = 2.7;
- name = "Crematorium";
- opacity = 1;
- req_access_txt = "27"
- },
-/turf/open/floor/plasteel/black,
-/area/medical/morgue)
-"aLJ" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 1;
- name = "regular air scrubber";
- on = 1
- },
-/turf/open/floor/plasteel/black,
-/area/chapel/main)
-"aLK" = (
-/obj/machinery/light/small{
- dir = 4
- },
-/turf/open/floor/plasteel/black,
-/area/chapel/main)
-"aLL" = (
-/obj/structure/closet/wardrobe/chaplain_black,
-/obj/item/storage/book/bible/booze,
-/obj/item/nullrod,
-/turf/open/floor/plasteel/grimy,
-/area/chapel/office)
-"aLM" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/bookcase{
- name = "Holy Bookcase"
- },
-/turf/open/floor/plasteel/grimy,
-/area/chapel/office)
-"aLN" = (
-/obj/structure/cable{
- tag = "icon-1-2";
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/grimy,
-/area/chapel/office)
-"aLO" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/filingcabinet/chestdrawer,
-/turf/open/floor/plasteel/grimy,
-/area/chapel/office)
-"aLP" = (
-/obj/structure/disposalpipe/trunk{
- dir = 4
- },
-/obj/machinery/disposal/bin,
-/turf/open/floor/plasteel/grimy,
-/area/chapel/office)
-"aLQ" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/closed/wall,
-/area/chapel/office)
-"aLR" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/flora/grass/green,
-/turf/open/floor/grass,
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"aLS" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/light{
- dir = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/grass,
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"aLT" = (
-/obj/structure/disposalpipe/junction{
- icon_state = "pipe-j1";
- dir = 4
- },
-/turf/open/floor/grass,
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"aLU" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/grass,
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"aLV" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/camera/autoname{
- tag = "icon-camera (SOUTHEAST)";
- icon_state = "camera";
- dir = 6
- },
-/turf/open/floor/grass,
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"aLW" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel/green/side{
- dir = 8
- },
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"aLX" = (
-/obj/machinery/light{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- tag = "icon-1-2";
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/green/side{
- dir = 4
- },
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"aLY" = (
-/obj/structure/grille,
-/obj/machinery/door/firedoor,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/crew_quarters/theatre)
-"aLZ" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/wood,
-/area/crew_quarters/theatre)
-"aMa" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 8
- },
-/turf/open/floor/wood,
-/area/crew_quarters/theatre)
-"aMb" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 1
- },
-/obj/structure/chair/stool,
-/turf/open/floor/carpet,
-/area/crew_quarters/theatre)
-"aMc" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/structure/chair/stool,
-/turf/open/floor/carpet,
-/area/crew_quarters/theatre)
-"aMd" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- name = "regular air vent";
- on = 1
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/structure/chair/stool,
-/turf/open/floor/carpet,
-/area/crew_quarters/theatre)
-"aMe" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/structure/table/wood,
-/turf/open/floor/wood,
-/area/crew_quarters/theatre)
-"aMf" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/closed/wall,
-/area/crew_quarters/theatre)
-"aMg" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/item/device/radio/intercom{
- dir = 8;
- pixel_x = -28
- },
-/turf/open/floor/wood,
-/area/crew_quarters/theatre)
-"aMh" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 1
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/turf/open/floor/wood,
-/area/crew_quarters/theatre)
-"aMi" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- name = "regular air vent";
- on = 1
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/wood,
-/area/crew_quarters/theatre)
-"aMj" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/wood,
-/area/crew_quarters/theatre)
-"aMk" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/turf/open/floor/wood,
-/area/crew_quarters/bar)
-"aMl" = (
-/obj/structure/closet/secure_closet/bar,
-/obj/item/vending_refill/boozeomat,
-/obj/item/vending_refill/cigarette,
-/obj/machinery/atmospherics/components/unary/vent_pump{
- name = "regular air vent";
- on = 1
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/wood,
-/area/crew_quarters/bar)
-"aMm" = (
-/obj/machinery/light/small{
- dir = 1
- },
-/obj/item/clothing/head/that,
-/obj/structure/table/wood,
-/obj/item/wrench,
-/obj/item/clothing/glasses/sunglasses/reagent,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/wood,
-/area/crew_quarters/bar)
-"aMn" = (
-/obj/item/storage/secure/safe{
- pixel_y = 32
- },
-/obj/structure/reagent_dispensers/beerkeg,
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 1
- },
-/turf/open/floor/wood,
-/area/crew_quarters/bar)
-"aMo" = (
-/obj/structure/closet/gmcloset,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/wood,
-/area/crew_quarters/bar)
-"aMp" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/closed/wall,
-/area/crew_quarters/bar)
-"aMq" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/structure/closet/secure_closet/freezer/kitchen,
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/kitchen)
-"aMr" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/structure/closet/secure_closet/freezer/fridge,
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/kitchen)
-"aMs" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/machinery/deepfryer,
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/kitchen)
-"aMt" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/structure/table,
-/obj/machinery/microwave,
-/obj/machinery/light{
- dir = 1
- },
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/kitchen)
-"aMu" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/structure/table,
-/obj/machinery/microwave,
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/kitchen)
-"aMv" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 1
- },
-/turf/closed/wall,
-/area/crew_quarters/kitchen)
-"aMw" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 1
- },
-/obj/machinery/icecream_vat,
-/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/kitchen)
-"aMx" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/kitchen)
-"aMy" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/machinery/gibber,
-/obj/machinery/camera/autoname,
-/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/kitchen)
-"aMz" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/machinery/light{
- dir = 1
- },
-/obj/structure/kitchenspike,
-/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/kitchen)
-"aMA" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
- },
-/obj/structure/kitchenspike,
-/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/kitchen)
-"aMB" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/structure/disposaloutlet{
- dir = 2;
- name = "food delivery outlet"
- },
-/obj/structure/disposalpipe/trunk{
- dir = 4
- },
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/kitchen)
-"aMC" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/closed/wall,
-/area/crew_quarters/kitchen)
-"aMD" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel/green/side{
- dir = 8
- },
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"aME" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/turf/open/floor/plasteel,
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"aMF" = (
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plasteel,
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"aMG" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/door/firedoor,
-/turf/open/floor/plating,
-/area/hydroponics)
-"aMH" = (
-/obj/structure/reagent_dispensers/watertank/high,
-/obj/item/watertank,
-/turf/open/floor/plasteel/hydrofloor,
-/area/hydroponics)
-"aMI" = (
-/obj/effect/landmark/start{
- name = "Botanist"
- },
-/turf/open/floor/plasteel/hydrofloor,
-/area/hydroponics)
-"aMJ" = (
-/obj/machinery/vending/hydroseeds,
-/turf/open/floor/plasteel/hydrofloor,
-/area/hydroponics)
-"aMK" = (
-/obj/machinery/vending/hydronutrients,
-/turf/open/floor/plasteel/hydrofloor,
-/area/hydroponics)
-"aML" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 2;
- name = "regular air scrubber";
- on = 1
- },
-/turf/open/floor/plasteel/hydrofloor,
-/area/hydroponics)
-"aMM" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/turf/open/floor/plasteel/hydrofloor,
-/area/hydroponics)
-"aMN" = (
-/obj/item/device/radio/intercom{
- dir = 8;
- pixel_x = -28
- },
-/obj/machinery/plantgenes,
-/turf/open/floor/plasteel,
-/area/hydroponics)
-"aMO" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 2;
- name = "regular air scrubber";
- on = 1
- },
-/turf/open/floor/plasteel,
-/area/hydroponics)
-"aMP" = (
-/obj/structure/closet/crate/hydroponics,
-/obj/item/shovel/spade,
-/obj/item/wrench,
-/obj/item/reagent_containers/glass/bucket,
-/turf/open/floor/plasteel{
- icon_state = "hydrofloor"
- },
-/area/hydroponics)
-"aMQ" = (
-/obj/structure/ore_box,
-/turf/open/floor/plating/asteroid/airless{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/ruin/unpowered{
- name = "Asteroid"
- })
-"aMR" = (
-/obj/structure/mineral_door/iron,
-/turf/open/floor/plating/airless/astplate{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/medical/morgue{
- name = "Crypt"
- })
-"aMS" = (
-/turf/open/floor/plating/airless/astplate{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/ruin/unpowered{
- name = "Asteroid"
- })
-"aMT" = (
-/obj/machinery/door/airlock/external,
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"aMU" = (
-/obj/machinery/door/airlock/maintenance{
- name = "Morgue Maintenance";
- req_access_txt = "6"
- },
-/turf/open/floor/plating,
-/area/medical/morgue)
-"aMV" = (
-/obj/structure/bodycontainer/morgue,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/effect/landmark{
- name = "revenantspawn"
- },
-/turf/open/floor/plasteel/black,
-/area/medical/morgue)
-"aMW" = (
-/obj/structure/table/wood,
-/obj/item/storage/box/bodybags,
-/obj/item/pen,
-/obj/machinery/airalarm{
- dir = 8;
- icon_state = "alarm0";
- pixel_x = 24
- },
-/turf/open/floor/plasteel/black,
-/area/medical/morgue)
-"aMX" = (
-/obj/structure/bodycontainer/morgue,
-/turf/open/floor/plasteel/black,
-/area/chapel/main)
-"aMY" = (
-/obj/machinery/camera/autoname{
- tag = "icon-camera (NORTHWEST)";
- icon_state = "camera";
- dir = 9
- },
-/turf/open/floor/plasteel/black,
-/area/chapel/main)
-"aMZ" = (
-/obj/machinery/airalarm{
- dir = 4;
- pixel_x = -23;
- pixel_y = 0
- },
-/turf/open/floor/plasteel/grimy,
-/area/chapel/office)
-"aNa" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 1;
- name = "regular air scrubber";
- on = 1
- },
-/turf/open/floor/plasteel/grimy,
-/area/chapel/office)
-"aNb" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- tag = "icon-vent_map (NORTH)";
- name = "regular air vent";
- icon_state = "vent_map";
- dir = 1;
- on = 1
- },
-/turf/open/floor/plasteel/grimy,
-/area/chapel/office)
-"aNc" = (
-/turf/open/floor/plasteel/grimy,
-/area/chapel/office)
-"aNd" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/door/firedoor,
-/turf/open/floor/plating,
-/area/chapel/office)
-"aNe" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/flora/grass/green,
-/turf/open/floor/grass,
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"aNf" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/flora/grass/green,
-/turf/open/floor/grass,
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"aNg" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/grass,
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"aNh" = (
-/turf/open/floor/plasteel/green/side{
- dir = 8
- },
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"aNi" = (
-/obj/structure/cable{
- tag = "icon-1-2";
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/green/side{
- dir = 4
- },
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"aNj" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 5
- },
-/turf/open/floor/wood,
-/area/crew_quarters/theatre)
-"aNk" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/wood,
-/area/crew_quarters/theatre)
-"aNl" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 1;
- name = "regular air scrubber";
- on = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/wood,
-/area/crew_quarters/theatre)
-"aNm" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/wood,
-/area/crew_quarters/theatre)
-"aNn" = (
-/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,
-/turf/open/floor/wood,
-/area/crew_quarters/theatre)
-"aNo" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
-/obj/structure/table/wood,
-/turf/open/floor/wood,
-/area/crew_quarters/theatre)
-"aNp" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/camera/autoname{
- tag = "icon-camera (NORTHEAST)";
- icon_state = "camera";
- dir = 5
- },
-/turf/open/floor/wood,
-/area/crew_quarters/theatre)
-"aNq" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 1;
- name = "regular air scrubber";
- on = 1
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/turf/open/floor/wood,
-/area/crew_quarters/theatre)
-"aNr" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
-/obj/structure/chair/stool,
-/obj/effect/landmark/start{
- name = "Mime"
- },
-/turf/open/floor/wood,
-/area/crew_quarters/theatre)
-"aNs" = (
-/obj/structure/table/wood,
-/obj/structure/mirror{
- pixel_x = 32
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/wood,
-/area/crew_quarters/theatre)
-"aNt" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4";
- tag = ""
- },
-/turf/open/floor/wood,
-/area/crew_quarters/bar)
-"aNu" = (
-/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/wood,
-/area/crew_quarters/bar)
-"aNv" = (
-/obj/effect/landmark/start{
- name = "Bartender"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/wood,
-/area/crew_quarters/bar)
-"aNw" = (
-/obj/machinery/power/apc{
- dir = 2;
- name = "Bar APC";
- pixel_y = -24
- },
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/wood,
-/area/crew_quarters/bar)
-"aNx" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/mob/living/simple_animal/bot/cleanbot{
- name = "C.L.E.A.N."
- },
-/turf/open/floor/wood,
-/area/crew_quarters/bar)
-"aNy" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/closed/wall,
-/area/crew_quarters/bar)
-"aNz" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/item/device/radio/intercom{
- dir = 8;
- pixel_x = -28
- },
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/kitchen)
-"aNA" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/kitchen)
-"aNB" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/effect/landmark/start{
- name = "Cook"
- },
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/kitchen)
-"aNC" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/kitchen)
-"aND" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/closed/wall,
-/area/crew_quarters/kitchen)
-"aNE" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 1;
- name = "regular air scrubber";
- on = 1
- },
-/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/kitchen)
-"aNF" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 1
- },
-/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/kitchen)
-"aNG" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- tag = "icon-vent_map (WEST)";
- icon_state = "vent_map";
- dir = 8
- },
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/kitchen)
-"aNH" = (
-/mob/living/simple_animal/hostile/retaliate/goat{
- name = "Pete"
- },
-/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/kitchen)
-"aNI" = (
-/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
- },
-/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/kitchen)
-"aNJ" = (
-/obj/effect/turf_decal/delivery,
-/obj/machinery/door/window/northleft{
- dir = 2
- },
-/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/kitchen)
-"aNK" = (
-/obj/machinery/navbeacon{
- codes_txt = "delivery;dir=2";
- freq = 1400;
- location = "Kitchen"
- },
-/obj/structure/plasticflaps{
- opacity = 1
- },
-/turf/open/floor/plasteel{
- dir = 2;
- icon_state = "bot"
- },
-/area/crew_quarters/kitchen)
-"aNL" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"aNM" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/green/side{
- dir = 4
- },
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"aNN" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/closed/wall,
-/area/hydroponics)
-"aNO" = (
-/obj/structure/extinguisher_cabinet{
- pixel_x = -24
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/hydrofloor,
-/area/hydroponics)
-"aNP" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/hydrofloor,
-/area/hydroponics)
-"aNQ" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
-/turf/open/floor/plasteel/hydrofloor,
-/area/hydroponics)
-"aNR" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/turf/open/floor/plasteel/hydrofloor,
-/area/hydroponics)
-"aNS" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/turf/open/floor/plasteel/hydrofloor,
-/area/hydroponics)
-"aNT" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/machinery/door/airlock/glass{
- name = "Hydroponics Storage"
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/turf/open/floor/plasteel,
-/area/hydroponics)
-"aNU" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/turf/open/floor/plasteel,
-/area/hydroponics)
-"aNV" = (
-/obj/machinery/light/small{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 9
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
- },
-/turf/open/floor/plasteel,
-/area/hydroponics)
-"aNW" = (
-/obj/structure/ore_box,
-/obj/machinery/camera/autoname{
- tag = "icon-camera (NORTH)";
- icon_state = "camera";
- dir = 1
- },
-/turf/open/floor/plating/airless/astplate{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/quartermaster/miningdock)
-"aNX" = (
-/turf/open/floor/plating/airless/astplate{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/quartermaster/miningdock)
-"aNY" = (
-/obj/structure/ore_box,
-/turf/open/floor/plating/airless/astplate{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/quartermaster/miningdock)
-"aNZ" = (
-/obj/machinery/camera/autoname{
- tag = "icon-camera (NORTHWEST)";
- icon_state = "camera";
- dir = 9
- },
-/turf/open/floor/plating/airless/astplate{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/fore)
-"aOa" = (
-/obj/structure/bodycontainer/morgue,
-/obj/machinery/camera/autoname{
- tag = "icon-camera (NORTHEAST)";
- icon_state = "camera";
- dir = 5
- },
-/turf/open/floor/plasteel/black,
-/area/medical/morgue)
-"aOb" = (
-/obj/structure/chair/wood/normal{
- tag = "icon-wooden_chair (EAST)";
- icon_state = "wooden_chair";
- dir = 4
- },
-/turf/open/floor/plasteel/black,
-/area/medical/morgue)
-"aOc" = (
-/obj/structure/table/wood,
-/obj/item/folder/white,
-/turf/open/floor/plasteel/black,
-/area/medical/morgue)
-"aOd" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/tinted/fulltile,
-/obj/machinery/door/firedoor/heavy,
-/turf/open/floor/plating,
-/area/chapel/main)
-"aOe" = (
-/obj/machinery/camera/autoname{
- tag = "icon-camera (NORTHEAST)";
- icon_state = "camera";
- dir = 5
- },
-/turf/open/floor/plasteel/grimy,
-/area/chapel/office)
-"aOf" = (
-/obj/structure/table/wood,
-/obj/item/device/flashlight/lamp,
-/turf/open/floor/plasteel/grimy,
-/area/chapel/office)
-"aOg" = (
-/obj/structure/table/wood,
-/obj/item/reagent_containers/food/drinks/bottle/holywater,
-/obj/structure/cable{
- tag = "icon-1-2";
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/grimy,
-/area/chapel/office)
-"aOh" = (
-/obj/structure/table/wood,
-/obj/item/storage/fancy/candle_box,
-/obj/item/storage/fancy/candle_box,
-/turf/open/floor/plasteel/grimy,
-/area/chapel/office)
-"aOi" = (
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/grass,
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"aOj" = (
-/turf/open/floor/wood,
-/area/crew_quarters/theatre)
-"aOk" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/chair/stool,
-/turf/open/floor/wood,
-/area/crew_quarters/theatre)
-"aOl" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/chair/stool,
-/turf/open/floor/wood,
-/area/crew_quarters/theatre)
-"aOm" = (
-/obj/structure/chair/stool,
-/turf/open/floor/wood,
-/area/crew_quarters/theatre)
-"aOn" = (
-/obj/structure/disposalpipe/trunk,
-/obj/machinery/disposal/bin,
-/turf/open/floor/wood,
-/area/crew_quarters/theatre)
-"aOo" = (
-/obj/machinery/light_switch{
- dir = 8;
- pixel_x = -24
- },
-/turf/open/floor/wood,
-/area/crew_quarters/theatre)
-"aOp" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/turf/open/floor/wood,
-/area/crew_quarters/theatre)
-"aOq" = (
-/obj/structure/table/wood,
-/obj/item/lipstick,
-/turf/open/floor/wood,
-/area/crew_quarters/theatre)
-"aOr" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock{
- name = "Bar Storage";
- req_access_txt = "25"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/turf/open/floor/wood,
-/area/crew_quarters/bar)
-"aOs" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/closed/wall,
-/area/crew_quarters/bar)
-"aOt" = (
-/obj/machinery/vending/boozeomat,
-/turf/closed/wall,
-/area/crew_quarters/bar)
-"aOu" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/closed/wall,
-/area/crew_quarters/bar)
-"aOv" = (
-/obj/structure/disposalpipe/junction{
- dir = 1;
- icon_state = "pipe-j1";
- tag = "icon-pipe-j1 (EAST)"
- },
-/turf/closed/wall,
-/area/crew_quarters/bar)
-"aOw" = (
-/obj/machinery/light{
- dir = 8
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/kitchen)
-"aOx" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/table,
-/obj/item/kitchen/rollingpin,
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/kitchen)
-"aOy" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/table,
-/obj/item/reagent_containers/food/condiment/enzyme,
-/obj/item/reagent_containers/food/condiment/saltshaker{
- pixel_x = 9
- },
-/obj/item/reagent_containers/food/condiment/peppermill,
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/kitchen)
-"aOz" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/table,
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/kitchen)
-"aOA" = (
-/obj/structure/disposalpipe/junction{
- dir = 8;
- icon_state = "pipe-j2"
- },
-/obj/structure/table,
-/obj/item/storage/fancy/donut_box,
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/kitchen)
-"aOB" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/closed/wall,
-/area/crew_quarters/kitchen)
-"aOC" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/closet/secure_closet/freezer/meat,
-/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/kitchen)
-"aOD" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/kitchen)
-"aOE" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/kitchen)
-"aOF" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/closed/wall,
-/area/crew_quarters/kitchen)
-"aOG" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"aOH" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"aOI" = (
-/obj/machinery/door/firedoor,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/door/airlock/glass{
- name = "Hydroponics"
- },
-/turf/open/floor/plasteel/hydrofloor,
-/area/hydroponics)
-"aOJ" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel/hydrofloor,
-/area/hydroponics)
-"aOK" = (
-/obj/machinery/hydroponics/constructable,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/firealarm{
- dir = 1;
- pixel_y = -24
- },
-/turf/open/floor/plasteel/hydrofloor,
-/area/hydroponics)
-"aOL" = (
-/obj/machinery/hydroponics/constructable,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/light,
-/turf/open/floor/plasteel/hydrofloor,
-/area/hydroponics)
-"aOM" = (
-/obj/machinery/hydroponics/constructable,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel/hydrofloor,
-/area/hydroponics)
-"aON" = (
-/obj/machinery/disposal/bin,
-/obj/structure/disposalpipe/trunk{
- dir = 8
- },
-/turf/open/floor/plasteel/hydrofloor,
-/area/hydroponics)
-"aOO" = (
-/obj/machinery/firealarm{
- dir = 1;
- pixel_y = -24
- },
-/turf/open/floor/plasteel,
-/area/hydroponics)
-"aOP" = (
-/obj/machinery/power/apc{
- dir = 2;
- name = "Hydroponics APC";
- pixel_y = -24
- },
-/obj/structure/cable,
-/turf/open/floor/plasteel,
-/area/hydroponics)
-"aOQ" = (
-/obj/machinery/door/window/eastright{
- dir = 8;
- name = "Hydroponics Delivery";
- req_access_txt = "35"
- },
-/turf/open/floor/plasteel{
- icon_state = "delivery"
- },
-/area/hydroponics)
-"aOR" = (
-/obj/machinery/navbeacon{
- codes_txt = "delivery;dir=2";
- freq = 1400;
- location = "Hydroponics"
- },
-/obj/structure/plasticflaps{
- opacity = 1
- },
-/obj/machinery/door/firedoor/heavy,
-/turf/open/floor/plasteel{
- dir = 2;
- icon_state = "bot"
- },
-/area/hydroponics)
-"aOS" = (
-/turf/closed/wall,
-/area/quartermaster/miningdock)
-"aOT" = (
-/obj/machinery/door/airlock/external{
- name = "Mining Airlock";
- req_access = null;
- req_access_txt = "48"
- },
-/turf/open/floor/noslip,
-/area/quartermaster/miningdock)
-"aOU" = (
-/turf/closed/wall,
-/area/maintenance/port)
-"aOV" = (
-/turf/open/floor/plating,
-/area/maintenance/port)
-"aOW" = (
-/obj/structure/bodycontainer/morgue,
-/obj/effect/landmark{
- name = "revenantspawn"
- },
-/turf/open/floor/plasteel/black,
-/area/medical/morgue)
-"aOX" = (
-/obj/structure/table/wood,
-/obj/machinery/light/small{
- dir = 4
- },
-/turf/open/floor/plasteel/black,
-/area/medical/morgue)
-"aOY" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4";
- tag = "90Curve"
- },
-/obj/structure/chair/wood/wings{
- dir = 1
- },
-/obj/effect/landmark/start{
- name = "Chaplain"
- },
-/turf/open/floor/plasteel/grimy,
-/area/chapel/office)
-"aOZ" = (
-/obj/structure/table/wood,
-/obj/item/paper_bin,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/grimy,
-/area/chapel/office)
-"aPa" = (
-/obj/machinery/power/apc{
- dir = 2;
- lighting = 3;
- name = "Chapel Office APC";
- pixel_x = 0;
- pixel_y = -25
- },
-/obj/structure/cable{
- tag = "icon-0-8";
- icon_state = "0-8"
- },
-/turf/open/floor/plasteel/grimy,
-/area/chapel/office)
-"aPb" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/grass,
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"aPc" = (
-/obj/structure/disposalpipe/segment,
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/grass,
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"aPd" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/flora/grass/green,
-/turf/open/floor/grass,
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"aPe" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/closed/wall,
-/area/crew_quarters/theatre)
-"aPf" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/chair/stool,
-/turf/open/floor/wood,
-/area/crew_quarters/theatre)
-"aPg" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/table/wood/poker,
-/obj/effect/holodeck_effect/cards,
-/turf/open/floor/wood,
-/area/crew_quarters/theatre)
-"aPh" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/chair/stool,
-/obj/effect/landmark/start{
- name = "Assistant"
- },
-/turf/open/floor/wood,
-/area/crew_quarters/theatre)
-"aPi" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/wood,
-/area/crew_quarters/theatre)
-"aPj" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/item/reagent_containers/food/drinks/drinkingglass,
-/obj/structure/table/wood/bar,
-/turf/open/floor/wood,
-/area/crew_quarters/theatre)
-"aPk" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/table/wood/bar,
-/turf/open/floor/wood,
-/area/crew_quarters/theatre)
-"aPl" = (
-/obj/structure/disposalpipe/junction{
- dir = 4;
- icon_state = "pipe-j2";
- tag = "icon-pipe-j1 (WEST)"
- },
-/obj/machinery/vending/cola/random,
-/turf/open/floor/wood,
-/area/crew_quarters/theatre)
-"aPm" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/clown,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/turf/open/floor/wood,
-/area/crew_quarters/theatre)
-"aPn" = (
-/obj/structure/sign/barsign,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/closed/wall,
-/area/crew_quarters/theatre)
-"aPo" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/turf/open/floor/plasteel/bar,
-/area/crew_quarters/bar)
-"aPp" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/table,
-/obj/machinery/chem_dispenser/drinks,
-/turf/open/floor/plasteel/bar,
-/area/crew_quarters/bar)
-"aPq" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel/bar,
-/area/crew_quarters/bar)
-"aPr" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/table,
-/obj/machinery/chem_dispenser/drinks/beer,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel/bar,
-/area/crew_quarters/bar)
-"aPs" = (
-/obj/structure/disposalpipe/junction{
- icon_state = "pipe-j1";
- dir = 4
- },
-/obj/machinery/chem_master/condimaster{
- desc = "Looks like a knock-off chem-master. Perhaps useful for separating liquids when mixing drinks precisely. Also dispenses condiments.";
- name = "HoochMaster Deluxe";
- pixel_x = -4
- },
-/obj/item/book/manual/barman_recipes,
-/turf/open/floor/plasteel/bar,
-/area/crew_quarters/bar)
-"aPt" = (
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/turf/closed/wall,
-/area/crew_quarters/bar)
-"aPu" = (
-/obj/machinery/light_switch{
- dir = 8;
- pixel_x = -24
- },
-/obj/machinery/camera/autoname{
- tag = "icon-camera (NORTHEAST)";
- icon_state = "camera";
- dir = 5
- },
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/kitchen)
-"aPv" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/table,
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/kitchen)
-"aPw" = (
-/obj/structure/table,
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/kitchen)
-"aPx" = (
-/obj/structure/table,
-/obj/item/storage/box/donkpockets,
-/obj/item/storage/box/donkpockets{
- pixel_x = 3;
- pixel_y = 3
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/kitchen)
-"aPy" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/closed/wall,
-/area/crew_quarters/kitchen)
-"aPz" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/door/airlock/freezer,
-/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/kitchen)
-"aPA" = (
-/obj/machinery/smartfridge,
-/turf/closed/wall,
-/area/crew_quarters/kitchen)
-"aPB" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/green/side{
- dir = 4
- },
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"aPC" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/door/firedoor/heavy,
-/turf/open/floor/plating,
-/area/hydroponics)
-"aPD" = (
-/obj/machinery/door/airlock/glass{
- name = "Hydroponics"
- },
-/turf/open/floor/plasteel/hydrofloor,
-/area/hydroponics)
-"aPE" = (
-/obj/structure/sign/xeno_warning_mining{
- pixel_x = -30
- },
-/obj/structure/sign/vacuum{
- pixel_x = 30
- },
-/obj/machinery/light/small{
- dir = 8
- },
-/turf/open/floor/noslip,
-/area/quartermaster/miningdock)
-"aPF" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/structure/cable{
- icon_state = "2-4";
- tag = "icon-2-8"
- },
-/turf/open/floor/plasteel/black,
-/area/medical/morgue)
-"aPG" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/black,
-/area/medical/morgue)
-"aPH" = (
-/obj/machinery/power/apc{
- dir = 4;
- name = "Morgue APC";
- pixel_x = 26;
- pixel_y = 0
- },
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/turf/open/floor/plasteel/black,
-/area/medical/morgue)
-"aPI" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4";
- tag = "90Curve"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/chair/stool,
-/turf/open/floor/wood,
-/area/crew_quarters/theatre)
-"aPJ" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/wood,
-/area/crew_quarters/theatre)
-"aPK" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/chair/stool,
-/turf/open/floor/wood,
-/area/crew_quarters/theatre)
-"aPL" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/chair/stool,
-/turf/open/floor/wood,
-/area/crew_quarters/theatre)
-"aPM" = (
-/obj/machinery/status_display{
- density = 0;
- layer = 4;
- pixel_x = 32;
- pixel_y = 32
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/wood,
-/area/crew_quarters/theatre)
-"aPN" = (
-/obj/machinery/light{
- dir = 1
- },
-/obj/structure/window/reinforced{
- dir = 8;
- pixel_x = 0
- },
-/obj/structure/piano,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/carpet{
- icon_state = "carpetsymbol"
- },
-/area/crew_quarters/theatre)
-"aPO" = (
-/obj/structure/chair/stool,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/carpet,
-/area/crew_quarters/theatre)
-"aPP" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/effect/landmark/start{
- name = "Clown"
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/carpet,
-/area/crew_quarters/theatre)
-"aPQ" = (
-/obj/structure/table/wood,
-/obj/item/device/instrument/violin,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/carpet,
-/area/crew_quarters/theatre)
-"aPR" = (
-/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
- },
-/obj/structure/table/wood,
-/obj/item/device/instrument/guitar,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/carpet{
- icon_state = "carpetsymbol"
- },
-/area/crew_quarters/theatre)
-"aPS" = (
-/obj/structure/table/reinforced,
-/obj/machinery/juicer,
-/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_x = 0;
- pixel_y = 28
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/bar,
-/area/crew_quarters/bar)
-"aPT" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/turf/open/floor/plasteel/bar,
-/area/crew_quarters/bar)
-"aPU" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/bar,
-/area/crew_quarters/bar)
-"aPV" = (
-/turf/open/floor/plasteel/bar,
-/area/crew_quarters/bar)
-"aPW" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/bar,
-/area/crew_quarters/bar)
-"aPX" = (
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel/bar,
-/area/crew_quarters/bar)
-"aPY" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass{
- name = "Kitchen";
- req_access_txt = "28"
- },
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/kitchen)
-"aPZ" = (
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/kitchen)
-"aQa" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/kitchen)
-"aQb" = (
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/kitchen)
-"aQc" = (
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/kitchen)
-"aQd" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/sink/kitchen{
- pixel_y = 32
- },
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/kitchen)
-"aQe" = (
-/obj/machinery/light{
- dir = 1
- },
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/kitchen)
-"aQf" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/kitchen)
-"aQg" = (
-/obj/machinery/airalarm{
- frequency = 1439;
- locked = 0;
- pixel_y = 23
- },
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/kitchen)
-"aQh" = (
-/obj/machinery/vending/dinnerware,
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/kitchen)
-"aQi" = (
-/obj/machinery/camera/autoname,
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/kitchen)
-"aQj" = (
-/obj/structure/table/reinforced,
-/obj/machinery/door/firedoor/heavy,
-/obj/machinery/door/window/northleft{
- dir = 4;
- name = "Kitchen Desk";
- req_access_txt = "28"
- },
-/turf/open/floor/plating,
-/area/crew_quarters/kitchen)
-"aQk" = (
-/turf/open/floor/plasteel{
- icon_plating = "asteroid";
- icon_state = "asteroid";
- name = "Asteroid"
- },
-/area/hydroponics)
-"aQl" = (
-/obj/machinery/light{
- dir = 1
- },
-/turf/open/floor/plasteel{
- icon_plating = "asteroid";
- icon_state = "asteroid";
- name = "Asteroid"
- },
-/area/hydroponics)
-"aQm" = (
-/obj/machinery/door/airlock/maintenance_hatch,
-/turf/open/floor/plating,
-/area/maintenance/port)
-"aQn" = (
-/obj/machinery/door/firedoor/heavy,
-/obj/machinery/door/airlock/medical{
- name = "Morgue";
- req_access_txt = "5"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/turf/open/floor/plasteel/black,
-/area/medical/morgue)
-"aQo" = (
-/obj/structure/sign/bluecross,
-/turf/closed/wall,
-/area/medical/morgue)
-"aQp" = (
-/obj/machinery/light{
- dir = 1
- },
-/turf/open/floor/grass,
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"aQq" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/wood,
-/area/crew_quarters/theatre)
-"aQr" = (
-/obj/machinery/door/window{
- base_state = "right";
- dir = 8;
- icon_state = "right";
- name = "Theatre Stage";
- req_access_txt = "0"
- },
-/turf/open/floor/carpet,
-/area/crew_quarters/theatre)
-"aQs" = (
-/turf/open/floor/carpet,
-/area/crew_quarters/theatre)
-"aQt" = (
-/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
- },
-/turf/open/floor/carpet,
-/area/crew_quarters/theatre)
-"aQu" = (
-/obj/structure/table/reinforced,
-/obj/item/reagent_containers/glass/rag,
-/obj/item/reagent_containers/food/drinks/shaker,
-/turf/open/floor/plasteel/bar,
-/area/crew_quarters/bar)
-"aQv" = (
-/obj/effect/landmark/start{
- name = "Bartender"
- },
-/turf/open/floor/plasteel/bar,
-/area/crew_quarters/bar)
-"aQw" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/light{
- icon_state = "tube1";
- dir = 4
- },
-/turf/open/floor/plasteel/bar,
-/area/crew_quarters/bar)
-"aQx" = (
-/obj/machinery/light{
- dir = 8
- },
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/kitchen)
-"aQy" = (
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/kitchen)
-"aQz" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/kitchen)
-"aQA" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 5
- },
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/kitchen)
-"aQB" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 1
- },
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/kitchen)
-"aQC" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/table/reinforced,
-/obj/machinery/door/firedoor/heavy,
-/obj/machinery/door/window/northleft{
- dir = 4;
- name = "Kitchen Desk";
- req_access_txt = "28"
- },
-/turf/open/floor/plating,
-/area/crew_quarters/kitchen)
-"aQD" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/light{
- icon_state = "tube1";
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/green/side{
- dir = 8
- },
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"aQE" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/green/side{
- dir = 4
- },
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"aQF" = (
-/turf/open/floor/plating,
-/area/maintenance/starboard)
-"aQG" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/maintenance/starboard)
-"aQH" = (
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/labor)
-"aQI" = (
-/obj/structure/grille,
-/obj/structure/window/shuttle,
-/turf/open/floor/plating,
-/area/shuttle/labor)
-"aQJ" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/quartermaster/miningdock)
-"aQK" = (
-/obj/structure/table,
-/obj/item/storage/bag/ore,
-/obj/item/shovel,
-/turf/open/floor/plasteel/brown{
- tag = "icon-brown (NORTHWEST)";
- dir = 9;
- baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
- },
-/area/quartermaster/miningdock)
-"aQL" = (
-/turf/open/floor/plasteel/brown{
- baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface;
- dir = 1
- },
-/area/quartermaster/miningdock)
-"aQM" = (
-/obj/structure/ore_box,
-/turf/open/floor/plasteel/brown{
- dir = 5
- },
-/area/quartermaster/miningdock)
-"aQN" = (
-/obj/structure/table/glass,
-/obj/item/storage/box/masks,
-/turf/open/floor/plating,
-/area/maintenance/port)
-"aQO" = (
-/obj/structure/table/glass,
-/obj/item/storage/box/gloves,
-/turf/open/floor/plating,
-/area/maintenance/port)
-"aQP" = (
-/obj/structure/closet,
-/obj/effect/spawner/lootdrop/maintenance{
- lootcount = 2;
- name = "2maintenance loot spawner"
- },
-/turf/open/floor/plating,
-/area/maintenance/port)
-"aQQ" = (
-/obj/structure/closet,
-/obj/item/storage/backpack/chemistry,
-/turf/open/floor/plating,
-/area/maintenance/port)
-"aQR" = (
-/obj/structure/sign/biohazard,
-/turf/closed/wall,
-/area/maintenance/port)
-"aQS" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/machinery/camera/autoname{
- tag = "icon-camera (NORTHEAST)";
- icon_state = "camera";
- dir = 5
- },
-/turf/open/floor/plasteel/white,
-/area/medical/genetics)
-"aQT" = (
-/turf/open/floor/plasteel/white,
-/area/medical/genetics)
-"aQU" = (
-/obj/structure/extinguisher_cabinet{
- pixel_y = 28
- },
-/turf/open/floor/plasteel/white,
-/area/medical/genetics)
-"aQV" = (
-/obj/machinery/door/airlock/glass_medical{
- id_tag = "GeneticsDoor";
- name = "Genetics Access";
- req_access_txt = "0"
- },
-/turf/open/floor/plasteel/white,
-/area/medical/genetics)
-"aQW" = (
-/obj/structure/sign/biohazard{
- pixel_y = -30
- },
-/turf/open/floor/plasteel,
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"aQX" = (
-/obj/machinery/camera/autoname{
- tag = "icon-camera (NORTH)";
- icon_state = "camera";
- dir = 1
- },
-/turf/open/floor/plasteel/green,
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"aQY" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/green,
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"aQZ" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/green,
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"aRa" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass{
- name = "Bar"
- },
-/turf/open/floor/wood,
-/area/crew_quarters/theatre)
-"aRb" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 1;
- name = "regular air scrubber";
- on = 1
- },
-/turf/open/floor/wood,
-/area/crew_quarters/theatre)
-"aRc" = (
-/obj/structure/chair/wood{
- tag = "icon-wooden_chair (EAST)";
- icon_state = "wooden_chair";
- dir = 4
- },
-/turf/open/floor/wood,
-/area/crew_quarters/theatre)
-"aRd" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- tag = "icon-vent_map (NORTH)";
- name = "regular air vent";
- icon_state = "vent_map";
- dir = 1;
- on = 1
- },
-/obj/structure/table/wood,
-/turf/open/floor/wood,
-/area/crew_quarters/theatre)
-"aRe" = (
-/obj/structure/chair/wood{
- tag = "icon-wooden_chair (WEST)";
- icon_state = "wooden_chair";
- dir = 8
- },
-/turf/open/floor/wood,
-/area/crew_quarters/theatre)
-"aRf" = (
-/obj/structure/window/reinforced{
- dir = 8;
- pixel_x = 0
- },
-/obj/structure/window/reinforced,
-/obj/machinery/door/firedoor/border_only,
-/turf/open/floor/carpet{
- icon_state = "carpetsymbol"
- },
-/area/crew_quarters/theatre)
-"aRg" = (
-/obj/structure/window/reinforced,
-/obj/machinery/door/firedoor/border_only,
-/turf/open/floor/carpet,
-/area/crew_quarters/theatre)
-"aRh" = (
-/obj/structure/window/reinforced,
-/obj/machinery/door/firedoor/border_only,
-/mob/living/carbon/monkey/punpun,
-/turf/open/floor/carpet,
-/area/crew_quarters/theatre)
-"aRi" = (
-/obj/structure/window/reinforced,
-/obj/machinery/door/firedoor/border_only,
-/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
- },
-/turf/open/floor/carpet{
- icon_state = "carpetsymbol"
- },
-/area/crew_quarters/theatre)
-"aRj" = (
-/obj/machinery/door/firedoor/border_only,
-/obj/machinery/smartfridge/drinks,
-/turf/open/floor/plasteel/bar,
-/area/crew_quarters/bar)
-"aRk" = (
-/obj/structure/table/reinforced,
-/obj/machinery/door/firedoor/border_only,
-/turf/open/floor/plasteel/bar,
-/area/crew_quarters/bar)
-"aRl" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/table/reinforced,
-/obj/machinery/door/firedoor/border_only,
-/turf/open/floor/plasteel/bar,
-/area/crew_quarters/bar)
-"aRm" = (
-/obj/structure/table/reinforced,
-/obj/machinery/door/firedoor/border_only,
-/obj/item/clothing/head/bowler,
-/turf/open/floor/plasteel/bar,
-/area/crew_quarters/bar)
-"aRn" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/table/reinforced,
-/obj/machinery/door/firedoor/border_only,
-/turf/open/floor/plasteel/bar,
-/area/crew_quarters/bar)
-"aRo" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/door/window/southright{
- name = "Bar Door";
- req_access_txt = "0";
- req_one_access_txt = "25;28"
- },
-/obj/machinery/door/firedoor/border_only,
-/turf/open/floor/plasteel/bar,
-/area/crew_quarters/bar)
-"aRp" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/door/firedoor,
-/turf/open/floor/plating,
-/area/crew_quarters/bar)
-"aRq" = (
-/obj/structure/table,
-/obj/item/reagent_containers/food/snacks/mint,
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/kitchen)
-"aRr" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 1;
- name = "regular air scrubber";
- on = 1
- },
-/obj/effect/landmark/start{
- name = "Cook"
- },
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/kitchen)
-"aRs" = (
-/obj/machinery/holopad,
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/kitchen)
-"aRt" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- tag = "icon-vent_map (NORTH)";
- name = "regular air vent";
- icon_state = "vent_map";
- dir = 1;
- on = 1
- },
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/kitchen)
-"aRu" = (
-/obj/machinery/firealarm{
- dir = 4;
- pixel_x = 24
- },
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/kitchen)
-"aRv" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/door/firedoor,
-/turf/open/floor/plasteel/green/side{
- dir = 4
- },
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"aRw" = (
-/obj/machinery/hydroponics/soil,
-/turf/open/floor/plasteel{
- icon_plating = "asteroid";
- icon_state = "asteroid";
- name = "Asteroid"
- },
-/area/hydroponics)
-"aRx" = (
-/obj/structure/table,
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/labor)
-"aRy" = (
-/obj/machinery/computer/shuttle/mining,
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/labor)
-"aRz" = (
-/obj/structure/table,
-/obj/machinery/light/small{
- dir = 1
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/labor)
-"aRA" = (
-/obj/structure/table,
-/obj/item/pickaxe,
-/turf/open/floor/plasteel/brown{
- dir = 8
- },
-/area/quartermaster/miningdock)
-"aRB" = (
-/turf/open/floor/plasteel,
-/area/quartermaster/miningdock)
-"aRC" = (
-/obj/structure/ore_box,
-/turf/open/floor/plasteel/brown{
- baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface;
- dir = 4
- },
-/area/quartermaster/miningdock)
-"aRD" = (
-/obj/item/clothing/shoes/sneakers/blue,
-/obj/item/clothing/head/soft/blue,
-/obj/item/clothing/glasses/sunglasses/reagent,
-/turf/open/floor/plating,
-/area/maintenance/port)
-"aRE" = (
-/obj/structure/cable{
- icon_state = "2-4";
- tag = "icon-2-8"
- },
-/turf/open/floor/plating,
-/area/maintenance/port)
-"aRF" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0;
- tag = ""
- },
-/turf/open/floor/plating,
-/area/maintenance/port)
-"aRG" = (
-/obj/structure/cable{
- icon_state = "2-4";
- tag = "icon-2-8"
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0;
- tag = ""
- },
-/turf/open/floor/plating,
-/area/maintenance/port)
-"aRH" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plating,
-/area/maintenance/port)
-"aRI" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/door/airlock/maintenance_hatch,
-/turf/open/floor/plating,
-/area/maintenance/port)
-"aRJ" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/structure/cable{
- tag = "icon-2-8";
- icon_state = "2-8"
- },
-/obj/structure/cable{
- icon_state = "2-4";
- tag = "icon-2-8"
- },
-/turf/open/floor/plasteel/white,
-/area/medical/genetics)
-"aRK" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/white,
-/area/medical/genetics)
-"aRL" = (
-/obj/structure/cable{
- tag = "icon-2-8";
- icon_state = "2-8"
- },
-/turf/open/floor/plasteel/white,
-/area/medical/genetics)
-"aRM" = (
-/turf/closed/wall,
-/area/medical/surgery)
-"aRN" = (
-/turf/closed/wall,
-/area/hallway/primary/fore)
-"aRO" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/door/firedoor/heavy,
-/turf/open/floor/plating,
-/area/hallway/primary/fore)
-"aRP" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/structure/disposalpipe/segment,
-/obj/machinery/door/firedoor/heavy,
-/turf/open/floor/plating,
-/area/hallway/primary/fore)
-"aRQ" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/door/firedoor/heavy,
-/turf/open/floor/plating,
-/area/hallway/primary/fore)
-"aRR" = (
-/obj/structure/cable{
- tag = "icon-1-2";
- icon_state = "1-2"
- },
-/obj/machinery/door/firedoor,
-/turf/open/floor/plasteel/green/side{
- dir = 4
- },
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"aRS" = (
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/wood,
-/area/crew_quarters/theatre)
-"aRT" = (
-/obj/structure/chair/wood{
- tag = "icon-wooden_chair (NORTH)";
- icon_state = "wooden_chair";
- dir = 1
- },
-/turf/open/floor/wood,
-/area/crew_quarters/theatre)
-"aRU" = (
-/obj/machinery/holopad,
-/turf/open/floor/wood,
-/area/crew_quarters/theatre)
-"aRV" = (
-/obj/structure/chair/stool,
-/turf/open/floor/plasteel/bar,
-/area/crew_quarters/bar)
-"aRW" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/chair/stool,
-/turf/open/floor/plasteel/bar,
-/area/crew_quarters/bar)
-"aRX" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/chair/stool,
-/turf/open/floor/plasteel/bar,
-/area/crew_quarters/bar)
-"aRY" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/camera/autoname{
- tag = "icon-camera (NORTHWEST)";
- icon_state = "camera";
- dir = 9
- },
-/turf/open/floor/plasteel/bar,
-/area/crew_quarters/bar)
-"aRZ" = (
-/obj/structure/disposalpipe/trunk{
- dir = 1
- },
-/obj/machinery/disposal/bin,
-/obj/machinery/button/door{
- dir = 1;
- id = "bar-kit";
- name = "Bar Kitchen Shutters";
- pixel_y = -24
- },
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/kitchen)
-"aSa" = (
-/obj/machinery/light,
-/obj/machinery/food_cart,
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/kitchen)
-"aSb" = (
-/obj/structure/table,
-/obj/item/storage/bag/tray,
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/kitchen)
-"aSc" = (
-/obj/structure/table,
-/obj/machinery/juicer,
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/kitchen)
-"aSd" = (
-/obj/structure/table,
-/obj/machinery/reagentgrinder,
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/kitchen)
-"aSe" = (
-/obj/machinery/processor,
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/kitchen)
-"aSf" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/door/firedoor/heavy,
-/turf/open/floor/plating,
-/area/hallway/primary/fore)
-"aSg" = (
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/labor)
-"aSh" = (
-/obj/structure/chair{
- dir = 1
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/labor)
-"aSi" = (
-/obj/structure/grille,
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
- icon_state = "space";
- layer = 4;
- name = "EXTERNAL AIRLOCK";
- pixel_x = 0
- },
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/quartermaster/miningdock)
-"aSj" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plasteel,
-/area/quartermaster/miningdock)
-"aSk" = (
-/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
- },
-/turf/open/floor/plasteel/brown{
- baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface;
- dir = 4
- },
-/area/quartermaster/miningdock)
-"aSl" = (
-/obj/structure/cable{
- tag = "icon-1-2";
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/maintenance/port)
-"aSm" = (
-/obj/machinery/power/apc{
- cell_type = 5000;
- dir = 2;
- name = "Port Maintenance APC";
- pixel_y = -24
- },
-/obj/structure/cable,
-/turf/open/floor/plating,
-/area/maintenance/port)
-"aSn" = (
-/obj/machinery/light/small,
-/turf/open/floor/plating,
-/area/maintenance/port)
-"aSo" = (
-/obj/structure/frame/computer,
-/turf/open/floor/plating,
-/area/maintenance/port)
-"aSp" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/machinery/light/small{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/medical/genetics)
-"aSq" = (
-/obj/structure/table/glass,
-/obj/item/storage/box/gloves,
-/turf/open/floor/plasteel/white,
-/area/medical/genetics)
-"aSr" = (
-/obj/machinery/light/small,
-/obj/structure/table/glass,
-/obj/item/storage/box/masks,
-/turf/open/floor/plasteel/white,
-/area/medical/genetics)
-"aSs" = (
-/obj/machinery/power/apc{
- dir = 4;
- name = "Surgery APC";
- pixel_x = 26;
- pixel_y = 0
- },
-/obj/structure/cable,
-/obj/structure/table/glass,
-/obj/item/paper_bin,
-/obj/item/folder/white,
-/turf/open/floor/plasteel/white,
-/area/medical/genetics)
-"aSt" = (
-/obj/machinery/computer/med_data,
-/turf/open/floor/plasteel/white/corner,
-/area/medical/surgery)
-"aSu" = (
-/obj/machinery/vending/wallmed{
- pixel_y = 28
- },
-/obj/structure/table,
-/obj/item/surgicaldrill,
-/obj/item/circular_saw,
-/turf/open/floor/plasteel/white/side,
-/area/medical/surgery)
-"aSv" = (
-/obj/machinery/light{
- dir = 1
- },
-/obj/structure/table,
-/obj/item/scalpel,
-/obj/item/retractor,
-/turf/open/floor/plasteel/white/side,
-/area/medical/surgery)
-"aSw" = (
-/obj/structure/table,
-/obj/item/hemostat,
-/obj/item/cautery,
-/turf/open/floor/plasteel/white/side,
-/area/medical/surgery)
-"aSx" = (
-/obj/structure/table,
-/obj/machinery/firealarm{
- pixel_y = 24
- },
-/obj/item/storage/firstaid/brute,
-/turf/open/floor/plasteel/white/side,
-/area/medical/surgery)
-"aSy" = (
-/obj/structure/table,
-/obj/item/storage/firstaid/regular,
-/turf/open/floor/plasteel/white/corner{
- tag = "icon-whitecorner (WEST)";
- icon_state = "whitecorner";
- dir = 8
- },
-/area/medical/surgery)
-"aSz" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/door/firedoor,
-/turf/open/floor/plating,
-/area/medical/surgery)
-"aSA" = (
-/obj/structure/chair{
- dir = 8
- },
-/turf/open/floor/plasteel/black,
-/area/medical/surgery)
-"aSB" = (
-/obj/machinery/firealarm{
- pixel_y = 24
- },
-/obj/item/twohanded/required/kirbyplants{
- icon_state = "plant-22"
- },
-/obj/machinery/light/small{
- dir = 4
- },
-/turf/open/floor/plasteel/black,
-/area/medical/surgery)
-"aSC" = (
-/obj/structure/closet/emcloset,
-/turf/open/floor/plasteel/blue/side{
- tag = "icon-blue (WEST)";
- icon_state = "blue";
- dir = 8
- },
-/area/hallway/primary/fore)
-"aSD" = (
-/turf/open/floor/plasteel,
-/area/hallway/primary/fore)
-"aSE" = (
-/obj/machinery/light{
- dir = 1
- },
-/obj/machinery/computer/arcade,
-/turf/open/floor/plasteel,
-/area/hallway/primary/fore)
-"aSF" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/primary/fore)
-"aSG" = (
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel,
-/area/hallway/primary/fore)
-"aSH" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/primary/fore)
-"aSI" = (
-/obj/machinery/door/firedoor/heavy,
-/turf/open/floor/plasteel,
-/area/hallway/primary/fore)
-"aSJ" = (
-/obj/machinery/light{
- icon_state = "tube1";
- dir = 8
- },
-/turf/open/floor/wood,
-/area/crew_quarters/theatre)
-"aSK" = (
-/obj/structure/table/wood/poker,
-/turf/open/floor/wood,
-/area/crew_quarters/theatre)
-"aSL" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/firealarm{
- dir = 4;
- pixel_x = 24
- },
-/turf/open/floor/plasteel/bar,
-/area/crew_quarters/bar)
-"aSM" = (
-/obj/structure/table/reinforced,
-/obj/machinery/door/poddoor/shutters{
- id = "bar-kit";
- name = "Bar-Kitchen Shutters"
- },
-/turf/open/floor/plasteel/bar,
-/area/crew_quarters/kitchen)
-"aSN" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/table/reinforced,
-/obj/machinery/door/poddoor/shutters{
- id = "bar-kit";
- name = "Bar-Kitchen Shutters"
- },
-/turf/open/floor/plasteel/bar,
-/area/crew_quarters/kitchen)
-"aSO" = (
-/obj/structure/closet/chefcloset,
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/kitchen)
-"aSP" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/door/firedoor,
-/turf/open/floor/plating,
-/area/crew_quarters/kitchen)
-"aSQ" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 5
- },
-/turf/open/floor/plasteel,
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"aSR" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/door/firedoor/heavy,
-/turf/open/floor/plasteel,
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"aSS" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/fore)
-"aST" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 10
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/fore)
-"aSU" = (
-/obj/machinery/light/small{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/fore)
-"aSV" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/light/small{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/maintenance/starboard)
-"aSW" = (
-/obj/machinery/door/airlock/titanium{
- name = "Mining Shuttle Airlock";
- req_access_txt = "0"
- },
-/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)
-"aSX" = (
-/obj/machinery/door/airlock/external{
- name = "Port Docking Bay 1"
- },
-/turf/open/floor/noslip,
-/area/quartermaster/miningdock)
-"aSY" = (
-/turf/open/floor/noslip,
-/area/quartermaster/miningdock)
-"aSZ" = (
-/obj/machinery/door/airlock/external{
- name = "Port Docking Bay 1"
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/miningdock)
-"aTa" = (
-/turf/open/floor/plasteel/brown{
- baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface;
- dir = 4
- },
-/area/quartermaster/miningdock)
-"aTb" = (
-/obj/structure/window/reinforced{
- dir = 1;
- layer = 2.9
- },
-/turf/open/floor/plating,
-/area/maintenance/port)
-"aTc" = (
-/turf/closed/wall,
-/area/medical/genetics)
-"aTd" = (
-/obj/machinery/door/firedoor/heavy,
-/obj/machinery/door/airlock/glass_medical{
- id_tag = "GeneticsDoor";
- name = "Genetics";
- req_access_txt = "5; 9"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/turf/open/floor/plasteel/white,
-/area/medical/genetics)
-"aTe" = (
-/obj/structure/chair/office/dark{
- dir = 1
- },
-/obj/machinery/light_switch{
- dir = 8;
- pixel_x = -24
- },
-/turf/open/floor/plasteel/white/side{
- tag = "icon-whitehall (EAST)";
- icon_state = "whitehall";
- dir = 4
- },
-/area/medical/surgery)
-"aTf" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- name = "regular air vent";
- on = 1
- },
-/obj/effect/landmark{
- name = "xeno_spawn";
- pixel_x = -1
- },
-/turf/open/floor/plasteel/white,
-/area/medical/surgery)
-"aTg" = (
-/turf/open/floor/plasteel/white,
-/area/medical/surgery)
-"aTh" = (
-/obj/structure/table,
-/obj/item/surgical_drapes,
-/turf/open/floor/plasteel/white/side{
- tag = "icon-whitehall (WEST)";
- icon_state = "whitehall";
- dir = 8
- },
-/area/medical/surgery)
-"aTi" = (
-/turf/open/floor/plasteel/black,
-/area/medical/surgery)
-"aTj" = (
-/turf/open/floor/plasteel/blue/side{
- tag = "icon-blue (WEST)";
- icon_state = "blue";
- dir = 8
- },
-/area/hallway/primary/fore)
-"aTk" = (
-/obj/structure/table/wood/poker,
-/obj/effect/holodeck_effect/cards,
-/turf/open/floor/wood,
-/area/crew_quarters/theatre)
-"aTl" = (
-/obj/structure/chair/wood,
-/turf/open/floor/wood,
-/area/crew_quarters/theatre)
-"aTm" = (
-/obj/structure/chair/wood,
-/obj/effect/landmark/start{
- name = "Assistant"
- },
-/turf/open/floor/wood,
-/area/crew_quarters/theatre)
-"aTn" = (
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plasteel/bar,
-/area/crew_quarters/bar)
-"aTo" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 1;
- name = "regular air scrubber";
- on = 1
- },
-/turf/open/floor/plasteel/bar,
-/area/crew_quarters/bar)
-"aTp" = (
-/obj/machinery/light{
- dir = 1
- },
-/turf/open/floor/plasteel/bar,
-/area/crew_quarters/bar)
-"aTq" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/bar,
-/area/crew_quarters/bar)
-"aTr" = (
-/obj/machinery/airalarm{
- dir = 8;
- icon_state = "alarm0";
- pixel_x = 24
- },
-/turf/open/floor/plasteel/bar,
-/area/crew_quarters/bar)
-"aTs" = (
-/obj/structure/reagent_dispensers/watertank,
-/obj/item/reagent_containers/glass/bucket,
-/turf/open/floor/grass,
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"aTt" = (
-/obj/structure/sink/puddle,
-/turf/open/floor/grass,
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"aTu" = (
-/obj/structure/flora/ausbushes/pointybush,
-/obj/machinery/firealarm{
- dir = 4;
- pixel_x = 24
- },
-/turf/open/floor/grass,
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"aTv" = (
-/obj/machinery/navbeacon{
- codes_txt = "patrol;next_patrol=HOP2";
- location = "Stbd"
- },
-/turf/open/floor/plasteel,
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"aTw" = (
-/obj/machinery/door/firedoor/heavy,
-/turf/open/floor/plasteel,
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"aTx" = (
-/obj/machinery/navbeacon{
- codes_txt = "patrol;next_patrol=Stbd";
- location = "HOP"
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/fore)
-"aTy" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/airalarm{
- dir = 8;
- icon_state = "alarm0";
- pixel_x = 24
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/fore)
-"aTz" = (
-/turf/closed/wall,
-/area/crew_quarters/heads)
-"aTA" = (
-/obj/machinery/newscaster/security_unit,
-/turf/closed/wall,
-/area/crew_quarters/heads)
-"aTB" = (
-/turf/closed/wall/r_wall,
-/area/crew_quarters/heads)
-"aTC" = (
-/obj/machinery/door/firedoor/heavy,
-/obj/machinery/door/airlock/command{
- name = "Head of Personnel";
- req_access = null;
- req_access_txt = "57"
- },
-/turf/open/floor/wood,
-/area/crew_quarters/heads)
-"aTD" = (
-/obj/machinery/camera/autoname{
- tag = "icon-camera (NORTHWEST)";
- icon_state = "camera";
- dir = 9
- },
-/turf/open/floor/plasteel/brown{
- baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface;
- dir = 4
- },
-/area/quartermaster/miningdock)
-"aTE" = (
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/window/reinforced{
- dir = 1;
- layer = 2.9
- },
-/obj/structure/chair{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/port)
-"aTF" = (
-/obj/structure/window/reinforced{
- dir = 1;
- layer = 2.9
- },
-/obj/structure/table,
-/obj/item/pen,
-/turf/open/floor/plating,
-/area/maintenance/port)
-"aTG" = (
-/obj/structure/chair{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/maintenance/port)
-"aTH" = (
-/mob/living/carbon/monkey,
-/turf/open/floor/plasteel/neutral,
-/area/medical/genetics)
-"aTI" = (
-/obj/machinery/light{
- dir = 1
- },
-/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
- },
-/turf/open/floor/plasteel/neutral,
-/area/medical/genetics)
-"aTJ" = (
-/obj/structure/closet/secure_closet/personal/patient,
-/turf/open/floor/plasteel/whitepurple/side{
- tag = "icon-whitepurple (NORTHWEST)";
- icon_state = "whitepurple";
- dir = 9
- },
-/area/medical/genetics)
-"aTK" = (
-/obj/structure/extinguisher_cabinet{
- pixel_y = 28
- },
-/turf/open/floor/plasteel/whitepurple/side{
- tag = "icon-whitepurple (NORTH)";
- icon_state = "whitepurple";
- dir = 1
- },
-/area/medical/genetics)
-"aTL" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/turf/open/floor/plasteel/whitepurple/side{
- tag = "icon-whitepurple (NORTH)";
- icon_state = "whitepurple";
- dir = 1
- },
-/area/medical/genetics)
-"aTM" = (
-/obj/machinery/power/apc{
- dir = 1;
- name = "Genetics Lab APC";
- pixel_y = 24
- },
-/obj/structure/cable{
- tag = "icon-0-8";
- icon_state = "0-8"
- },
-/obj/structure/table/glass,
-/obj/item/storage/box/disks,
-/obj/item/storage/pill_bottle/mutadone,
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/turf/open/floor/plasteel/whitepurple/side{
- tag = "icon-whitepurple (NORTH)";
- icon_state = "whitepurple";
- dir = 1
- },
-/area/medical/genetics)
-"aTN" = (
-/obj/machinery/firealarm{
- pixel_y = 24
- },
-/obj/structure/table/glass,
-/obj/item/storage/box/injectors,
-/obj/item/storage/pill_bottle/mannitol,
-/obj/structure/cable{
- tag = "icon-2-8";
- icon_state = "2-8"
- },
-/turf/open/floor/plasteel/whitepurple/side{
- tag = "icon-whitepurple (NORTH)";
- icon_state = "whitepurple";
- dir = 1
- },
-/area/medical/genetics)
-"aTO" = (
-/obj/machinery/light{
- dir = 1
- },
-/obj/machinery/dna_scannernew,
-/turf/open/floor/plasteel/whitepurple/side{
- tag = "icon-whitepurple (NORTH)";
- icon_state = "whitepurple";
- dir = 1
- },
-/area/medical/genetics)
-"aTP" = (
-/obj/machinery/computer/scan_consolenew,
-/obj/machinery/requests_console{
- department = "Genetics";
- departmentType = 0;
- name = "Genetics Requests Console";
- pixel_x = 0;
- pixel_y = 30
- },
-/obj/machinery/camera/autoname{
- tag = "icon-camera (NORTHWEST)";
- icon_state = "camera";
- dir = 9
- },
-/turf/open/floor/plasteel/whitepurple/side{
- tag = "icon-whitepurple (NORTHEAST)";
- icon_state = "whitepurple";
- dir = 5
- },
-/area/medical/genetics)
-"aTQ" = (
-/turf/open/floor/plasteel/white/side{
- tag = "icon-whitehall (EAST)";
- icon_state = "whitehall";
- dir = 4
- },
-/area/medical/surgery)
-"aTR" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/white,
-/area/medical/surgery)
-"aTS" = (
-/obj/machinery/computer/operating,
-/turf/open/floor/plasteel/white,
-/area/medical/surgery)
-"aTT" = (
-/obj/structure/table/optable,
-/turf/open/floor/plasteel/white,
-/area/medical/surgery)
-"aTU" = (
-/obj/machinery/camera/autoname{
- tag = "icon-camera (NORTHWEST)";
- icon_state = "camera";
- dir = 9
- },
-/turf/open/floor/plasteel/white/side{
- tag = "icon-whitehall (WEST)";
- icon_state = "whitehall";
- dir = 8
- },
-/area/medical/surgery)
-"aTV" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass_medical{
- id_tag = "";
- name = "Surgery Observation";
- req_access_txt = "0"
- },
-/turf/open/floor/plasteel/black,
-/area/medical/surgery)
-"aTW" = (
-/obj/item/twohanded/required/kirbyplants{
- tag = "icon-plant-17";
- icon_state = "plant-17"
- },
-/turf/open/floor/wood,
-/area/crew_quarters/theatre)
-"aTX" = (
-/obj/machinery/light,
-/turf/open/floor/wood,
-/area/crew_quarters/theatre)
-"aTY" = (
-/obj/structure/table/wood,
-/turf/open/floor/wood,
-/area/crew_quarters/theatre)
-"aTZ" = (
-/obj/machinery/camera/autoname{
- tag = "icon-camera (SOUTHWEST)";
- icon_state = "camera";
- dir = 10
- },
-/turf/open/floor/wood,
-/area/crew_quarters/theatre)
-"aUa" = (
-/obj/machinery/firealarm{
- dir = 1;
- pixel_y = -24
- },
-/turf/open/floor/wood,
-/area/crew_quarters/theatre)
-"aUb" = (
-/obj/machinery/disposal/bin,
-/obj/structure/disposalpipe/trunk{
- dir = 4
- },
-/turf/open/floor/plasteel/bar,
-/area/crew_quarters/bar)
-"aUc" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel/bar,
-/area/crew_quarters/bar)
-"aUd" = (
-/obj/structure/chair{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel/bar,
-/area/crew_quarters/bar)
-"aUe" = (
-/obj/structure/table,
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/turf/open/floor/plasteel/bar,
-/area/crew_quarters/bar)
-"aUf" = (
-/obj/structure/chair{
- dir = 8
- },
-/turf/open/floor/plasteel/bar,
-/area/crew_quarters/bar)
-"aUg" = (
-/obj/machinery/status_display{
- density = 0;
- layer = 4;
- pixel_x = 0;
- pixel_y = 31
- },
-/turf/open/floor/grass,
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"aUh" = (
-/obj/structure/extinguisher_cabinet{
- pixel_y = 28
- },
-/turf/open/floor/grass,
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"aUi" = (
-/obj/machinery/camera/autoname,
-/turf/open/floor/grass,
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"aUj" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 5
- },
-/turf/open/floor/plasteel/green/side{
- dir = 8
- },
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"aUk" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/machinery/door/firedoor/heavy,
-/turf/open/floor/plasteel,
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"aUl" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 10
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/fore)
-"aUm" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 4;
- name = "regular air vent";
- on = 1
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/fore)
-"aUn" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 4;
- initialize_directions = 11
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/fore)
-"aUo" = (
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "hopqueue";
- name = "HoP Queue Shutters"
- },
-/obj/machinery/door/firedoor/heavy,
-/turf/open/floor/plasteel/loadingarea{
- tag = "icon-loadingarea (EAST)";
- icon_state = "loadingarea";
- dir = 4
- },
-/area/crew_quarters/heads)
-"aUp" = (
-/turf/open/floor/plasteel/bot,
-/area/crew_quarters/heads)
-"aUq" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
- },
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "hop";
- layer = 2.9;
- name = "Privacy Shutters"
- },
-/obj/machinery/door/firedoor/heavy,
-/obj/structure/sign/electricshock{
- pixel_y = 30
- },
-/turf/open/floor/plating,
-/area/crew_quarters/heads)
-"aUr" = (
-/turf/open/floor/wood,
-/area/crew_quarters/heads)
-"aUs" = (
-/obj/structure/filingcabinet,
-/obj/machinery/light_switch{
- pixel_x = 0;
- pixel_y = 32
- },
-/turf/open/floor/wood,
-/area/crew_quarters/heads)
-"aUt" = (
-/obj/machinery/light{
- dir = 1
- },
-/obj/structure/closet/secure_closet{
- name = "Spares";
- req_access_txt = "57"
- },
-/obj/item/storage/box/ids,
-/obj/item/storage/box/ids,
-/obj/item/storage/box/PDAs,
-/obj/item/storage/box/PDAs,
-/turf/open/floor/wood,
-/area/crew_quarters/heads)
-"aUu" = (
-/obj/structure/closet/secure_closet/hop,
-/turf/open/floor/wood,
-/area/crew_quarters/heads)
-"aUv" = (
-/obj/structure/disposalpipe/trunk{
- dir = 4
- },
-/obj/machinery/disposal/bin,
-/obj/machinery/status_display{
- density = 0;
- layer = 4;
- pixel_x = 0;
- pixel_y = 31
- },
-/turf/open/floor/wood,
-/area/crew_quarters/heads)
-"aUw" = (
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/turf/closed/wall/r_wall,
-/area/crew_quarters/heads)
-"aUx" = (
-/obj/structure/closet/crate,
-/obj/machinery/light/small,
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/labor)
-"aUy" = (
-/obj/structure/shuttle/engine/heater,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 8;
- pixel_x = 0
- },
-/turf/open/floor/plating,
-/area/shuttle/labor)
-"aUz" = (
-/obj/structure/ore_box,
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/labor)
-"aUA" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
-"aUB" = (
-/obj/machinery/computer/shuttle/mining{
- req_access = "0"
- },
-/turf/open/floor/plasteel/brown{
- dir = 8
- },
-/area/quartermaster/miningdock)
-"aUC" = (
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/chair{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/port)
-"aUD" = (
-/obj/structure/table,
-/obj/item/device/flashlight/lamp,
-/turf/open/floor/plating,
-/area/maintenance/port)
-"aUE" = (
-/obj/structure/rack,
-/obj/item/tank/internals/air,
-/turf/open/floor/plating,
-/area/maintenance/port)
-"aUF" = (
-/obj/machinery/atmospherics/components/unary/tank/air{
- dir = 4
- },
-/turf/open/floor/plating{
- icon_state = "bot"
- },
-/area/maintenance/port)
-"aUG" = (
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 4
- },
-/turf/open/floor/plating{
- icon_state = "floorgrime"
- },
-/area/maintenance/port)
-"aUH" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 10
- },
-/turf/open/floor/plating{
- icon_state = "floorgrime"
- },
-/area/maintenance/port)
-"aUI" = (
-/turf/open/floor/plasteel/neutral,
-/area/medical/genetics)
-"aUJ" = (
-/obj/machinery/door/window/eastright{
- name = "Monkey Pen";
- req_access_txt = "5; 9"
- },
-/turf/open/floor/plasteel/neutral,
-/area/medical/genetics)
-"aUK" = (
-/turf/open/floor/plasteel/whitepurple/side{
- tag = "icon-whitepurple (WEST)";
- icon_state = "whitepurple";
- dir = 8
- },
-/area/medical/genetics)
-"aUL" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4";
- tag = "90Curve"
- },
-/turf/open/floor/plasteel/white,
-/area/medical/genetics)
-"aUM" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0;
- tag = ""
- },
-/turf/open/floor/plasteel/white,
-/area/medical/genetics)
-"aUN" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/machinery/airalarm{
- dir = 8;
- icon_state = "alarm0";
- pixel_x = 24
- },
-/obj/structure/chair/office/dark{
- dir = 1
- },
-/turf/open/floor/plasteel/whitepurple/side{
- tag = "icon-whitepurple (EAST)";
- icon_state = "whitepurple";
- dir = 4
- },
-/area/medical/genetics)
-"aUO" = (
-/obj/structure/closet/secure_closet/medical2,
-/turf/open/floor/plasteel/white/side{
- tag = "icon-whitehall (EAST)";
- icon_state = "whitehall";
- dir = 4
- },
-/area/medical/surgery)
-"aUP" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 6
- },
-/turf/open/floor/plasteel/white,
-/area/medical/surgery)
-"aUQ" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 8;
- name = "regular air scrubber";
- on = 1;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel/white,
-/area/medical/surgery)
-"aUR" = (
-/turf/open/floor/plasteel/white/side{
- tag = "icon-whitehall (WEST)";
- icon_state = "whitehall";
- dir = 8
- },
-/area/medical/surgery)
-"aUS" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/camera/autoname{
- tag = "icon-camera (NORTHWEST)";
- icon_state = "camera";
- dir = 9
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/fore)
-"aUT" = (
-/obj/structure/extinguisher_cabinet{
- pixel_x = -24
- },
-/obj/structure/window/reinforced,
-/turf/open/floor/plasteel/green/side{
- dir = 8
- },
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"aUU" = (
-/obj/machinery/status_display,
-/turf/closed/wall,
-/area/crew_quarters/theatre)
-"aUV" = (
-/obj/structure/chair,
-/obj/item/device/radio/intercom{
- dir = 8;
- pixel_x = -28
- },
-/turf/open/floor/plasteel/bar,
-/area/crew_quarters/bar)
-"aUW" = (
-/obj/structure/chair{
- dir = 4
- },
-/turf/open/floor/plasteel/bar,
-/area/crew_quarters/bar)
-"aUX" = (
-/obj/structure/table,
-/turf/open/floor/plasteel/bar,
-/area/crew_quarters/bar)
-"aUY" = (
-/obj/machinery/hydroponics/soil,
-/turf/open/floor/grass,
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"aUZ" = (
-/obj/machinery/hydroponics/soil,
-/obj/item/seeds/lime,
-/turf/open/floor/grass,
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"aVa" = (
-/obj/machinery/hydroponics/soil,
-/obj/item/seeds/watermelon,
-/turf/open/floor/grass,
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"aVb" = (
-/obj/structure/extinguisher_cabinet{
- pixel_x = 24
- },
-/obj/structure/window/reinforced,
-/turf/open/floor/plasteel/green/side{
- dir = 4
- },
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"aVc" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/light{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/fore)
-"aVd" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "hopqueue";
- name = "HoP Queue Shutters"
- },
-/obj/machinery/door/firedoor/heavy,
-/turf/open/floor/plating,
-/area/crew_quarters/heads)
-"aVe" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/structure/cable,
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
- },
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "hop";
- layer = 2.9;
- name = "Privacy Shutters"
- },
-/obj/machinery/door/firedoor/heavy,
-/turf/open/floor/plating,
-/area/crew_quarters/heads)
-"aVf" = (
-/obj/machinery/firealarm{
- dir = 4;
- pixel_x = 28;
- pixel_y = 0
- },
-/turf/open/floor/wood,
-/area/crew_quarters/heads)
-"aVg" = (
-/obj/structure/disposalpipe/segment,
-/turf/closed/wall/r_wall,
-/area/crew_quarters/heads)
-"aVh" = (
-/obj/structure/shuttle/engine/propulsion/burst,
-/obj/structure/window/reinforced{
- dir = 1;
- layer = 2.9
- },
-/turf/open/floor/plating/airless,
-/area/shuttle/labor)
-"aVi" = (
-/obj/machinery/computer/security/mining{
- network = list("MINE","AuxBase")
- },
-/turf/open/floor/plasteel/brown{
- dir = 8
- },
-/area/quartermaster/miningdock)
-"aVj" = (
-/obj/structure/chair{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/port)
-"aVk" = (
-/obj/structure/table,
-/obj/item/paper,
-/obj/item/poster/random_contraband,
-/turf/open/floor/plating,
-/area/maintenance/port)
-"aVl" = (
-/obj/structure/rack,
-/obj/item/razor,
-/turf/open/floor/plating,
-/area/maintenance/port)
-"aVm" = (
-/obj/machinery/atmospherics/components/unary/portables_connector{
- tag = "icon-connector_map (EAST)";
- icon_state = "connector_map";
- dir = 4
- },
-/turf/open/floor/plating{
- icon_state = "bot"
- },
-/area/maintenance/port)
-"aVn" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating{
- icon_state = "floorgrime"
- },
-/area/maintenance/port)
-"aVo" = (
-/obj/machinery/camera/autoname{
- tag = "icon-camera (EAST)";
- icon_state = "camera";
- dir = 4
- },
-/mob/living/carbon/monkey,
-/turf/open/floor/plasteel/neutral,
-/area/medical/genetics)
-"aVp" = (
-/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
- },
-/mob/living/carbon/monkey,
-/turf/open/floor/plasteel/neutral,
-/area/medical/genetics)
-"aVq" = (
-/obj/structure/bed/roller,
-/turf/open/floor/plasteel/white,
-/area/medical/genetics)
-"aVr" = (
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plasteel/white,
-/area/medical/genetics)
-"aVs" = (
-/obj/effect/landmark/start{
- name = "Geneticist"
- },
-/turf/open/floor/plasteel/white,
-/area/medical/genetics)
-"aVt" = (
-/obj/machinery/vending/wallmed{
- pixel_x = 24
- },
-/obj/structure/chair/office/dark,
-/obj/structure/cable{
- tag = "icon-1-2";
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/whitepurple/side{
- tag = "icon-whitepurple (EAST)";
- icon_state = "whitepurple";
- dir = 4
- },
-/area/medical/genetics)
-"aVu" = (
-/obj/structure/closet/secure_closet/personal/patient,
-/turf/open/floor/plasteel/white/corner{
- tag = "icon-whitecorner (EAST)";
- icon_state = "whitecorner";
- dir = 4
- },
-/area/medical/surgery)
-"aVv" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/white/side{
- tag = "icon-whitehall (NORTH)";
- icon_state = "whitehall";
- dir = 1
- },
-/area/medical/surgery)
-"aVw" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/light,
-/obj/machinery/iv_drip,
-/turf/open/floor/plasteel/white/side{
- tag = "icon-whitehall (NORTH)";
- icon_state = "whitehall";
- dir = 1
- },
-/area/medical/surgery)
-"aVx" = (
-/obj/structure/table,
-/obj/item/storage/box/masks{
- pixel_x = 3;
- pixel_y = 3
- },
-/obj/item/storage/box/gloves,
-/turf/open/floor/plasteel/white/side{
- tag = "icon-whitehall (NORTH)";
- icon_state = "whitehall";
- dir = 1
- },
-/area/medical/surgery)
-"aVy" = (
-/obj/item/device/radio/intercom{
- pixel_y = -28
- },
-/turf/open/floor/plasteel/white/side{
- tag = "icon-whitehall (NORTH)";
- icon_state = "whitehall";
- dir = 1
- },
-/area/medical/surgery)
-"aVz" = (
-/turf/open/floor/plasteel/white/corner{
- tag = "icon-whitecorner (NORTH)";
- icon_state = "whitecorner";
- dir = 1
- },
-/area/medical/surgery)
-"aVA" = (
-/obj/machinery/light/small,
-/obj/item/twohanded/required/kirbyplants{
- icon_state = "plant-22"
- },
-/turf/open/floor/plasteel/black,
-/area/medical/surgery)
-"aVB" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 4;
- name = "regular air scrubber";
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/fore)
-"aVC" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/fore)
-"aVD" = (
-/obj/structure/closet/emcloset,
-/turf/open/floor/plasteel/delivery,
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"aVE" = (
-/obj/structure/flora/grass/both,
-/turf/open/floor/grass,
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"aVF" = (
-/obj/structure/extinguisher_cabinet{
- pixel_y = 28
- },
-/turf/open/floor/plasteel/green/side{
- dir = 9
- },
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"aVG" = (
-/obj/machinery/vending/cigarette,
-/turf/open/floor/plasteel/green/side{
- dir = 5
- },
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"aVH" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/chair{
- dir = 8
- },
-/turf/open/floor/plasteel/bar,
-/area/crew_quarters/bar)
-"aVI" = (
-/obj/machinery/hydroponics/soil,
-/obj/item/seeds/apple,
-/turf/open/floor/grass,
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"aVJ" = (
-/obj/machinery/hydroponics/soil,
-/obj/item/seeds/orange,
-/turf/open/floor/grass,
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"aVK" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/door/firedoor/heavy,
-/turf/open/floor/plating,
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"aVL" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/fore)
-"aVM" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/fore)
-"aVN" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/fore)
-"aVO" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "hopqueue";
- name = "HoP Queue Shutters"
- },
-/obj/machinery/door/firedoor/heavy,
-/turf/open/floor/plating,
-/area/crew_quarters/heads)
-"aVP" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/bot,
-/area/crew_quarters/heads)
-"aVQ" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/structure/cable,
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "hop";
- layer = 2.9;
- name = "Privacy Shutters"
- },
-/obj/machinery/door/firedoor/heavy,
-/turf/open/floor/plating,
-/area/crew_quarters/heads)
-"aVR" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/machinery/photocopier,
-/turf/open/floor/wood,
-/area/crew_quarters/heads)
-"aVS" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 8;
- name = "regular air scrubber";
- on = 1;
- scrub_Toxins = 0
- },
-/turf/open/floor/wood,
-/area/crew_quarters/heads)
-"aVT" = (
-/obj/effect/landmark/start{
- name = "Head of Personnel"
- },
-/turf/open/floor/wood,
-/area/crew_quarters/heads)
-"aVU" = (
-/obj/structure/table,
-/obj/item/paper_bin{
- pixel_x = -3;
- pixel_y = 7
- },
-/turf/open/floor/wood,
-/area/crew_quarters/heads)
-"aVV" = (
-/obj/machinery/computer/security/telescreen{
- desc = "Used for watching Prison Wing holding areas.";
- dir = 4;
- name = "Prison Monitor";
- network = list("Prison");
- pixel_x = 30;
- pixel_y = 0
- },
-/turf/open/floor/wood,
-/area/crew_quarters/heads)
-"aVW" = (
-/obj/effect/landmark{
- name = "blobstart"
- },
-/turf/open/floor/plating/asteroid/airless,
-/area/ruin/unpowered{
- name = "Asteroid"
- })
-"aVX" = (
-/turf/open/floor/plasteel/brown{
- dir = 8
- },
-/area/quartermaster/miningdock)
-"aVY" = (
-/obj/structure/closet/wardrobe/white,
-/turf/open/floor/plating,
-/area/maintenance/port)
-"aVZ" = (
-/turf/open/floor/plating{
- icon_state = "floorgrime"
- },
-/area/maintenance/port)
-"aWa" = (
-/obj/machinery/light/small,
-/turf/open/floor/plating{
- icon_state = "floorgrime"
- },
-/area/maintenance/port)
-"aWb" = (
-/obj/machinery/atmospherics/components/binary/valve,
-/turf/open/floor/plating{
- icon_state = "floorgrime"
- },
-/area/maintenance/port)
-"aWc" = (
-/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
- },
-/turf/open/floor/plasteel/neutral,
-/area/medical/genetics)
-"aWd" = (
-/obj/machinery/dna_scannernew,
-/turf/open/floor/plasteel/white,
-/area/medical/genetics)
-"aWe" = (
-/obj/machinery/computer/scan_consolenew,
-/obj/structure/cable{
- tag = "icon-1-2";
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/whitepurple/side{
- tag = "icon-whitepurple (EAST)";
- icon_state = "whitepurple";
- dir = 4
- },
-/area/medical/genetics)
-"aWf" = (
-/turf/closed/wall,
-/area/medical/genetics_cloning)
-"aWg" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/medical{
- name = "Operating Theatre";
- req_access_txt = "45"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/whitepurple,
-/area/medical/genetics_cloning)
-"aWh" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/closed/wall,
-/area/medical/genetics_cloning)
-"aWi" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/medical{
- name = "Operating Theatre";
- req_access_txt = "45"
- },
-/turf/open/floor/plasteel/whiteblue,
-/area/medical/medbay{
- name = "Medbay Central"
- })
-"aWj" = (
-/turf/closed/wall,
-/area/medical/medbay{
- name = "Medbay Central"
- })
-"aWk" = (
-/obj/machinery/airalarm{
- dir = 4;
- pixel_x = -23;
- pixel_y = 0
- },
-/turf/open/floor/plasteel/blue/side{
- tag = "icon-blue (WEST)";
- icon_state = "blue";
- dir = 8
- },
-/area/hallway/primary/fore)
-"aWl" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/fore)
-"aWm" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/machinery/door/firedoor/heavy,
-/turf/open/floor/plating,
-/area/hallway/primary/fore)
-"aWn" = (
-/obj/machinery/atmospherics/components/unary/portables_connector/visible{
- icon_state = "connector_map";
- dir = 8
- },
-/obj/machinery/portable_atmospherics/scrubber/huge/movable,
-/turf/open/floor/plasteel/delivery,
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"aWo" = (
-/obj/structure/flora/ausbushes/ppflowers,
-/turf/open/floor/grass,
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"aWp" = (
-/obj/structure/table,
-/obj/item/reagent_containers/food/condiment/saltshaker{
- pixel_x = 9
- },
-/obj/item/reagent_containers/food/condiment/peppermill,
-/turf/open/floor/plasteel/bar,
-/area/crew_quarters/bar)
-"aWq" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- tag = "icon-vent_map (NORTH)";
- name = "regular air vent";
- icon_state = "vent_map";
- dir = 1;
- on = 1
- },
-/obj/structure/chair{
- dir = 8
- },
-/obj/effect/landmark{
- name = "xeno_spawn";
- pixel_x = -1
- },
-/turf/open/floor/plasteel/bar,
-/area/crew_quarters/bar)
-"aWr" = (
-/obj/structure/chair,
-/turf/open/floor/plasteel/bar,
-/area/crew_quarters/bar)
-"aWs" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/chair,
-/obj/effect/landmark/start{
- name = "Assistant"
- },
-/turf/open/floor/plasteel/bar,
-/area/crew_quarters/bar)
-"aWt" = (
-/obj/machinery/hydroponics/soil,
-/obj/item/seeds/wheat,
-/turf/open/floor/grass,
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"aWu" = (
-/obj/machinery/hydroponics/soil,
-/obj/item/seeds/tea,
-/turf/open/floor/grass,
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"aWv" = (
-/obj/machinery/atmospherics/components/unary/portables_connector/visible{
- dir = 4
- },
-/obj/machinery/portable_atmospherics/scrubber/huge/movable,
-/turf/open/floor/plasteel/delivery,
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"aWw" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/machinery/door/firedoor/heavy,
-/turf/open/floor/plating,
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"aWx" = (
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plasteel,
-/area/hallway/primary/fore)
-"aWy" = (
-/obj/machinery/pdapainter,
-/turf/open/floor/wood,
-/area/crew_quarters/heads)
-"aWz" = (
-/obj/machinery/holopad,
-/mob/living/simple_animal/pet/dog/corgi/Ian,
-/turf/open/floor/wood,
-/area/crew_quarters/heads)
-"aWA" = (
-/obj/structure/table,
-/obj/item/folder/blue,
-/obj/item/stamp/hop,
-/turf/open/floor/wood,
-/area/crew_quarters/heads)
-"aWB" = (
-/obj/structure/chair{
- dir = 8
- },
-/obj/machinery/camera/autoname{
- tag = "icon-camera (WEST)";
- icon_state = "camera";
- dir = 8
- },
-/obj/item/device/radio/intercom{
- desc = "Talk smack through this.";
- dir = 4;
- pixel_x = 28;
- syndie = 1
- },
-/turf/open/floor/wood,
-/area/crew_quarters/heads)
-"aWC" = (
-/obj/structure/closet/secure_closet/miner,
-/turf/open/floor/plasteel/brown{
- baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface;
- dir = 4
- },
-/area/quartermaster/miningdock)
-"aWD" = (
-/obj/structure/closet/wardrobe/genetics_white,
-/turf/open/floor/plating,
-/area/maintenance/port)
-"aWE" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/door/airlock/glass_engineering{
- name = "Medbay Atmos Closet";
- req_access_txt = "32"
- },
-/turf/open/floor/plating{
- dir = 1;
- icon_state = "delivery"
- },
-/area/maintenance/port)
-"aWF" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 4;
- name = "regular air scrubber";
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel/white,
-/area/medical/genetics)
-"aWG" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 10
- },
-/turf/open/floor/plasteel/white,
-/area/medical/genetics)
-"aWH" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 6
- },
-/turf/open/floor/plasteel/white,
-/area/medical/genetics)
-"aWI" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 8;
- name = "regular air vent";
- on = 1
- },
-/turf/open/floor/plasteel/white,
-/area/medical/genetics)
-"aWJ" = (
-/obj/structure/cable{
- tag = "icon-1-2";
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/whitepurple/side{
- tag = "icon-whitepurple (EAST)";
- icon_state = "whitepurple";
- dir = 4
- },
-/area/medical/genetics)
-"aWK" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass_medical{
- id_tag = "CloningDoor";
- name = "Cloning Lab";
- req_access_txt = "0";
- req_one_access_txt = "5"
- },
-/turf/open/floor/plasteel/whitepurple,
-/area/medical/genetics_cloning)
-"aWL" = (
-/obj/machinery/camera/autoname{
- tag = "icon-camera (SOUTHEAST)";
- icon_state = "camera";
- dir = 6
- },
-/turf/open/floor/plasteel/whitepurple,
-/area/medical/genetics_cloning)
-"aWM" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/whitepurple,
-/area/medical/genetics_cloning)
-"aWN" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/light{
- dir = 1
- },
-/turf/open/floor/plasteel/whitepurple,
-/area/medical/genetics_cloning)
-"aWO" = (
-/obj/machinery/vending/clothing,
-/turf/open/floor/plasteel/whitepurple,
-/area/medical/genetics_cloning)
-"aWP" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/door/firedoor,
-/turf/open/floor/plating,
-/area/medical/genetics_cloning)
-"aWQ" = (
-/turf/open/floor/plasteel/whiteblue/side{
- tag = "icon-whiteblue (NORTHWEST)";
- icon_state = "whiteblue";
- dir = 9
- },
-/area/medical/medbay{
- name = "Medbay Central"
- })
-"aWR" = (
-/obj/machinery/button/door{
- desc = "A remote control switch for the medbay foyer.";
- id = "MedbayFoyer";
- name = "Medbay Exit Button";
- normaldoorcontrol = 1;
- pixel_x = 0;
- pixel_y = 26
- },
-/turf/open/floor/plasteel/whiteblue/side{
- tag = "icon-whiteblue (NORTHEAST)";
- icon_state = "whiteblue";
- dir = 5
- },
-/area/medical/medbay{
- name = "Medbay Central"
- })
-"aWS" = (
-/obj/structure/sign/bluecross,
-/turf/closed/wall,
-/area/medical/medbay{
- name = "Medbay Central"
- })
-"aWT" = (
-/obj/machinery/vending/snack,
-/turf/open/floor/plasteel/blue/side{
- tag = "icon-blue (NORTHWEST)";
- icon_state = "blue";
- dir = 9
- },
-/area/hallway/primary/fore)
-"aWU" = (
-/obj/machinery/vending/cola,
-/turf/open/floor/plasteel/blue/side{
- tag = "icon-blue (NORTH)";
- icon_state = "blue";
- dir = 1
- },
-/area/hallway/primary/fore)
-"aWV" = (
-/turf/open/floor/plasteel/blue/corner{
- tag = "icon-bluecorner (NORTH)";
- icon_state = "bluecorner";
- dir = 1
- },
-/area/hallway/primary/fore)
-"aWW" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 4;
- name = "regular air vent";
- on = 1
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/fore)
-"aWX" = (
-/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/primary/fore)
-"aWY" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/door/firedoor/heavy,
-/turf/open/floor/plating,
-/area/hallway/primary/fore)
-"aWZ" = (
-/obj/machinery/atmospherics/components/unary/portables_connector/visible{
- icon_state = "connector_map";
- dir = 8
- },
-/obj/machinery/portable_atmospherics/pump,
-/turf/open/floor/plasteel/delivery,
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"aXa" = (
-/obj/structure/flora/ausbushes/sunnybush,
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/grass,
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"aXb" = (
-/obj/machinery/light,
-/turf/open/floor/plasteel/bar,
-/area/crew_quarters/bar)
-"aXc" = (
-/obj/machinery/newscaster{
- dir = 1;
- pixel_y = -30
- },
-/obj/structure/table,
-/turf/open/floor/plasteel/bar,
-/area/crew_quarters/bar)
-"aXd" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/table,
-/turf/open/floor/plasteel/bar,
-/area/crew_quarters/bar)
-"aXe" = (
-/obj/structure/flora/ausbushes/grassybush,
-/obj/machinery/light{
- dir = 8
- },
-/turf/open/floor/grass,
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"aXf" = (
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/grass,
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"aXg" = (
-/obj/machinery/atmospherics/components/unary/portables_connector/visible{
- dir = 4
- },
-/obj/machinery/portable_atmospherics/pump,
-/turf/open/floor/plasteel/delivery,
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"aXh" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/door/firedoor/heavy,
-/turf/open/floor/plating,
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"aXi" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/fore)
-"aXj" = (
-/obj/structure/table,
-/obj/machinery/recharger,
-/turf/open/floor/wood,
-/area/crew_quarters/heads)
-"aXk" = (
-/obj/structure/bed/dogbed{
- anchored = 1;
- desc = "Ian's bed! Looks comfy.";
- name = "Ian's bed"
- },
-/turf/open/floor/wood,
-/area/crew_quarters/heads)
-"aXl" = (
-/obj/structure/table,
-/obj/item/book/manual/wiki/security_space_law,
-/turf/open/floor/wood,
-/area/crew_quarters/heads)
-"aXm" = (
-/obj/machinery/computer/cargo,
-/turf/open/floor/wood,
-/area/crew_quarters/heads)
-"aXn" = (
-/turf/open/floor/plasteel/brown{
- dir = 10
- },
-/area/quartermaster/miningdock)
-"aXo" = (
-/turf/open/floor/plasteel/brown,
-/area/quartermaster/miningdock)
-"aXp" = (
-/obj/structure/closet/secure_closet/miner,
-/turf/open/floor/plasteel/brown{
- dir = 6
- },
-/area/quartermaster/miningdock)
-"aXq" = (
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/rack,
-/obj/item/pickaxe,
-/turf/open/floor/plating,
-/area/maintenance/port)
-"aXr" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4";
- tag = ""
- },
-/turf/open/floor/plating,
-/area/maintenance/port)
-"aXs" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0;
- tag = ""
- },
-/obj/machinery/door/airlock/maintenance_hatch,
-/turf/open/floor/plating,
-/area/maintenance/port)
-"aXt" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0;
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 6
- },
-/turf/open/floor/plating,
-/area/maintenance/port)
-"aXu" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0;
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- tag = "icon-intact (EAST)";
- icon_state = "intact";
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/port)
-"aXv" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0;
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/port)
-"aXw" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0;
- tag = ""
- },
-/turf/open/floor/plating,
-/area/maintenance/port)
-"aXx" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/cable{
- tag = "icon-1-8";
- icon_state = "1-8"
- },
-/turf/open/floor/plating,
-/area/maintenance/port)
-"aXy" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/closed/wall,
-/area/medical/genetics)
-"aXz" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/neutral,
-/area/medical/genetics)
-"aXA" = (
-/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/mob/living/carbon/monkey,
-/turf/open/floor/plasteel/neutral,
-/area/medical/genetics)
-"aXB" = (
-/obj/structure/closet/wardrobe/genetics_white,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/whitepurple/side{
- tag = "icon-whitepurple (SOUTHWEST)";
- icon_state = "whitepurple";
- dir = 10
- },
-/area/medical/genetics)
-"aXC" = (
-/obj/machinery/light,
-/obj/structure/closet/wardrobe/white,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/whitepurple/side,
-/area/medical/genetics)
-"aXD" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/table/glass,
-/obj/item/storage/box/rxglasses,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/whitepurple/side,
-/area/medical/genetics)
-"aXE" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/whitepurple/side,
-/area/medical/genetics)
-"aXF" = (
-/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,
-/turf/open/floor/plasteel/whitepurple/side,
-/area/medical/genetics)
-"aXG" = (
-/obj/machinery/disposal/bin,
-/obj/structure/disposalpipe/trunk{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/cable{
- tag = "icon-1-2";
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/whitepurple/side{
- tag = "icon-whitepurple (SOUTHEAST)";
- icon_state = "whitepurple";
- dir = 6
- },
-/area/medical/genetics)
-"aXH" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/turf/closed/wall,
-/area/medical/genetics_cloning)
-"aXI" = (
-/obj/structure/closet/wardrobe/white,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/whitepurple,
-/area/medical/genetics_cloning)
-"aXJ" = (
-/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,
-/turf/open/floor/plasteel/whitepurple,
-/area/medical/genetics_cloning)
-"aXK" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 8;
- name = "regular air vent";
- on = 1
- },
-/turf/open/floor/plasteel/whitepurple,
-/area/medical/genetics_cloning)
-"aXL" = (
-/obj/machinery/dna_scannernew,
-/turf/open/floor/plasteel/whitepurple,
-/area/medical/genetics_cloning)
-"aXM" = (
-/turf/open/floor/plasteel/whiteblue/side{
- tag = "icon-whiteblue (WEST)";
- icon_state = "whiteblue";
- dir = 8
- },
-/area/medical/medbay{
- name = "Medbay Central"
- })
-"aXN" = (
-/turf/open/floor/plasteel/whiteblue/side{
- tag = "icon-whiteblue (EAST)";
- icon_state = "whiteblue";
- dir = 4
- },
-/area/medical/medbay{
- name = "Medbay Central"
- })
-"aXO" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass_medical{
- id_tag = "MedbayFoyer";
- name = "Medbay";
- req_access_txt = "5"
- },
-/turf/open/floor/plasteel/blue,
-/area/medical/medbay{
- name = "Medbay Central"
- })
-"aXP" = (
-/obj/structure/sign/directions/medical{
- tag = "icon-direction_med (WEST)";
- icon_state = "direction_med";
- dir = 8
- },
-/obj/structure/sign/directions/evac{
- dir = 4;
- icon_state = "direction_evac";
- pixel_y = -10;
- tag = "icon-direction_evac (EAST)"
- },
-/obj/structure/sign/directions/security{
- pixel_y = 10
- },
-/turf/closed/wall,
-/area/hallway/primary/fore)
-"aXQ" = (
-/obj/structure/window/reinforced{
- dir = 1;
- layer = 2.9
- },
-/turf/open/floor/plasteel/green/side{
- dir = 10
- },
-/area/hallway/primary/fore)
-"aXR" = (
-/obj/structure/cable{
- tag = "icon-1-2";
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/green/side{
- dir = 6
- },
-/area/hallway/primary/fore)
-"aXS" = (
-/turf/open/floor/plasteel/green/side{
- dir = 10
- },
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"aXT" = (
-/turf/open/floor/plasteel/green/side{
- dir = 6
- },
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"aXU" = (
-/obj/structure/sign/barsign,
-/turf/closed/wall,
-/area/crew_quarters/bar)
-"aXV" = (
-/obj/machinery/status_display,
-/turf/closed/wall,
-/area/crew_quarters/bar)
-"aXW" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/closed/wall,
-/area/crew_quarters/bar)
-"aXX" = (
-/obj/machinery/biogenerator,
-/turf/open/floor/sepia,
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"aXY" = (
-/obj/machinery/seed_extractor,
-/turf/open/floor/sepia,
-/area/construction/hallway{
- name = "Biodome Hallway"
- })
-"aXZ" = (
-/turf/open/floor/plasteel/green/side{
- dir = 10
- },
-/area/hallway/primary/fore)
-"aYa" = (
-/obj/structure/window/reinforced{
- dir = 1;
- layer = 2.9
- },
-/turf/open/floor/plasteel/green/side{
- dir = 6
- },
-/area/hallway/primary/fore)
-"aYb" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 8
- },
-/obj/machinery/firealarm{
- dir = 8;
- pixel_x = -24;
- pixel_y = 0
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/fore)
-"aYc" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 8;
- name = "regular air scrubber";
- on = 1;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/fore)
-"aYd" = (
-/obj/machinery/computer/card,
-/turf/open/floor/wood,
-/area/crew_quarters/heads)
-"aYe" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- name = "regular air vent";
- on = 1
- },
-/turf/open/floor/wood,
-/area/crew_quarters/heads)
-"aYf" = (
-/obj/machinery/requests_console{
- announcementConsole = 1;
- department = "Head of Personnel's Desk";
- departmentType = 5;
- name = "Head of Personnel RC";
- pixel_y = -30
- },
-/turf/open/floor/wood,
-/area/crew_quarters/heads)
-"aYg" = (
-/obj/machinery/door/airlock/mining{
- req_access_txt = "48"
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/miningdock)
-"aYh" = (
-/obj/structure/cable{
- tag = "icon-1-2";
- icon_state = "1-2"
- },
-/obj/structure/rack,
-/obj/item/poster/random_official,
-/turf/open/floor/plating,
-/area/maintenance/port)
-"aYi" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/closed/wall,
-/area/maintenance/port)
-"aYj" = (
-/turf/closed/wall,
-/area/medical/medbay3)
-"aYk" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 6
- },
-/turf/closed/wall,
-/area/medical/genetics)
-"aYl" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 9
- },
-/turf/closed/wall,
-/area/medical/genetics)
-"aYm" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/door/firedoor,
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/turf/open/floor/plating,
-/area/medical/genetics)
-"aYn" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0;
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass_medical{
- id_tag = "GeneticsDoor";
- name = "Genetics";
- req_access_txt = "5; 9"
- },
-/turf/open/floor/plasteel/whiteblue,
-/area/medical/genetics)
-"aYo" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/structure/cable{
- tag = "icon-0-8";
- icon_state = "0-8"
- },
-/obj/machinery/door/firedoor,
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/turf/open/floor/plating,
-/area/medical/genetics)
-"aYp" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8";
- tag = ""
- },
-/turf/closed/wall,
-/area/medical/genetics)
-"aYq" = (
-/obj/structure/disposalpipe/segment,
-/turf/closed/wall,
-/area/medical/genetics_cloning)
-"aYr" = (
-/obj/structure/closet/secure_closet/personal/patient,
-/turf/open/floor/plasteel/whitepurple,
-/area/medical/genetics_cloning)
-"aYs" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 4;
- name = "regular air scrubber";
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel/whitepurple,
-/area/medical/genetics_cloning)
-"aYt" = (
-/obj/structure/chair/office/dark{
- dir = 4
- },
-/obj/effect/landmark/start{
- name = "Geneticist"
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/whitepurple,
-/area/medical/genetics_cloning)
-"aYu" = (
-/obj/machinery/computer/cloning,
-/obj/item/book/manual/medical_cloning,
-/turf/open/floor/plasteel/whitepurple,
-/area/medical/genetics_cloning)
-"aYv" = (
-/obj/structure/chair{
- dir = 1
- },
-/turf/open/floor/plasteel/blue/side{
- tag = "icon-blue (SOUTHWEST)";
- icon_state = "blue";
- dir = 10
- },
-/area/hallway/primary/fore)
-"aYw" = (
-/obj/structure/chair{
- dir = 1
- },
-/turf/open/floor/plasteel/blue/side,
-/area/hallway/primary/fore)
-"aYx" = (
-/obj/machinery/light,
-/turf/open/floor/plasteel/blue/side,
-/area/hallway/primary/fore)
-"aYy" = (
-/turf/open/floor/plasteel/blue/side,
-/area/hallway/primary/fore)
-"aYz" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/blue/corner{
- tag = "icon-bluecorner (WEST)";
- icon_state = "bluecorner";
- dir = 8
- },
-/area/hallway/primary/fore)
-"aYA" = (
-/obj/machinery/door/firedoor,
-/turf/open/floor/plasteel,
-/area/hallway/primary/fore)
-"aYB" = (
-/obj/machinery/navbeacon{
- codes_txt = "patrol;next_patrol=CHW";
- location = "Lockers"
- },
-/obj/structure/cable{
- tag = "icon-1-2";
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/fore)
-"aYC" = (
-/obj/machinery/light{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/fore)
-"aYD" = (
-/obj/machinery/light{
- dir = 1
- },
-/obj/machinery/door/firedoor,
-/turf/open/floor/plasteel,
-/area/hallway/primary/fore)
-"aYE" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 2;
- name = "regular air scrubber";
- on = 1
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/fore)
-"aYF" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- name = "regular air vent";
- on = 1
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/fore)
-"aYG" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/fore)
-"aYH" = (
-/obj/machinery/camera/autoname{
- tag = "icon-camera (SOUTHEAST)";
- icon_state = "camera";
- dir = 6
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/fore)
-"aYI" = (
-/obj/machinery/camera/autoname{
- tag = "icon-camera (SOUTHEAST)";
- icon_state = "camera";
- dir = 6
- },
-/obj/machinery/door/firedoor,
-/turf/open/floor/plasteel,
-/area/hallway/primary/fore)
-"aYJ" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/fore)
-"aYK" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/fore)
-"aYL" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "hopqueue";
- name = "HoP Queue Shutters"
- },
-/obj/machinery/door/firedoor/heavy,
-/turf/open/floor/plasteel/loadingarea{
- dir = 8
- },
-/area/crew_quarters/heads)
-"aYM" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/newscaster{
- dir = 1;
- pixel_y = -30
- },
-/turf/open/floor/plasteel/delivery,
-/area/crew_quarters/heads)
-"aYN" = (
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/structure/cable,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/table/reinforced,
-/obj/machinery/door/window/brigdoor{
- base_state = "rightsecure";
- dir = 4;
- icon_state = "rightsecure";
- name = "Head of Personnel's Desk";
- req_access = null;
- req_access_txt = "57"
- },
-/obj/machinery/door/window/northleft{
- dir = 8;
- icon_state = "left";
- name = "Reception Window";
- req_access_txt = "0"
- },
-/obj/machinery/flasher{
- dir = 1;
- id = "hopflash";
- pixel_x = 0;
- pixel_y = -28
- },
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "hop";
- layer = 2.9;
- name = "Privacy Shutters"
- },
-/obj/machinery/door/firedoor/heavy,
-/turf/open/floor/plasteel,
-/area/crew_quarters/heads)
-"aYO" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/chair/office/dark{
- dir = 8
- },
-/obj/machinery/button/door{
- id = "hopqueue";
- name = "Queue Shutters Control";
- pixel_x = -4;
- pixel_y = -25;
- req_access_txt = "28"
- },
-/obj/machinery/button/door{
- id = "hop";
- name = "Privacy Shutters Control";
- pixel_x = 6;
- pixel_y = -25;
- req_access_txt = "28"
- },
-/obj/machinery/button/flasher{
- id = "hopflash";
- pixel_x = 6;
- pixel_y = -36
- },
-/turf/open/floor/wood,
-/area/crew_quarters/heads)
-"aYP" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 9
- },
-/obj/machinery/light,
-/turf/open/floor/wood,
-/area/crew_quarters/heads)
-"aYQ" = (
-/obj/machinery/airalarm{
- dir = 1;
- icon_state = "alarm0";
- pixel_y = -22
- },
-/obj/machinery/computer/secure_data,
-/turf/open/floor/wood,
-/area/crew_quarters/heads)
-"aYR" = (
-/obj/machinery/door/firedoor/heavy,
-/obj/machinery/door/airlock/maintenance{
- name = "HoP Maintenance";
- req_access_txt = "57"
- },
-/turf/open/floor/plating,
-/area/maintenance/starboard)
-"aYS" = (
-/obj/machinery/portable_atmospherics/pump,
-/turf/open/floor/plating,
-/area/maintenance/starboard)
-"aYT" = (
-/obj/machinery/portable_atmospherics/scrubber,
-/turf/open/floor/plating,
-/area/maintenance/starboard)
-"aYU" = (
-/obj/structure/reagent_dispensers/fueltank,
-/turf/open/floor/plating,
-/area/maintenance/starboard)
-"aYV" = (
-/obj/machinery/light/small{
- dir = 8
- },
-/turf/open/floor/plasteel/brown{
- dir = 8
- },
-/area/quartermaster/miningdock)
-"aYW" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/miningdock)
-"aYX" = (
-/obj/machinery/camera/autoname{
- tag = "icon-camera (NORTHWEST)";
- icon_state = "camera";
- dir = 9
- },
-/obj/machinery/power/apc{
- dir = 1;
- name = "Mining Dock APC";
- pixel_y = 24
- },
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/turf/open/floor/plasteel/brown{
- baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface;
- dir = 4
- },
-/area/quartermaster/miningdock)
-"aYY" = (
-/obj/machinery/light/small{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/maintenance/port)
-"aYZ" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 4;
- name = "regular air scrubber";
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/obj/structure/closet/secure_closet/personal/patient,
-/turf/open/floor/plasteel/white,
-/area/medical/patients_rooms)
-"aZa" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 10
- },
-/obj/machinery/light_switch{
- pixel_y = 24
- },
-/turf/open/floor/plasteel/white,
-/area/medical/patients_rooms)
-"aZb" = (
-/obj/structure/table,
-/obj/item/reagent_containers/syringe,
-/obj/item/reagent_containers/glass/bottle/salglu_solution,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/white,
-/area/medical/patients_rooms)
-"aZc" = (
-/obj/structure/bed,
-/obj/item/bedsheet/medical,
-/obj/effect/landmark{
- name = "revenantspawn"
- },
-/turf/open/floor/plasteel/white,
-/area/medical/patients_rooms)
-"aZd" = (
-/turf/closed/wall,
-/area/medical/patients_rooms)
-"aZe" = (
-/obj/machinery/power/apc{
- dir = 8;
- name = "Patient Room B APC";
- pixel_x = -26;
- pixel_y = 0
- },
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
- },
-/turf/open/floor/plasteel/white,
-/area/medical/patients_rooms)
-"aZf" = (
-/turf/open/floor/plasteel/white,
-/area/medical/patients_rooms)
-"aZg" = (
-/obj/structure/bed,
-/obj/item/bedsheet/cmo,
-/turf/open/floor/carpet,
-/area/medical/medbay3)
-"aZh" = (
-/obj/structure/table/wood,
-/obj/item/device/flashlight/lamp/green,
-/turf/open/floor/carpet,
-/area/medical/medbay3)
-"aZi" = (
-/obj/structure/dresser,
-/turf/open/floor/carpet,
-/area/medical/medbay3)
-"aZj" = (
-/obj/structure/closet/wardrobe/white/medical,
-/obj/item/clothing/suit/hooded/wintercoat/medical,
-/turf/open/floor/carpet,
-/area/medical/medbay3)
-"aZk" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/closed/wall,
-/area/medical/cryo)
-"aZl" = (
-/obj/machinery/atmospherics/components/unary/cryo_cell,
-/turf/open/floor/plasteel/whiteblue/side{
- tag = "icon-whiteblue (WEST)";
- icon_state = "whiteblue";
- dir = 8
- },
-/area/medical/cryo)
-"aZm" = (
-/obj/structure/table/glass,
-/obj/item/reagent_containers/glass/beaker/cryoxadone,
-/obj/item/reagent_containers/glass/beaker/cryoxadone,
-/turf/open/floor/plasteel/whitepurple/corner{
- tag = "icon-whitepurplecorner (EAST)";
- icon_state = "whitepurplecorner";
- dir = 4
- },
-/area/medical/cryo)
-"aZn" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/whitepurple/side{
- tag = "icon-whitepurple (NORTH)";
- icon_state = "whitepurple";
- dir = 1
- },
-/area/medical/cryo)
-"aZo" = (
-/obj/structure/table/glass,
-/obj/item/reagent_containers/glass/beaker/cryoxadone,
-/obj/item/reagent_containers/glass/beaker/cryoxadone,
-/turf/open/floor/plasteel/whitepurple/corner{
- tag = "icon-whitepurplecorner (NORTH)";
- icon_state = "whitepurplecorner";
- dir = 1
- },
-/area/medical/cryo)
-"aZp" = (
-/obj/machinery/atmospherics/components/unary/cryo_cell,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/turf/open/floor/plasteel/whiteblue/side{
- tag = "icon-whiteblue (EAST)";
- icon_state = "whiteblue";
- dir = 4
- },
-/area/medical/cryo)
-"aZq" = (
-/obj/machinery/power/apc{
- dir = 2;
- name = "Cloning Lab APC";
- pixel_y = -24
- },
-/obj/structure/table,
-/obj/machinery/firealarm{
- dir = 8;
- pixel_x = -24
- },
-/obj/item/storage/box/bodybags,
-/obj/item/pen,
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/turf/open/floor/plasteel/whitepurple,
-/area/medical/genetics_cloning)
-"aZr" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/cable{
- tag = "icon-2-8";
- icon_state = "2-8"
- },
-/turf/open/floor/plasteel/whitepurple,
-/area/medical/genetics_cloning)
-"aZs" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/light,
-/obj/machinery/button/door{
- desc = "A remote control switch for the genetics doors.";
- id = "GeneticsDoor";
- name = "Genetics Exit Button";
- normaldoorcontrol = 1;
- pixel_x = -8;
- pixel_y = -24
- },
-/turf/open/floor/plasteel/whitepurple,
-/area/medical/genetics_cloning)
-"aZt" = (
-/obj/machinery/clonepod,
-/turf/open/floor/plasteel/whitepurple,
-/area/medical/genetics_cloning)
-"aZu" = (
-/obj/structure/extinguisher_cabinet{
- pixel_x = 24
- },
-/turf/open/floor/plasteel/whiteblue/side{
- tag = "icon-whiteblue (EAST)";
- icon_state = "whiteblue";
- dir = 4
- },
-/area/medical/medbay{
- name = "Medbay Central"
- })
-"aZv" = (
-/turf/closed/wall,
-/area/medical/cmo)
-"aZw" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/blue/side{
- tag = "icon-blue (WEST)";
- icon_state = "blue";
- dir = 8
- },
-/area/hallway/primary/fore)
-"aZx" = (
-/obj/structure/cable{
- icon_state = "2-4";
- tag = "icon-2-8"
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel,
-/area/hallway/primary/fore)
-"aZy" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/primary/fore)
-"aZz" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/door/firedoor,
-/turf/open/floor/plasteel,
-/area/hallway/primary/fore)
-"aZA" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/fore)
-"aZB" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/cable{
- tag = "icon-1-8";
- icon_state = "1-8"
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/fore)
-"aZC" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel{
- icon_state = "L1"
- },
-/area/hallway/primary/fore)
-"aZD" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel{
- icon_state = "L3"
- },
-/area/hallway/primary/fore)
-"aZE" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel{
- icon_state = "L5"
- },
-/area/hallway/primary/fore)
-"aZF" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel{
- icon_state = "L7"
- },
-/area/hallway/primary/fore)
-"aZG" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel{
- icon_state = "L9"
- },
-/area/hallway/primary/fore)
-"aZH" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel{
- icon_state = "L11"
- },
-/area/hallway/primary/fore)
-"aZI" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel{
- desc = "";
- icon_state = "L13";
- name = "floor"
- },
-/area/hallway/primary/fore)
-"aZJ" = (
-/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/fore)
-"aZK" = (
-/obj/structure/cable{
- tag = "icon-2-8";
- icon_state = "2-8"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/fore)
-"aZL" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/item/device/radio/intercom{
- desc = "Talk smack through this.";
- dir = 4;
- pixel_x = 28;
- syndie = 1
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/fore)
-"aZM" = (
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/turf/open/floor/plating,
-/area/maintenance/starboard)
-"aZN" = (
-/obj/structure/disposalpipe/junction{
- dir = 8;
- icon_state = "pipe-j1";
- tag = "icon-pipe-j1 (EAST)"
- },
-/turf/open/floor/plating,
-/area/maintenance/starboard)
-"aZO" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/starboard)
-"aZP" = (
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/turf/open/floor/plating,
-/area/maintenance/starboard)
-"aZQ" = (
-/obj/structure/window/reinforced{
- dir = 1;
- layer = 2.9
- },
-/turf/open/floor/plating,
-/area/maintenance/starboard)
-"aZR" = (
-/obj/machinery/door/airlock/maintenance{
- req_access_txt = "12"
- },
-/turf/open/floor/plating,
-/area/maintenance/starboard)
-"aZS" = (
-/turf/open/floor/plasteel/brown{
- dir = 8
- },
-/area/maintenance/starboard)
-"aZT" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0;
- tag = ""
- },
-/turf/open/floor/plasteel,
-/area/maintenance/starboard)
-"aZU" = (
-/turf/open/floor/plasteel/brown{
- baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface;
- dir = 4
- },
-/area/maintenance/starboard)
-"aZV" = (
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 1;
- layer = 2.9
- },
-/turf/open/floor/plating,
-/area/maintenance/starboard)
-"aZW" = (
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 1;
- layer = 2.9
- },
-/turf/open/floor/plating,
-/area/maintenance/starboard)
-"aZX" = (
-/obj/structure/cable{
- tag = "icon-1-2";
- icon_state = "1-2"
- },
-/obj/item/rack_parts,
-/turf/open/floor/plating,
-/area/maintenance/port)
-"aZY" = (
-/obj/structure/closet/wardrobe/white,
-/turf/open/floor/plasteel/white,
-/area/medical/patients_rooms)
-"aZZ" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/white,
-/area/medical/patients_rooms)
-"baa" = (
-/obj/machinery/iv_drip,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/white,
-/area/medical/patients_rooms)
-"bab" = (
-/obj/structure/cable{
- tag = "icon-1-2";
- icon_state = "1-2"
- },
-/obj/item/device/radio/intercom{
- dir = 8;
- pixel_x = -28
- },
-/turf/open/floor/plasteel/white,
-/area/medical/patients_rooms)
-"bac" = (
-/obj/machinery/airalarm{
- dir = 4;
- pixel_x = -23;
- pixel_y = 0
- },
-/turf/open/floor/carpet,
-/area/medical/medbay3)
-"bad" = (
-/turf/open/floor/carpet,
-/area/medical/medbay3)
-"bae" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/visible{
- tag = "icon-intact (NORTHEAST)";
- icon_state = "intact";
- dir = 5
- },
-/obj/structure/extinguisher_cabinet{
- pixel_x = -24
- },
-/turf/open/floor/plasteel/whiteblue/side{
- tag = "icon-whiteblue (WEST)";
- icon_state = "whiteblue";
- dir = 8
- },
-/area/medical/cryo)
-"baf" = (
-/obj/machinery/atmospherics/pipe/manifold/cyan/visible{
- dir = 1
- },
-/turf/open/floor/plasteel/white,
-/area/medical/cryo)
-"bag" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/visible{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/white,
-/area/medical/cryo)
-"bah" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/visible{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/medical/cryo)
-"bai" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/visible{
- dir = 9
- },
-/obj/structure/cable{
- tag = "icon-1-2";
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/whiteblue/side{
- tag = "icon-whiteblue (EAST)";
- icon_state = "whiteblue";
- dir = 4
- },
-/area/medical/cryo)
-"baj" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass_medical{
- id_tag = "CloningDoor";
- name = "Cloning Lab";
- req_access_txt = "0";
- req_one_access_txt = "5"
- },
-/obj/structure/cable{
- tag = "icon-1-2";
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/whitepurple,
-/area/medical/genetics_cloning)
-"bak" = (
-/obj/structure/sign/nosmoking_2,
-/turf/closed/wall,
-/area/medical/genetics_cloning)
-"bal" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/door/firedoor/heavy,
-/obj/machinery/door/poddoor{
- density = 0;
- icon_state = "open";
- id = "cmo";
- name = "CMO Privacy Shutters"
- },
-/turf/open/floor/plating,
-/area/medical/cmo)
-"bam" = (
-/obj/structure/bookcase/manuals/medical,
-/obj/item/book/manual/wiki/chemistry,
-/obj/item/book/manual/medical_cloning,
-/turf/open/floor/plasteel/cmo,
-/area/medical/cmo)
-"ban" = (
-/obj/structure/filingcabinet/medical,
-/obj/machinery/light_switch{
- pixel_y = 24
- },
-/turf/open/floor/plasteel/cmo,
-/area/medical/cmo)
-"bao" = (
-/obj/machinery/light{
- dir = 1
- },
-/obj/machinery/suit_storage_unit/cmo,
-/turf/open/floor/plasteel/cmo,
-/area/medical/cmo)
-"bap" = (
-/obj/structure/closet/secure_closet/CMO,
-/turf/open/floor/plasteel/cmo,
-/area/medical/cmo)
-"baq" = (
-/obj/machinery/navbeacon{
- codes_txt = "patrol;next_patrol=QM";
- location = "CHW"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/blue/side{
- tag = "icon-blue (WEST)";
- icon_state = "blue";
- dir = 8
- },
-/area/hallway/primary/fore)
-"bar" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel,
-/area/hallway/primary/fore)
-"bas" = (
-/turf/open/floor/plasteel{
- icon_state = "L2"
- },
-/area/hallway/primary/fore)
-"bat" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel{
- icon_state = "L4"
- },
-/area/hallway/primary/fore)
-"bau" = (
-/turf/open/floor/plasteel{
- icon_state = "L6"
- },
-/area/hallway/primary/fore)
-"bav" = (
-/turf/open/floor/plasteel{
- icon_state = "L8"
- },
-/area/hallway/primary/fore)
-"baw" = (
-/turf/open/floor/plasteel{
- icon_state = "L10"
- },
-/area/hallway/primary/fore)
-"bax" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel{
- icon_state = "L12"
- },
-/area/hallway/primary/fore)
-"bay" = (
-/turf/open/floor/plasteel{
- desc = "";
- icon_state = "L14"
- },
-/area/hallway/primary/fore)
-"baz" = (
-/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{
- dir = 4;
- icon_state = "pipe-c"
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/fore)
-"baA" = (
-/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,
-/area/hallway/primary/fore)
-"baB" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/door/airlock/maintenance{
- req_access_txt = "12"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/starboard)
-"baC" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/starboard)
-"baD" = (
-/obj/machinery/power/apc{
- dir = 1;
- name = "Head of Personnel APC";
- pixel_y = 24
- },
-/obj/structure/cable{
- tag = "icon-0-8";
- icon_state = "0-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/crew_quarters/heads)
-"baE" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/light/small,
-/turf/open/floor/plating,
-/area/maintenance/starboard)
-"baF" = (
-/turf/closed/wall,
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
-"baG" = (
-/obj/machinery/door/airlock/mining{
- req_access_txt = "48"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0;
- tag = ""
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
-"baH" = (
-/obj/structure/window/reinforced{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/starboard)
-"baI" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/window/reinforced{
- dir = 8;
- pixel_x = 0
- },
-/turf/open/floor/plating/asteroid/airless{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/ruin/unpowered{
- name = "Asteroid"
- })
-"baJ" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/turf/open/floor/plating/asteroid/airless{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/ruin/unpowered{
- name = "Asteroid"
- })
-"baK" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/window/reinforced{
- dir = 4
- },
-/turf/open/floor/plating/asteroid/airless{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/ruin/unpowered{
- name = "Asteroid"
- })
-"baL" = (
-/obj/structure/window/reinforced{
- dir = 8;
- pixel_x = 0
- },
-/obj/structure/window/reinforced{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/starboard)
-"baM" = (
-/obj/effect/turf_decal/stripes{
- tag = "icon-warningline (NORTH)";
- icon_state = "warningline";
- dir = 1
- },
-/turf/open/floor/plating/airless/astplate,
-/area/ruin/unpowered{
- name = "Asteroid"
- })
-"baN" = (
-/obj/effect/turf_decal/stripes{
- tag = "icon-warningline (NORTHEAST)";
- icon_state = "warningline";
- dir = 5
- },
-/turf/open/floor/plating/airless/astplate,
-/area/ruin/unpowered{
- name = "Asteroid"
- })
-"baO" = (
-/obj/structure/cable{
- tag = "icon-1-2";
- icon_state = "1-2"
- },
-/obj/structure/table,
-/obj/item/phone,
-/turf/open/floor/plating,
-/area/maintenance/port)
-"baP" = (
-/obj/structure/table,
-/obj/structure/bedsheetbin,
-/obj/machinery/light{
- icon_state = "tube1";
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/medical/patients_rooms)
-"baQ" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/white,
-/area/medical/patients_rooms)
-"baR" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/medical{
- name = "Patient Room 1";
- req_access_txt = "5"
- },
-/turf/open/floor/plasteel/white,
-/area/medical/patients_rooms)
-"baS" = (
-/obj/structure/cable{
- tag = "icon-1-2";
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/white,
-/area/medical/patients_rooms)
-"baT" = (
-/obj/machinery/door/airlock/medical{
- name = "Medbay Break Room";
- req_access_txt = "5"
- },
-/turf/open/floor/plasteel/barber,
-/area/medical/medbay3)
-"baU" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 8
- },
-/turf/closed/wall,
-/area/medical/cryo)
-"baV" = (
-/obj/machinery/airalarm{
- dir = 4;
- pixel_x = -23;
- pixel_y = 0
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 8;
- name = "regular air scrubber";
- on = 1;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel/whiteblue/side{
- tag = "icon-whiteblue (WEST)";
- icon_state = "whiteblue";
- dir = 8
- },
-/area/medical/cryo)
-"baW" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/visible,
-/turf/open/floor/plasteel/white,
-/area/medical/cryo)
-"baX" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/effect/landmark/start{
- name = "Medical Doctor"
- },
-/turf/open/floor/plasteel/white,
-/area/medical/cryo)
-"baY" = (
-/turf/open/floor/plasteel/white,
-/area/medical/cryo)
-"baZ" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/structure/cable{
- tag = "icon-1-2";
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/whiteblue/side{
- tag = "icon-whiteblue (EAST)";
- icon_state = "whiteblue";
- dir = 4
- },
-/area/medical/cryo)
-"bba" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/door/firedoor/border_only{
- tag = "icon-door_open (EAST)";
- icon_state = "door_open";
- dir = 4
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/whiteblue/side{
- tag = "icon-whiteblue (WEST)";
- icon_state = "whiteblue";
- dir = 8
- },
-/area/medical/cryo)
-"bbb" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/whitepurple/corner{
- tag = "icon-whitepurplecorner (EAST)";
- icon_state = "whitepurplecorner";
- dir = 4
- },
-/area/medical/medbay{
- name = "Medbay Central"
- })
-"bbc" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4";
- tag = "90Curve"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/whitepurple/side{
- tag = "icon-whitepurple (NORTH)";
- icon_state = "whitepurple";
- dir = 1
- },
-/area/medical/medbay{
- name = "Medbay Central"
- })
-"bbd" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/cable{
- tag = "icon-2-8";
- icon_state = "2-8"
- },
-/obj/machinery/light{
- dir = 1
- },
-/turf/open/floor/plasteel/whitepurple/corner{
- tag = "icon-whitepurplecorner (NORTH)";
- icon_state = "whitepurplecorner";
- dir = 1
- },
-/area/medical/medbay{
- name = "Medbay Central"
- })
-"bbe" = (
-/obj/machinery/power/apc{
- dir = 1;
- name = "Medbay Central APC";
- pixel_y = 24
- },
-/obj/structure/cable{
- tag = "icon-0-8";
- icon_state = "0-8"
- },
-/turf/open/floor/plasteel/whiteblue/corner{
- tag = "icon-whitebluecorner (EAST)";
- icon_state = "whitebluecorner";
- dir = 4
- },
-/area/medical/medbay{
- name = "Medbay Central"
- })
-"bbf" = (
-/obj/machinery/camera/autoname,
-/turf/open/floor/plasteel/whiteblue/side{
- tag = "icon-whiteblue (NORTH)";
- icon_state = "whiteblue";
- dir = 1
- },
-/area/medical/medbay{
- name = "Medbay Central"
- })
-"bbg" = (
-/turf/open/floor/plasteel/whiteblue/corner{
- tag = "icon-whitebluecorner (NORTH)";
- icon_state = "whitebluecorner";
- dir = 1
- },
-/area/medical/medbay{
- name = "Medbay Central"
- })
-"bbh" = (
-/obj/structure/chair/comfy/black,
-/obj/effect/landmark/start{
- name = "Chief Medical Officer"
- },
-/turf/open/floor/plasteel/cmo,
-/area/medical/cmo)
-"bbi" = (
-/turf/open/floor/plasteel/cmo,
-/area/medical/cmo)
-"bbj" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 4;
- name = "regular air vent";
- on = 1
- },
-/turf/open/floor/plasteel/cmo,
-/area/medical/cmo)
-"bbk" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/camera/autoname{
- tag = "icon-camera (NORTHWEST)";
- icon_state = "camera";
- dir = 9
- },
-/turf/open/floor/plasteel/cmo,
-/area/medical/cmo)
-"bbl" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/door/firedoor/heavy,
-/obj/machinery/door/poddoor{
- density = 0;
- icon_state = "open";
- id = "cmo";
- name = "CMO Privacy Shutters"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/medical/cmo)
-"bbm" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/door/airlock/glass{
- name = "Central Access"
- },
-/turf/open/floor/plasteel/blue/side{
- tag = "icon-blue (WEST)";
- icon_state = "blue";
- dir = 8
- },
-/area/hallway/primary/port)
-"bbn" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/door/airlock/glass{
- name = "Central Access"
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel,
-/area/hallway/primary/port)
-"bbo" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 4;
- initialize_directions = 11
- },
-/obj/machinery/door/airlock/glass{
- name = "Central Access"
- },
-/turf/open/floor/plasteel/blue/side{
- tag = "icon-blue (EAST)";
- icon_state = "blue";
- dir = 4
- },
-/area/hallway/primary/port)
-"bbp" = (
-/turf/closed/wall,
-/area/hallway/primary/port)
-"bbq" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/door/firedoor/heavy,
-/turf/open/floor/plating,
-/area/hallway/primary/port)
-"bbr" = (
-/obj/machinery/door/firedoor/heavy,
-/obj/machinery/door/airlock/glass{
- name = "Grass Enclosure";
- req_access_txt = "12"
- },
-/turf/open/floor/plasteel/green,
-/area/hallway/primary/port)
-"bbs" = (
-/obj/machinery/door/airlock/hatch{
- name = "Bridge Maintenance Access";
- req_access_txt = "0";
- req_one_access_txt = "19; 1"
- },
-/turf/open/floor/plating,
-/area/bridge)
-"bbt" = (
-/turf/closed/wall/r_wall,
-/area/ai_monitored/security/armory{
- name = "Emergency Storage"
- })
-"bbu" = (
-/obj/machinery/door/firedoor/heavy,
-/obj/machinery/door/poddoor/shutters{
- id = "civ armory outer";
- name = "Emergency Storage"
- },
-/turf/open/floor/plasteel/darkred,
-/area/ai_monitored/security/armory{
- name = "Emergency Storage"
- })
-"bbv" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/sign/securearea,
-/turf/closed/wall/r_wall,
-/area/ai_monitored/security/armory{
- name = "Emergency Storage"
- })
-"bbw" = (
-/obj/machinery/door/firedoor/heavy,
-/obj/machinery/door/airlock/security{
- name = "Emergency Storage";
- req_access = null;
- req_access_txt = "0";
- req_one_access_txt = "19; 3"
- },
-/turf/open/floor/plasteel/darkred,
-/area/ai_monitored/security/armory{
- name = "Emergency Storage"
- })
-"bbx" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- req_access_txt = 1
- },
-/obj/structure/sign/securearea,
-/turf/closed/wall/r_wall,
-/area/ai_monitored/security/armory{
- name = "Emergency Storage"
- })
-"bby" = (
-/turf/closed/wall,
-/area/hallway/primary/starboard)
-"bbz" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/door/firedoor/heavy,
-/turf/open/floor/plating,
-/area/hallway/primary/starboard)
-"bbA" = (
-/obj/machinery/door/firedoor/heavy,
-/obj/machinery/door/airlock/glass{
- name = "Grass Enclosure";
- req_access_txt = "12"
- },
-/turf/open/floor/plasteel/green,
-/area/hallway/primary/starboard)
-"bbB" = (
-/obj/structure/sign/directions/medical{
- tag = "icon-direction_med (WEST)";
- icon_state = "direction_med";
- dir = 8
- },
-/obj/structure/sign/directions/evac{
- pixel_y = -10
- },
-/obj/structure/sign/directions/security{
- dir = 8;
- icon_state = "direction_sec";
- pixel_y = 10;
- tag = "icon-direction_sec (WEST)"
- },
-/turf/closed/wall,
-/area/hallway/primary/starboard)
-"bbC" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/door/airlock/glass{
- name = "Central Access"
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/starboard)
-"bbD" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/door/airlock/glass{
- name = "Central Access"
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel,
-/area/hallway/primary/starboard)
-"bbE" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/door/airlock/glass{
- name = "Central Access"
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/starboard)
-"bbF" = (
-/turf/closed/wall,
-/area/quartermaster/office)
-"bbG" = (
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/turf/closed/wall,
-/area/quartermaster/office)
-"bbH" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/closet/secure_closet/miner,
-/turf/open/floor/plasteel/brown{
- tag = "icon-brown (NORTHWEST)";
- icon_state = "brown";
- dir = 9
- },
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
-"bbI" = (
-/obj/machinery/light{
- dir = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/closet/secure_closet/miner,
-/turf/open/floor/plasteel/brown{
- tag = "icon-brown (NORTH)";
- icon_state = "brown";
- dir = 1
- },
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
-"bbJ" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/closet/secure_closet/miner,
-/turf/open/floor/plasteel/brown{
- tag = "icon-brown (NORTH)";
- icon_state = "brown";
- dir = 1
- },
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
-"bbK" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/closet/secure_closet/miner,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/turf/open/floor/plasteel/brown{
- tag = "icon-brown (NORTH)";
- icon_state = "brown";
- dir = 1
- },
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
-"bbL" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/suit_storage_unit/mining/eva,
-/turf/open/floor/plasteel/darkyellow,
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
-"bbM" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/ore_box,
-/obj/structure/window/reinforced{
- dir = 8;
- pixel_x = 0
- },
-/turf/open/floor/plasteel/brown{
- tag = "icon-brown (NORTH)";
- icon_state = "brown";
- dir = 1
- },
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
-"bbN" = (
-/obj/machinery/power/apc{
- dir = 1;
- name = "Mining APC";
- pixel_y = 24
- },
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel/brown{
- tag = "icon-brown (NORTH)";
- icon_state = "brown";
- dir = 1
- },
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
-"bbO" = (
-/obj/machinery/light{
- dir = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/ore_box,
-/turf/open/floor/plasteel/brown{
- tag = "icon-brown (NORTH)";
- icon_state = "brown";
- dir = 1
- },
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
-"bbP" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/ore_box,
-/turf/open/floor/plasteel/brown{
- tag = "icon-brown (NORTHEAST)";
- icon_state = "brown";
- dir = 5
- },
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
-"bbQ" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
-"bbR" = (
-/obj/machinery/light{
- dir = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/closet/secure_closet/miner,
-/turf/open/floor/plasteel/brown{
- tag = "icon-brown (NORTHWEST)";
- icon_state = "brown";
- dir = 9
- },
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
-"bbS" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/sign/mining{
- pixel_y = 30
- },
-/obj/structure/closet/secure_closet/miner,
-/turf/open/floor/plasteel/brown{
- tag = "icon-brown (NORTH)";
- icon_state = "brown";
- dir = 1
- },
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
-"bbT" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0;
- tag = ""
- },
-/turf/open/floor/plasteel/brown{
- tag = "icon-brown (NORTH)";
- icon_state = "brown";
- dir = 1
- },
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
-"bbU" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/closet/wardrobe/miner,
-/obj/item/device/radio/intercom{
- name = "Station Intercom";
- pixel_x = 0;
- pixel_y = 24
- },
-/turf/open/floor/plasteel/brown{
- tag = "icon-brown (NORTH)";
- icon_state = "brown";
- dir = 1
- },
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
-"bbV" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/closet/wardrobe/miner,
-/turf/open/floor/plasteel/brown{
- tag = "icon-brown (NORTHEAST)";
- icon_state = "brown";
- dir = 5
- },
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
-"bbW" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/closed/wall,
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
-"bbX" = (
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/starboard)
-"bbY" = (
-/obj/structure/window/reinforced{
- dir = 8;
- pixel_x = 0
- },
-/obj/structure/disposalpipe/trunk{
- dir = 8
- },
-/obj/structure/disposaloutlet{
- dir = 4
- },
-/turf/open/floor/plating/asteroid/airless{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/ruin/unpowered{
- name = "Asteroid"
- })
-"bbZ" = (
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/disposalpipe/trunk{
- dir = 4
- },
-/obj/machinery/disposal/deliveryChute{
- dir = 8
- },
-/turf/open/floor/plating/asteroid/airless{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/ruin/unpowered{
- name = "Asteroid"
- })
-"bca" = (
-/obj/structure/window/reinforced{
- dir = 8;
- pixel_x = 0
- },
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/sign/deathsposal{
- pixel_x = 30
- },
-/turf/open/floor/plating,
-/area/maintenance/starboard)
-"bcb" = (
-/obj/structure/disposalpipe/trunk{
- dir = 8
- },
-/obj/structure/disposaloutlet{
- dir = 4
- },
-/turf/open/floor/plating/airless/astplate,
-/area/maintenance/starboard)
-"bcc" = (
-/obj/effect/turf_decal/stripes{
- tag = "icon-warningline (EAST)";
- icon_state = "warningline";
- dir = 4
- },
-/turf/open/floor/plating/airless/astplate,
-/area/ruin/unpowered{
- name = "Asteroid"
- })
-"bcd" = (
-/obj/structure/cable{
- tag = "icon-1-2";
- icon_state = "1-2"
- },
-/turf/closed/wall,
-/area/maintenance/port)
-"bce" = (
-/obj/machinery/vending/wallmed{
- pixel_x = -24
- },
-/turf/open/floor/plasteel/white,
-/area/medical/patients_rooms)
-"bcf" = (
-/obj/structure/table,
-/obj/machinery/computer/med_data/laptop,
-/turf/open/floor/plasteel/white,
-/area/medical/patients_rooms)
-"bcg" = (
-/obj/machinery/camera/autoname{
- tag = "icon-camera (NORTHWEST)";
- icon_state = "camera";
- dir = 9
- },
-/turf/open/floor/plasteel/white,
-/area/medical/patients_rooms)
-"bch" = (
-/obj/machinery/vending/snack,
-/turf/open/floor/plasteel/barber,
-/area/medical/medbay3)
-"bci" = (
-/obj/machinery/vending/coffee,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 6
- },
-/turf/open/floor/plasteel/barber,
-/area/medical/medbay3)
-"bcj" = (
-/obj/machinery/computer/security/telescreen/entertainment{
- pixel_y = 24
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/barber,
-/area/medical/medbay3)
-"bck" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/barber,
-/area/medical/medbay3)
-"bcl" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 4;
- initialize_directions = 11
- },
-/turf/closed/wall,
-/area/medical/cryo)
-"bcm" = (
-/obj/machinery/atmospherics/components/unary/thermomachine/freezer{
- tag = "icon-freezer (EAST)";
- icon_state = "freezer";
- dir = 4
- },
-/obj/machinery/camera/autoname{
- tag = "icon-camera (NORTHEAST)";
- icon_state = "camera";
- dir = 5
- },
-/turf/open/floor/plasteel/whiteblue/side{
- tag = "icon-whiteblue (WEST)";
- icon_state = "whiteblue";
- dir = 8
- },
-/area/medical/cryo)
-"bcn" = (
-/obj/machinery/atmospherics/pipe/manifold/cyan/visible{
- dir = 4;
- initialize_directions = 11
- },
-/turf/open/floor/plasteel/white,
-/area/medical/cryo)
-"bco" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 8;
- initialize_directions = 11
- },
-/turf/open/floor/plasteel/white,
-/area/medical/cryo)
-"bcp" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 8;
- name = "regular air vent";
- on = 1
- },
-/turf/open/floor/plasteel/white,
-/area/medical/cryo)
-"bcq" = (
-/obj/structure/cable,
-/obj/machinery/power/apc{
- dir = 4;
- name = "Cryogenics APC";
- pixel_x = 24;
- pixel_y = 0
- },
-/obj/structure/table,
-/obj/machinery/cell_charger,
-/obj/item/wrench,
-/turf/open/floor/plasteel/whiteblue/side{
- tag = "icon-whiteblue (EAST)";
- icon_state = "whiteblue";
- dir = 4
- },
-/area/medical/cryo)
-"bcr" = (
-/obj/structure/disposalpipe/segment,
-/turf/closed/wall,
-/area/medical/cryo)
-"bcs" = (
-/turf/open/floor/plasteel/whiteblue/corner{
- tag = "icon-whitebluecorner (WEST)";
- icon_state = "whitebluecorner";
- dir = 8
- },
-/area/medical/medbay{
- name = "Medbay Central"
- })
-"bct" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 8;
- initialize_directions = 11
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay{
- name = "Medbay Central"
- })
-"bcu" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 8;
- name = "regular air vent";
- on = 1
- },
-/obj/structure/cable{
- tag = "icon-1-2";
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay{
- name = "Medbay Central"
- })
-"bcv" = (
-/turf/open/floor/plasteel/white,
-/area/medical/medbay{
- name = "Medbay Central"
- })
-"bcw" = (
-/obj/machinery/firealarm{
- dir = 4;
- pixel_x = 24
- },
-/turf/open/floor/plasteel/whiteblue/side{
- tag = "icon-whiteblue (EAST)";
- icon_state = "whiteblue";
- dir = 4
- },
-/area/medical/medbay{
- name = "Medbay Central"
- })
-"bcx" = (
-/obj/machinery/computer/crew,
-/obj/structure/window/reinforced,
-/turf/open/floor/plasteel/cmo,
-/area/medical/cmo)
-"bcy" = (
-/obj/structure/table/wood,
-/obj/machinery/computer/med_data/laptop,
-/obj/structure/window/reinforced,
-/obj/item/folder/white{
- pixel_x = 9
- },
-/obj/item/pen/red,
-/turf/open/floor/plasteel/cmo,
-/area/medical/cmo)
-"bcz" = (
-/obj/machinery/door/window/southleft{
- name = "CMO Desk";
- req_access_txt = "40"
- },
-/mob/living/simple_animal/pet/cat/Runtime,
-/turf/open/floor/plasteel/cmo,
-/area/medical/cmo)
-"bcA" = (
-/obj/structure/table/wood,
-/obj/structure/window/reinforced,
-/obj/machinery/keycard_auth,
-/obj/item/stamp/cmo{
- pixel_x = 9
- },
-/turf/open/floor/plasteel/cmo,
-/area/medical/cmo)
-"bcB" = (
-/obj/machinery/status_display,
-/turf/closed/wall,
-/area/medical/cmo)
-"bcC" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/blue/side{
- tag = "icon-blue (WEST)";
- icon_state = "blue";
- dir = 8
- },
-/area/hallway/primary/port)
-"bcD" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel,
-/area/hallway/primary/port)
-"bcE" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/blue/side{
- tag = "icon-blue (EAST)";
- icon_state = "blue";
- dir = 4
- },
-/area/hallway/primary/port)
-"bcF" = (
-/turf/open/floor/grass,
-/area/hallway/primary/port)
-"bcG" = (
-/obj/structure/flora/grass/green,
-/turf/open/floor/grass,
-/area/hallway/primary/port)
-"bcH" = (
-/turf/open/floor/plating,
-/area/bridge)
-"bcI" = (
-/obj/machinery/firealarm{
- dir = 8;
- pixel_x = -24;
- pixel_y = 0
- },
-/turf/open/floor/plasteel/darkred,
-/area/ai_monitored/security/armory{
- name = "Emergency Storage"
- })
-"bcJ" = (
-/turf/open/floor/plasteel/darkred,
-/area/ai_monitored/security/armory{
- name = "Emergency Storage"
- })
-"bcK" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/table/reinforced,
-/obj/machinery/door/firedoor/heavy,
-/obj/machinery/door/window/brigdoor{
- dir = 4;
- name = "Security Desk";
- req_access_txt = "1"
- },
-/obj/machinery/door/window/westleft{
- base_state = "right";
- dir = 8;
- icon_state = "right";
- name = "Outer Window";
- req_access_txt = "0"
- },
-/obj/machinery/door/poddoor/shutters{
- id = "civ armory inner";
- name = "Emergency Storage Interior Shutters"
- },
-/turf/open/floor/plasteel/darkred,
-/area/ai_monitored/security/armory{
- name = "Emergency Storage"
- })
-"bcL" = (
-/obj/machinery/light/small{
- dir = 1
- },
-/obj/machinery/button/door{
- id = "civ armory outer";
- name = "Civilian Armory Outer Shutters";
- pixel_y = 28;
- req_one_access_txt = "19; 3"
- },
-/obj/machinery/camera/motion{
- c_tag = "Civ Armory Entrance";
- dir = 1;
- network = null
- },
-/turf/open/floor/plasteel/darkred,
-/area/ai_monitored/security/armory{
- name = "Emergency Storage"
- })
-"bcM" = (
-/obj/machinery/light/small{
- dir = 1
- },
-/obj/machinery/button/door{
- id = "civ armory inner";
- name = "Civilian Armory Inner Shutters";
- pixel_y = 28;
- req_access_txt = "0";
- req_one_access_txt = "19; 3"
- },
-/turf/open/floor/plasteel/darkred,
-/area/ai_monitored/security/armory{
- name = "Emergency Storage"
- })
-"bcN" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- req_access_txt = 1
- },
-/obj/structure/table/reinforced,
-/obj/machinery/door/firedoor/heavy,
-/obj/machinery/door/window/brigdoor{
- dir = 8;
- name = "Security Desk";
- req_access_txt = "1"
- },
-/obj/machinery/door/window/westleft{
- base_state = "right";
- dir = 4;
- icon_state = "right";
- name = "Outer Window";
- req_access_txt = "0"
- },
-/obj/machinery/door/poddoor/shutters{
- id = "civ armory inner";
- name = "Emergency Storage Interior Shutters"
- },
-/turf/open/floor/plasteel/darkred,
-/area/ai_monitored/security/armory{
- name = "Emergency Storage"
- })
-"bcO" = (
-/obj/machinery/firealarm{
- dir = 4;
- pixel_x = 28;
- pixel_y = 0
- },
-/turf/open/floor/plasteel/darkred,
-/area/ai_monitored/security/armory{
- name = "Emergency Storage"
- })
-"bcP" = (
-/turf/open/floor/grass,
-/area/hallway/primary/starboard)
-"bcQ" = (
-/obj/structure/flora/grass/green,
-/turf/open/floor/grass,
-/area/hallway/primary/starboard)
-"bcR" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/primary/starboard)
-"bcS" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/junction{
- tag = "icon-pipe-y (EAST)";
- icon_state = "pipe-y";
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/starboard)
-"bcT" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/starboard)
-"bcU" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/closed/wall,
-/area/quartermaster/office)
-"bcV" = (
-/obj/structure/disposalpipe/trunk{
- dir = 8
- },
-/obj/structure/disposaloutlet{
- dir = 4
- },
-/turf/open/floor/plasteel/black,
-/area/quartermaster/office)
-"bcW" = (
-/obj/machinery/conveyor{
- dir = 8;
- id = "garbage"
- },
-/turf/open/floor/plasteel/black,
-/area/quartermaster/office)
-"bcX" = (
-/obj/machinery/light{
- dir = 1
- },
-/obj/machinery/conveyor{
- dir = 8;
- id = "garbage"
- },
-/turf/open/floor/plasteel/black,
-/area/quartermaster/office)
-"bcY" = (
-/obj/machinery/conveyor{
- dir = 8;
- id = "garbage"
- },
-/obj/machinery/recycler,
-/turf/open/floor/plasteel/black,
-/area/quartermaster/office)
-"bcZ" = (
-/obj/machinery/conveyor{
- tag = "icon-conveyor0 (SOUTHEAST)";
- icon_state = "conveyor0";
- dir = 6;
- id = "garbage"
- },
-/turf/open/floor/plasteel/black,
-/area/quartermaster/office)
-"bda" = (
-/obj/structure/disposalpipe/segment,
-/turf/closed/wall,
-/area/quartermaster/office)
-"bdb" = (
-/turf/open/floor/plasteel/brown{
- tag = "icon-brown (WEST)";
- icon_state = "brown";
- dir = 8
- },
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
-"bdc" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 4;
- name = "regular air vent";
- on = 1
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
-"bdd" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
-"bde" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
-"bdf" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 10
- },
-/obj/effect/turf_decal/stripes/line,
-/turf/open/floor/plasteel/darkyellow,
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
-"bdg" = (
-/obj/effect/turf_decal/stripes/line,
-/turf/open/floor/plasteel/darkyellow,
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
-"bdh" = (
-/obj/structure/window/reinforced{
- dir = 8;
- pixel_x = 0
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
-"bdi" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
-"bdj" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 2;
- name = "regular air scrubber";
- on = 1
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
-"bdk" = (
-/obj/machinery/camera/autoname{
- tag = "icon-camera (NORTHWEST)";
- icon_state = "camera";
- dir = 9
- },
-/turf/open/floor/plasteel/brown{
- tag = "icon-brown (EAST)";
- icon_state = "brown";
- dir = 4
- },
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
-"bdl" = (
-/obj/machinery/firealarm{
- dir = 8;
- pixel_x = -24;
- pixel_y = 0
- },
-/turf/open/floor/plasteel/brown{
- tag = "icon-brown (WEST)";
- icon_state = "brown";
- dir = 8
- },
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
-"bdm" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 10
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0;
- tag = ""
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
-"bdn" = (
-/turf/open/floor/plasteel/brown{
- tag = "icon-brown (EAST)";
- icon_state = "brown";
- dir = 4
- },
-/area/space)
-"bdo" = (
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/machinery/light/small{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/maintenance/starboard)
-"bdp" = (
-/obj/structure/window/reinforced{
- dir = 8;
- pixel_x = 0
- },
-/turf/open/floor/plating/asteroid/airless{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/ruin/unpowered{
- name = "Asteroid"
- })
-"bdq" = (
-/obj/effect/turf_decal/stripes,
-/turf/open/floor/plating/airless/astplate,
-/area/ruin/unpowered{
- name = "Asteroid"
- })
-"bdr" = (
-/obj/effect/turf_decal/stripes{
- tag = "icon-warningline (SOUTHEAST)";
- icon_state = "warningline";
- dir = 6
- },
-/turf/open/floor/plating/airless/astplate,
-/area/ruin/unpowered{
- name = "Asteroid"
- })
-"bds" = (
-/obj/structure/window/reinforced{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/maintenance/port)
-"bdt" = (
-/obj/machinery/firealarm{
- dir = 8;
- pixel_x = -24
- },
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 4;
- name = "regular air vent";
- on = 1
- },
-/obj/structure/bed/roller,
-/turf/open/floor/plasteel/white,
-/area/medical/patients_rooms)
-"bdu" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/camera/autoname{
- tag = "icon-camera (SOUTHWEST)";
- icon_state = "camera";
- dir = 10
- },
-/turf/open/floor/plasteel/white,
-/area/medical/patients_rooms)
-"bdv" = (
-/obj/structure/chair/office/light{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/medical/patients_rooms)
-"bdw" = (
-/obj/structure/table,
-/obj/item/folder/white,
-/obj/item/pen,
-/turf/open/floor/plasteel/white,
-/area/medical/patients_rooms)
-"bdx" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/door/firedoor,
-/turf/open/floor/plating,
-/area/medical/patients_rooms)
-"bdy" = (
-/obj/machinery/light{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/medical/patients_rooms)
-"bdz" = (
-/obj/machinery/status_display,
-/turf/closed/wall,
-/area/medical/medbay3)
-"bdA" = (
-/turf/open/floor/plasteel/barber,
-/area/medical/medbay3)
-"bdB" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 1;
- name = "regular air scrubber";
- on = 1
- },
-/turf/open/floor/plasteel/barber,
-/area/medical/medbay3)
-"bdC" = (
-/obj/machinery/camera/autoname{
- tag = "icon-camera (NORTHWEST)";
- icon_state = "camera";
- dir = 9
- },
-/turf/open/floor/plasteel/barber,
-/area/medical/medbay3)
-"bdD" = (
-/obj/machinery/light{
- icon_state = "tube1";
- dir = 8
- },
-/obj/machinery/atmospherics/components/unary/portables_connector{
- tag = "icon-connector_map (EAST)";
- icon_state = "connector_map";
- dir = 4
- },
-/obj/machinery/portable_atmospherics/canister/oxygen,
-/obj/structure/sign/fire{
- pixel_x = -32
- },
-/turf/open/floor/plasteel/whiteblue/side{
- tag = "icon-whiteblue (WEST)";
- icon_state = "whiteblue";
- dir = 8
- },
-/area/medical/cryo)
-"bdE" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/white,
-/area/medical/cryo)
-"bdF" = (
-/obj/structure/bed/roller,
-/turf/open/floor/plasteel/whiteblue/side{
- tag = "icon-whiteblue (EAST)";
- icon_state = "whiteblue";
- dir = 4
- },
-/area/medical/cryo)
-"bdG" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/status_display,
-/turf/closed/wall,
-/area/medical/cryo)
-"bdH" = (
-/obj/effect/landmark/start{
- name = "Medical Doctor"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/white,
-/area/medical/medbay{
- name = "Medbay Central"
- })
-"bdI" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/cable{
- tag = "icon-1-2";
- icon_state = "1-2"
- },
-/obj/structure/cable{
- tag = "icon-1-4";
- icon_state = "1-4"
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay{
- name = "Medbay Central"
- })
-"bdJ" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay{
- name = "Medbay Central"
- })
-"bdK" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/whiteblue/side{
- tag = "icon-whiteblue (EAST)";
- icon_state = "whiteblue";
- dir = 4
- },
-/area/medical/medbay{
- name = "Medbay Central"
- })
-"bdL" = (
-/obj/machinery/door/firedoor/heavy,
-/obj/machinery/door/poddoor{
- density = 0;
- icon_state = "open";
- id = "cmo";
- name = "CMO Privacy Shutters"
- },
-/obj/machinery/door/airlock/glass_command{
- name = "Chief Medical Officer";
- req_access_txt = "40"
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/cmo,
-/area/medical/cmo)
-"bdM" = (
-/obj/structure/cable{
- tag = "icon-2-8";
- icon_state = "2-8"
- },
-/turf/open/floor/plasteel/cmo,
-/area/medical/cmo)
-"bdN" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 4;
- name = "regular air scrubber";
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel/cmo,
-/area/medical/cmo)
-"bdO" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/cmo,
-/area/medical/cmo)
-"bdP" = (
-/obj/machinery/door/firedoor/heavy,
-/obj/machinery/door/poddoor{
- density = 0;
- icon_state = "open";
- id = "cmo";
- name = "CMO Privacy Shutters"
- },
-/obj/machinery/door/airlock/glass_command{
- name = "Chief Medical Officer";
- req_access_txt = "40"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/cmo,
-/area/medical/cmo)
-"bdQ" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/blue/side{
- tag = "icon-blue (WEST)";
- icon_state = "blue";
- dir = 8
- },
-/area/hallway/primary/port)
-"bdR" = (
-/mob/living/carbon/monkey,
-/turf/open/floor/grass,
-/area/hallway/primary/port)
-"bdS" = (
-/obj/machinery/light{
- dir = 8
- },
-/turf/open/floor/plasteel/darkred,
-/area/ai_monitored/security/armory{
- name = "Emergency Storage"
- })
-"bdT" = (
-/obj/machinery/camera/motion{
- c_tag = "Civ Armory West";
- dir = 8
- },
-/turf/open/floor/plasteel/darkred,
-/area/ai_monitored/security/armory{
- name = "Emergency Storage"
- })
-"bdU" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/closed/wall,
-/area/ai_monitored/security/armory{
- name = "Emergency Storage"
- })
-"bdV" = (
-/turf/closed/wall,
-/area/ai_monitored/security/armory{
- name = "Emergency Storage"
- })
-"bdW" = (
-/obj/machinery/door/firedoor/heavy,
-/obj/machinery/door/poddoor/shutters{
- id = "civ armory inner";
- name = "Emergency Storage Interior Shutters"
- },
-/turf/open/floor/plasteel/darkred,
-/area/ai_monitored/security/armory{
- name = "Emergency Storage"
- })
-"bdX" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- req_access_txt = 1
- },
-/turf/closed/wall,
-/area/ai_monitored/security/armory{
- name = "Emergency Storage"
- })
-"bdY" = (
-/obj/machinery/camera/motion{
- c_tag = "Civ Armory East";
- dir = 4;
- network = list("MiniSat")
- },
-/turf/open/floor/plasteel/darkred,
-/area/ai_monitored/security/armory{
- name = "Emergency Storage"
- })
-"bdZ" = (
-/obj/machinery/light{
- dir = 4
- },
-/turf/open/floor/plasteel/darkred,
-/area/ai_monitored/security/armory{
- name = "Emergency Storage"
- })
-"bea" = (
-/obj/structure/flora/grass/green,
-/mob/living/simple_animal/cow,
-/turf/open/floor/grass,
-/area/hallway/primary/starboard)
-"beb" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/starboard)
-"bec" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel,
-/area/hallway/primary/starboard)
-"bed" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/starboard)
-"bee" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/closed/wall,
-/area/quartermaster/office)
-"bef" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/machinery/conveyor_switch/oneway{
- convdir = -1;
- id = "garbage";
- name = "disposal coveyor"
- },
-/obj/effect/turf_decal/stripes,
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"beg" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/effect/turf_decal/stripes,
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"beh" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 1;
- initialize_directions = 11
- },
-/obj/structure/window/reinforced{
- dir = 1;
- pixel_y = 1
- },
-/obj/effect/turf_decal/stripes,
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"bei" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 1;
- layer = 2.9
- },
-/obj/effect/turf_decal/stripes,
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"bej" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 1;
- layer = 2.9
- },
-/obj/effect/turf_decal/stripes/corner{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"bek" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/machinery/conveyor{
- tag = "icon-conveyor0 (NORTH)";
- icon_state = "conveyor0";
- dir = 1;
- id = "garbage"
- },
-/turf/open/floor/plasteel/black,
-/area/quartermaster/office)
-"bel" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/structure/disposalpipe/segment,
-/turf/closed/wall,
-/area/quartermaster/office)
-"bem" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 1;
- initialize_directions = 11
- },
-/obj/machinery/firealarm{
- dir = 8;
- pixel_x = -24;
- pixel_y = 0
- },
-/turf/open/floor/plasteel/brown{
- tag = "icon-brown (WEST)";
- icon_state = "brown";
- dir = 8
- },
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
-"ben" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
-"beo" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/effect/landmark/start{
- name = "Shaft Miner"
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
-"bep" = (
-/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/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
-"beq" = (
-/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{
- req_access_txt = 1
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
-"ber" = (
-/obj/structure/cable{
- tag = "icon-1-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";
- pixel_y = 0;
- tag = ""
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
-"bes" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 2;
- initialize_directions = 11
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0;
- tag = ""
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
-"bet" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 1;
- initialize_directions = 11
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0;
- tag = ""
- },
-/turf/open/floor/plasteel/brown{
- tag = "icon-brown (EAST)";
- icon_state = "brown";
- dir = 4
- },
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
-"beu" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/machinery/door/airlock/mining{
- name = "Mining Office";
- req_access_txt = "48"
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0;
- tag = ""
- },
-/turf/open/floor/plasteel/delivery,
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
-"bev" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0;
- tag = ""
- },
-/turf/open/floor/plasteel/brown{
- tag = "icon-brown (WEST)";
- icon_state = "brown";
- dir = 8
- },
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
-"bew" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0;
- tag = ""
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
-"bex" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- req_access_txt = 1
- },
-/obj/effect/landmark/start{
- name = "Shaft Miner"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
-"bey" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 4;
- initialize_directions = 11
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
-"bez" = (
-/obj/structure/ore_box,
-/turf/open/floor/plasteel/brown{
- tag = "icon-brown (EAST)";
- icon_state = "brown";
- dir = 4
- },
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
-"beA" = (
-/obj/structure/window/reinforced{
- dir = 8;
- pixel_x = 0
- },
-/obj/structure/window/reinforced,
-/turf/open/floor/plating/asteroid/airless{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/ruin/unpowered{
- name = "Asteroid"
- })
-"beB" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/closed/wall,
-/area/medical/patients_rooms)
-"beC" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/closed/wall,
-/area/medical/patients_rooms)
-"beD" = (
-/obj/structure/cable{
- tag = "icon-1-2";
- icon_state = "1-2"
- },
-/obj/machinery/vending/wallmed{
- pixel_x = -24
- },
-/turf/open/floor/plasteel/white,
-/area/medical/patients_rooms)
-"beE" = (
-/obj/structure/extinguisher_cabinet{
- pixel_x = 24
- },
-/turf/open/floor/plasteel/white,
-/area/medical/patients_rooms)
-"beF" = (
-/obj/structure/table,
-/obj/item/reagent_containers/food/drinks/drinkingglass,
-/obj/item/reagent_containers/food/drinks/drinkingglass,
-/obj/item/reagent_containers/food/drinks/drinkingglass,
-/obj/item/reagent_containers/food/drinks/britcup,
-/turf/open/floor/plasteel/barber,
-/area/medical/medbay3)
-"beG" = (
-/obj/machinery/requests_console{
- announcementConsole = 0;
- department = "Medbay";
- departmentType = 1;
- name = "Medbay RC";
- pixel_x = 30;
- pixel_y = 0;
- pixel_z = 0
- },
-/obj/structure/chair/comfy/black{
- dir = 8
- },
-/obj/machinery/light{
- icon_state = "tube1";
- dir = 4
- },
-/turf/open/floor/plasteel/barber,
-/area/medical/medbay3)
-"beH" = (
-/obj/machinery/atmospherics/components/unary/tank/oxygen{
- dir = 4
- },
-/turf/open/floor/plasteel/whiteblue/side{
- tag = "icon-whiteblue (SOUTHWEST)";
- icon_state = "whiteblue";
- dir = 10
- },
-/area/medical/cryo)
-"beI" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/visible{
- dir = 9
- },
-/turf/open/floor/plasteel/whiteblue/side,
-/area/medical/cryo)
-"beJ" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/whiteblue/side,
-/area/medical/cryo)
-"beK" = (
-/turf/open/floor/plasteel/whiteblue/side,
-/area/medical/cryo)
-"beL" = (
-/obj/structure/bed/roller,
-/obj/machinery/firealarm{
- dir = 4;
- pixel_x = 24
- },
-/turf/open/floor/plasteel/whiteblue/side{
- tag = "icon-whiteblue (SOUTHEAST)";
- icon_state = "whiteblue";
- dir = 6
- },
-/area/medical/cryo)
-"beM" = (
-/obj/structure/disposalpipe/junction{
- icon_state = "pipe-j2";
- dir = 2
- },
-/turf/closed/wall,
-/area/medical/cryo)
-"beN" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel/whiteblue/side{
- tag = "icon-whiteblue (WEST)";
- icon_state = "whiteblue";
- dir = 8
- },
-/area/medical/medbay{
- name = "Medbay Central"
- })
-"beO" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay{
- name = "Medbay Central"
- })
-"beP" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- tag = "icon-1-2";
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/whiteblue/corner,
-/area/medical/medbay{
- name = "Medbay Central"
- })
-"beQ" = (
-/obj/structure/table/glass,
-/obj/item/soap/nanotrasen,
-/obj/item/reagent_containers/spray/cleaner,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel/whiteblue/side,
-/area/medical/medbay{
- name = "Medbay Central"
- })
-"beR" = (
-/obj/machinery/vending/medical,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel/whiteblue/side,
-/area/medical/medbay{
- name = "Medbay Central"
- })
-"beS" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel/whiteblue/side,
-/area/medical/medbay{
- name = "Medbay Central"
- })
-"beT" = (
-/obj/structure/disposalpipe/trunk{
- dir = 8
- },
-/obj/machinery/disposal/bin,
-/turf/open/floor/plasteel/whiteblue/side{
- tag = "icon-whiteblue (SOUTHEAST)";
- icon_state = "whiteblue";
- dir = 6
- },
-/area/medical/medbay{
- name = "Medbay Central"
- })
-"beU" = (
-/obj/structure/cable,
-/obj/machinery/power/apc{
- dir = 2;
- name = "CMO's Office APC";
- pixel_x = 0;
- pixel_y = -24
- },
-/turf/open/floor/plasteel/cmo,
-/area/medical/cmo)
-"beV" = (
-/obj/machinery/light,
-/obj/machinery/button/door{
- id = "cmo";
- name = "CMO Privacy Shutters";
- pixel_y = -24
- },
-/turf/open/floor/plasteel/cmo,
-/area/medical/cmo)
-"beW" = (
-/obj/machinery/computer/card/minor/cmo,
-/obj/machinery/requests_console{
- announcementConsole = 1;
- department = "Chief Medical Officer's Desk";
- departmentType = 5;
- name = "Chief Medical Officer RC";
- pixel_x = 0;
- pixel_y = -32
- },
-/turf/open/floor/plasteel/cmo,
-/area/medical/cmo)
-"beX" = (
-/obj/machinery/airalarm{
- dir = 8;
- icon_state = "alarm0";
- pixel_x = 24
- },
-/obj/machinery/firealarm{
- dir = 1;
- pixel_y = -24
- },
-/obj/item/twohanded/required/kirbyplants,
-/turf/open/floor/plasteel/cmo,
-/area/medical/cmo)
-"beY" = (
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/grass,
-/area/hallway/primary/port)
-"beZ" = (
-/obj/machinery/airalarm{
- dir = 4;
- locked = 0;
- pixel_x = -23;
- pixel_y = 0
- },
-/turf/open/floor/plasteel/darkred,
-/area/ai_monitored/security/armory{
- name = "Emergency Storage"
- })
-"bfa" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 2;
- name = "regular air scrubber";
- on = 1
- },
-/turf/open/floor/plasteel/darkred,
-/area/ai_monitored/security/armory{
- name = "Emergency Storage"
- })
-"bfb" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/table/reinforced,
-/obj/item/storage/firstaid/brute{
- pixel_x = 3;
- pixel_y = 3
- },
-/obj/item/storage/firstaid/fire,
-/turf/open/floor/plasteel/darkred,
-/area/ai_monitored/security/armory{
- name = "Emergency Storage"
- })
-"bfc" = (
-/obj/structure/table/reinforced,
-/obj/item/storage/firstaid/o2{
- pixel_x = 3;
- pixel_y = 3
- },
-/obj/item/storage/firstaid/toxin,
-/obj/machinery/button/door{
- id = "civ armory outer";
- name = "Civilian Armory Outer Shutters";
- pixel_y = 28;
- req_access_txt = "19"
- },
-/turf/open/floor/plasteel/darkred,
-/area/ai_monitored/security/armory{
- name = "Emergency Storage"
- })
-"bfd" = (
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plasteel/darkred,
-/area/ai_monitored/security/armory{
- name = "Emergency Storage"
- })
-"bfe" = (
-/obj/structure/table/reinforced,
-/obj/item/storage/box/medipens{
- pixel_x = 3;
- pixel_y = 3
- },
-/obj/item/storage/box/medipens/utility,
-/obj/machinery/button/door{
- id = "civ armory inner";
- name = "Civilian Armory Inner Shutters";
- pixel_y = 28;
- req_access_txt = "0";
- req_one_access_txt = "19; 3"
- },
-/turf/open/floor/plasteel/darkred,
-/area/ai_monitored/security/armory{
- name = "Emergency Storage"
- })
-"bff" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- req_access_txt = 1
- },
-/obj/structure/table/reinforced,
-/obj/item/storage/backpack/dufflebag/sec{
- contents = newlist(/obj/item/scalpel,/obj/item/hemostat,/obj/item/retractor,/obj/item/cautery,/obj/item/circular_saw,/obj/item/surgical_drapes,/obj/item/clothing/mask/surgical);
- desc = "A large dufflebag for holding extra supplies - this one has a material inlay with space for various sharp-looking tools.";
- name = "dufflebag";
- pixel_y = 5
- },
-/turf/open/floor/plasteel/darkred,
-/area/ai_monitored/security/armory{
- name = "Emergency Storage"
- })
-"bfg" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- name = "regular air vent";
- on = 1
- },
-/turf/open/floor/plasteel/darkred,
-/area/ai_monitored/security/armory{
- name = "Emergency Storage"
- })
-"bfh" = (
-/obj/machinery/power/apc{
- cell_type = 5000;
- dir = 4;
- name = "Emergency Storage APC";
- pixel_x = 24;
- pixel_y = 0
- },
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
- },
-/turf/open/floor/plasteel/darkred,
-/area/ai_monitored/security/armory{
- name = "Emergency Storage"
- })
-"bfi" = (
-/mob/living/simple_animal/cow,
-/turf/open/floor/grass,
-/area/hallway/primary/starboard)
-"bfj" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel,
-/area/hallway/primary/starboard)
-"bfk" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/primary/starboard)
-"bfl" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/quartermaster/office)
-"bfm" = (
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"bfn" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 1;
- name = "regular air scrubber";
- on = 1
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"bfo" = (
-/turf/open/floor/plasteel/loadingarea{
- dir = 8
- },
-/area/quartermaster/office)
-"bfp" = (
-/obj/machinery/mineral/stacking_machine{
- input_dir = 4;
- stack_amt = 10
- },
-/obj/effect/turf_decal/stripes{
- tag = "icon-warningline (WEST)";
- icon_state = "warningline";
- dir = 8
- },
-/turf/open/floor/plasteel/delivery,
-/area/quartermaster/office)
-"bfq" = (
-/obj/machinery/conveyor{
- tag = "icon-conveyor0 (NORTH)";
- icon_state = "conveyor0";
- dir = 1;
- id = "garbage"
- },
-/turf/open/floor/plasteel/black,
-/area/quartermaster/office)
-"bfr" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/item/device/radio/intercom{
- dir = 8;
- pixel_x = -28
- },
-/turf/open/floor/plasteel/brown{
- tag = "icon-brown (WEST)";
- icon_state = "brown";
- dir = 8
- },
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
-"bfs" = (
-/obj/structure/cable{
- tag = "icon-1-2";
- icon_state = "1-2"
- },
-/obj/effect/landmark/start{
- name = "Shaft Miner"
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
-"bft" = (
-/turf/open/floor/plasteel,
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
-"bfu" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 8;
- initialize_directions = 11
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
-"bfv" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/effect/landmark/start{
- name = "Shaft Miner"
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
-"bfw" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/brown{
- tag = "icon-brown (EAST)";
- icon_state = "brown";
- dir = 4
- },
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
-"bfx" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/closed/wall,
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
-"bfy" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/table,
-/obj/item/device/gps/mining,
-/obj/item/device/gps/mining,
-/turf/open/floor/plasteel/brown{
- tag = "icon-brown (SOUTHWEST)";
- icon_state = "brown";
- dir = 10
- },
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
-"bfz" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/airalarm{
- dir = 1;
- icon_state = "alarm0";
- pixel_y = -22
- },
-/obj/structure/table,
-/obj/item/pickaxe,
-/obj/item/storage/bag/ore,
-/turf/open/floor/plasteel/brown,
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
-"bfA" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 4;
- initialize_directions = 11
- },
-/turf/open/floor/plasteel/brown,
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
-"bfB" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/brown,
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
-"bfC" = (
-/obj/machinery/light,
-/obj/machinery/mineral/equipment_vendor,
-/turf/open/floor/plasteel/brown{
- tag = "icon-brown (SOUTHEAST)";
- icon_state = "brown";
- dir = 6
- },
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
-"bfD" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/maintenance/starboard)
-"bfE" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/machinery/camera/autoname{
- tag = "icon-camera (NORTH)";
- icon_state = "camera";
- dir = 1
- },
-/turf/open/floor/plating,
-/area/maintenance/starboard)
-"bfF" = (
-/obj/machinery/light_switch{
- pixel_y = 24
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/medical/patients_rooms)
-"bfG" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/table,
-/obj/item/reagent_containers/syringe,
-/obj/item/reagent_containers/glass/bottle/salglu_solution,
-/turf/open/floor/plasteel/white,
-/area/medical/patients_rooms)
-"bfH" = (
-/obj/structure/cable{
- tag = "icon-1-2";
- icon_state = "1-2"
- },
-/obj/machinery/airalarm{
- dir = 4;
- pixel_x = -23;
- pixel_y = 0
- },
-/turf/open/floor/plasteel/white,
-/area/medical/patients_rooms)
-"bfI" = (
-/obj/machinery/airalarm{
- dir = 4;
- pixel_x = -23;
- pixel_y = 0
- },
-/obj/structure/table,
-/obj/machinery/juicer,
-/obj/item/reagent_containers/food/snacks/grown/apple,
-/obj/item/reagent_containers/food/snacks/grown/apple,
-/obj/item/reagent_containers/food/snacks/grown/apple,
-/obj/item/reagent_containers/food/snacks/grown/apple,
-/obj/item/reagent_containers/food/snacks/grown/apple,
-/turf/open/floor/plasteel/barber,
-/area/medical/medbay3)
-"bfJ" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- name = "regular air vent";
- on = 1
- },
-/obj/effect/landmark{
- name = "xeno_spawn";
- pixel_x = -1
- },
-/turf/open/floor/plasteel/barber,
-/area/medical/medbay3)
-"bfK" = (
-/obj/structure/chair/comfy/black{
- dir = 8
- },
-/obj/machinery/firealarm{
- dir = 4;
- pixel_x = 28;
- pixel_y = 0
- },
-/turf/open/floor/plasteel/barber,
-/area/medical/medbay3)
-"bfL" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 5
- },
-/turf/closed/wall,
-/area/medical/sleeper{
- name = "Sleepers"
- })
-"bfM" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 10
- },
-/obj/machinery/door/firedoor,
-/turf/open/floor/plating,
-/area/medical/sleeper{
- name = "Sleepers"
- })
-"bfN" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/door/firedoor,
-/turf/open/floor/plating,
-/area/medical/sleeper{
- name = "Sleepers"
- })
-"bfO" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/door/firedoor,
-/turf/open/floor/plasteel/whiteblue,
-/area/medical/sleeper{
- name = "Sleepers"
- })
-"bfP" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/structure/disposalpipe/segment,
-/obj/machinery/door/firedoor,
-/turf/open/floor/plating,
-/area/medical/sleeper{
- name = "Sleepers"
- })
-"bfQ" = (
-/obj/structure/disposalpipe/segment,
-/turf/closed/wall,
-/area/medical/sleeper{
- name = "Sleepers"
- })
-"bfR" = (
-/obj/machinery/airalarm{
- dir = 4;
- pixel_x = -23;
- pixel_y = 0
- },
-/turf/open/floor/plasteel/whiteblue/side{
- tag = "icon-whiteblue (WEST)";
- icon_state = "whiteblue";
- dir = 8
- },
-/area/medical/medbay{
- name = "Medbay Central"
- })
-"bfS" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/white,
-/area/medical/medbay{
- name = "Medbay Central"
- })
-"bfT" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/cable{
- tag = "icon-1-2";
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/whiteblue/side{
- tag = "icon-whiteblue (EAST)";
- icon_state = "whiteblue";
- dir = 4
- },
-/area/medical/medbay{
- name = "Medbay Central"
- })
-"bfU" = (
-/obj/structure/sign/chemistry,
-/turf/closed/wall,
-/area/medical/chemistry)
-"bfV" = (
-/turf/closed/wall,
-/area/medical/chemistry)
-"bfW" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/door/firedoor,
-/turf/open/floor/plating,
-/area/medical/chemistry)
-"bfX" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/light{
- icon_state = "tube1";
- dir = 8
- },
-/turf/open/floor/plasteel/blue/side{
- tag = "icon-blue (WEST)";
- icon_state = "blue";
- dir = 8
- },
-/area/hallway/primary/port)
-"bfY" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 4;
- name = "regular air vent";
- on = 1
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/port)
-"bfZ" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 4;
- initialize_directions = 11
- },
-/turf/open/floor/plasteel/blue/side{
- tag = "icon-blue (EAST)";
- icon_state = "blue";
- dir = 4
- },
-/area/hallway/primary/port)
-"bga" = (
-/obj/structure/flora/grass/green,
-/mob/living/carbon/monkey,
-/turf/open/floor/grass,
-/area/hallway/primary/port)
-"bgb" = (
-/turf/closed/wall/r_wall,
-/area/hallway/primary/port)
-"bgc" = (
-/turf/open/floor/plasteel/darkred/side{
- tag = "icon-darkred (NORTH)";
- icon_state = "darkred";
- dir = 1
- },
-/area/ai_monitored/security/armory{
- name = "Emergency Storage"
- })
-"bgd" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel/darkred/side{
- tag = "icon-darkred (NORTH)";
- icon_state = "darkred";
- dir = 1
- },
-/area/ai_monitored/security/armory{
- name = "Emergency Storage"
- })
-"bge" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 9
- },
-/turf/open/floor/plasteel/darkred/side{
- tag = "icon-darkred (NORTH)";
- icon_state = "darkred";
- dir = 1
- },
-/area/ai_monitored/security/armory{
- name = "Emergency Storage"
- })
-"bgf" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 5
- },
-/turf/open/floor/plasteel/darkred/side{
- tag = "icon-darkred (NORTH)";
- icon_state = "darkred";
- dir = 1
- },
-/area/ai_monitored/security/armory{
- name = "Emergency Storage"
- })
-"bgg" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 4;
- initialize_directions = 11
- },
-/turf/open/floor/plasteel/darkred/side{
- tag = "icon-darkred (NORTH)";
- icon_state = "darkred";
- dir = 1
- },
-/area/ai_monitored/security/armory{
- name = "Emergency Storage"
- })
-"bgh" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/extinguisher_cabinet{
- pixel_x = 24
- },
-/turf/open/floor/plasteel/darkred/side{
- tag = "icon-darkred (NORTH)";
- icon_state = "darkred";
- dir = 1
- },
-/area/ai_monitored/security/armory{
- name = "Emergency Storage"
- })
-"bgi" = (
-/turf/closed/wall/r_wall,
-/area/hallway/primary/starboard)
-"bgj" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 8
- },
-/obj/machinery/light{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/starboard)
-"bgk" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/closed/wall,
-/area/quartermaster/office)
-"bgl" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/item/device/radio/intercom{
- dir = 8;
- pixel_x = -28
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"bgm" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"bgn" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"bgo" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/mineral/stacking_unit_console{
- dir = 1;
- machinedir = 1;
- pixel_y = -30
- },
-/obj/effect/turf_decal/stripes{
- tag = "icon-warningline (WEST)";
- icon_state = "warningline";
- dir = 8
- },
-/turf/open/floor/plasteel/delivery,
-/area/quartermaster/office)
-"bgp" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/conveyor{
- tag = "icon-conveyor0 (NORTH)";
- icon_state = "conveyor0";
- dir = 1;
- id = "garbage"
- },
-/obj/structure/sign/deathsposal{
- pixel_x = 30
- },
-/turf/open/floor/plasteel/black,
-/area/quartermaster/office)
-"bgq" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/disposalpipe/segment,
-/turf/closed/wall,
-/area/quartermaster/office)
-"bgr" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/ore_box,
-/turf/open/floor/plasteel/brown{
- tag = "icon-brown (SOUTHWEST)";
- icon_state = "brown";
- dir = 10
- },
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
-"bgs" = (
-/obj/structure/cable{
- tag = "icon-1-2";
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/brown,
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
-"bgt" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 1
- },
-/obj/machinery/camera/autoname{
- tag = "icon-camera (NORTH)";
- icon_state = "camera";
- dir = 1
- },
-/turf/open/floor/plasteel/brown,
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
-"bgu" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/brown,
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
-"bgv" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 9
- },
-/obj/machinery/airalarm{
- dir = 1;
- icon_state = "alarm0";
- pixel_y = -22
- },
-/turf/open/floor/plasteel/brown,
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
-"bgw" = (
-/obj/machinery/light,
-/turf/open/floor/plasteel/brown,
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
-"bgx" = (
-/turf/open/floor/plasteel/brown,
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
-"bgy" = (
-/obj/structure/table,
-/obj/item/pickaxe,
-/obj/item/shovel,
-/turf/open/floor/plasteel/brown,
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
-"bgz" = (
-/obj/structure/table,
-/obj/item/storage/bag/ore,
-/obj/item/storage/bag/ore,
-/obj/item/storage/bag/ore,
-/turf/open/floor/plasteel/brown,
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
-"bgA" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/table,
-/obj/item/device/gps/mining,
-/obj/item/device/gps/mining,
-/turf/open/floor/plasteel/brown{
- tag = "icon-brown (SOUTHEAST)";
- icon_state = "brown";
- dir = 6
- },
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
-"bgB" = (
-/turf/closed/wall,
-/area/quartermaster/storage)
-"bgC" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating,
-/area/quartermaster/storage)
-"bgD" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/closed/wall,
-/area/quartermaster/storage)
-"bgE" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
-/obj/effect/landmark{
- name = "blobstart"
- },
-/turf/open/floor/plating{
- icon_state = "floorgrime"
- },
-/area/maintenance/port)
-"bgF" = (
-/obj/machinery/atmospherics/components/binary/valve{
- dir = 4
- },
-/turf/open/floor/plating{
- icon_state = "floorgrime"
- },
-/area/maintenance/port)
-"bgG" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/door/airlock/glass_engineering{
- name = "Security Atmos Closet";
- req_access_txt = "32"
- },
-/turf/open/floor/plating{
- dir = 1;
- icon_state = "delivery"
- },
-/area/maintenance/port)
-"bgH" = (
-/obj/structure/cable{
- tag = "icon-1-2";
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 10
- },
-/turf/open/floor/plating,
-/area/maintenance/port)
-"bgI" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/iv_drip,
-/turf/open/floor/plasteel/white,
-/area/medical/patients_rooms)
-"bgJ" = (
-/obj/structure/cable{
- tag = "icon-1-2";
- icon_state = "1-2"
- },
-/obj/machinery/firealarm{
- dir = 8;
- pixel_x = -24
- },
-/turf/open/floor/plasteel/white,
-/area/medical/patients_rooms)
-"bgK" = (
-/obj/structure/table,
-/obj/machinery/microwave,
-/obj/item/storage/box/donkpockets,
-/obj/item/device/radio/intercom{
- dir = 8;
- pixel_x = -28
- },
-/turf/open/floor/plasteel/barber,
-/area/medical/medbay3)
-"bgL" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/barber,
-/area/medical/medbay3)
-"bgM" = (
-/obj/machinery/photocopier,
-/turf/open/floor/plasteel/barber,
-/area/medical/medbay3)
-"bgN" = (
-/turf/closed/wall,
-/area/medical/sleeper{
- name = "Sleepers"
- })
-"bgO" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/sleeper,
-/obj/machinery/firealarm{
- dir = 8;
- pixel_x = -24
- },
-/turf/open/floor/plasteel/whiteblue/side{
- tag = "icon-whiteblue (NORTHWEST)";
- icon_state = "whiteblue";
- dir = 9
- },
-/area/medical/sleeper{
- name = "Sleepers"
- })
-"bgP" = (
-/obj/machinery/iv_drip,
-/turf/open/floor/plasteel/whiteblue/side{
- tag = "icon-whiteblue (NORTH)";
- icon_state = "whiteblue";
- dir = 1
- },
-/area/medical/sleeper{
- name = "Sleepers"
- })
-"bgQ" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/whiteblue/side{
- tag = "icon-whiteblue (NORTH)";
- icon_state = "whiteblue";
- dir = 1
- },
-/area/medical/sleeper{
- name = "Sleepers"
- })
-"bgR" = (
-/obj/machinery/airalarm{
- dir = 8;
- icon_state = "alarm0";
- pixel_x = 24
- },
-/obj/machinery/sleeper,
-/turf/open/floor/plasteel/whiteblue/side{
- tag = "icon-whiteblue (NORTHEAST)";
- icon_state = "whiteblue";
- dir = 5
- },
-/area/medical/sleeper{
- name = "Sleepers"
- })
-"bgS" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/cable{
- tag = "icon-1-2";
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/whiteblue/corner{
- tag = "icon-whitebluecorner (EAST)";
- icon_state = "whitebluecorner";
- dir = 4
- },
-/area/medical/medbay{
- name = "Medbay Central"
- })
-"bgT" = (
-/obj/machinery/chem_dispenser,
-/obj/item/reagent_containers/glass/beaker/large,
-/turf/open/floor/plasteel/whiteyellow/side{
- tag = "icon-whiteyellow (NORTHWEST)";
- icon_state = "whiteyellow";
- dir = 9
- },
-/area/medical/chemistry)
-"bgU" = (
-/obj/machinery/chem_master,
-/obj/item/book/manual/wiki/chemistry,
-/turf/open/floor/plasteel/whiteyellow/side{
- tag = "icon-whiteyellow (NORTH)";
- icon_state = "whiteyellow";
- dir = 1
- },
-/area/medical/chemistry)
-"bgV" = (
-/obj/machinery/smartfridge/chemistry/preloaded{
- name = "chemical component fridge"
- },
-/obj/machinery/camera/autoname,
-/turf/open/floor/plasteel/whiteyellow/side{
- tag = "icon-whiteyellow (NORTH)";
- icon_state = "whiteyellow";
- dir = 1
- },
-/area/medical/chemistry)
-"bgW" = (
-/obj/structure/table,
-/obj/machinery/vending/wallmed{
- pixel_y = 28
- },
-/obj/item/hand_labeler,
-/obj/item/clothing/glasses/science,
-/turf/open/floor/plasteel/whiteyellow/side{
- tag = "icon-whiteyellow (NORTH)";
- icon_state = "whiteyellow";
- dir = 1
- },
-/area/medical/chemistry)
-"bgX" = (
-/obj/structure/table,
-/obj/machinery/reagentgrinder,
-/obj/item/stack/sheet/mineral/plasma{
- layer = 2.9;
- pixel_y = 4
- },
-/obj/item/stack/sheet/mineral/plasma,
-/turf/open/floor/plasteel/whiteyellow/side{
- tag = "icon-whiteyellow (NORTH)";
- icon_state = "whiteyellow";
- dir = 1
- },
-/area/medical/chemistry)
-"bgY" = (
-/obj/structure/sink{
- pixel_y = 24
- },
-/turf/open/floor/plasteel/whiteyellow/side{
- tag = "icon-whiteyellow (NORTH)";
- icon_state = "whiteyellow";
- dir = 1
- },
-/area/medical/chemistry)
-"bgZ" = (
-/obj/machinery/light{
- dir = 1
- },
-/obj/machinery/chem_master,
-/obj/item/book/manual/wiki/chemistry,
-/turf/open/floor/plasteel/whiteyellow/side{
- tag = "icon-whiteyellow (NORTH)";
- icon_state = "whiteyellow";
- dir = 1
- },
-/area/medical/chemistry)
-"bha" = (
-/obj/machinery/chem_dispenser,
-/obj/item/reagent_containers/glass/beaker/large,
-/turf/open/floor/plasteel/whiteyellow/side{
- tag = "icon-whiteyellow (NORTHEAST)";
- icon_state = "whiteyellow";
- dir = 5
- },
-/area/medical/chemistry)
-"bhb" = (
-/obj/machinery/light{
- dir = 4
- },
-/turf/open/floor/grass,
-/area/hallway/primary/port)
-"bhc" = (
-/obj/structure/window/reinforced/fulltile,
-/obj/structure/grille,
-/obj/machinery/door/firedoor/heavy,
-/turf/open/floor/plating,
-/area/hallway/primary/port)
-"bhd" = (
-/obj/structure/rack,
-/obj/item/storage/toolbox/emergency,
-/turf/open/floor/plasteel/black,
-/area/ai_monitored/security/armory{
- name = "Emergency Storage"
- })
-"bhe" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/rack,
-/obj/item/storage/toolbox/mechanical,
-/turf/open/floor/plasteel/black,
-/area/ai_monitored/security/armory{
- name = "Emergency Storage"
- })
-"bhf" = (
-/obj/structure/rack,
-/obj/item/storage/box/zipties,
-/turf/open/floor/plasteel/black,
-/area/ai_monitored/security/armory{
- name = "Emergency Storage"
- })
-"bhg" = (
-/obj/structure/rack,
-/obj/item/storage/box/silver_ids{
- pixel_x = 3;
- pixel_y = 3
- },
-/obj/item/storage/box/ids,
-/turf/open/floor/plasteel/black,
-/area/ai_monitored/security/armory{
- name = "Emergency Storage"
- })
-"bhh" = (
-/obj/structure/rack,
-/obj/item/clothing/suit/armor/bulletproof{
- pixel_x = -3;
- pixel_y = 3
- },
-/obj/item/clothing/suit/armor/bulletproof{
- pixel_y = 0
- },
-/obj/item/clothing/suit/armor/bulletproof{
- pixel_x = 3;
- pixel_y = -3
- },
-/obj/item/clothing/head/helmet/alt{
- layer = 3.00001;
- pixel_x = -3;
- pixel_y = 3
- },
-/obj/item/clothing/head/helmet/alt{
- layer = 3.00001
- },
-/obj/item/clothing/head/helmet/alt{
- layer = 3.00001;
- pixel_x = 3;
- pixel_y = -3
- },
-/turf/open/floor/plasteel/vault{
- dir = 8
- },
-/area/ai_monitored/security/armory{
- name = "Emergency Storage"
- })
-"bhi" = (
-/obj/structure/rack,
-/obj/item/storage/box/flashbangs,
-/turf/open/floor/plasteel/black,
-/area/ai_monitored/security/armory{
- name = "Emergency Storage"
- })
-"bhj" = (
-/obj/structure/rack,
-/obj/item/storage/box/flashes,
-/turf/open/floor/plasteel/black,
-/area/ai_monitored/security/armory{
- name = "Emergency Storage"
- })
-"bhk" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- req_access_txt = 1
- },
-/obj/structure/rack,
-/obj/item/storage/box/mechabeacons,
-/turf/open/floor/plasteel/black,
-/area/ai_monitored/security/armory{
- name = "Emergency Storage"
- })
-"bhl" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/rack,
-/obj/item/storage/box/teargas,
-/turf/open/floor/plasteel/black,
-/area/ai_monitored/security/armory{
- name = "Emergency Storage"
- })
-"bhm" = (
-/obj/structure/window/reinforced/fulltile,
-/obj/structure/grille,
-/obj/machinery/door/firedoor/heavy,
-/turf/open/floor/plating,
-/area/hallway/primary/starboard)
-"bhn" = (
-/obj/effect/landmark/start{
- name = "Cargo Technician"
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"bho" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"bhp" = (
-/obj/machinery/camera/autoname{
- tag = "icon-camera (NORTHWEST)";
- icon_state = "camera";
- dir = 9
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"bhq" = (
-/obj/machinery/disposal/deliveryChute{
- tag = "icon-intake (NORTH)";
- icon_state = "intake";
- dir = 1
- },
-/obj/structure/disposalpipe/trunk,
-/turf/open/floor/plasteel/black,
-/area/quartermaster/office)
-"bhr" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/closed/wall,
-/area/quartermaster/office)
-"bhs" = (
-/obj/structure/cable{
- tag = "icon-1-2";
- icon_state = "1-2"
- },
-/obj/machinery/door/airlock/mining{
- name = "Mining Office";
- req_access_txt = "48"
- },
-/turf/open/floor/plasteel/delivery,
-/area/quartermaster/office)
-"bht" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/closed/wall,
-/area/quartermaster/office)
-"bhu" = (
-/turf/closed/wall,
-/area/quartermaster/sorting{
- name = "\improper Warehouse"
- })
-"bhv" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/quartermaster/sorting{
- name = "\improper Warehouse"
- })
-"bhw" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/closed/wall,
-/area/quartermaster/sorting{
- name = "\improper Warehouse"
- })
-"bhx" = (
-/turf/open/floor/plasteel/brown{
- tag = "icon-brown (NORTHWEST)";
- icon_state = "brown";
- dir = 9
- },
-/area/quartermaster/storage)
-"bhy" = (
-/turf/open/floor/plasteel/brown{
- tag = "icon-brown (NORTH)";
- icon_state = "brown";
- dir = 1
- },
-/area/quartermaster/storage)
-"bhz" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/brown{
- tag = "icon-brown (NORTH)";
- icon_state = "brown";
- dir = 1
- },
-/area/quartermaster/storage)
-"bhA" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/brown{
- tag = "icon-brown (NORTH)";
- icon_state = "brown";
- dir = 1
- },
-/area/quartermaster/storage)
-"bhB" = (
-/obj/machinery/airalarm{
- frequency = 1439;
- locked = 0;
- pixel_y = 23
- },
-/turf/open/floor/plasteel/brown{
- tag = "icon-brown (NORTH)";
- icon_state = "brown";
- dir = 1
- },
-/area/quartermaster/storage)
-"bhC" = (
-/obj/item/device/radio/intercom{
- name = "Station Intercom";
- pixel_x = 0;
- pixel_y = 24
- },
-/turf/open/floor/plasteel/brown{
- tag = "icon-brown (NORTH)";
- icon_state = "brown";
- dir = 1
- },
-/area/quartermaster/storage)
-"bhD" = (
-/obj/machinery/light{
- dir = 1
- },
-/turf/open/floor/plasteel/brown{
- tag = "icon-brown (NORTH)";
- icon_state = "brown";
- dir = 1
- },
-/area/quartermaster/storage)
-"bhE" = (
-/turf/open/floor/plasteel/brown{
- tag = "icon-brown (NORTHEAST)";
- icon_state = "brown";
- dir = 5
- },
-/area/quartermaster/storage)
-"bhF" = (
-/obj/structure/cable{
- tag = "icon-1-2";
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating,
-/area/maintenance/port)
-"bhG" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plasteel/white,
-/area/medical/patients_rooms)
-"bhH" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/medical{
- name = "Patient Room 2";
- req_access_txt = "5"
- },
-/turf/open/floor/plasteel/white,
-/area/medical/patients_rooms)
-"bhI" = (
-/obj/structure/sign/examroom,
-/turf/closed/wall,
-/area/medical/medbay3)
-"bhJ" = (
-/obj/machinery/newscaster,
-/turf/closed/wall,
-/area/medical/medbay3)
-"bhK" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/medical{
- name = "Medbay Break Room";
- req_access_txt = "5"
- },
-/turf/open/floor/plasteel/barber,
-/area/medical/medbay3)
-"bhL" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating,
-/area/medical/medbay3)
-"bhM" = (
-/obj/machinery/power/apc{
- dir = 8;
- name = "Sleeper Room APC";
- pixel_x = -24;
- pixel_y = 0
- },
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel/whiteblue/side{
- tag = "icon-whiteblue (WEST)";
- icon_state = "whiteblue";
- dir = 8
- },
-/area/medical/sleeper{
- name = "Sleepers"
- })
-"bhN" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 8;
- name = "regular air scrubber";
- on = 1;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel/white,
-/area/medical/sleeper{
- name = "Sleepers"
- })
-"bhO" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 8;
- initialize_directions = 11
- },
-/turf/open/floor/plasteel/white,
-/area/medical/sleeper{
- name = "Sleepers"
- })
-"bhP" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 8;
- name = "regular air vent";
- on = 1
- },
-/turf/open/floor/plasteel/white,
-/area/medical/sleeper{
- name = "Sleepers"
- })
-"bhQ" = (
-/turf/open/floor/plasteel/whiteblue/side{
- tag = "icon-whiteblue (EAST)";
- icon_state = "whiteblue";
- dir = 4
- },
-/area/medical/sleeper{
- name = "Sleepers"
- })
-"bhR" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/sign/examroom,
-/turf/closed/wall,
-/area/medical/sleeper{
- name = "Sleepers"
- })
-"bhS" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/noticeboard{
- dir = 8;
- pixel_x = 27;
- pixel_y = 0
- },
-/obj/structure/cable{
- tag = "icon-1-2";
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/whiteyellow/corner,
-/area/medical/medbay{
- name = "Medbay Central"
- })
-"bhT" = (
-/obj/structure/table,
-/obj/item/reagent_containers/dropper,
-/obj/item/reagent_containers/dropper,
-/obj/item/storage/pill_bottle/epinephrine,
-/obj/item/storage/pill_bottle/charcoal,
-/obj/item/reagent_containers/glass/beaker/large,
-/obj/item/reagent_containers/glass/beaker/large,
-/obj/machinery/firealarm{
- dir = 8;
- pixel_x = -24
- },
-/turf/open/floor/plasteel/white,
-/area/medical/chemistry)
-"bhU" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 6
- },
-/obj/structure/chair/office/dark{
- dir = 1
- },
-/obj/effect/landmark/start{
- name = "Chemist"
- },
-/turf/open/floor/plasteel/white,
-/area/medical/chemistry)
-"bhV" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 8;
- name = "regular air scrubber";
- on = 1;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel/white,
-/area/medical/chemistry)
-"bhW" = (
-/obj/machinery/chem_heater,
-/turf/open/floor/plasteel/white,
-/area/medical/chemistry)
-"bhX" = (
-/turf/open/floor/plasteel/white,
-/area/medical/chemistry)
-"bhY" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 4;
- name = "regular air vent";
- on = 1
- },
-/turf/open/floor/plasteel/white,
-/area/medical/chemistry)
-"bhZ" = (
-/obj/structure/chair/office/dark{
- dir = 4
- },
-/obj/effect/landmark/start{
- name = "Chemist"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/whiteyellow/side{
- tag = "icon-whiteyellow (EAST)";
- icon_state = "whiteyellow";
- dir = 4
- },
-/area/medical/chemistry)
-"bia" = (
-/obj/structure/table/reinforced,
-/obj/machinery/door/window/eastright{
- base_state = "left";
- dir = 8;
- icon_state = "left";
- name = "Chemistry Desk";
- req_access_txt = "33"
- },
-/obj/machinery/door/firedoor/border_only{
- tag = "icon-door_open (EAST)";
- icon_state = "door_open";
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/orange,
-/area/medical/chemistry)
-"bib" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/blue/side{
- tag = "icon-blue (WEST)";
- icon_state = "blue";
- dir = 8
- },
-/area/hallway/primary/port)
-"bic" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel,
-/area/hallway/primary/port)
-"bid" = (
-/obj/structure/window/reinforced/fulltile,
-/obj/structure/grille,
-/obj/machinery/door/firedoor/heavy,
-/turf/open/floor/plating,
-/area/security/checkpoint)
-"bie" = (
-/obj/machinery/light/small{
- dir = 1
- },
-/obj/machinery/computer/security,
-/turf/open/floor/plasteel{
- icon_state = "redfull"
- },
-/area/security/checkpoint)
-"bif" = (
-/obj/structure/table,
-/obj/item/paper_bin,
-/obj/item/pen/red,
-/obj/item/device/radio/intercom{
- name = "Station Intercom";
- pixel_x = 0;
- pixel_y = 24
- },
-/turf/open/floor/plasteel{
- icon_state = "redfull"
- },
-/area/security/checkpoint)
-"big" = (
-/obj/machinery/airalarm{
- frequency = 1439;
- locked = 0;
- pixel_y = 23
- },
-/turf/open/floor/plasteel{
- icon_state = "redfull"
- },
-/area/security/checkpoint)
-"bih" = (
-/obj/structure/table,
-/obj/machinery/recharger,
-/obj/machinery/light_switch{
- pixel_y = 24
- },
-/obj/machinery/camera/autoname{
- tag = "icon-camera (SOUTHEAST)";
- icon_state = "camera";
- dir = 6
- },
-/turf/open/floor/plasteel{
- icon_state = "redfull"
- },
-/area/security/checkpoint)
-"bii" = (
-/obj/machinery/light/small{
- dir = 1
- },
-/obj/structure/filingcabinet/security,
-/turf/open/floor/plasteel{
- icon_state = "redfull"
- },
-/area/security/checkpoint)
-"bij" = (
-/turf/closed/wall/r_wall,
-/area/bridge)
-"bik" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/obj/machinery/door/firedoor/heavy,
-/obj/machinery/door/poddoor/preopen{
- id = "bridge blast";
- layer = 2.9;
- name = "bridge blast door"
- },
-/obj/structure/sign/electricshock{
- pixel_x = -32
- },
-/turf/open/floor/plating,
-/area/bridge)
-"bil" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/door/firedoor/heavy,
-/obj/machinery/door/poddoor/preopen{
- id = "bridge blast";
- layer = 2.9;
- name = "bridge blast door"
- },
-/turf/open/floor/plating,
-/area/bridge)
-"bim" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/machinery/door/firedoor/heavy,
-/obj/machinery/door/poddoor/preopen{
- id = "bridge blast";
- layer = 2.9;
- name = "bridge blast door"
- },
-/turf/open/floor/plating,
-/area/bridge)
-"bin" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/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{
- req_access_txt = 1
- },
-/obj/machinery/door/firedoor/heavy,
-/obj/machinery/door/poddoor/preopen{
- id = "bridge blast";
- layer = 2.9;
- name = "bridge blast door"
- },
-/turf/open/floor/plating,
-/area/bridge)
-"bio" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
- },
-/obj/structure/cable,
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/machinery/door/firedoor/heavy,
-/obj/machinery/door/poddoor/preopen{
- id = "bridge blast";
- layer = 2.9;
- name = "bridge blast door"
- },
-/obj/structure/sign/electricshock{
- pixel_x = 32
- },
-/turf/open/floor/plating,
-/area/bridge)
-"bip" = (
-/obj/structure/table,
-/obj/machinery/recharger,
-/obj/machinery/light_switch{
- pixel_y = 24
- },
-/turf/open/floor/plasteel{
- icon_state = "redfull"
- },
-/area/security/checkpoint)
-"biq" = (
-/obj/structure/table,
-/obj/item/paper_bin,
-/obj/item/pen/red,
-/obj/machinery/camera/autoname{
- tag = "icon-camera (SOUTHEAST)";
- icon_state = "camera";
- dir = 6
- },
-/obj/item/device/radio/intercom{
- name = "Station Intercom";
- pixel_x = 0;
- pixel_y = 24
- },
-/turf/open/floor/plasteel{
- icon_state = "redfull"
- },
-/area/security/checkpoint)
-"bir" = (
-/obj/machinery/airalarm{
- dir = 4;
- locked = 0;
- pixel_x = -23;
- pixel_y = 0
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"bis" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- tag = "icon-vent_map (NORTH)";
- name = "regular air vent";
- icon_state = "vent_map";
- dir = 1;
- on = 1
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"bit" = (
-/obj/machinery/firealarm{
- dir = 4;
- pixel_x = 24
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"biu" = (
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/turf/closed/wall,
-/area/quartermaster/office)
-"biv" = (
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/turf/closed/wall,
-/area/quartermaster/office)
-"biw" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/brown{
- tag = "icon-brown (NORTHWEST)";
- icon_state = "brown";
- dir = 9
- },
-/area/quartermaster/office)
-"bix" = (
-/obj/structure/cable{
- tag = "icon-1-2";
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/brown{
- tag = "icon-brown (NORTH)";
- icon_state = "brown";
- dir = 1
- },
-/area/quartermaster/office)
-"biy" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/brown{
- tag = "icon-brown (NORTH)";
- icon_state = "brown";
- dir = 1
- },
-/area/quartermaster/office)
-"biz" = (
-/turf/open/floor/plasteel/brown{
- tag = "icon-brown (NORTHEAST)";
- icon_state = "brown";
- dir = 5
- },
-/area/quartermaster/office)
-"biA" = (
-/obj/machinery/airalarm{
- frequency = 1439;
- locked = 0;
- pixel_y = 23
- },
-/turf/open/floor/plasteel/brown{
- tag = "icon-brown (NORTHWEST)";
- icon_state = "brown";
- dir = 9
- },
-/area/quartermaster/sorting{
- name = "\improper Warehouse"
- })
-"biB" = (
-/obj/machinery/navbeacon{
- codes_txt = "delivery;dir=8";
- dir = 8;
- 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/sorting{
- name = "\improper Warehouse"
- })
-"biC" = (
-/obj/machinery/navbeacon{
- codes_txt = "delivery;dir=8";
- dir = 8;
- freq = 1400;
- location = "QM #2"
- },
-/obj/effect/turf_decal/bot,
-/mob/living/simple_animal/bot/mulebot{
- home_destination = "QM #2";
- suffix = "#2"
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/sorting{
- name = "\improper Warehouse"
- })
-"biD" = (
-/obj/machinery/navbeacon{
- codes_txt = "delivery;dir=8";
- dir = 8;
- freq = 1400;
- location = "QM #3"
- },
-/obj/effect/turf_decal/bot,
-/turf/open/floor/plasteel,
-/area/quartermaster/sorting{
- name = "\improper Warehouse"
- })
-"biE" = (
-/obj/machinery/navbeacon{
- codes_txt = "delivery;dir=8";
- dir = 8;
- freq = 1400;
- location = "QM #4"
- },
-/obj/effect/turf_decal/bot,
-/turf/open/floor/plasteel,
-/area/quartermaster/sorting{
- name = "\improper Warehouse"
- })
-"biF" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/brown{
- tag = "icon-brown (NORTHEAST)";
- icon_state = "brown";
- dir = 5
- },
-/area/quartermaster/sorting{
- name = "\improper Warehouse"
- })
-"biG" = (
-/obj/machinery/light{
- icon_state = "tube1";
- dir = 8
- },
-/turf/open/floor/plasteel/brown{
- tag = "icon-brown (WEST)";
- icon_state = "brown";
- dir = 8
- },
-/area/quartermaster/storage)
-"biH" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 2;
- name = "regular air scrubber";
- on = 1
- },
-/turf/open/floor/plasteel{
- icon_state = "bot"
- },
-/area/quartermaster/storage)
-"biI" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 8;
- initialize_directions = 11
- },
-/obj/structure/closet/crate{
- icon_state = "crateopen";
- opened = 1
- },
-/turf/open/floor/plasteel{
- icon_state = "bot"
- },
-/area/quartermaster/storage)
-"biJ" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel{
- icon_state = "bot"
- },
-/area/quartermaster/storage)
-"biK" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/storage)
-"biL" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel{
- icon_state = "bot"
- },
-/area/quartermaster/storage)
-"biM" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 8;
- name = "regular air vent";
- on = 1
- },
-/turf/open/floor/plasteel{
- icon_state = "bot"
- },
-/area/quartermaster/storage)
-"biN" = (
-/obj/machinery/camera/autoname{
- tag = "icon-camera (NORTHWEST)";
- icon_state = "camera";
- dir = 9
- },
-/turf/open/floor/plasteel/brown{
- tag = "icon-brown (EAST)";
- icon_state = "brown";
- dir = 4
- },
-/area/quartermaster/storage)
-"biO" = (
-/obj/structure/cable{
- tag = "icon-1-2";
- icon_state = "1-2"
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating,
-/area/maintenance/port)
-"biP" = (
-/obj/machinery/camera/autoname{
- tag = "icon-camera (SOUTHEAST)";
- icon_state = "camera";
- dir = 6
- },
-/turf/open/floor/plasteel/whiteblue,
-/area/medical/medbay3)
-"biQ" = (
-/turf/open/floor/plasteel/whiteblue,
-/area/medical/medbay3)
-"biR" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/whiteblue,
-/area/medical/medbay3)
-"biS" = (
-/obj/machinery/door/firedoor/border_only{
- tag = "icon-door_open (EAST)";
- icon_state = "door_open";
- dir = 4
- },
-/turf/open/floor/plasteel/whiteblue,
-/area/medical/sleeper{
- name = "Sleepers"
- })
-"biT" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/turf/open/floor/plasteel/whiteblue/side{
- tag = "icon-whiteblue (WEST)";
- icon_state = "whiteblue";
- dir = 8
- },
-/area/medical/sleeper{
- name = "Sleepers"
- })
-"biU" = (
-/obj/effect/landmark/start{
- name = "Medical Doctor"
- },
-/turf/open/floor/plasteel/white,
-/area/medical/sleeper{
- name = "Sleepers"
- })
-"biV" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/white,
-/area/medical/sleeper{
- name = "Sleepers"
- })
-"biW" = (
-/turf/open/floor/plasteel/white,
-/area/medical/sleeper{
- name = "Sleepers"
- })
-"biX" = (
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/obj/machinery/door/firedoor/border_only{
- tag = "icon-door_open (EAST)";
- icon_state = "door_open";
- dir = 4
- },
-/turf/open/floor/plasteel/whiteblue,
-/area/medical/sleeper{
- name = "Sleepers"
- })
-"biY" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/obj/structure/cable{
- tag = "icon-1-2";
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/whiteyellow/side{
- tag = "icon-whiteyellow (EAST)";
- icon_state = "whiteyellow";
- dir = 4
- },
-/area/medical/medbay{
- name = "Medbay Central"
- })
-"biZ" = (
-/obj/machinery/door/firedoor/heavy,
-/obj/machinery/door/airlock/glass_medical{
- id_tag = null;
- name = "Chemistry Lab";
- req_access_txt = "5; 33"
- },
-/turf/open/floor/plasteel/orange,
-/area/medical/chemistry)
-"bja" = (
-/turf/open/floor/plasteel/whiteyellow/side{
- tag = "icon-whiteyellow (WEST)";
- icon_state = "whiteyellow";
- dir = 8
- },
-/area/medical/chemistry)
-"bjb" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/white,
-/area/medical/chemistry)
-"bjc" = (
-/obj/structure/closet/secure_closet/chemical,
-/turf/open/floor/plasteel/white,
-/area/medical/chemistry)
-"bjd" = (
-/obj/machinery/smartfridge/chemistry/preloaded{
- name = "chemical component fridge"
- },
-/turf/open/floor/plasteel/whiteyellow/side{
- tag = "icon-whiteyellow (EAST)";
- icon_state = "whiteyellow";
- dir = 4
- },
-/area/medical/chemistry)
-"bje" = (
-/turf/closed/wall/r_wall,
-/area/security/checkpoint)
-"bjf" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- name = "regular air vent";
- on = 1
- },
-/obj/machinery/computer/secure_data,
-/turf/open/floor/plasteel{
- icon_state = "redfull"
- },
-/area/security/checkpoint)
-"bjg" = (
-/obj/structure/chair/office/dark{
- dir = 8
- },
-/obj/machinery/firealarm{
- dir = 1;
- pixel_x = 0;
- pixel_y = -26
- },
-/turf/open/floor/plasteel{
- icon_state = "redfull"
- },
-/area/security/checkpoint)
-"bjh" = (
-/turf/open/floor/plasteel{
- icon_state = "redfull"
- },
-/area/security/checkpoint)
-"bji" = (
-/obj/machinery/button/door{
- id = "bridge door west";
- name = "Port Bridge Door Control";
- pixel_x = 0;
- pixel_y = -24;
- req_access_txt = "19,1"
- },
-/turf/open/floor/plasteel{
- icon_state = "redfull"
- },
-/area/security/checkpoint)
-"bjj" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 2;
- name = "regular air scrubber";
- on = 1
- },
-/obj/structure/reagent_dispensers/peppertank{
- pixel_y = -28
- },
-/turf/open/floor/plasteel{
- icon_state = "redfull"
- },
-/area/security/checkpoint)
-"bjk" = (
-/obj/machinery/computer/med_data,
-/turf/open/floor/plasteel/darkblue,
-/area/bridge)
-"bjl" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/computer/card,
-/turf/open/floor/plasteel/darkblue,
-/area/bridge)
-"bjm" = (
-/obj/machinery/computer/crew,
-/turf/open/floor/plasteel/darkblue,
-/area/bridge)
-"bjn" = (
-/obj/machinery/computer/station_alert,
-/turf/open/floor/plasteel/darkbrown,
-/area/bridge)
-"bjo" = (
-/obj/machinery/computer/monitor{
- name = "bridge power monitoring console"
- },
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
- },
-/turf/open/floor/plasteel/darkbrown,
-/area/bridge)
-"bjp" = (
-/obj/machinery/computer/atmos_alert,
-/turf/open/floor/plasteel/darkbrown,
-/area/bridge)
-"bjq" = (
-/obj/machinery/computer/security,
-/turf/open/floor/plasteel/darkred,
-/area/bridge)
-"bjr" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- req_access_txt = 1
- },
-/obj/machinery/computer/secure_data,
-/turf/open/floor/plasteel/darkred,
-/area/bridge)
-"bjs" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/computer/prisoner,
-/turf/open/floor/plasteel/darkred,
-/area/bridge)
-"bjt" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- name = "regular air vent";
- on = 1
- },
-/obj/structure/reagent_dispensers/peppertank{
- pixel_y = -28
- },
-/turf/open/floor/plasteel{
- icon_state = "redfull"
- },
-/area/security/checkpoint)
-"bju" = (
-/obj/machinery/button/door{
- id = "bridge door east";
- name = "Starbord Bridge Door Control";
- pixel_x = 0;
- pixel_y = -24;
- req_access_txt = "19,1"
- },
-/turf/open/floor/plasteel{
- icon_state = "redfull"
- },
-/area/security/checkpoint)
-"bjv" = (
-/obj/structure/chair/office/dark{
- dir = 4
- },
-/obj/machinery/firealarm{
- dir = 1;
- pixel_x = 0;
- pixel_y = -26
- },
-/turf/open/floor/plasteel{
- icon_state = "redfull"
- },
-/area/security/checkpoint)
-"bjw" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 2;
- name = "regular air scrubber";
- on = 1
- },
-/obj/machinery/computer/secure_data,
-/turf/open/floor/plasteel{
- icon_state = "redfull"
- },
-/area/security/checkpoint)
-"bjx" = (
-/obj/structure/table,
-/obj/item/hand_labeler,
-/obj/item/hand_labeler_refill,
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"bjy" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 5
- },
-/obj/machinery/light{
- icon_state = "tube1";
- dir = 8
- },
-/turf/open/floor/plasteel/brown{
- tag = "icon-brown (WEST)";
- icon_state = "brown";
- dir = 8
- },
-/area/quartermaster/office)
-"bjz" = (
-/obj/structure/cable{
- tag = "icon-1-4";
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"bjA" = (
-/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/supply/hidden,
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 8;
- name = "regular air scrubber";
- on = 1;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"bjB" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/brown{
- tag = "icon-brown (EAST)";
- icon_state = "brown";
- dir = 4
- },
-/area/quartermaster/office)
-"bjC" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/door/poddoor/shutters{
- id = "qm_warehouse";
- name = "warehouse shutters"
- },
-/obj/machinery/button/door{
- id = "qm_warehouse";
- name = "Warehouse Door Control";
- pixel_x = -1;
- pixel_y = 24;
- req_access_txt = "31"
- },
-/obj/machinery/door/firedoor,
-/turf/open/floor/plasteel/delivery,
-/area/quartermaster/sorting{
- name = "\improper Warehouse"
- })
-"bjD" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/brown{
- tag = "icon-brown (WEST)";
- icon_state = "brown";
- dir = 8
- },
-/area/quartermaster/sorting{
- name = "\improper Warehouse"
- })
-"bjE" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/closet/crate{
- name = "Silver Crate"
- },
-/turf/open/floor/plasteel/delivery,
-/area/quartermaster/sorting{
- name = "\improper Warehouse"
- })
-"bjF" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/delivery,
-/area/quartermaster/sorting{
- name = "\improper Warehouse"
- })
-"bjG" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 4;
- name = "regular air scrubber";
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/obj/structure/closet/crate{
- icon_state = "crateopen";
- opened = 1
- },
-/turf/open/floor/plasteel/delivery,
-/area/quartermaster/sorting{
- name = "\improper Warehouse"
- })
-"bjH" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/delivery,
-/area/quartermaster/sorting{
- name = "\improper Warehouse"
- })
-"bjI" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/cable{
- tag = "icon-2-8";
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 4;
- initialize_directions = 11
- },
-/turf/open/floor/plasteel/brown{
- tag = "icon-brown (EAST)";
- icon_state = "brown";
- dir = 4
- },
-/area/quartermaster/sorting{
- name = "\improper Warehouse"
- })
-"bjJ" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/brown{
- tag = "icon-brown (WEST)";
- icon_state = "brown";
- dir = 8
- },
-/area/quartermaster/storage)
-"bjK" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 5
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/storage)
-"bjL" = (
-/obj/structure/cable{
- tag = "icon-2-8";
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/storage)
-"bjM" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 4;
- initialize_directions = 11
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/storage)
-"bjN" = (
-/turf/open/floor/plasteel,
-/area/quartermaster/storage)
-"bjO" = (
-/obj/machinery/firealarm{
- dir = 4;
- pixel_x = 24
- },
-/turf/open/floor/plasteel/brown{
- tag = "icon-brown (EAST)";
- icon_state = "brown";
- dir = 4
- },
-/area/quartermaster/storage)
-"bjP" = (
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/rack,
-/obj/item/storage/box/lights/mixed,
-/turf/open/floor/plating,
-/area/maintenance/starboard)
-"bjQ" = (
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/supply)
-"bjR" = (
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/cable{
- tag = "icon-1-2";
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating,
-/area/maintenance/port)
-"bjS" = (
-/obj/structure/cable{
- tag = "icon-1-2";
- icon_state = "1-2"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4";
- tag = ""
- },
-/turf/open/floor/plasteel/white,
-/area/medical/patients_rooms)
-"bjT" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0;
- tag = ""
- },
-/turf/open/floor/plasteel/white,
-/area/medical/patients_rooms)
-"bjU" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0;
- tag = ""
- },
-/obj/machinery/firealarm{
- dir = 1;
- pixel_x = 0;
- pixel_y = -26
- },
-/turf/open/floor/plasteel/whiteblue,
-/area/medical/medbay3)
-"bjV" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0;
- tag = ""
- },
-/obj/machinery/light,
-/turf/open/floor/plasteel/whiteblue,
-/area/medical/medbay3)
-"bjW" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0;
- tag = ""
- },
-/obj/structure/cable{
- tag = "icon-2-8";
- icon_state = "2-8"
- },
-/turf/open/floor/plasteel/whiteblue,
-/area/medical/medbay3)
-"bjX" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0;
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/whiteblue,
-/area/medical/medbay3)
-"bjY" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0;
- tag = ""
- },
-/turf/open/floor/plasteel/whiteblue,
-/area/medical/medbay3)
-"bjZ" = (
-/obj/machinery/door/firedoor/border_only{
- tag = "icon-door_open (EAST)";
- icon_state = "door_open";
- dir = 4
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/whiteblue,
-/area/medical/sleeper{
- name = "Sleepers"
- })
-"bka" = (
-/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/whiteblue/side{
- tag = "icon-whiteblue (SOUTHWEST)";
- icon_state = "whiteblue";
- dir = 10
- },
-/area/medical/sleeper{
- name = "Sleepers"
- })
-"bkb" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/whiteblue/side,
-/area/medical/sleeper{
- name = "Sleepers"
- })
-"bkc" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/whiteblue/side,
-/area/medical/sleeper{
- name = "Sleepers"
- })
-"bkd" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/whiteblue/side{
- tag = "icon-whiteblue (SOUTHEAST)";
- icon_state = "whiteblue";
- dir = 6
- },
-/area/medical/sleeper{
- name = "Sleepers"
- })
-"bke" = (
-/obj/item/device/radio/intercom{
- broadcasting = 0;
- freerange = 0;
- frequency = 1485;
- listening = 1;
- name = "Station Intercom (Medbay)";
- pixel_x = 0;
- pixel_y = -30
- },
-/obj/machinery/door/firedoor/border_only{
- tag = "icon-door_open (EAST)";
- icon_state = "door_open";
- dir = 4
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/whiteblue,
-/area/medical/sleeper{
- name = "Sleepers"
- })
-"bkf" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/whiteblue/side{
- tag = "icon-whiteblue (WEST)";
- icon_state = "whiteblue";
- dir = 8
- },
-/area/medical/medbay{
- name = "Medbay Central"
- })
-"bkg" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay{
- name = "Medbay Central"
- })
-"bkh" = (
-/obj/machinery/power/apc{
- dir = 4;
- name = "Chemistry APC";
- pixel_x = 24;
- pixel_y = 0
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- tag = "icon-1-8";
- icon_state = "1-8"
- },
-/turf/open/floor/plasteel/whiteyellow/corner{
- tag = "icon-whiteyellowcorner (EAST)";
- icon_state = "whiteyellowcorner";
- dir = 4
- },
-/area/medical/chemistry)
-"bki" = (
-/obj/machinery/light{
- icon_state = "tube1";
- dir = 8
- },
-/obj/structure/closet/wardrobe/chemistry_white,
-/obj/item/storage/backpack/chemistry,
-/turf/open/floor/plasteel/whiteyellow/side{
- tag = "icon-whiteyellow (SOUTHWEST)";
- icon_state = "whiteyellow";
- dir = 10
- },
-/area/medical/chemistry)
-"bkj" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/table/glass,
-/obj/item/storage/box/beakers{
- pixel_x = 6;
- pixel_y = 6
- },
-/obj/item/storage/box/pillbottles{
- pixel_x = 3;
- pixel_y = 3
- },
-/obj/item/storage/box/syringes,
-/turf/open/floor/plasteel/whiteyellow/side,
-/area/medical/chemistry)
-"bkk" = (
-/obj/structure/table/glass,
-/obj/item/stack/cable_coil/orange,
-/obj/item/stack/cable_coil/orange,
-/obj/item/clothing/glasses/science,
-/obj/machinery/reagentgrinder,
-/turf/open/floor/plasteel/whiteyellow/side,
-/area/medical/chemistry)
-"bkl" = (
-/obj/structure/table/glass,
-/obj/item/grenade/chem_grenade,
-/obj/item/grenade/chem_grenade,
-/obj/item/grenade/chem_grenade,
-/obj/item/grenade/chem_grenade,
-/obj/item/screwdriver,
-/turf/open/floor/plasteel/whiteyellow/side,
-/area/medical/chemistry)
-"bkm" = (
-/turf/open/floor/plasteel/whiteyellow/side,
-/area/medical/chemistry)
-"bkn" = (
-/obj/structure/disposalpipe/trunk,
-/obj/machinery/disposal/bin,
-/obj/machinery/requests_console{
- department = "Chemistry";
- departmentType = 2;
- pixel_x = 0;
- pixel_y = -30
- },
-/turf/open/floor/plasteel/whiteyellow/side{
- tag = "icon-whiteyellow (SOUTHEAST)";
- icon_state = "whiteyellow";
- dir = 6
- },
-/area/medical/chemistry)
-"bko" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 8;
- initialize_directions = 11
- },
-/turf/open/floor/plasteel/blue/side{
- tag = "icon-blue (WEST)";
- icon_state = "blue";
- dir = 8
- },
-/area/hallway/primary/port)
-"bkp" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 8;
- name = "regular air scrubber";
- on = 1;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/port)
-"bkq" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/newscaster/security_unit,
-/turf/closed/wall/r_wall,
-/area/security/checkpoint)
-"bkr" = (
-/obj/machinery/door/airlock/security{
- name = "Security Checkpoint";
- req_access = null;
- req_access_txt = "1"
- },
-/turf/open/floor/plasteel{
- icon_state = "redfull"
- },
-/area/security/checkpoint)
-"bks" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/closed/wall/r_wall,
-/area/security/checkpoint)
-"bkt" = (
-/obj/machinery/light{
- dir = 8
- },
-/obj/structure/table,
-/obj/item/storage/firstaid/regular,
-/obj/machinery/status_display{
- dir = 8;
- pixel_x = -32
- },
-/turf/open/floor/plasteel/darkblue/side{
- tag = "icon-darkblue (NORTH)";
- icon_state = "darkblue";
- dir = 1
- },
-/area/bridge)
-"bku" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/chair/office/dark{
- dir = 1
- },
-/turf/open/floor/plasteel/darkblue/side{
- tag = "icon-darkblue (NORTH)";
- icon_state = "darkblue";
- dir = 1
- },
-/area/bridge)
-"bkv" = (
-/obj/structure/table,
-/obj/item/device/healthanalyzer,
-/turf/open/floor/plasteel/darkblue/side{
- tag = "icon-darkblue (NORTH)";
- icon_state = "darkblue";
- dir = 1
- },
-/area/bridge)
-"bkw" = (
-/obj/structure/table,
-/obj/machinery/cell_charger,
-/obj/item/stock_parts/cell/high,
-/turf/open/floor/plasteel/darkbrown/side{
- tag = "icon-darkbrown (NORTH)";
- icon_state = "darkbrown";
- dir = 1
- },
-/area/bridge)
-"bkx" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/structure/chair/office/dark{
- dir = 1
- },
-/turf/open/floor/plasteel/darkbrown/side{
- tag = "icon-darkbrown (NORTH)";
- icon_state = "darkbrown";
- dir = 1
- },
-/area/bridge)
-"bky" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0;
- tag = ""
- },
-/obj/structure/table,
-/obj/item/storage/toolbox/emergency{
- pixel_x = -3;
- pixel_y = 3
- },
-/obj/item/storage/toolbox/mechanical,
-/obj/item/device/multitool,
-/turf/open/floor/plasteel/darkbrown/side{
- tag = "icon-darkbrown (NORTH)";
- icon_state = "darkbrown";
- dir = 1
- },
-/area/bridge)
-"bkz" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0;
- tag = ""
- },
-/obj/structure/table,
-/turf/open/floor/plasteel/darkred/side{
- tag = "icon-darkred (NORTH)";
- icon_state = "darkred";
- dir = 1
- },
-/area/bridge)
-"bkA" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- req_access_txt = 1
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0;
- tag = ""
- },
-/obj/structure/chair/office/dark{
- dir = 1
- },
-/obj/machinery/button/door{
- dir = 8;
- id = "civ armory rack";
- name = "Civilian Armory Rack Shutters";
- pixel_x = -28;
- pixel_y = 0
- },
-/turf/open/floor/plasteel/darkred/side{
- tag = "icon-darkred (NORTH)";
- icon_state = "darkred";
- dir = 1
- },
-/area/bridge)
-"bkB" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/light{
- dir = 4
- },
-/obj/structure/cable{
- tag = "icon-2-8";
- icon_state = "2-8"
- },
-/obj/structure/table,
-/obj/item/storage/box/zipties,
-/obj/item/device/assembly/flash,
-/obj/machinery/status_display{
- dir = 4;
- pixel_x = 32
- },
-/turf/open/floor/plasteel/darkred/side{
- tag = "icon-darkred (NORTH)";
- icon_state = "darkred";
- dir = 1
- },
-/area/bridge)
-"bkC" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/closed/wall/r_wall,
-/area/security/checkpoint)
-"bkD" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 8
- },
-/obj/machinery/newscaster/security_unit,
-/turf/closed/wall/r_wall,
-/area/security/checkpoint)
-"bkE" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/closed/wall/r_wall,
-/area/security/checkpoint)
-"bkF" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/machinery/door/firedoor/heavy,
-/turf/open/floor/plating,
-/area/hallway/primary/starboard)
-"bkG" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/door/firedoor/heavy,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 10
- },
-/turf/open/floor/plating,
-/area/hallway/primary/starboard)
-"bkH" = (
-/obj/structure/table,
-/obj/machinery/computer/stockexchange,
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"bkI" = (
-/obj/structure/chair/office/dark{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"bkJ" = (
-/obj/machinery/door/airlock/glass_mining{
- name = "Mailroom";
- req_access_txt = "0";
- req_one_access_txt = "48;50"
- },
-/turf/open/floor/plasteel/delivery,
-/area/quartermaster/office)
-"bkK" = (
-/turf/open/floor/plasteel/brown{
- tag = "icon-brown (WEST)";
- icon_state = "brown";
- dir = 8
- },
-/area/quartermaster/office)
-"bkL" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 4;
- name = "regular air vent";
- on = 1
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"bkM" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"bkN" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/camera/autoname{
- tag = "icon-camera (NORTHWEST)";
- icon_state = "camera";
- dir = 9
- },
-/turf/open/floor/plasteel/brown{
- tag = "icon-brown (EAST)";
- icon_state = "brown";
- dir = 4
- },
-/area/quartermaster/office)
-"bkO" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/closed/wall,
-/area/quartermaster/sorting{
- name = "\improper Warehouse"
- })
-"bkP" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/light{
- icon_state = "tube1";
- dir = 8
- },
-/turf/open/floor/plasteel/brown{
- tag = "icon-brown (WEST)";
- icon_state = "brown";
- dir = 8
- },
-/area/quartermaster/sorting{
- name = "\improper Warehouse"
- })
-"bkQ" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/sorting{
- name = "\improper Warehouse"
- })
-"bkR" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 8;
- name = "regular air vent";
- on = 1
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/sorting{
- name = "\improper Warehouse"
- })
-"bkS" = (
-/turf/open/floor/plasteel,
-/area/quartermaster/sorting{
- name = "\improper Warehouse"
- })
-"bkT" = (
-/obj/machinery/power/apc{
- dir = 4;
- name = "Warehouse APC";
- pixel_x = 27;
- pixel_y = 0
- },
-/obj/structure/cable,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/brown{
- tag = "icon-brown (EAST)";
- icon_state = "brown";
- dir = 4
- },
-/area/quartermaster/sorting{
- name = "\improper Warehouse"
- })
-"bkU" = (
-/turf/open/floor/plasteel/brown{
- tag = "icon-brown (WEST)";
- icon_state = "brown";
- dir = 8
- },
-/area/quartermaster/storage)
-"bkV" = (
-/obj/structure/closet/crate/internals,
-/turf/open/floor/plasteel{
- icon_state = "bot"
- },
-/area/quartermaster/storage)
-"bkW" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel{
- icon_state = "bot"
- },
-/area/quartermaster/storage)
-"bkX" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel{
- icon_state = "bot"
- },
-/area/quartermaster/storage)
-"bkY" = (
-/turf/open/floor/plasteel/brown{
- tag = "icon-brown (EAST)";
- icon_state = "brown";
- dir = 4
- },
-/area/quartermaster/storage)
-"bkZ" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/quartermaster/storage)
-"bla" = (
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/supply)
-"blb" = (
-/obj/machinery/light{
- dir = 1
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/supply)
-"blc" = (
-/turf/closed/wall/r_wall,
-/area/medical/medbay3)
-"bld" = (
-/obj/machinery/door/firedoor/heavy,
-/obj/structure/cable{
- tag = "icon-1-2";
- icon_state = "1-2"
- },
-/obj/machinery/door/poddoor/shutters{
- id = "medsec";
- name = "Secure Medbay Storage"
- },
-/turf/open/floor/plating{
- dir = 1;
- icon_state = "delivery"
- },
-/area/medical/medbay3)
-"ble" = (
-/obj/machinery/door/firedoor/heavy,
-/obj/machinery/door/poddoor/shutters{
- id = "medsec";
- name = "Secure Medbay Storage"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating{
- dir = 1;
- icon_state = "delivery"
- },
-/area/medical/medbay3)
-"blf" = (
-/obj/machinery/button/door{
- id = "medsec";
- name = "Secure Medbay Storage";
- req_access_txt = "5"
- },
-/turf/closed/wall/r_wall,
-/area/medical/medbay3)
-"blg" = (
-/turf/closed/wall/r_wall,
-/area/medical/medbay2{
- name = "Medbay Storage"
- })
-"blh" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/door/firedoor,
-/turf/open/floor/plating,
-/area/medical/medbay2{
- name = "Medbay Storage"
- })
-"bli" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/door/firedoor,
-/turf/open/floor/plating,
-/area/medical/medbay2{
- name = "Medbay Storage"
- })
-"blj" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/door/firedoor/heavy,
-/obj/machinery/door/airlock/glass_medical{
- id_tag = null;
- name = "Medbay Storage";
- req_access_txt = "45"
- },
-/turf/open/floor/plasteel/whiteblue,
-/area/medical/medbay2{
- name = "Medbay Storage"
- })
-"blk" = (
-/turf/closed/wall,
-/area/medical/medbay2{
- name = "Medbay Storage"
- })
-"bll" = (
-/obj/machinery/light{
- icon_state = "tube1";
- dir = 8
- },
-/turf/open/floor/plasteel/whiteblue/side{
- tag = "icon-whiteblue (WEST)";
- icon_state = "whiteblue";
- dir = 8
- },
-/area/medical/medbay{
- name = "Medbay Central"
- })
-"blm" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel/whiteblue/corner,
-/area/medical/medbay{
- name = "Medbay Central"
- })
-"bln" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/door/firedoor,
-/turf/open/floor/plating,
-/area/medical/chemistry)
-"blo" = (
-/obj/machinery/smartfridge/chemistry/preloaded,
-/turf/closed/wall,
-/area/medical/chemistry)
-"blp" = (
-/obj/structure/table/reinforced,
-/obj/machinery/door/window/southleft{
- dir = 1;
- name = "Chemistry Desk";
- req_access_txt = "33"
- },
-/obj/machinery/door/firedoor/border_only,
-/turf/open/floor/plasteel/orange,
-/area/medical/chemistry)
-"blq" = (
-/obj/structure/disposalpipe/segment,
-/turf/closed/wall,
-/area/medical/chemistry)
-"blr" = (
-/obj/machinery/door/airlock/glass_command{
- name = "Bridge Access";
- req_access_txt = "0";
- req_one_access_txt = "19; 1"
- },
-/turf/open/floor/plasteel/darkblue,
-/area/bridge)
-"bls" = (
-/obj/machinery/door/poddoor/preopen{
- id = "bridge blast";
- layer = 2.9;
- name = "bridge blast door"
- },
-/turf/open/floor/plasteel/darkblue,
-/area/bridge)
-"blt" = (
-/turf/open/floor/plasteel/darkblue,
-/area/bridge)
-"blu" = (
-/obj/structure/extinguisher_cabinet{
- pixel_y = 28
- },
-/obj/machinery/door/poddoor/preopen{
- id = "bridge blast";
- layer = 2.9;
- name = "bridge blast door"
- },
-/turf/open/floor/plasteel/darkblue,
-/area/bridge)
-"blv" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/darkblue,
-/area/bridge)
-"blw" = (
-/obj/machinery/power/apc{
- dir = 1;
- name = "Security Checkpoint APC";
- pixel_x = 0;
- pixel_y = 24
- },
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
- },
-/turf/open/floor/plasteel/darkblue,
-/area/security/checkpoint)
-"blx" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/camera/autoname{
- tag = "icon-camera (SOUTHEAST)";
- icon_state = "camera";
- dir = 6
- },
-/turf/open/floor/plasteel/darkblue,
-/area/bridge)
-"bly" = (
-/obj/structure/table,
-/obj/machinery/firealarm{
- dir = 8;
- pixel_x = -24;
- pixel_y = 0
- },
-/obj/item/storage/fancy/donut_box,
-/turf/open/floor/plasteel/black,
-/area/bridge)
-"blz" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/black,
-/area/bridge)
-"blA" = (
-/turf/open/floor/plasteel/black,
-/area/bridge)
-"blB" = (
-/obj/item/device/radio/beacon,
-/turf/open/floor/plasteel/black,
-/area/bridge)
-"blC" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- req_access_txt = 1
- },
-/turf/open/floor/plasteel/black,
-/area/bridge)
-"blD" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/table,
-/obj/machinery/firealarm{
- dir = 4;
- pixel_x = 28;
- pixel_y = 0
- },
-/obj/machinery/recharger,
-/turf/open/floor/plasteel/black,
-/area/bridge)
-"blE" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/camera/autoname{
- tag = "icon-camera (SOUTHEAST)";
- icon_state = "camera";
- dir = 6
- },
-/turf/open/floor/plasteel/darkblue,
-/area/bridge)
-"blF" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/darkblue,
-/area/bridge)
-"blG" = (
-/obj/machinery/door/airlock/glass_command{
- name = "Bridge Access";
- req_access_txt = "0";
- req_one_access_txt = "19; 1"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 5
- },
-/turf/open/floor/plasteel/darkblue,
-/area/bridge)
-"blH" = (
-/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/primary/starboard)
-"blI" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 8;
- name = "regular air scrubber";
- on = 1;
- scrub_Toxins = 0
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel,
-/area/hallway/primary/starboard)
-"blJ" = (
-/obj/structure/table,
-/obj/item/stack/wrapping_paper,
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"blK" = (
-/obj/structure/table,
-/obj/item/stack/packageWrap,
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"blL" = (
-/obj/machinery/light,
-/obj/structure/filingcabinet/chestdrawer,
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"blM" = (
-/turf/open/floor/plasteel{
- icon_state = "bot"
- },
-/area/quartermaster/office)
-"blN" = (
-/obj/machinery/light,
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"blO" = (
-/turf/open/floor/plasteel/brown{
- tag = "icon-brown (SOUTHWEST)";
- icon_state = "brown";
- dir = 10
- },
-/area/quartermaster/office)
-"blP" = (
-/obj/machinery/firealarm{
- dir = 1;
- pixel_y = -24
- },
-/turf/open/floor/plasteel/brown,
-/area/quartermaster/office)
-"blQ" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/brown,
-/area/quartermaster/office)
-"blR" = (
-/turf/open/floor/plasteel/brown{
- tag = "icon-brown (SOUTHEAST)";
- icon_state = "brown";
- dir = 6
- },
-/area/quartermaster/office)
-"blS" = (
-/obj/structure/closet/crate{
- icon_state = "crateopen";
- opened = 1
- },
-/turf/open/floor/plasteel/brown{
- tag = "icon-brown (SOUTHWEST)";
- icon_state = "brown";
- dir = 10
- },
-/area/quartermaster/sorting{
- name = "\improper Warehouse"
- })
-"blT" = (
-/obj/structure/closet/crate,
-/turf/open/floor/plasteel/brown,
-/area/quartermaster/sorting{
- name = "\improper Warehouse"
- })
-"blU" = (
-/turf/open/floor/plasteel/brown,
-/area/quartermaster/sorting{
- name = "\improper Warehouse"
- })
-"blV" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/closet/crate,
-/obj/machinery/firealarm{
- dir = 1;
- pixel_y = -24
- },
-/turf/open/floor/plasteel/brown{
- tag = "icon-brown (SOUTHEAST)";
- icon_state = "brown";
- dir = 6
- },
-/area/quartermaster/sorting{
- name = "\improper Warehouse"
- })
-"blW" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/effect/landmark/start{
- name = "Cargo Technician"
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/storage)
-"blX" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/quartermaster/storage)
-"blY" = (
-/obj/effect/landmark/start{
- name = "Cargo Technician"
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/storage)
-"blZ" = (
-/turf/open/floor/plasteel/loadingarea{
- baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface;
- dir = 8
- },
-/area/quartermaster/storage)
-"bma" = (
-/turf/open/floor/plasteel/delivery,
-/area/quartermaster/storage)
-"bmb" = (
-/obj/machinery/conveyor{
- dir = 4;
- id = "QMLoad2"
- },
-/turf/open/floor/plasteel/delivery,
-/area/quartermaster/storage)
-"bmc" = (
-/obj/machinery/conveyor{
- dir = 4;
- id = "QMLoad2"
- },
-/obj/machinery/door/poddoor{
- id = "QMLoaddoor2";
- name = "supply dock loading door"
- },
-/turf/open/floor/plating,
-/area/quartermaster/storage)
-"bmd" = (
-/obj/machinery/conveyor{
- dir = 4;
- id = "QMLoad2"
- },
-/turf/open/floor/plating,
-/area/quartermaster/storage)
-"bme" = (
-/obj/machinery/conveyor{
- dir = 4;
- id = "QMLoad2"
- },
-/obj/structure/plasticflaps,
-/turf/open/floor/plating,
-/area/quartermaster/storage)
-"bmf" = (
-/obj/machinery/conveyor{
- dir = 4;
- id = "QMLoad2"
- },
-/obj/machinery/door/poddoor{
- id = "QMLoaddoor2";
- name = "supply dock loading door"
- },
-/turf/open/floor/plating,
-/area/shuttle/supply)
-"bmg" = (
-/turf/closed/wall/r_wall,
-/area/security/transfer)
-"bmh" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
-/obj/machinery/light_switch{
- pixel_y = 24
- },
-/turf/open/floor/plasteel/white,
-/area/medical/patients_rooms)
-"bmi" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/table,
-/obj/item/reagent_containers/syringe,
-/obj/item/reagent_containers/glass/bottle/salglu_solution,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/medical/patients_rooms)
-"bmj" = (
-/obj/structure/bed,
-/obj/item/bedsheet/medical,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/effect/landmark{
- name = "revenantspawn"
- },
-/turf/open/floor/plasteel/white,
-/area/medical/patients_rooms)
-"bmk" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/closed/wall,
-/area/medical/patients_rooms)
-"bml" = (
-/obj/structure/cable{
- tag = "icon-1-2";
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/medical/patients_rooms)
-"bmm" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/machinery/light{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/medical/patients_rooms)
-"bmn" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/closed/wall/r_wall,
-/area/medical/medbay3)
-"bmo" = (
-/obj/structure/cable{
- tag = "icon-0-4";
- icon_state = "0-4"
- },
-/obj/machinery/power/apc{
- dir = 8;
- name = "Medbay Port APC";
- pixel_x = -24;
- pixel_y = 0
- },
-/obj/item/defibrillator/loaded,
-/obj/structure/table,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plating{
- icon_state = "floorgrime"
- },
-/area/medical/medbay3)
-"bmp" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/structure/cable{
- tag = "icon-1-8";
- icon_state = "1-8"
- },
-/turf/open/floor/plating{
- icon_state = "floorgrime"
- },
-/area/medical/medbay3)
-"bmq" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plating{
- icon_state = "floorgrime"
- },
-/area/medical/medbay3)
-"bmr" = (
-/obj/structure/rack,
-/obj/item/caution,
-/obj/item/caution,
-/obj/item/reagent_containers/spray/cleaner,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plating{
- icon_state = "floorgrime"
- },
-/area/medical/medbay3)
-"bms" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/closed/wall/r_wall,
-/area/medical/medbay2{
- name = "Medbay Storage"
- })
-"bmt" = (
-/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,
-/obj/structure/closet/secure_closet/medical1,
-/turf/open/floor/plasteel/whiteblue/side{
- tag = "icon-whiteblue (NORTHWEST)";
- icon_state = "whiteblue";
- dir = 9
- },
-/area/medical/medbay2{
- name = "Medbay Storage"
- })
-"bmu" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/whiteblue/side{
- tag = "icon-whiteblue (NORTH)";
- icon_state = "whiteblue";
- dir = 1
- },
-/area/medical/medbay2{
- name = "Medbay Storage"
- })
-"bmv" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/whiteblue/side{
- tag = "icon-whiteblue (NORTH)";
- icon_state = "whiteblue";
- dir = 1
- },
-/area/medical/medbay2{
- name = "Medbay Storage"
- })
-"bmw" = (
-/obj/structure/closet/l3closet,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/whiteblue/side{
- tag = "icon-whiteblue (NORTHEAST)";
- icon_state = "whiteblue";
- dir = 5
- },
-/area/medical/medbay2{
- name = "Medbay Storage"
- })
-"bmx" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/closed/wall,
-/area/medical/medbay2{
- name = "Medbay Storage"
- })
-"bmy" = (
-/obj/structure/bed/roller,
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 1
- },
-/turf/open/floor/plasteel/whiteblue/side{
- tag = "icon-whiteblue (WEST)";
- icon_state = "whiteblue";
- dir = 8
- },
-/area/medical/medbay{
- name = "Medbay Central"
- })
-"bmz" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay{
- name = "Medbay Central"
- })
-"bmA" = (
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 2;
- initialize_directions = 11
- },
-/turf/open/floor/plasteel/whiteblue/corner{
- tag = "icon-whitebluecorner (EAST)";
- icon_state = "whitebluecorner";
- dir = 4
- },
-/area/medical/medbay{
- name = "Medbay Central"
- })
-"bmB" = (
-/obj/structure/extinguisher_cabinet{
- pixel_y = 28
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel/whiteblue/side{
- tag = "icon-whiteblue (NORTH)";
- icon_state = "whiteblue";
- dir = 1
- },
-/area/medical/medbay{
- name = "Medbay Central"
- })
-"bmC" = (
-/obj/machinery/button/door{
- desc = "A remote control switch for the medbay foyer.";
- id = "MedbayFoyer";
- name = "Medbay Exit Button";
- normaldoorcontrol = 1;
- pixel_x = 0;
- pixel_y = 26
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel/whiteblue/side{
- tag = "icon-whiteblue (NORTHEAST)";
- icon_state = "whiteblue";
- dir = 5
- },
-/area/medical/medbay{
- name = "Medbay Central"
- })
-"bmD" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass_medical{
- id_tag = "MedbayFoyer";
- name = "Medbay";
- req_access_txt = "5"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
-/turf/open/floor/plasteel/whiteblue,
-/area/medical/medbay{
- name = "Medbay Central"
- })
-"bmE" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel/whiteblue/side{
- tag = "icon-whiteblue (NORTHWEST)";
- icon_state = "whiteblue";
- dir = 9
- },
-/area/medical/medbay)
-"bmF" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel/whiteblue/side{
- tag = "icon-whiteblue (NORTH)";
- icon_state = "whiteblue";
- dir = 1
- },
-/area/medical/medbay)
-"bmG" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 1;
- initialize_directions = 11
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel/whiteblue/side{
- tag = "icon-whiteblue (NORTH)";
- icon_state = "whiteblue";
- dir = 1
- },
-/area/medical/medbay)
-"bmH" = (
-/obj/structure/disposalpipe/junction{
- dir = 4;
- icon_state = "pipe-j2";
- tag = "icon-pipe-j1 (WEST)"
- },
-/obj/structure/table/glass,
-/obj/item/storage/firstaid/regular,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/whiteblue/side{
- tag = "icon-whiteblue (NORTHEAST)";
- icon_state = "whiteblue";
- dir = 5
- },
-/area/medical/medbay)
-"bmI" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/closed/wall,
-/area/medical/medbay)
-"bmJ" = (
-/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/camera/autoname{
- tag = "icon-camera (EAST)";
- icon_state = "camera";
- dir = 4
- },
-/turf/open/floor/plasteel/blue/side{
- tag = "icon-blue (WEST)";
- icon_state = "blue";
- dir = 8
- },
-/area/hallway/primary/port)
-"bmK" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/structure/disposalpipe/junction{
- dir = 1;
- icon_state = "pipe-j2";
- tag = "icon-pipe-j1 (WEST)"
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/port)
-"bmL" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/blue/side{
- tag = "icon-blue (EAST)";
- icon_state = "blue";
- dir = 4
- },
-/area/hallway/primary/port)
-"bmM" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/machinery/door/firedoor/heavy,
-/obj/machinery/door/airlock/glass_command{
- name = "Bridge Access";
- req_access_txt = "0";
- req_one_access_txt = "19; 1"
- },
-/turf/open/floor/plasteel/darkblue,
-/area/bridge)
-"bmN" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/machinery/door/poddoor/preopen{
- id = "bridge blast";
- layer = 2.9;
- name = "bridge blast door"
- },
-/turf/open/floor/plasteel/darkblue,
-/area/bridge)
-"bmO" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/machinery/door/airlock/glass_command{
- name = "Bridge Access";
- req_access_txt = "0";
- req_one_access_txt = "19; 1"
- },
-/turf/open/floor/plasteel/darkblue,
-/area/bridge)
-"bmP" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/darkblue,
-/area/bridge)
-"bmQ" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/machinery/light,
-/turf/open/floor/plasteel/darkblue,
-/area/bridge)
-"bmR" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/darkblue,
-/area/bridge)
-"bmS" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4";
- tag = ""
- },
-/turf/open/floor/plasteel/darkblue,
-/area/bridge)
-"bmT" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,
-/obj/machinery/light,
-/turf/open/floor/plasteel/darkblue,
-/area/bridge)
-"bmU" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/darkblue,
-/area/bridge)
-"bmV" = (
-/obj/structure/cable{
- tag = "icon-2-8";
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0;
- tag = ""
- },
-/turf/open/floor/plasteel/darkblue,
-/area/bridge)
-"bmW" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/machinery/door/firedoor/heavy,
-/obj/machinery/door/airlock/glass_command{
- id_tag = "bridge door west";
- name = "Bridge Port";
- req_access_txt = "19"
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0;
- tag = ""
- },
-/turf/open/floor/plasteel/darkblue,
-/area/bridge)
-"bmX" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0;
- tag = ""
- },
-/turf/open/floor/plasteel/black,
-/area/bridge)
-"bmY" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 4;
- initialize_directions = 11
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0;
- tag = ""
- },
-/turf/open/floor/plasteel/black,
-/area/bridge)
-"bmZ" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0;
- tag = ""
- },
-/turf/open/floor/plasteel/black,
-/area/bridge)
-"bna" = (
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/window/reinforced{
- dir = 1;
- layer = 2.9
- },
-/obj/structure/table/reinforced,
-/obj/machinery/keycard_auth{
- pixel_x = -6
- },
-/obj/machinery/button/door{
- id = "bridge blast";
- name = "Bridge Blast Door Control";
- pixel_x = 6;
- pixel_y = 0;
- req_access_txt = "19"
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0;
- tag = ""
- },
-/turf/open/floor/plasteel/darkblue/side{
- tag = "icon-darkblue (NORTHWEST)";
- icon_state = "darkblue";
- dir = 9
- },
-/area/bridge)
-"bnb" = (
-/obj/structure/window/reinforced{
- dir = 1;
- layer = 2.9
- },
-/obj/machinery/computer/communications,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0;
- tag = ""
- },
-/turf/open/floor/plasteel/darkblue/side{
- tag = "icon-darkblue (NORTH)";
- icon_state = "darkblue";
- dir = 1
- },
-/area/bridge)
-"bnc" = (
-/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
- },
-/obj/structure/window/reinforced{
- dir = 1;
- layer = 2.9
- },
-/obj/structure/table/reinforced,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0;
- tag = ""
- },
-/turf/open/floor/plasteel/darkblue/side{
- tag = "icon-darkblue (NORTHEAST)";
- icon_state = "darkblue";
- dir = 5
- },
-/area/bridge)
-"bnd" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0;
- tag = ""
- },
-/turf/open/floor/plasteel/black,
-/area/bridge)
-"bne" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel/black,
-/area/bridge)
-"bnf" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/black,
-/area/bridge)
-"bng" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/door/firedoor/heavy,
-/obj/machinery/door/airlock/glass_command{
- id_tag = "bridge door east";
- name = "Bridge Starbord";
- req_access_txt = "19"
- },
-/turf/open/floor/plasteel/darkblue,
-/area/bridge)
-"bnh" = (
-/obj/structure/cable{
- tag = "icon-2-8";
- icon_state = "2-8"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/darkblue,
-/area/bridge)
-"bni" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/darkblue,
-/area/bridge)
-"bnj" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
-/obj/machinery/light,
-/turf/open/floor/plasteel/darkblue,
-/area/bridge)
-"bnk" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/turf/open/floor/plasteel/darkblue,
-/area/bridge)
-"bnl" = (
-/obj/structure/cable{
- tag = "icon-2-8";
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 1
- },
-/turf/open/floor/plasteel/darkblue,
-/area/bridge)
-"bnm" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/darkblue,
-/area/bridge)
-"bnn" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/darkblue,
-/area/bridge)
-"bno" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/door/poddoor/preopen{
- id = "bridge blast";
- layer = 2.9;
- name = "bridge blast door"
- },
-/turf/open/floor/plasteel/darkblue,
-/area/bridge)
-"bnp" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/light,
-/turf/open/floor/plasteel/darkblue,
-/area/bridge)
-"bnq" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/door/airlock/glass_command{
- name = "Bridge Access";
- req_access_txt = "0";
- req_one_access_txt = "19; 1"
- },
-/turf/open/floor/plasteel/darkblue,
-/area/bridge)
-"bnr" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/door/firedoor/heavy,
-/obj/machinery/door/airlock/glass_command{
- name = "Bridge Access";
- req_access_txt = "0";
- req_one_access_txt = "19; 1"
- },
-/turf/open/floor/plasteel/darkblue,
-/area/bridge)
-"bns" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/primary/starboard)
-"bnt" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel,
-/area/hallway/primary/starboard)
-"bnu" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 4
- },
-/obj/machinery/airalarm{
- dir = 8;
- icon_state = "alarm0";
- pixel_x = 24
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/starboard)
-"bnv" = (
-/obj/machinery/mineral/ore_redemption,
-/obj/machinery/door/firedoor,
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"bnw" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/door/airlock/glass_mining{
- name = "Cargo Office";
- req_access_txt = "0";
- req_one_access_txt = "48;50"
- },
-/turf/open/floor/plasteel/delivery,
-/area/quartermaster/office)
-"bnx" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
-/area/quartermaster/storage)
-"bny" = (
-/mob/living/simple_animal/sloth,
-/turf/open/floor/plasteel,
-/area/quartermaster/storage)
-"bnz" = (
-/obj/machinery/conveyor_switch/oneway{
- id = "QMLoad2"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/storage)
-"bnA" = (
-/obj/machinery/door/airlock/glass_mining{
- name = "Cargo Bay";
- req_access_txt = "31"
- },
-/turf/open/floor/noslip,
-/area/quartermaster/storage)
-"bnB" = (
-/turf/open/floor/noslip,
-/area/quartermaster/storage)
-"bnC" = (
-/obj/machinery/light,
-/turf/open/floor/noslip,
-/area/quartermaster/storage)
-"bnD" = (
-/obj/machinery/door/airlock/external{
- name = "Supply Dock Airlock";
- req_access_txt = "31"
- },
-/turf/open/floor/noslip,
-/area/quartermaster/storage)
-"bnE" = (
-/obj/machinery/door/airlock/titanium{
- name = "Supply Shuttle Airlock";
- req_access_txt = "31"
- },
-/turf/open/floor/plating,
-/area/shuttle/supply)
-"bnF" = (
-/turf/open/floor/plating{
- icon_state = "floorgrime"
- },
-/area/security/transfer)
-"bnG" = (
-/obj/machinery/light{
- dir = 1
- },
-/turf/open/floor/plating{
- icon_state = "floorgrime"
- },
-/area/security/transfer)
-"bnH" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 8;
- initialize_directions = 11
- },
-/obj/machinery/iv_drip,
-/turf/open/floor/plasteel/white,
-/area/medical/patients_rooms)
-"bnI" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/medical/patients_rooms)
-"bnJ" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/closed/wall,
-/area/medical/patients_rooms)
-"bnK" = (
-/obj/structure/cable{
- tag = "icon-1-2";
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/medical/patients_rooms)
-"bnL" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/closed/wall/r_wall,
-/area/medical/medbay3)
-"bnM" = (
-/obj/machinery/light_switch{
- dir = 8;
- pixel_x = -24
- },
-/obj/structure/rack,
-/obj/item/reagent_containers/glass/bottle/charcoal,
-/obj/item/reagent_containers/glass/bottle/charcoal,
-/obj/item/reagent_containers/glass/bottle/potass_iodide,
-/obj/item/reagent_containers/glass/bottle/morphine,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating{
- icon_state = "floorgrime"
- },
-/area/medical/medbay3)
-"bnN" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating{
- icon_state = "floorgrime"
- },
-/area/medical/medbay3)
-"bnO" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
-/turf/open/floor/plating{
- icon_state = "floorgrime"
- },
-/area/medical/medbay3)
-"bnP" = (
-/obj/structure/mopbucket,
-/obj/item/mop,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating{
- icon_state = "floorgrime"
- },
-/area/medical/medbay3)
-"bnQ" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/closed/wall/r_wall,
-/area/medical/medbay2{
- name = "Medbay Storage"
- })
-"bnR" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/closet/secure_closet/medical3,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/whiteblue/side{
- tag = "icon-whiteblue (WEST)";
- icon_state = "whiteblue";
- dir = 8
- },
-/area/medical/medbay2{
- name = "Medbay Storage"
- })
-"bnS" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay2{
- name = "Medbay Storage"
- })
-"bnT" = (
-/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,
-/turf/open/floor/plasteel/white,
-/area/medical/medbay2{
- name = "Medbay Storage"
- })
-"bnU" = (
-/obj/structure/closet/wardrobe/white/medical,
-/obj/item/clothing/suit/hooded/wintercoat/medical,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/whiteblue/side{
- tag = "icon-whiteblue (EAST)";
- icon_state = "whiteblue";
- dir = 4
- },
-/area/medical/medbay2{
- name = "Medbay Storage"
- })
-"bnV" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/closed/wall,
-/area/medical/medbay2{
- name = "Medbay Storage"
- })
-"bnW" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/bed/roller,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/whiteblue/side{
- tag = "icon-whiteblue (SOUTHWEST)";
- icon_state = "whiteblue";
- dir = 10
- },
-/area/medical/medbay{
- name = "Medbay Central"
- })
-"bnX" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
-/turf/open/floor/plasteel/whiteblue/side,
-/area/medical/medbay{
- name = "Medbay Central"
- })
-"bnY" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/whiteblue/side,
-/area/medical/medbay{
- name = "Medbay Central"
- })
-"bnZ" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 1
- },
-/turf/open/floor/plasteel/whiteblue/side,
-/area/medical/medbay{
- name = "Medbay Central"
- })
-"boa" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/whiteblue/side{
- tag = "icon-whiteblue (SOUTHEAST)";
- icon_state = "whiteblue";
- dir = 6
- },
-/area/medical/medbay{
- name = "Medbay Central"
- })
-"bob" = (
-/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{
- dir = 4
- },
-/turf/open/floor/plasteel/whiteblue,
-/area/medical/medbay{
- name = "Medbay Central"
- })
-"boc" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/whiteblue/side{
- tag = "icon-whiteblue (WEST)";
- icon_state = "whiteblue";
- dir = 8
- },
-/area/medical/medbay)
-"bod" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 10
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay)
-"boe" = (
-/turf/open/floor/plasteel/white,
-/area/medical/medbay)
-"bof" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 1;
- name = "regular air scrubber";
- on = 1
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay)
-"bog" = (
-/obj/structure/table/glass,
-/obj/item/device/healthanalyzer,
-/turf/open/floor/plasteel/whiteblue/side{
- tag = "icon-whiteblue (EAST)";
- icon_state = "whiteblue";
- dir = 4
- },
-/area/medical/medbay)
-"boh" = (
-/turf/closed/wall,
-/area/medical/medbay)
-"boi" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/airalarm{
- dir = 4;
- pixel_x = -23;
- pixel_y = 0
- },
-/turf/open/floor/plasteel/blue/side{
- tag = "icon-blue (WEST)";
- icon_state = "blue";
- dir = 8
- },
-/area/hallway/primary/port)
-"boj" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/door/firedoor/heavy,
-/turf/open/floor/plating,
-/area/bridge)
-"bok" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/closed/wall/r_wall,
-/area/bridge)
-"bol" = (
-/obj/machinery/door/airlock/command{
- name = "Conference Room";
- req_access = null;
- req_access_txt = "19"
- },
-/turf/open/floor/wood,
-/area/bridge/meeting_room)
-"bom" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/closed/wall/r_wall,
-/area/bridge)
-"bon" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/door/airlock/hatch{
- name = "Bridge Maintenance Access";
- req_access_txt = "0";
- req_one_access_txt = "19; 1"
- },
-/turf/open/floor/plating,
-/area/ai_monitored/turret_protected/aisat{
- name = "AI Maintenance"
- })
-"boo" = (
-/obj/structure/table/glass,
-/obj/item/device/aicard,
-/obj/machinery/airalarm{
- dir = 4;
- locked = 0;
- pixel_x = -23;
- pixel_y = 0
- },
-/turf/open/floor/plasteel/darkpurple,
-/area/bridge)
-"bop" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel/darkpurple/side{
- tag = "icon-darkpurple (WEST)";
- icon_state = "darkpurple";
- dir = 8
- },
-/area/bridge)
-"boq" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 8;
- name = "regular air scrubber";
- on = 1;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel/black,
-/area/bridge)
-"bor" = (
-/obj/machinery/door/window/brigdoor{
- dir = 8;
- name = "Command Desk";
- req_access_txt = "19"
- },
-/turf/open/floor/plasteel/darkblue/side{
- tag = "icon-darkblue (WEST)";
- icon_state = "darkblue";
- dir = 8
- },
-/area/bridge)
-"bos" = (
-/obj/structure/chair/comfy/brown{
- dir = 1
- },
-/turf/open/floor/plasteel/black,
-/area/bridge)
-"bot" = (
-/obj/machinery/door/window/brigdoor{
- dir = 4;
- name = "Command Desk";
- req_access_txt = "19"
- },
-/obj/machinery/computer/security/telescreen{
- desc = "Used for watching output from station security cameras.";
- name = "Security Camera Monitor";
- network = list("SS13");
- pixel_x = 0;
- pixel_y = 30
- },
-/turf/open/floor/plasteel/darkblue/side{
- tag = "icon-darkblue (EAST)";
- icon_state = "darkblue";
- dir = 4
- },
-/area/bridge)
-"bou" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 4;
- name = "regular air vent";
- on = 1
- },
-/obj/effect/landmark{
- name = "xeno_spawn";
- pixel_x = -1
- },
-/turf/open/floor/plasteel/black,
-/area/bridge)
-"bov" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 9
- },
-/turf/open/floor/plasteel/darkgreen/side{
- tag = "icon-darkgreen (EAST)";
- icon_state = "darkgreen";
- dir = 4
- },
-/area/bridge)
-"bow" = (
-/obj/machinery/computer/security/mining,
-/obj/machinery/requests_console{
- announcementConsole = 1;
- department = "Bridge";
- departmentType = 5;
- name = "Bridge RC";
- pixel_x = 32;
- pixel_y = 0
- },
-/turf/open/floor/plasteel/darkgreen,
-/area/bridge)
-"box" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/door/airlock/command{
- name = "Captain's Office";
- req_access = null;
- req_access_txt = "20"
- },
-/turf/open/floor/wood,
-/area/crew_quarters/captain)
-"boy" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/junction{
- dir = 1;
- icon_state = "pipe-j1";
- tag = "icon-pipe-j1 (EAST)"
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/starboard)
-"boz" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/door/firedoor,
-/turf/open/floor/plating,
-/area/quartermaster/office)
-"boA" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/chair,
-/turf/open/floor/plasteel/brown{
- tag = "icon-brown (NORTHWEST)";
- icon_state = "brown";
- dir = 9
- },
-/area/quartermaster/office)
-"boB" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/chair,
-/turf/open/floor/plasteel/brown{
- tag = "icon-brown (NORTH)";
- icon_state = "brown";
- dir = 1
- },
-/area/quartermaster/office)
-"boC" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel/brown/corner{
- dir = 1
- },
-/area/quartermaster/office)
-"boD" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel/loadingarea{
- baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
- },
-/area/quartermaster/office)
-"boE" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/item/device/radio/intercom{
- name = "Station Intercom";
- pixel_x = 0;
- pixel_y = 24
- },
-/turf/open/floor/plasteel/brown/corner{
- dir = 4
- },
-/area/quartermaster/office)
-"boF" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel/brown{
- tag = "icon-brown (NORTH)";
- icon_state = "brown";
- dir = 1
- },
-/area/quartermaster/office)
-"boG" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/computer/cargo/request,
-/turf/open/floor/plasteel/brown{
- tag = "icon-brown (NORTHEAST)";
- icon_state = "brown";
- dir = 5
- },
-/area/quartermaster/office)
-"boH" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/quartermaster/office)
-"boI" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/computer/cargo,
-/turf/open/floor/plasteel/brown{
- tag = "icon-brown (NORTHWEST)";
- icon_state = "brown";
- dir = 9
- },
-/area/quartermaster/office)
-"boJ" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel/brown{
- tag = "icon-brown (NORTH)";
- icon_state = "brown";
- dir = 1
- },
-/area/quartermaster/office)
-"boK" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/filingcabinet,
-/turf/open/floor/plasteel/brown{
- tag = "icon-brown (NORTH)";
- icon_state = "brown";
- dir = 1
- },
-/area/quartermaster/office)
-"boL" = (
-/obj/structure/disposalpipe/trunk{
- dir = 8
- },
-/obj/machinery/disposal/bin,
-/turf/open/floor/plasteel/brown{
- tag = "icon-brown (NORTH)";
- icon_state = "brown";
- dir = 1
- },
-/area/quartermaster/office)
-"boM" = (
-/obj/machinery/airalarm{
- frequency = 1439;
- locked = 0;
- pixel_y = 23
- },
-/obj/structure/table,
-/obj/item/clipboard,
-/obj/item/folder/yellow,
-/turf/open/floor/plasteel/brown{
- tag = "icon-brown (NORTH)";
- icon_state = "brown";
- dir = 1
- },
-/area/quartermaster/office)
-"boN" = (
-/obj/structure/table,
-/obj/machinery/computer/stockexchange,
-/turf/open/floor/plasteel/brown{
- tag = "icon-brown (NORTH)";
- icon_state = "brown";
- dir = 1
- },
-/area/quartermaster/office)
-"boO" = (
-/obj/machinery/autolathe,
-/turf/open/floor/plasteel/brown{
- tag = "icon-brown (NORTH)";
- icon_state = "brown";
- dir = 1
- },
-/area/quartermaster/office)
-"boP" = (
-/obj/structure/table,
-/obj/item/paper_bin,
-/turf/open/floor/plasteel/brown{
- tag = "icon-brown (NORTH)";
- icon_state = "brown";
- dir = 1
- },
-/area/quartermaster/office)
-"boQ" = (
-/obj/structure/table,
-/obj/item/device/multitool,
-/obj/item/screwdriver,
-/turf/open/floor/plasteel/brown{
- tag = "icon-brown (NORTH)";
- icon_state = "brown";
- dir = 1
- },
-/area/quartermaster/office)
-"boR" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/table,
-/obj/item/crowbar,
-/turf/open/floor/plasteel/brown{
- tag = "icon-brown (NORTHEAST)";
- icon_state = "brown";
- dir = 5
- },
-/area/quartermaster/office)
-"boS" = (
-/obj/machinery/status_display{
- density = 0;
- name = "cargo display";
- pixel_x = 0;
- pixel_y = 0;
- supply_display = 1
- },
-/turf/closed/wall,
-/area/quartermaster/office)
-"boT" = (
-/obj/machinery/holopad,
-/turf/open/floor/plasteel,
-/area/quartermaster/storage)
-"boU" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/storage)
-"boV" = (
-/obj/machinery/computer/cargo,
-/obj/machinery/button/door{
- dir = 2;
- id = "QMLoaddoor2";
- name = "Loading Doors";
- pixel_x = 24;
- pixel_y = 8
- },
-/obj/machinery/button/door{
- id = "QMLoaddoor";
- name = "Loading Doors";
- pixel_x = 24;
- pixel_y = -8
- },
-/turf/open/floor/plasteel/brown{
- tag = "icon-brown (EAST)";
- icon_state = "brown";
- dir = 4
- },
-/area/quartermaster/storage)
-"boW" = (
-/obj/machinery/button/door{
- id = "QMLoaddoor";
- name = "Loading Doors";
- pixel_x = -24;
- pixel_y = -8
- },
-/obj/machinery/button/door{
- dir = 2;
- id = "QMLoaddoor2";
- name = "Loading Doors";
- pixel_x = -24;
- pixel_y = 8
- },
-/obj/machinery/light{
- icon_state = "tube1";
- dir = 8
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/supply)
-"boX" = (
-/obj/machinery/light{
- dir = 4
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/supply)
-"boY" = (
-/obj/machinery/power/emitter{
- anchored = 1;
- dir = 4;
- req_access = list(11,2);
- state = 2
- },
-/obj/structure/cable{
- icon_state = "0-2";
- pixel_y = 1;
- d2 = 2
- },
-/turf/open/floor/plating{
- dir = 1;
- icon_state = "delivery"
- },
-/area/security/transfer)
-"boZ" = (
-/obj/structure/reflector/box{
- tag = "icon-reflector_box (EAST)";
- icon_state = "reflector_box";
- dir = 4
- },
-/turf/open/floor/plasteel{
- icon_state = "redfull"
- },
-/area/security/transfer)
-"bpa" = (
-/turf/open/floor/plating{
- tag = "icon-delivery";
- icon_state = "delivery";
- dir = 2
- },
-/area/security/transfer)
-"bpb" = (
-/obj/structure/reflector/box{
- tag = "icon-reflector_box (WEST)";
- icon_state = "reflector_box";
- dir = 8
- },
-/turf/open/floor/plasteel{
- icon_state = "redfull"
- },
-/area/security/transfer)
-"bpc" = (
-/obj/machinery/power/emitter{
- anchored = 1;
- dir = 8;
- req_access = list(11,2);
- state = 2
- },
-/obj/structure/cable{
- icon_state = "0-2";
- pixel_y = 1;
- d2 = 2
- },
-/turf/open/floor/plating{
- dir = 1;
- icon_state = "delivery"
- },
-/area/security/transfer)
-"bpd" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/medical{
- name = "Patient Room 3";
- req_access_txt = "5"
- },
-/turf/open/floor/plasteel/white,
-/area/medical/patients_rooms)
-"bpe" = (
-/obj/machinery/airalarm{
- dir = 4;
- pixel_x = -23;
- pixel_y = 0
- },
-/obj/structure/rack,
-/obj/item/reagent_containers/glass/bottle/histamine,
-/obj/item/reagent_containers/glass/bottle/histamine,
-/obj/item/reagent_containers/glass/bottle/formaldehyde,
-/obj/item/reagent_containers/glass/bottle/toxin,
-/turf/open/floor/plating{
- icon_state = "floorgrime"
- },
-/area/medical/medbay3)
-"bpf" = (
-/turf/open/floor/plating{
- icon_state = "floorgrime"
- },
-/area/medical/medbay3)
-"bpg" = (
-/obj/structure/rack,
-/obj/item/cartridge/medical,
-/obj/item/cartridge/medical,
-/obj/item/cartridge/chemistry,
-/obj/item/cartridge/chemistry,
-/obj/structure/extinguisher_cabinet{
- pixel_x = 24
- },
-/turf/open/floor/plating{
- icon_state = "floorgrime"
- },
-/area/medical/medbay3)
-"bph" = (
-/obj/item/storage/firstaid/regular{
- pixel_x = 3;
- pixel_y = -3
- },
-/obj/item/storage/firstaid/fire{
- pixel_x = 3;
- pixel_y = 3
- },
-/obj/item/storage/firstaid/fire,
-/obj/item/storage/firstaid/fire{
- pixel_x = -3;
- pixel_y = -3
- },
-/obj/structure/table/glass,
-/obj/machinery/light_switch{
- dir = 8;
- pixel_x = -24
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 5
- },
-/turf/open/floor/plasteel/whiteblue/side{
- tag = "icon-whiteblue (WEST)";
- icon_state = "whiteblue";
- dir = 8
- },
-/area/medical/medbay2{
- name = "Medbay Storage"
- })
-"bpi" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay2{
- name = "Medbay Storage"
- })
-"bpj" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 8;
- name = "regular air scrubber";
- on = 1;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay2{
- name = "Medbay Storage"
- })
-"bpk" = (
-/obj/effect/landmark/start{
- name = "Medical Doctor"
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay2{
- name = "Medbay Storage"
- })
-"bpl" = (
-/obj/machinery/airalarm{
- dir = 8;
- icon_state = "alarm0";
- pixel_x = 24
- },
-/obj/structure/closet/crate/freezer,
-/obj/item/reagent_containers/blood/AMinus,
-/obj/item/reagent_containers/blood/AMinus,
-/obj/item/reagent_containers/blood/APlus,
-/obj/item/reagent_containers/blood/APlus,
-/obj/item/reagent_containers/blood/BMinus,
-/obj/item/reagent_containers/blood/BMinus,
-/obj/item/reagent_containers/blood/BPlus,
-/obj/item/reagent_containers/blood/BPlus,
-/obj/item/reagent_containers/blood/OMinus,
-/obj/item/reagent_containers/blood/OMinus,
-/obj/item/reagent_containers/blood/OPlus,
-/obj/item/reagent_containers/blood/OPlus,
-/obj/item/reagent_containers/blood/empty,
-/obj/item/reagent_containers/blood/empty,
-/turf/open/floor/plasteel/whiteblue/side{
- tag = "icon-whiteblue (EAST)";
- icon_state = "whiteblue";
- dir = 4
- },
-/area/medical/medbay2{
- name = "Medbay Storage"
- })
-"bpm" = (
-/turf/closed/wall,
-/area/security/checkpoint/medical)
-"bpn" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/newscaster/security_unit,
-/turf/closed/wall,
-/area/security/checkpoint/medical)
-"bpo" = (
-/obj/machinery/door/firedoor/heavy,
-/obj/machinery/door/airlock/glass_security{
- name = "Medbay Security Post";
- req_access_txt = "63"
- },
-/turf/open/floor/plasteel{
- icon_state = "redfull"
- },
-/area/security/checkpoint/medical)
-"bpp" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/door/firedoor/heavy,
-/turf/open/floor/plating,
-/area/security/checkpoint/medical)
-"bpq" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/door/firedoor/heavy,
-/turf/open/floor/plating,
-/area/security/checkpoint/medical)
-"bpr" = (
-/obj/machinery/airalarm{
- dir = 4;
- pixel_x = -23;
- pixel_y = 0
- },
-/turf/open/floor/plasteel/whiteblue/side{
- tag = "icon-whiteblue (WEST)";
- icon_state = "whiteblue";
- dir = 8
- },
-/area/medical/medbay)
-"bps" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/white,
-/area/medical/medbay)
-"bpt" = (
-/obj/machinery/firealarm{
- dir = 4;
- pixel_x = 24
- },
-/obj/structure/chair{
- dir = 8
- },
-/turf/open/floor/plasteel/whiteblue/side{
- tag = "icon-whiteblue (EAST)";
- icon_state = "whiteblue";
- dir = 4
- },
-/area/medical/medbay)
-"bpu" = (
-/obj/structure/window/reinforced/fulltile,
-/obj/structure/grille,
-/obj/machinery/door/firedoor/heavy,
-/turf/open/floor/plating,
-/area/bridge/meeting_room)
-"bpv" = (
-/obj/structure/chair/comfy/black,
-/turf/open/floor/carpet{
- icon_state = "carpetsymbol"
- },
-/area/bridge/meeting_room)
-"bpw" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/chair/comfy/black,
-/turf/open/floor/carpet{
- icon_state = "carpetsymbol"
- },
-/area/bridge/meeting_room)
-"bpx" = (
-/obj/machinery/light_switch{
- pixel_y = 24
- },
-/turf/open/floor/carpet{
- icon_state = "carpetsymbol"
- },
-/area/bridge/meeting_room)
-"bpy" = (
-/turf/open/floor/wood,
-/area/bridge/meeting_room)
-"bpz" = (
-/obj/machinery/vending/coffee,
-/turf/open/floor/wood,
-/area/bridge/meeting_room)
-"bpA" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/filingcabinet/chestdrawer,
-/turf/open/floor/wood,
-/area/bridge/meeting_room)
-"bpB" = (
-/turf/closed/wall,
-/area/bridge/meeting_room)
-"bpC" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/ai_monitored/turret_protected/aisat{
- name = "AI Maintenance"
- })
-"bpD" = (
-/obj/machinery/computer/teleporter,
-/obj/item/device/radio/intercom{
- dir = 8;
- pixel_x = -28
- },
-/turf/open/floor/plasteel/darkpurple,
-/area/bridge)
-"bpE" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/light,
-/obj/structure/chair/office/dark{
- dir = 8
- },
-/turf/open/floor/plasteel/darkpurple/side{
- tag = "icon-darkpurple (WEST)";
- icon_state = "darkpurple";
- dir = 8
- },
-/area/bridge)
-"bpF" = (
-/obj/structure/fireaxecabinet{
- pixel_y = -32
- },
-/turf/open/floor/plasteel/black,
-/area/bridge)
-"bpG" = (
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/machinery/camera/autoname{
- tag = "icon-camera (SOUTHWEST)";
- icon_state = "camera";
- dir = 10
- },
-/turf/open/floor/plasteel/darkblue/side{
- tag = "icon-darkblue (WEST)";
- icon_state = "darkblue";
- dir = 8
- },
-/area/bridge)
-"bpH" = (
-/obj/machinery/holopad,
-/turf/open/floor/plasteel/black,
-/area/bridge)
-"bpI" = (
-/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
- },
-/obj/machinery/turretid{
- control_area = "AI Upload Chamber";
- name = "AI Upload turret control";
- pixel_y = -25
- },
-/turf/open/floor/plasteel/darkblue/side{
- tag = "icon-darkblue (EAST)";
- icon_state = "darkblue";
- dir = 4
- },
-/area/bridge)
-"bpJ" = (
-/obj/structure/cable,
-/obj/machinery/power/apc{
- cell_type = 5000;
- dir = 2;
- name = "Bridge APC";
- pixel_y = -24
- },
-/turf/open/floor/plasteel/black,
-/area/bridge)
-"bpK" = (
-/obj/machinery/light,
-/obj/structure/chair/office/dark{
- dir = 4
- },
-/turf/open/floor/plasteel/darkgreen/side{
- tag = "icon-darkgreen (EAST)";
- icon_state = "darkgreen";
- dir = 4
- },
-/area/bridge)
-"bpL" = (
-/obj/machinery/computer/cargo/request,
-/turf/open/floor/plasteel/darkgreen,
-/area/bridge)
-"bpM" = (
-/turf/closed/wall/r_wall,
-/area/crew_quarters/captain)
-"bpN" = (
-/obj/structure/displaycase/captain,
-/turf/open/floor/wood,
-/area/crew_quarters/captain)
-"bpO" = (
-/obj/machinery/light_switch{
- pixel_y = 24
- },
-/obj/structure/table/wood,
-/obj/item/storage/fancy/cigarettes/cigars,
-/obj/item/coin/plasma{
- pixel_x = 3;
- pixel_y = 2
- },
-/obj/item/lighter{
- pixel_x = -6
- },
-/turf/open/floor/wood,
-/area/crew_quarters/captain)
-"bpP" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4";
- tag = "90Curve"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/wood,
-/area/crew_quarters/captain)
-"bpQ" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0;
- tag = ""
- },
-/obj/machinery/computer/card,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/turf/open/floor/wood,
-/area/crew_quarters/captain)
-"bpR" = (
-/obj/machinery/power/apc{
- cell_type = 2500;
- dir = 1;
- name = "Captain's Office APC";
- pixel_y = 24
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/turf/open/floor/wood,
-/area/crew_quarters/captain)
-"bpS" = (
-/obj/structure/table/wood,
-/obj/item/folder/blue,
-/obj/item/stamp/captain,
-/obj/machinery/newscaster/security_unit{
- pixel_y = 32
- },
-/obj/item/melee/chainofcommand,
-/obj/item/device/radio/intercom{
- desc = "Talk smack through this.";
- dir = 4;
- pixel_x = 28;
- syndie = 1
- },
-/turf/open/floor/wood,
-/area/crew_quarters/captain)
-"bpT" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 8;
- initialize_directions = 11
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/starboard)
-"bpU" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/door/firedoor,
-/turf/open/floor/plasteel/brown{
- tag = "icon-brown (NORTHWEST)";
- icon_state = "brown";
- dir = 9
- },
-/area/quartermaster/office)
-"bpV" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/brown/corner{
- tag = "icon-browncorner (NORTH)";
- icon_state = "browncorner";
- dir = 1
- },
-/area/quartermaster/office)
-"bpW" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- tag = "icon-vent_map (WEST)";
- icon_state = "vent_map";
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"bpX" = (
-/obj/machinery/holopad,
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"bpY" = (
-/turf/open/floor/plasteel/brown{
- tag = "icon-brown (EAST)";
- icon_state = "brown";
- dir = 4
- },
-/area/quartermaster/office)
-"bpZ" = (
-/obj/structure/table/reinforced,
-/obj/machinery/door/firedoor,
-/obj/machinery/door/window/westleft{
- dir = 4;
- name = "Cargo Desk";
- req_access_txt = "50"
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"bqa" = (
-/obj/structure/chair/office/light{
- dir = 8
- },
-/obj/effect/landmark/start{
- name = "Cargo Technician"
- },
-/turf/open/floor/plasteel/brown{
- tag = "icon-brown (WEST)";
- icon_state = "brown";
- dir = 8
- },
-/area/quartermaster/office)
-"bqb" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"bqc" = (
-/obj/effect/landmark/start{
- name = "Cargo Technician"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"bqd" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 10
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"bqe" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/brown{
- tag = "icon-brown (EAST)";
- icon_state = "brown";
- dir = 4
- },
-/area/quartermaster/office)
-"bqf" = (
-/obj/machinery/door/airlock/glass_mining{
- glass = 0;
- name = "Cargo Bay";
- opacity = 1;
- req_access_txt = "0";
- req_one_access_txt = "48;50"
- },
-/turf/open/floor/plasteel/delivery,
-/area/quartermaster/office)
-"bqg" = (
-/obj/machinery/conveyor_switch/oneway{
- convdir = -1;
- id = "QMLoad"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/storage)
-"bqh" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
- icon_state = "space";
- layer = 4;
- name = "EXTERNAL AIRLOCK";
- pixel_x = 32;
- pixel_y = 0
- },
-/turf/open/floor/plasteel/brown{
- tag = "icon-brown (EAST)";
- icon_state = "brown";
- dir = 4
- },
-/area/quartermaster/storage)
-"bqi" = (
-/obj/machinery/light{
- dir = 1
- },
-/turf/open/floor/noslip,
-/area/quartermaster/storage)
-"bqj" = (
-/obj/machinery/door/airlock/titanium{
- name = "Supply Shuttle Airlock";
- req_access_txt = "31"
- },
-/obj/docking_port/mobile/supply{
- dir = 4;
- dwidth = 5;
- height = 7;
- port_angle = -90;
- width = 12
- },
-/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)
-"bqk" = (
-/obj/structure/cable{
- tag = "icon-1-2";
- icon_state = "1-2"
- },
-/obj/machinery/door/poddoor/preopen{
- icon_state = "closed";
- id = "exc";
- name = "Execution Chamber"
- },
-/turf/open/floor/plating{
- tag = "icon-warnplate (NORTH)";
- icon_state = "warnplate";
- dir = 1
- },
-/area/security/transfer)
-"bql" = (
-/obj/machinery/door/poddoor/preopen{
- icon_state = "closed";
- id = "exc";
- name = "Execution Chamber"
- },
-/turf/open/floor/plating{
- icon_state = "warnplate";
- dir = 5
- },
-/area/security/transfer)
-"bqm" = (
-/obj/structure/chair/office/dark,
-/turf/open/floor/plating{
- icon_state = "bot"
- },
-/area/security/transfer)
-"bqn" = (
-/obj/machinery/door/poddoor/preopen{
- icon_state = "closed";
- id = "exc";
- name = "Execution Chamber"
- },
-/turf/open/floor/plating{
- icon_state = "warnplate";
- dir = 9
- },
-/area/security/transfer)
-"bqo" = (
-/obj/machinery/camera/autoname{
- tag = "icon-camera (EAST)";
- icon_state = "camera";
- dir = 4
- },
-/mob/living/simple_animal/bot/cleanbot{
- name = "Scrubs, MD";
- on = 0
- },
-/turf/open/floor/plating{
- icon_state = "floorgrime"
- },
-/area/medical/medbay3)
-"bqp" = (
-/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.";
- name = "Inspector Johnson"
- },
-/turf/open/floor/plating{
- icon_state = "floorgrime"
- },
-/area/medical/medbay3)
-"bqq" = (
-/obj/structure/rack,
-/obj/item/gun/syringe,
-/obj/item/gun/syringe,
-/obj/item/storage/box/syringes,
-/obj/item/storage/box/syringes,
-/turf/open/floor/plating{
- icon_state = "floorgrime"
- },
-/area/medical/medbay3)
-"bqr" = (
-/obj/item/storage/firstaid/regular{
- pixel_x = 3;
- pixel_y = -3
- },
-/obj/item/storage/firstaid/brute{
- pixel_x = 3;
- pixel_y = 3
- },
-/obj/item/storage/firstaid/brute,
-/obj/item/storage/firstaid/brute{
- pixel_x = -3;
- pixel_y = -3
- },
-/obj/machinery/power/apc{
- dir = 2;
- name = "Medbay Storage APC";
- pixel_y = -24
- },
-/obj/structure/table/glass,
-/obj/machinery/firealarm{
- dir = 8;
- pixel_x = -24;
- pixel_y = 0
- },
-/turf/open/floor/plasteel/whiteblue/side{
- tag = "icon-whiteblue (WEST)";
- icon_state = "whiteblue";
- dir = 8
- },
-/area/medical/medbay2{
- name = "Medbay Storage"
- })
-"bqs" = (
-/turf/open/floor/plasteel/white,
-/area/medical/medbay2{
- name = "Medbay Storage"
- })
-"bqt" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- tag = "icon-vent_map (NORTH)";
- name = "regular air vent";
- icon_state = "vent_map";
- dir = 1;
- on = 1
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay2{
- name = "Medbay Storage"
- })
-"bqu" = (
-/obj/structure/table,
-/obj/item/storage/box/medipens{
- pixel_x = 3;
- pixel_y = 3
- },
-/obj/item/storage/box/syringes,
-/turf/open/floor/plasteel/whiteblue/side{
- tag = "icon-whiteblue (EAST)";
- icon_state = "whiteblue";
- dir = 4
- },
-/area/medical/medbay2{
- name = "Medbay Storage"
- })
-"bqv" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/security/checkpoint/medical)
-"bqw" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/filingcabinet/security,
-/turf/open/floor/plasteel{
- icon_state = "redfull"
- },
-/area/security/checkpoint/medical)
-"bqx" = (
-/obj/machinery/button/door{
- desc = "A remote control switch for the medbay foyer.";
- id = "MedbayFoyer";
- name = "Medbay Doors Control";
- normaldoorcontrol = 1;
- pixel_x = 24;
- pixel_y = 24
- },
-/turf/open/floor/plasteel{
- icon_state = "redfull"
- },
-/area/security/checkpoint/medical)
-"bqy" = (
-/obj/structure/table,
-/obj/item/paper_bin,
-/obj/machinery/light_switch{
- pixel_y = 24
- },
-/turf/open/floor/plasteel{
- icon_state = "redfull"
- },
-/area/security/checkpoint/medical)
-"bqz" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/computer/secure_data,
-/obj/machinery/camera/autoname{
- tag = "icon-camera (SOUTHEAST)";
- icon_state = "camera";
- dir = 6
- },
-/turf/open/floor/plasteel{
- icon_state = "redfull"
- },
-/area/security/checkpoint/medical)
-"bqA" = (
-/obj/structure/table,
-/obj/item/folder/red,
-/obj/item/pen/red,
-/turf/open/floor/plasteel{
- icon_state = "redfull"
- },
-/area/security/checkpoint/medical)
-"bqB" = (
-/obj/structure/window/reinforced{
- dir = 1;
- layer = 2.9
- },
-/obj/structure/filingcabinet/medical,
-/obj/machinery/door/firedoor/border_only{
- tag = "icon-door_open (NORTH)";
- icon_state = "door_open";
- dir = 1
- },
-/turf/open/floor/plasteel/whiteblue/side{
- tag = "icon-whiteblue (WEST)";
- icon_state = "whiteblue";
- dir = 8
- },
-/area/medical/medbay)
-"bqC" = (
-/obj/machinery/door/window/northleft{
- name = "Medbay Reception";
- req_access_txt = "5"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- req_access_txt = 1
- },
-/obj/machinery/door/firedoor/border_only{
- tag = "icon-door_open (NORTH)";
- icon_state = "door_open";
- dir = 1
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay)
-"bqD" = (
-/obj/structure/table/reinforced,
-/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
- },
-/obj/structure/window/reinforced{
- dir = 1;
- layer = 2.9
- },
-/obj/machinery/door/firedoor/border_only{
- tag = "icon-door_open (EAST)";
- icon_state = "door_open";
- dir = 4
- },
-/obj/machinery/door/firedoor/border_only{
- tag = "icon-door_open (NORTH)";
- icon_state = "door_open";
- dir = 1
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay)
-"bqE" = (
-/obj/structure/chair{
- dir = 8
- },
-/obj/machinery/light{
- icon_state = "tube1";
- dir = 4
- },
-/turf/open/floor/plasteel/whiteblue/side{
- tag = "icon-whiteblue (EAST)";
- icon_state = "whiteblue";
- dir = 4
- },
-/area/medical/medbay)
-"bqF" = (
-/obj/structure/sign/bluecross,
-/turf/closed/wall,
-/area/medical/medbay)
-"bqG" = (
-/obj/structure/flora/grass/green,
-/mob/living/simple_animal/chicken,
-/turf/open/floor/grass,
-/area/hallway/primary/port)
-"bqH" = (
-/obj/machinery/light{
- dir = 4
- },
-/obj/structure/flora/grass/green,
-/turf/open/floor/grass,
-/area/hallway/primary/port)
-"bqI" = (
-/turf/closed/wall/r_wall,
-/area/bridge/meeting_room)
-"bqJ" = (
-/obj/structure/table/wood,
-/obj/item/folder/white,
-/obj/item/pen,
-/turf/open/floor/carpet,
-/area/bridge/meeting_room)
-"bqK" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 8;
- initialize_directions = 11
- },
-/obj/structure/table/wood,
-/obj/item/folder/red,
-/obj/item/pen/red,
-/turf/open/floor/carpet,
-/area/bridge/meeting_room)
-"bqL" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 8;
- name = "regular air vent";
- on = 1
- },
-/obj/structure/chair/comfy/black{
- dir = 8
- },
-/turf/open/floor/carpet{
- icon_state = "carpetsymbol"
- },
-/area/bridge/meeting_room)
-"bqM" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/airalarm{
- dir = 8;
- icon_state = "alarm0";
- pixel_x = 24
- },
-/turf/open/floor/wood,
-/area/bridge/meeting_room)
-"bqN" = (
-/turf/closed/wall/r_wall,
-/area/ai_monitored/turret_protected/ai_upload)
-"bqO" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/closed/wall/r_wall,
-/area/ai_monitored/turret_protected/ai_upload)
-"bqP" = (
-/obj/machinery/door/airlock/highsecurity{
- icon_state = "door_closed";
- locked = 0;
- name = "AI Upload";
- req_access_txt = "16"
- },
-/turf/open/floor/circuit{
- icon_state = "gcircuit";
- luminosity = 2
- },
-/area/ai_monitored/turret_protected/ai_upload)
-"bqQ" = (
-/obj/machinery/light{
- dir = 8
- },
-/obj/machinery/suit_storage_unit/captain,
-/turf/open/floor/wood,
-/area/crew_quarters/captain)
-"bqR" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 4;
- name = "regular air vent";
- on = 1
- },
-/turf/open/floor/wood,
-/area/crew_quarters/captain)
-"bqS" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 4
- },
-/turf/open/floor/wood,
-/area/crew_quarters/captain)
-"bqT" = (
-/obj/machinery/computer/communications,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/turf/open/floor/wood,
-/area/crew_quarters/captain)
-"bqU" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/chair/comfy/brown{
- dir = 8
- },
-/obj/effect/landmark/start{
- name = "Captain"
- },
-/turf/open/floor/wood,
-/area/crew_quarters/captain)
-"bqV" = (
-/obj/item/storage/secure/safe{
- pixel_x = 32
- },
-/turf/open/floor/wood,
-/area/crew_quarters/captain)
-"bqW" = (
-/obj/machinery/light{
- icon_state = "tube1";
- dir = 8
- },
-/turf/open/floor/grass,
-/area/hallway/primary/starboard)
-"bqX" = (
-/obj/structure/flora/grass/green,
-/mob/living/simple_animal/pet/dog/corgi,
-/turf/open/floor/grass,
-/area/hallway/primary/starboard)
-"bqY" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel,
-/area/hallway/primary/starboard)
-"bqZ" = (
-/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,
-/area/hallway/primary/starboard)
-"bra" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/machinery/door/firedoor,
-/turf/open/floor/plasteel/brown{
- tag = "icon-brown (SOUTHWEST)";
- icon_state = "brown";
- dir = 10
- },
-/area/quartermaster/office)
-"brb" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/brown/corner{
- tag = "icon-browncorner (WEST)";
- icon_state = "browncorner";
- dir = 8
- },
-/area/quartermaster/office)
-"brc" = (
-/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/quartermaster/office)
-"brd" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 8;
- name = "regular air scrubber";
- on = 1;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"bre" = (
-/obj/structure/cable{
- tag = "icon-2-8";
- icon_state = "2-8"
- },
-/turf/open/floor/plasteel/brown{
- tag = "icon-brown (EAST)";
- icon_state = "brown";
- dir = 4
- },
-/area/quartermaster/office)
-"brf" = (
-/obj/structure/table,
-/obj/item/stamp{
- pixel_x = -6
- },
-/obj/item/stamp/denied,
-/obj/item/pen{
- pixel_x = 4;
- pixel_y = 7
- },
-/turf/open/floor/plasteel/brown{
- tag = "icon-brown (WEST)";
- icon_state = "brown";
- dir = 8
- },
-/area/quartermaster/office)
-"brg" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"brh" = (
-/obj/machinery/airalarm{
- dir = 4;
- pixel_x = -23;
- pixel_y = 0
- },
-/turf/open/floor/plasteel/brown{
- tag = "icon-brown (WEST)";
- icon_state = "brown";
- dir = 8
- },
-/area/quartermaster/storage)
-"bri" = (
-/turf/open/floor/plasteel/loadingarea{
- tag = "icon-loadingarea (EAST)";
- dir = 4;
- baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
- },
-/area/quartermaster/storage)
-"brj" = (
-/obj/machinery/conveyor{
- dir = 4;
- id = "QMLoad"
- },
-/turf/open/floor/plasteel/delivery,
-/area/quartermaster/storage)
-"brk" = (
-/obj/machinery/conveyor{
- dir = 4;
- id = "QMLoad"
- },
-/obj/machinery/door/poddoor{
- id = "QMLoaddoor";
- name = "supply dock loading door"
- },
-/turf/open/floor/plating,
-/area/quartermaster/storage)
-"brl" = (
-/obj/machinery/conveyor{
- dir = 4;
- id = "QMLoad"
- },
-/turf/open/floor/plating,
-/area/quartermaster/storage)
-"brm" = (
-/obj/machinery/conveyor{
- dir = 4;
- id = "QMLoad"
- },
-/obj/structure/plasticflaps,
-/turf/open/floor/plating,
-/area/quartermaster/storage)
-"brn" = (
-/obj/machinery/conveyor{
- dir = 4;
- id = "QMLoad"
- },
-/obj/machinery/door/poddoor{
- id = "QMLoaddoor";
- name = "supply dock loading door"
- },
-/turf/open/floor/plating,
-/area/shuttle/supply)
-"bro" = (
-/obj/structure/cable{
- tag = "icon-1-2";
- icon_state = "1-2"
- },
-/obj/machinery/light{
- icon_state = "tube1";
- dir = 8
- },
-/turf/open/floor/plasteel/darkred/corner{
- tag = "icon-darkredcorners (WEST)";
- icon_state = "darkredcorners";
- dir = 8
- },
-/area/security/transfer)
-"brp" = (
-/obj/machinery/door/poddoor/preopen{
- icon_state = "closed";
- id = "exc";
- name = "Execution Chamber"
- },
-/turf/open/floor/plating{
- icon_state = "warnplatecorner";
- dir = 8
- },
-/area/security/transfer)
-"brq" = (
-/obj/machinery/door/poddoor/preopen{
- icon_state = "closed";
- id = "exc";
- name = "Execution Chamber"
- },
-/turf/open/floor/plating{
- tag = "icon-warnplate (NORTH)";
- icon_state = "warnplate";
- dir = 1
- },
-/area/security/transfer)
-"brr" = (
-/obj/machinery/door/poddoor/preopen{
- icon_state = "closed";
- id = "exc";
- name = "Execution Chamber"
- },
-/turf/open/floor/plating{
- icon_state = "warnplatecorner";
- dir = 4
- },
-/area/security/transfer)
-"brs" = (
-/obj/structure/cable{
- tag = "icon-1-2";
- icon_state = "1-2"
- },
-/obj/machinery/light{
- icon_state = "tube1";
- dir = 4
- },
-/turf/open/floor/plasteel/darkred/corner,
-/area/security/transfer)
-"brt" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/camera/autoname{
- tag = "icon-camera (SOUTHWEST)";
- icon_state = "camera";
- dir = 10
- },
-/turf/open/floor/plasteel/white,
-/area/medical/patients_rooms)
-"bru" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 9
- },
-/obj/structure/chair/office/light{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/medical/patients_rooms)
-"brv" = (
-/obj/structure/closet/crate/medical,
-/turf/open/floor/plating{
- icon_state = "floorgrime"
- },
-/area/medical/medbay3)
-"brw" = (
-/obj/structure/window/reinforced{
- dir = 8;
- pixel_x = 0
- },
-/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
- },
-/obj/machinery/door/window/northright{
- name = "Medbay Delivery";
- req_access_txt = "5"
- },
-/turf/open/floor/plasteel/delivery,
-/area/medical/medbay3)
-"brx" = (
-/obj/structure/closet/crate,
-/obj/item/surgicaldrill,
-/obj/item/circular_saw,
-/obj/item/retractor,
-/obj/item/scalpel,
-/obj/item/hemostat,
-/obj/item/cautery,
-/obj/item/surgical_drapes,
-/turf/open/floor/plating{
- icon_state = "floorgrime"
- },
-/area/medical/medbay3)
-"bry" = (
-/obj/machinery/reagentgrinder,
-/obj/structure/table,
-/turf/open/floor/plating{
- icon_state = "floorgrime"
- },
-/area/medical/medbay3)
-"brz" = (
-/obj/item/storage/firstaid/regular{
- pixel_x = 3;
- pixel_y = -3
- },
-/obj/item/storage/firstaid/toxin{
- pixel_x = 3;
- pixel_y = 3
- },
-/obj/item/storage/firstaid/toxin,
-/obj/item/storage/firstaid/toxin{
- pixel_x = -3;
- pixel_y = -3
- },
-/obj/structure/table/glass,
-/turf/open/floor/plasteel/whiteblue/side{
- tag = "icon-whiteblue (SOUTHWEST)";
- icon_state = "whiteblue";
- dir = 10
- },
-/area/medical/medbay2{
- name = "Medbay Storage"
- })
-"brA" = (
-/obj/item/storage/firstaid/regular{
- pixel_x = 3;
- pixel_y = -3
- },
-/obj/item/storage/firstaid/o2{
- pixel_x = 3;
- pixel_y = 3
- },
-/obj/item/storage/firstaid/o2,
-/obj/item/storage/firstaid/o2{
- pixel_x = -3;
- pixel_y = -3
- },
-/obj/structure/table/glass,
-/obj/machinery/camera/autoname{
- tag = "icon-camera (NORTH)";
- icon_state = "camera";
- dir = 1
- },
-/turf/open/floor/plasteel/whiteblue/side,
-/area/medical/medbay2{
- name = "Medbay Storage"
- })
-"brB" = (
-/obj/machinery/light,
-/obj/structure/closet/secure_closet/medical3,
-/turf/open/floor/plasteel/whiteblue/side,
-/area/medical/medbay2{
- name = "Medbay Storage"
- })
-"brC" = (
-/obj/machinery/vending/medical,
-/turf/open/floor/plasteel/whiteblue/side,
-/area/medical/medbay2{
- name = "Medbay Storage"
- })
-"brD" = (
-/obj/structure/table,
-/obj/item/storage/box/masks{
- pixel_x = 3;
- pixel_y = 3
- },
-/obj/item/storage/box/gloves,
-/turf/open/floor/plasteel/whiteblue/side{
- tag = "icon-whiteblue (SOUTHEAST)";
- icon_state = "whiteblue";
- dir = 6
- },
-/area/medical/medbay2{
- name = "Medbay Storage"
- })
-"brE" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 5
- },
-/turf/open/floor/plasteel{
- icon_state = "redfull"
- },
-/area/security/checkpoint/medical)
-"brF" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 8;
- name = "regular air scrubber";
- on = 1;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel{
- icon_state = "redfull"
- },
-/area/security/checkpoint/medical)
-"brG" = (
-/obj/effect/landmark/start/depsec/medical,
-/turf/open/floor/plasteel{
- icon_state = "redfull"
- },
-/area/security/checkpoint/medical)
-"brH" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- tag = "icon-vent_map (NORTH)";
- name = "regular air vent";
- icon_state = "vent_map";
- dir = 1;
- on = 1
- },
-/obj/structure/chair/office/dark{
- dir = 1
- },
-/turf/open/floor/plasteel{
- icon_state = "redfull"
- },
-/area/security/checkpoint/medical)
-"brI" = (
-/obj/structure/closet/secure_closet/security/med,
-/turf/open/floor/plasteel{
- icon_state = "redfull"
- },
-/area/security/checkpoint/medical)
-"brJ" = (
-/obj/machinery/computer/med_data,
-/turf/open/floor/plasteel/whiteblue/side{
- tag = "icon-whiteblue (WEST)";
- icon_state = "whiteblue";
- dir = 8
- },
-/area/medical/medbay)
-"brK" = (
-/obj/structure/chair/office/dark{
- dir = 4
- },
-/obj/machinery/button/door{
- desc = "A remote control switch for the medbay foyer.";
- id = "MedbayFoyer";
- name = "Medbay Doors Control";
- normaldoorcontrol = 1;
- pixel_x = 24;
- pixel_y = 24
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 5
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay)
-"brL" = (
-/obj/structure/table/reinforced,
-/obj/machinery/door/firedoor/border_only{
- tag = "icon-door_open (EAST)";
- icon_state = "door_open";
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay)
-"brM" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 1
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay)
-"brN" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay)
-"brO" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/whiteblue/side{
- tag = "icon-whiteblue (EAST)";
- icon_state = "whiteblue";
- dir = 4
- },
-/area/medical/medbay)
-"brP" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/door/firedoor,
-/turf/open/floor/plasteel/whiteblue,
-/area/medical/medbay)
-"brQ" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/port)
-"brR" = (
-/obj/machinery/light{
- icon_state = "tube1";
- dir = 8
- },
-/obj/machinery/holopad,
-/turf/open/floor/carpet,
-/area/bridge/meeting_room)
-"brS" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/table/wood,
-/obj/item/folder/blue,
-/obj/item/pen/blue,
-/turf/open/floor/carpet,
-/area/bridge/meeting_room)
-"brT" = (
-/obj/structure/chair/comfy/black{
- dir = 8
- },
-/turf/open/floor/carpet{
- icon_state = "carpetsymbol"
- },
-/area/bridge/meeting_room)
-"brU" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 4;
- name = "regular air scrubber";
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/turf/open/floor/wood,
-/area/bridge/meeting_room)
-"brV" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 9
- },
-/obj/machinery/light{
- dir = 4
- },
-/obj/structure/table/wood,
-/obj/item/paper_bin,
-/turf/open/floor/wood,
-/area/bridge/meeting_room)
-"brW" = (
-/obj/structure/grille,
-/turf/open/floor/plating,
-/area/ai_monitored/turret_protected/aisat{
- name = "AI Maintenance"
- })
-"brX" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 8
- },
-/obj/machinery/porta_turret/ai{
- dir = 4
- },
-/turf/open/floor/circuit{
- icon_state = "gcircuit";
- luminosity = 2
- },
-/area/ai_monitored/turret_protected/ai_upload)
-"brY" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/black,
-/area/ai_monitored/turret_protected/ai_upload)
-"brZ" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/machinery/airalarm{
- frequency = 1439;
- locked = 0;
- pixel_y = 23
- },
-/turf/open/floor/plasteel/black,
-/area/ai_monitored/turret_protected/ai_upload)
-"bsa" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/circuit{
- icon_state = "gcircuit";
- luminosity = 2
- },
-/area/ai_monitored/turret_protected/ai_upload)
-"bsb" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/machinery/camera/motion,
-/turf/open/floor/plasteel/black,
-/area/ai_monitored/turret_protected/ai_upload)
-"bsc" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/machinery/porta_turret/ai{
- dir = 4
- },
-/turf/open/floor/circuit{
- icon_state = "gcircuit";
- luminosity = 2
- },
-/area/ai_monitored/turret_protected/ai_upload)
-"bsd" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/closed/wall/r_wall,
-/area/ai_monitored/turret_protected/ai_upload)
-"bse" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/structure/grille,
-/turf/open/floor/plating,
-/area/ai_monitored/turret_protected/aisat{
- name = "AI Maintenance"
- })
-"bsf" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/ai_monitored/turret_protected/aisat{
- name = "AI Maintenance"
- })
-"bsg" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/machinery/door/airlock/maintenance{
- name = "Captain's Office Maintenance";
- req_access_txt = "20"
- },
-/turf/open/floor/plating,
-/area/ai_monitored/turret_protected/aisat{
- name = "AI Maintenance"
- })
-"bsh" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/wood,
-/area/crew_quarters/captain)
-"bsi" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/mob/living/simple_animal/pet/fox/Renault,
-/turf/open/floor/wood,
-/area/crew_quarters/captain)
-"bsj" = (
-/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/wood,
-/area/crew_quarters/captain)
-"bsk" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/structure/table/wood,
-/obj/machinery/recharger,
-/obj/item/hand_tele,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/turf/open/floor/wood,
-/area/crew_quarters/captain)
-"bsl" = (
-/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,
-/turf/open/floor/wood,
-/area/crew_quarters/captain)
-"bsm" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 8;
- name = "regular air scrubber";
- on = 1;
- scrub_Toxins = 0
- },
-/obj/machinery/light{
- dir = 4
- },
-/turf/open/floor/wood,
-/area/crew_quarters/captain)
-"bsn" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/door/firedoor,
-/turf/open/floor/plating,
-/area/quartermaster/office)
-"bso" = (
-/obj/structure/chair{
- dir = 1
- },
-/turf/open/floor/plasteel/brown{
- tag = "icon-brown (SOUTHWEST)";
- icon_state = "brown";
- dir = 10
- },
-/area/quartermaster/office)
-"bsp" = (
-/obj/machinery/light,
-/obj/structure/chair{
- dir = 1
- },
-/turf/open/floor/plasteel/brown/corner{
- dir = 8
- },
-/area/quartermaster/office)
-"bsq" = (
-/obj/machinery/camera/autoname{
- tag = "icon-camera (NORTH)";
- icon_state = "camera";
- dir = 1
- },
-/turf/open/floor/plasteel{
- icon_state = "bot"
- },
-/area/quartermaster/office)
-"bsr" = (
-/obj/machinery/firealarm{
- dir = 1;
- pixel_y = -24
- },
-/turf/open/floor/plasteel{
- icon_state = "bot"
- },
-/area/quartermaster/office)
-"bss" = (
-/obj/structure/closet/crate{
- icon_state = "crateopen";
- opened = 1
- },
-/turf/open/floor/plasteel{
- icon_state = "bot"
- },
-/area/quartermaster/office)
-"bst" = (
-/obj/machinery/light,
-/turf/open/floor/plasteel/brown/corner,
-/area/quartermaster/office)
-"bsu" = (
-/obj/structure/cable{
- tag = "icon-1-4";
- icon_state = "1-4"
- },
-/turf/open/floor/plasteel/brown{
- tag = "icon-brown (SOUTHEAST)";
- icon_state = "brown";
- dir = 6
- },
-/area/quartermaster/office)
-"bsv" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/door/airlock/glass_mining{
- name = "Cargo Office";
- req_access_txt = "50"
- },
-/turf/open/floor/plasteel/delivery,
-/area/quartermaster/office)
-"bsw" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/brown{
- tag = "icon-brown (SOUTHWEST)";
- icon_state = "brown";
- dir = 10
- },
-/area/quartermaster/office)
-"bsx" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/brown,
-/area/quartermaster/office)
-"bsy" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/light,
-/obj/structure/cable{
- tag = "icon-1-8";
- icon_state = "1-8"
- },
-/turf/open/floor/plasteel/brown,
-/area/quartermaster/office)
-"bsz" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/firealarm{
- dir = 1;
- pixel_y = -24
- },
-/turf/open/floor/plasteel/brown,
-/area/quartermaster/office)
-"bsA" = (
-/obj/machinery/power/apc{
- dir = 2;
- name = "Cargo Office APC";
- pixel_x = 1;
- pixel_y = -24
- },
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/turf/open/floor/plasteel/brown,
-/area/quartermaster/office)
-"bsB" = (
-/turf/open/floor/plasteel/brown,
-/area/quartermaster/office)
-"bsC" = (
-/obj/machinery/light,
-/turf/open/floor/plasteel/brown,
-/area/quartermaster/office)
-"bsD" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/brown,
-/area/quartermaster/office)
-"bsE" = (
-/obj/machinery/camera/autoname{
- tag = "icon-camera (NORTH)";
- icon_state = "camera";
- dir = 1
- },
-/turf/open/floor/plasteel/brown,
-/area/quartermaster/office)
-"bsF" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/brown{
- tag = "icon-brown (SOUTHEAST)";
- icon_state = "brown";
- dir = 6
- },
-/area/quartermaster/office)
-"bsG" = (
-/obj/structure/closet/wardrobe/cargotech,
-/obj/machinery/camera/autoname{
- tag = "icon-camera (NORTHEAST)";
- icon_state = "camera";
- dir = 5
- },
-/turf/open/floor/plasteel/brown{
- tag = "icon-brown (WEST)";
- icon_state = "brown";
- dir = 8
- },
-/area/quartermaster/storage)
-"bsH" = (
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plasteel,
-/area/quartermaster/storage)
-"bsI" = (
-/obj/machinery/status_display{
- density = 0;
- name = "cargo display";
- pixel_x = 32;
- pixel_y = 0;
- supply_display = 1
- },
-/turf/open/floor/plasteel/brown{
- tag = "icon-brown (EAST)";
- icon_state = "brown";
- dir = 4
- },
-/area/quartermaster/storage)
-"bsJ" = (
-/turf/closed/wall,
-/area/maintenance/asmaint2)
-"bsK" = (
-/obj/structure/cable{
- tag = "icon-1-4";
- icon_state = "1-4"
- },
-/turf/open/floor/plasteel/darkred/side{
- tag = "icon-darkred (SOUTHWEST)";
- icon_state = "darkred";
- dir = 10
- },
-/area/security/transfer)
-"bsL" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/darkred/side,
-/area/security/transfer)
-"bsM" = (
-/obj/structure/cable{
- tag = "icon-2-8";
- icon_state = "2-8"
- },
-/obj/structure/cable{
- icon_state = "2-4";
- tag = "icon-2-8"
- },
-/turf/open/floor/plasteel/darkred/side,
-/area/security/transfer)
-"bsN" = (
-/obj/structure/cable{
- tag = "icon-1-8";
- icon_state = "1-8"
- },
-/obj/machinery/button/door{
- dir = 4;
- id = "exc";
- name = "Execution Chamber";
- pixel_x = 24
- },
-/turf/open/floor/plasteel/darkred/side{
- tag = "icon-darkred (SOUTHEAST)";
- icon_state = "darkred";
- dir = 6
- },
-/area/security/transfer)
-"bsO" = (
-/obj/effect/decal/remains/human,
-/turf/open/floor/plasteel{
- icon_plating = "asteroid";
- icon_state = "asteroid";
- name = "Asteroid"
- },
-/area/ruin/unpowered{
- name = "Asteroid"
- })
-"bsP" = (
-/obj/structure/cable{
- tag = "icon-1-2";
- icon_state = "1-2"
- },
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/maintenance{
- name = "Medbay Maintenance";
- req_access_txt = "5"
- },
-/turf/open/floor/plating,
-/area/medical/patients_rooms)
-"bsQ" = (
-/obj/machinery/navbeacon{
- codes_txt = "delivery;dir=4";
- freq = 1400;
- location = "Medbay"
- },
-/obj/structure/plasticflaps{
- opacity = 1
- },
-/obj/machinery/door/firedoor/heavy,
-/turf/open/floor/plasteel{
- icon_state = "bot"
- },
-/area/medical/medbay3)
-"bsR" = (
-/obj/machinery/airalarm{
- dir = 1;
- icon_state = "alarm0";
- pixel_y = -22
- },
-/obj/structure/table,
-/obj/machinery/recharger,
-/turf/open/floor/plasteel{
- icon_state = "redfull"
- },
-/area/security/checkpoint/medical)
-"bsS" = (
-/obj/structure/reagent_dispensers/peppertank{
- pixel_y = -28
- },
-/turf/open/floor/plasteel{
- icon_state = "redfull"
- },
-/area/security/checkpoint/medical)
-"bsT" = (
-/obj/machinery/light,
-/turf/open/floor/plasteel{
- icon_state = "redfull"
- },
-/area/security/checkpoint/medical)
-"bsU" = (
-/obj/machinery/firealarm{
- dir = 1;
- pixel_y = -24
- },
-/turf/open/floor/plasteel{
- icon_state = "redfull"
- },
-/area/security/checkpoint/medical)
-"bsV" = (
-/obj/structure/closet/wardrobe/red,
-/turf/open/floor/plasteel{
- icon_state = "redfull"
- },
-/area/security/checkpoint/medical)
-"bsW" = (
-/obj/machinery/computer/crew,
-/turf/open/floor/plasteel/whiteblue/side{
- tag = "icon-whiteblue (SOUTHWEST)";
- icon_state = "whiteblue";
- dir = 10
- },
-/area/medical/medbay)
-"bsX" = (
-/obj/structure/table/reinforced,
-/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
- },
-/obj/item/clipboard,
-/obj/item/folder/white,
-/obj/item/pen/blue,
-/obj/machinery/door/firedoor/border_only{
- tag = "icon-door_open (EAST)";
- icon_state = "door_open";
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay)
-"bsY" = (
-/turf/open/floor/plasteel/whiteblue/side{
- tag = "icon-whiteblue (EAST)";
- icon_state = "whiteblue";
- dir = 4
- },
-/area/medical/medbay)
-"bsZ" = (
-/obj/machinery/door/firedoor,
-/turf/open/floor/plasteel/whiteblue,
-/area/medical/medbay)
-"bta" = (
-/obj/effect/landmark/event_spawn,
-/obj/structure/flora/grass/green,
-/turf/open/floor/grass,
-/area/hallway/primary/port)
-"btb" = (
-/mob/living/simple_animal/chicken,
-/turf/open/floor/grass,
-/area/hallway/primary/port)
-"btc" = (
-/obj/structure/table/wood,
-/obj/item/folder,
-/obj/item/pen,
-/obj/machinery/camera/autoname{
- tag = "icon-camera (EAST)";
- icon_state = "camera";
- dir = 4
- },
-/turf/open/floor/carpet,
-/area/bridge/meeting_room)
-"btd" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/table/wood,
-/obj/item/folder/yellow,
-/obj/item/pen,
-/turf/open/floor/carpet,
-/area/bridge/meeting_room)
-"bte" = (
-/obj/machinery/firealarm{
- dir = 1;
- pixel_x = 0;
- pixel_y = -26
- },
-/turf/open/floor/wood,
-/area/bridge/meeting_room)
-"btf" = (
-/obj/machinery/photocopier,
-/obj/structure/noticeboard{
- dir = 8;
- pixel_x = 27;
- pixel_y = 0
- },
-/turf/open/floor/wood,
-/area/bridge/meeting_room)
-"btg" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/black,
-/area/ai_monitored/turret_protected/ai_upload)
-"bth" = (
-/obj/structure/table,
-/obj/item/aiModule/core/full/asimov,
-/obj/item/aiModule/core/freeformcore,
-/obj/machinery/door/window{
- base_state = "right";
- dir = 4;
- icon_state = "right";
- name = "Core Modules";
- req_access_txt = "20"
- },
-/obj/structure/window/reinforced,
-/obj/item/aiModule/core/full/corp,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/item/aiModule/core/full/custom,
-/turf/open/floor/plasteel/blue,
-/area/ai_monitored/turret_protected/ai_upload)
-"bti" = (
-/turf/open/floor/plasteel/blue,
-/area/ai_monitored/turret_protected/ai_upload)
-"btj" = (
-/mob/living/simple_animal/bot/secbot/beepsky,
-/turf/open/floor/circuit{
- icon_state = "gcircuit";
- luminosity = 2
- },
-/area/ai_monitored/turret_protected/ai_upload)
-"btk" = (
-/obj/structure/table,
-/obj/item/aiModule/supplied/oxygen,
-/obj/item/aiModule/zeroth/oneHuman,
-/obj/machinery/door/window{
- base_state = "left";
- dir = 8;
- icon_state = "left";
- name = "High-Risk Modules";
- req_access_txt = "20"
- },
-/obj/item/aiModule/reset/purge,
-/obj/structure/window/reinforced,
-/obj/item/aiModule/core/full/antimov,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/item/aiModule/supplied/protectStation,
-/turf/open/floor/plasteel/blue,
-/area/ai_monitored/turret_protected/ai_upload)
-"btl" = (
-/turf/open/floor/plasteel/black,
-/area/ai_monitored/turret_protected/ai_upload)
-"btm" = (
-/obj/machinery/airalarm{
- dir = 1;
- icon_state = "alarm0";
- pixel_y = -22
- },
-/obj/structure/table/wood,
-/obj/item/storage/lockbox/medal,
-/turf/open/floor/wood,
-/area/crew_quarters/captain)
-"btn" = (
-/obj/structure/table/wood,
-/obj/item/pinpointer,
-/obj/item/disk/nuclear,
-/turf/open/floor/wood,
-/area/crew_quarters/captain)
-"bto" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4";
- tag = "90Curve"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/wood,
-/area/crew_quarters/captain{
- name = "\improper Captain's Quarters"
- })
-"btp" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/firealarm{
- dir = 1;
- pixel_x = 0;
- pixel_y = -26
- },
-/turf/open/floor/wood,
-/area/crew_quarters/captain)
-"btq" = (
-/obj/structure/cable{
- tag = "icon-2-8";
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/wood,
-/area/crew_quarters/captain)
-"btr" = (
-/obj/structure/disposalpipe/trunk{
- dir = 4
- },
-/obj/machinery/disposal/bin,
-/obj/machinery/camera/autoname{
- tag = "icon-camera (NORTHWEST)";
- icon_state = "camera";
- dir = 9
- },
-/turf/open/floor/wood,
-/area/crew_quarters/captain)
-"bts" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/closed/wall/r_wall,
-/area/crew_quarters/captain)
-"btt" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/closed/wall/r_wall,
-/area/hallway/primary/starboard)
-"btu" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/flora/grass/green,
-/turf/open/floor/grass,
-/area/hallway/primary/starboard)
-"btv" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/landmark/event_spawn,
-/obj/structure/flora/grass/green,
-/turf/open/floor/grass,
-/area/hallway/primary/starboard)
-"btw" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/grass,
-/area/hallway/primary/starboard)
-"btx" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/door/firedoor/heavy,
-/obj/machinery/door/airlock/glass{
- name = "Grass Enclosure";
- req_access_txt = "12"
- },
-/turf/open/floor/plasteel/green,
-/area/hallway/primary/starboard)
-"bty" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/starboard)
-"btz" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/junction{
- icon_state = "pipe-j2";
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/starboard)
-"btA" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/light{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/starboard)
-"btB" = (
-/turf/closed/wall,
-/area/security/checkpoint/supply)
-"btC" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/closed/wall,
-/area/security/checkpoint/supply)
-"btD" = (
-/obj/machinery/door/airlock/glass_security{
- name = "Security Post - Cargo";
- req_access_txt = "63"
- },
-/turf/open/floor/plasteel{
- icon_state = "redfull"
- },
-/area/security/checkpoint/supply)
-"btE" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/quartermaster/qm)
-"btF" = (
-/turf/closed/wall,
-/area/quartermaster/qm)
-"btG" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/door/airlock/glass_mining{
- name = "Quartermaster";
- req_access_txt = "41"
- },
-/turf/open/floor/plasteel/delivery,
-/area/quartermaster/qm)
-"btH" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plating,
-/area/quartermaster/qm)
-"btI" = (
-/obj/machinery/light{
- icon_state = "tube1";
- dir = 8
- },
-/obj/structure/closet/wardrobe/cargotech,
-/turf/open/floor/plasteel/brown{
- tag = "icon-brown (WEST)";
- icon_state = "brown";
- dir = 8
- },
-/area/quartermaster/storage)
-"btJ" = (
-/obj/structure/table,
-/obj/item/device/gps,
-/turf/open/floor/plasteel/brown{
- tag = "icon-brown (EAST)";
- icon_state = "brown";
- dir = 4
- },
-/area/quartermaster/storage)
-"btK" = (
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/rack,
-/obj/item/storage/box/mousetraps,
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"btL" = (
-/turf/open/space,
-/area/ruin/unpowered{
- name = "Asteroid"
- })
-"btM" = (
-/turf/open/floor/mineral/titanium/blue,
-/turf/closed/wall/mineral/titanium/interior,
-/area/shuttle/supply)
-"btN" = (
-/obj/structure/closet/secure_closet{
- name = "Firing Squad Locker";
- req_access_txt = "2"
- },
-/obj/item/ammo_casing/a762,
-/obj/item/ammo_casing/a762,
-/obj/item/ammo_casing/a762,
-/obj/item/ammo_casing/a762,
-/obj/item/ammo_casing/a762,
-/obj/item/ammo_casing/a762,
-/obj/item/ammo_casing/a762,
-/obj/item/ammo_casing/a762,
-/obj/item/gun/ballistic/shotgun/boltaction,
-/turf/open/floor/plasteel/darkred,
-/area/security/transfer)
-"btO" = (
-/obj/structure/table/reinforced,
-/obj/item/device/electropack,
-/obj/item/wrench,
-/obj/item/device/assembly/signaler,
-/turf/open/floor/plasteel/darkred,
-/area/security/transfer)
-"btP" = (
-/obj/structure/rack,
-/obj/item/tank/internals/anesthetic,
-/obj/item/clothing/mask/breath,
-/turf/open/floor/plasteel/darkred,
-/area/security/transfer)
-"btQ" = (
-/obj/structure/cable{
- tag = "icon-1-2";
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/darkred,
-/area/security/transfer)
-"btR" = (
-/obj/structure/table/reinforced,
-/obj/item/device/taperecorder,
-/obj/item/restraints/handcuffs,
-/turf/open/floor/plasteel/darkred,
-/area/security/transfer)
-"btS" = (
-/obj/structure/table/reinforced,
-/obj/item/storage/box/bodybags,
-/obj/item/pen,
-/turf/open/floor/plasteel/darkred,
-/area/security/transfer)
-"btT" = (
-/obj/structure/closet/secure_closet/injection,
-/turf/open/floor/plasteel/darkred,
-/area/security/transfer)
-"btU" = (
-/obj/item/restraints/handcuffs/cable/zipties/used,
-/turf/open/floor/plasteel{
- icon_plating = "asteroid";
- icon_state = "asteroid";
- name = "Asteroid"
- },
-/area/ruin/unpowered{
- name = "Asteroid"
- })
-"btV" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4";
- tag = ""
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating,
-/area/maintenance/port)
-"btW" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0;
- tag = ""
- },
-/obj/machinery/door/airlock/maintenance_hatch,
-/obj/structure/cable{
- tag = "icon-2-8";
- icon_state = "2-8"
- },
-/turf/open/floor/plating,
-/area/maintenance/port)
-"btX" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0;
- tag = ""
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4";
- tag = "90Curve"
- },
-/turf/open/floor/plating,
-/area/maintenance/port)
-"btY" = (
-/obj/structure/cable{
- tag = "icon-2-8";
- icon_state = "2-8"
- },
-/turf/open/floor/plating,
-/area/maintenance/port)
-"btZ" = (
-/obj/machinery/light/small{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/maintenance/port)
-"bua" = (
-/obj/machinery/power/apc{
- dir = 1;
- name = "Medbay Storage APC";
- pixel_y = 24
- },
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
- },
-/turf/open/floor/plating,
-/area/medical/medbay2{
- name = "Medbay Storage"
- })
-"bub" = (
-/obj/machinery/power/apc{
- dir = 4;
- name = "Medbay Security APC";
- pixel_x = 24
- },
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
- },
-/turf/open/floor/plating,
-/area/security/checkpoint/medical)
-"buc" = (
-/obj/machinery/vending/wallmed{
- pixel_x = -24
- },
-/obj/structure/rack,
-/obj/item/storage/firstaid/regular,
-/turf/open/floor/plasteel/whiteblue/side{
- tag = "icon-whiteblue (WEST)";
- icon_state = "whiteblue";
- dir = 8
- },
-/area/medical/medbay)
-"bud" = (
-/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
- },
-/obj/structure/table/reinforced,
-/obj/machinery/door/firedoor/border_only{
- tag = "icon-door_open (EAST)";
- icon_state = "door_open";
- dir = 4
- },
-/obj/item/paper_bin,
-/turf/open/floor/plasteel/white,
-/area/medical/medbay)
-"bue" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- tag = "icon-vent_map (NORTH)";
- name = "regular air vent";
- icon_state = "vent_map";
- dir = 1;
- on = 1
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay)
-"buf" = (
-/obj/machinery/shower{
- dir = 8;
- icon_state = "shower";
- name = "emergency shower"
- },
-/turf/open/floor/plasteel/delivery,
-/area/medical/medbay)
-"bug" = (
-/obj/structure/chair/comfy/black{
- dir = 1
- },
-/turf/open/floor/carpet{
- icon_state = "carpetsymbol"
- },
-/area/bridge/meeting_room)
-"buh" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/chair/comfy/black{
- dir = 1
- },
-/turf/open/floor/carpet{
- icon_state = "carpetsymbol"
- },
-/area/bridge/meeting_room)
-"bui" = (
-/turf/open/floor/carpet{
- icon_state = "carpetsymbol"
- },
-/area/bridge/meeting_room)
-"buj" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 8
- },
-/obj/machinery/light{
- dir = 8
- },
-/turf/open/floor/plasteel/black,
-/area/ai_monitored/turret_protected/ai_upload)
-"buk" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 8;
- name = "regular air scrubber";
- on = 1;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel/blue,
-/area/ai_monitored/turret_protected/ai_upload)
-"bul" = (
-/obj/effect/landmark/start{
- name = "Cyborg"
- },
-/turf/open/floor/circuit{
- icon_state = "gcircuit";
- luminosity = 2
- },
-/area/ai_monitored/turret_protected/ai_upload)
-"bum" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 4;
- name = "regular air vent";
- on = 1
- },
-/turf/open/floor/plasteel/blue,
-/area/ai_monitored/turret_protected/ai_upload)
-"bun" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 10
- },
-/obj/machinery/light{
- dir = 4
- },
-/turf/open/floor/plasteel/black,
-/area/ai_monitored/turret_protected/ai_upload)
-"buo" = (
-/turf/closed/wall/r_wall,
-/area/crew_quarters/captain{
- name = "\improper Captain's Quarters"
- })
-"bup" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/closed/wall/r_wall,
-/area/crew_quarters/captain{
- name = "\improper Captain's Quarters"
- })
-"buq" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/door/airlock/command{
- name = "Captain's Quarters";
- req_access = null;
- req_access_txt = "20"
- },
-/turf/open/floor/wood,
-/area/crew_quarters/captain{
- name = "\improper Captain's Quarters"
- })
-"bur" = (
-/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,
-/turf/open/floor/plasteel,
-/area/hallway/primary/starboard)
-"bus" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/primary/starboard)
-"but" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/door/airlock/maintenance{
- req_access_txt = "12"
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"buu" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"buv" = (
-/obj/structure/cable{
- tag = "icon-2-8";
- icon_state = "2-8"
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"buw" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/closet/secure_closet/security/cargo,
-/obj/item/device/radio/intercom{
- name = "Station Intercom";
- pixel_x = 0;
- pixel_y = 24
- },
-/turf/open/floor/plasteel{
- icon_state = "redfull"
- },
-/area/security/checkpoint/supply)
-"bux" = (
-/turf/open/floor/plasteel{
- icon_state = "redfull"
- },
-/area/security/checkpoint/supply)
-"buy" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 6
- },
-/obj/machinery/computer/security,
-/turf/open/floor/plasteel{
- icon_state = "redfull"
- },
-/area/security/checkpoint/supply)
-"buz" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/security/checkpoint/supply)
-"buA" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/structure/table,
-/obj/structure/table,
-/obj/machinery/computer/stockexchange,
-/turf/open/floor/plasteel/brown{
- tag = "icon-brown (NORTHWEST)";
- icon_state = "brown";
- dir = 9
- },
-/area/quartermaster/qm)
-"buB" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/brown{
- tag = "icon-brown (NORTH)";
- icon_state = "brown";
- dir = 1
- },
-/area/quartermaster/qm)
-"buC" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/brown{
- tag = "icon-brown (NORTH)";
- icon_state = "brown";
- dir = 1
- },
-/area/quartermaster/qm)
-"buD" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/item/device/radio/intercom{
- name = "Station Intercom";
- pixel_x = 0;
- pixel_y = 24
- },
-/turf/open/floor/plasteel/brown{
- tag = "icon-brown (NORTH)";
- icon_state = "brown";
- dir = 1
- },
-/area/quartermaster/qm)
-"buE" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 4;
- initialize_directions = 11
- },
-/obj/structure/closet/secure_closet/quartermaster,
-/turf/open/floor/plasteel/brown{
- tag = "icon-brown (NORTHEAST)";
- icon_state = "brown";
- dir = 5
- },
-/area/quartermaster/qm)
-"buF" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 4;
- name = "regular air vent";
- on = 1
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/storage)
-"buG" = (
-/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/quartermaster/storage)
-"buH" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 5
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/storage)
-"buI" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/storage)
-"buJ" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 8;
- name = "regular air scrubber";
- on = 1;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/storage)
-"buK" = (
-/obj/structure/table,
-/obj/machinery/camera/autoname{
- tag = "icon-camera (NORTHWEST)";
- icon_state = "camera";
- dir = 9
- },
-/turf/open/floor/plasteel/brown{
- tag = "icon-brown (EAST)";
- icon_state = "brown";
- dir = 4
- },
-/area/quartermaster/storage)
-"buL" = (
-/obj/structure/window/reinforced{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"buM" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/shuttle/engine/heater,
-/turf/open/floor/plating/airless,
-/area/shuttle/supply)
-"buN" = (
-/turf/closed/wall/r_wall,
-/area/ruin/unpowered{
- name = "Asteroid"
- })
-"buO" = (
-/turf/closed/wall,
-/area/security/transfer)
-"buP" = (
-/obj/structure/cable{
- tag = "icon-1-2";
- icon_state = "1-2"
- },
-/obj/machinery/door/firedoor/heavy,
-/obj/machinery/door/airlock/security{
- aiControlDisabled = 1;
- id_tag = "prisonereducation";
- name = "Prisoner Education Chamber";
- req_access = null;
- req_access_txt = "3"
- },
-/turf/open/floor/plasteel/darkred,
-/area/security/transfer)
-"buQ" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/closed/wall/r_wall,
-/area/security/transfer)
-"buR" = (
-/obj/structure/cable{
- tag = "icon-1-2";
- icon_state = "1-2"
- },
-/obj/structure/cable{
- tag = "icon-1-4";
- icon_state = "1-4"
- },
-/turf/open/floor/plating,
-/area/maintenance/port)
-"buS" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/cable{
- tag = "icon-1-4";
- icon_state = "1-4"
- },
-/turf/open/floor/plating,
-/area/maintenance/port)
-"buT" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/turf/open/floor/plating,
-/area/maintenance/port)
-"buU" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/maintenance{
- name = "Medbay Maintenance";
- req_access_txt = "5"
- },
-/turf/open/floor/plating,
-/area/medical/medbay)
-"buV" = (
-/turf/open/floor/plasteel/whiteblue/side{
- tag = "icon-whiteblue (SOUTHWEST)";
- icon_state = "whiteblue";
- dir = 10
- },
-/area/medical/medbay)
-"buW" = (
-/turf/open/floor/plasteel/whiteblue/side,
-/area/medical/medbay)
-"buX" = (
-/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
- },
-/obj/structure/table/reinforced,
-/obj/item/device/healthanalyzer,
-/obj/item/device/healthanalyzer,
-/obj/machinery/door/firedoor/border_only{
- tag = "icon-door_open (EAST)";
- icon_state = "door_open";
- dir = 4
- },
-/turf/open/floor/plasteel/whiteblue/side,
-/area/medical/medbay)
-"buY" = (
-/obj/structure/closet/emcloset,
-/turf/open/floor/plasteel/whiteblue/side,
-/area/medical/medbay)
-"buZ" = (
-/turf/open/floor/plasteel/whiteblue/side{
- tag = "icon-whiteblue (SOUTHEAST)";
- icon_state = "whiteblue";
- dir = 6
- },
-/area/medical/medbay)
-"bva" = (
-/obj/machinery/status_display,
-/turf/closed/wall,
-/area/medical/medbay)
-"bvb" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/door/firedoor,
-/turf/open/floor/plasteel/blue/side{
- tag = "icon-blue (WEST)";
- icon_state = "blue";
- dir = 8
- },
-/area/hallway/primary/port)
-"bvc" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/door/firedoor,
-/turf/open/floor/plasteel,
-/area/hallway/primary/port)
-"bvd" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/door/firedoor,
-/turf/open/floor/plasteel/blue/side{
- tag = "icon-blue (EAST)";
- icon_state = "blue";
- dir = 4
- },
-/area/hallway/primary/port)
-"bve" = (
-/obj/structure/reagent_dispensers/water_cooler,
-/turf/open/floor/wood,
-/area/bridge/meeting_room)
-"bvf" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/wood,
-/area/bridge/meeting_room)
-"bvg" = (
-/obj/machinery/door/airlock/maintenance{
- name = "Conference Room Maintenance";
- req_access_txt = "19"
- },
-/turf/open/floor/plating,
-/area/bridge/meeting_room)
-"bvh" = (
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
- },
-/obj/machinery/power/apc{
- dir = 1;
- name = "Conference Room APC";
- pixel_x = 0;
- pixel_y = 24
- },
-/turf/open/floor/plating,
-/area/ai_monitored/turret_protected/aisat{
- name = "AI Maintenance"
- })
-"bvi" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/turf/open/floor/plating,
-/area/ai_monitored/turret_protected/aisat{
- name = "AI Maintenance"
- })
-"bvj" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/turf/open/floor/plating,
-/area/ai_monitored/turret_protected/aisat{
- name = "AI Maintenance"
- })
-"bvk" = (
-/turf/open/floor/circuit,
-/area/ai_monitored/turret_protected/ai_upload)
-"bvl" = (
-/turf/open/floor/circuit{
- icon_state = "gcircuit";
- luminosity = 2
- },
-/area/ai_monitored/turret_protected/ai_upload)
-"bvm" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/black,
-/area/ai_monitored/turret_protected/ai_upload)
-"bvn" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4";
- tag = "90Curve"
- },
-/turf/open/floor/plating,
-/area/ai_monitored/turret_protected/aisat{
- name = "AI Maintenance"
- })
-"bvo" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plating,
-/area/ai_monitored/turret_protected/aisat{
- name = "AI Maintenance"
- })
-"bvp" = (
-/obj/structure/cable{
- tag = "icon-2-8";
- icon_state = "2-8"
- },
-/turf/open/floor/plating,
-/area/ai_monitored/turret_protected/aisat{
- name = "AI Maintenance"
- })
-"bvq" = (
-/obj/machinery/power/apc{
- dir = 8;
- name = "Captain's Quarters APC";
- pixel_x = -24;
- pixel_y = 0
- },
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/dresser,
-/turf/open/floor/wood,
-/area/crew_quarters/captain{
- name = "\improper Captain's Quarters"
- })
-"bvr" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/table/wood,
-/obj/item/card/id/captains_spare,
-/obj/item/reagent_containers/food/drinks/flask/gold,
-/turf/open/floor/wood,
-/area/crew_quarters/captain{
- name = "\improper Captain's Quarters"
- })
-"bvs" = (
-/obj/structure/cable{
- tag = "icon-1-8";
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/wood,
-/area/crew_quarters/captain{
- name = "\improper Captain's Quarters"
- })
-"bvt" = (
-/obj/structure/closet/secure_closet/captains,
-/turf/open/floor/wood,
-/area/crew_quarters/captain{
- name = "\improper Captain's Quarters"
- })
-"bvu" = (
-/obj/structure/flora/grass/green,
-/mob/living/simple_animal/pet/dog/pug,
-/turf/open/floor/grass,
-/area/hallway/primary/starboard)
-"bvv" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/door/poddoor/preopen{
- id = "Biohazard";
- name = "biohazard containment door"
- },
-/obj/effect/turf_decal/delivery,
-/obj/machinery/door/firedoor,
-/turf/open/floor/plasteel,
-/area/hallway/primary/starboard)
-"bvw" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/door/poddoor/preopen{
- id = "Biohazard";
- name = "biohazard containment door"
- },
-/obj/effect/turf_decal/delivery,
-/obj/machinery/door/firedoor,
-/turf/open/floor/plasteel,
-/area/hallway/primary/starboard)
-"bvx" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/door/poddoor/preopen{
- id = "Biohazard";
- name = "biohazard containment door"
- },
-/obj/effect/turf_decal/delivery,
-/obj/machinery/door/firedoor,
-/turf/open/floor/plasteel/purple/corner,
-/area/hallway/primary/starboard)
-"bvy" = (
-/turf/closed/wall/r_wall,
-/area/toxins/lab)
-"bvz" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"bvA" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- tag = "icon-vent_map (NORTH)";
- name = "regular air vent";
- icon_state = "vent_map";
- dir = 1;
- on = 1
- },
-/obj/structure/closet,
-/turf/open/floor/plasteel{
- icon_state = "redfull"
- },
-/area/security/checkpoint/supply)
-"bvB" = (
-/obj/effect/landmark/start/depsec/supply,
-/obj/structure/chair/office/dark{
- dir = 4
- },
-/turf/open/floor/plasteel{
- icon_state = "redfull"
- },
-/area/security/checkpoint/supply)
-"bvC" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 1;
- name = "regular air scrubber";
- on = 1
- },
-/obj/machinery/computer/security/mining,
-/turf/open/floor/plasteel{
- icon_state = "redfull"
- },
-/area/security/checkpoint/supply)
-"bvD" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/security/checkpoint/supply)
-"bvE" = (
-/obj/structure/table,
-/obj/item/folder/yellow,
-/turf/open/floor/plasteel/brown{
- tag = "icon-brown (WEST)";
- icon_state = "brown";
- dir = 8
- },
-/area/quartermaster/qm)
-"bvF" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 4;
- name = "regular air vent";
- on = 1
- },
-/obj/structure/chair/office/light{
- dir = 8
- },
-/obj/effect/landmark/start{
- name = "Quartermaster"
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/qm)
-"bvG" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 9
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/qm)
-"bvH" = (
-/turf/open/floor/plasteel,
-/area/quartermaster/qm)
-"bvI" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 1;
- name = "regular air scrubber";
- on = 1
- },
-/turf/open/floor/plasteel/brown{
- tag = "icon-brown (EAST)";
- icon_state = "brown";
- dir = 4
- },
-/area/quartermaster/qm)
-"bvJ" = (
-/turf/open/floor/plasteel/brown{
- tag = "icon-brown (SOUTHWEST)";
- icon_state = "brown";
- dir = 10
- },
-/area/quartermaster/storage)
-"bvK" = (
-/turf/open/floor/plasteel/brown,
-/area/quartermaster/storage)
-"bvL" = (
-/obj/machinery/power/apc{
- dir = 2;
- name = "Cargo Bay APC";
- pixel_x = 1;
- pixel_y = -24
- },
-/obj/structure/cable,
-/turf/open/floor/plasteel/brown,
-/area/quartermaster/storage)
-"bvM" = (
-/obj/structure/closet/emcloset,
-/turf/open/floor/plasteel/brown,
-/area/quartermaster/storage)
-"bvN" = (
-/obj/machinery/light,
-/obj/structure/closet/emcloset,
-/turf/open/floor/plasteel/brown,
-/area/quartermaster/storage)
-"bvO" = (
-/obj/structure/table,
-/obj/item/clothing/gloves/color/brown/cargo,
-/turf/open/floor/plasteel/brown,
-/area/quartermaster/storage)
-"bvP" = (
-/obj/structure/table,
-/obj/item/hand_labeler,
-/obj/item/hand_labeler_refill,
-/turf/open/floor/plasteel/brown{
- tag = "icon-brown (SOUTHEAST)";
- icon_state = "brown";
- dir = 6
- },
-/area/quartermaster/storage)
-"bvQ" = (
-/obj/structure/shuttle/engine/propulsion{
- icon_state = "burst_l"
- },
-/turf/open/floor/plating/airless,
-/area/shuttle/supply)
-"bvR" = (
-/obj/structure/shuttle/engine/propulsion,
-/turf/open/floor/plating/airless,
-/area/shuttle/supply)
-"bvS" = (
-/obj/structure/shuttle/engine/propulsion{
- icon_state = "burst_r"
- },
-/turf/open/floor/plating/airless,
-/area/shuttle/supply)
-"bvT" = (
-/obj/structure/closet/secure_closet{
- anchored = 1;
- name = "Secure Evidence Closet";
- req_access_txt = "0";
- req_one_access_txt = "3,4"
- },
-/turf/open/floor/plasteel/black,
-/area/security/transfer)
-"bvU" = (
-/obj/structure/closet{
- name = "Evidence Closet 1"
- },
-/turf/open/floor/plasteel/black,
-/area/security/transfer)
-"bvV" = (
-/obj/structure/closet{
- name = "Evidence Closet 2"
- },
-/turf/open/floor/plasteel/black,
-/area/security/transfer)
-"bvW" = (
-/turf/open/floor/plasteel/darkred,
-/area/security/transfer)
-"bvX" = (
-/obj/structure/cable{
- icon_state = "2-4";
- tag = "icon-2-8"
- },
-/turf/open/floor/plasteel/darkred,
-/area/security/transfer)
-"bvY" = (
-/obj/machinery/status_display{
- density = 0;
- layer = 4;
- pixel_x = 0;
- pixel_y = 31
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/darkred,
-/area/security/transfer)
-"bvZ" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/darkred,
-/area/security/transfer)
-"bwa" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/cable{
- icon_state = "2-4";
- tag = "icon-2-8"
- },
-/obj/structure/cable{
- tag = "icon-1-4";
- icon_state = "1-4"
- },
-/turf/open/floor/plasteel/darkred,
-/area/security/transfer)
-"bwb" = (
-/obj/machinery/light{
- dir = 1
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/darkred,
-/area/security/transfer)
-"bwc" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/cable{
- icon_state = "2-4";
- tag = "icon-2-8"
- },
-/turf/open/floor/plasteel/darkred,
-/area/security/transfer)
-"bwd" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/darkred,
-/area/security/transfer)
-"bwe" = (
-/obj/machinery/camera/autoname,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/darkred,
-/area/security/transfer)
-"bwf" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 2;
- name = "regular air scrubber";
- on = 1
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/darkred,
-/area/security/transfer)
-"bwg" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- name = "regular air vent";
- on = 1
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/darkred,
-/area/security/transfer)
-"bwh" = (
-/obj/effect/landmark/event_spawn,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/darkred,
-/area/security/transfer)
-"bwi" = (
-/obj/machinery/light{
- dir = 1
- },
-/obj/structure/cable{
- tag = "icon-2-8";
- icon_state = "2-8"
- },
-/turf/open/floor/plasteel/darkred,
-/area/security/transfer)
-"bwj" = (
-/obj/structure/disposalpipe/trunk{
- dir = 4
- },
-/obj/machinery/disposal/bin,
-/turf/open/floor/plasteel/darkred,
-/area/security/transfer)
-"bwk" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/closed/wall/r_wall,
-/area/security/transfer)
-"bwl" = (
-/obj/structure/cable{
- tag = "icon-1-2";
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/turf/open/floor/plating,
-/area/maintenance/port)
-"bwm" = (
-/turf/closed/wall,
-/area/crew_quarters/courtroom)
-"bwn" = (
-/obj/machinery/door/airlock/maintenance{
- req_access_txt = "12"
- },
-/turf/open/floor/plating,
-/area/maintenance/port)
-"bwo" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/maintenance{
- req_access_txt = "12"
- },
-/turf/open/floor/plating,
-/area/maintenance/port)
-"bwp" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/redblue/blueside{
- tag = "icon-bluered (WEST)";
- icon_state = "bluered";
- dir = 8
- },
-/area/hallway/primary/port)
-"bwq" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/redblue/blueside{
- tag = "icon-bluered (EAST)";
- icon_state = "bluered";
- dir = 4
- },
-/area/hallway/primary/port)
-"bwr" = (
-/turf/closed/wall/r_wall,
-/area/security/hos)
-"bws" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/closed/wall/r_wall,
-/area/security/hos)
-"bwt" = (
-/obj/machinery/door/firedoor/heavy,
-/obj/machinery/door/airlock/command{
- name = "Head of Security's Office";
- req_access = null;
- req_access_txt = "58"
- },
-/turf/open/floor/wood,
-/area/security/hos)
-"bwu" = (
-/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/plating,
-/area/ai_monitored/turret_protected/aisat{
- name = "AI Maintenance"
- })
-"bwv" = (
-/obj/structure/cable{
- tag = "icon-1-8";
- icon_state = "1-8"
- },
-/turf/open/floor/plating,
-/area/ai_monitored/turret_protected/aisat{
- name = "AI Maintenance"
- })
-"bww" = (
-/turf/open/floor/plating,
-/area/ai_monitored/turret_protected/aisat{
- name = "AI Maintenance"
- })
-"bwx" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/computer/upload/ai,
-/turf/open/floor/plasteel/black,
-/area/ai_monitored/turret_protected/ai_upload)
-"bwy" = (
-/obj/structure/table,
-/obj/item/aiModule/core/full/asimov,
-/turf/open/floor/plasteel/blue,
-/area/ai_monitored/turret_protected/ai_upload)
-"bwz" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/turf/open/floor/circuit{
- icon_state = "gcircuit";
- luminosity = 2
- },
-/area/ai_monitored/turret_protected/ai_upload)
-"bwA" = (
-/obj/machinery/power/apc{
- cell_type = 5000;
- dir = 2;
- name = "Upload APC";
- pixel_y = -24
- },
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/turf/open/floor/plasteel/black,
-/area/ai_monitored/turret_protected/ai_upload)
-"bwB" = (
-/obj/structure/table,
-/obj/item/aiModule/core/freeformcore,
-/obj/item/aiModule/reset,
-/turf/open/floor/plasteel/blue,
-/area/ai_monitored/turret_protected/ai_upload)
-"bwC" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/computer/upload/borg,
-/turf/open/floor/plasteel/black,
-/area/ai_monitored/turret_protected/ai_upload)
-"bwD" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- tag = "icon-vent_map (NORTH)";
- name = "regular air vent";
- icon_state = "vent_map";
- dir = 1;
- on = 1
- },
-/obj/structure/bed,
-/obj/item/bedsheet/captain,
-/turf/open/floor/wood,
-/area/crew_quarters/captain{
- name = "\improper Captain's Quarters"
- })
-"bwE" = (
-/obj/machinery/light,
-/turf/open/floor/wood,
-/area/crew_quarters/captain{
- name = "\improper Captain's Quarters"
- })
-"bwF" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 1;
- name = "regular air scrubber";
- on = 1
- },
-/turf/open/floor/wood,
-/area/crew_quarters/captain{
- name = "\improper Captain's Quarters"
- })
-"bwG" = (
-/obj/item/device/radio/intercom{
- desc = "Talk smack through this.";
- dir = 4;
- pixel_x = 28;
- syndie = 1
- },
-/turf/open/floor/wood,
-/area/crew_quarters/captain{
- name = "\improper Captain's Quarters"
- })
-"bwH" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/purple/corner{
- tag = "icon-purplecorner (EAST)";
- icon_state = "purplecorner";
- dir = 4
- },
-/area/hallway/primary/starboard)
-"bwI" = (
-/turf/open/floor/plasteel/purple/side{
- tag = "icon-purple (NORTHEAST)";
- icon_state = "purple";
- dir = 5
- },
-/area/hallway/primary/starboard)
-"bwJ" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "rnd";
- name = "research lab shutters"
- },
-/turf/open/floor/plating,
-/area/toxins/lab)
-"bwK" = (
-/obj/machinery/camera{
- c_tag = "Research and Development";
- dir = 2;
- network = list("SS13","RD");
- pixel_x = 22
- },
-/obj/machinery/button/door{
- dir = 2;
- id = "rnd";
- name = "Shutters Control Button";
- pixel_x = -6;
- pixel_y = 24;
- req_access_txt = "47"
- },
-/obj/structure/table,
-/obj/item/storage/toolbox/mechanical{
- pixel_x = -2;
- pixel_y = -1
- },
-/turf/open/floor/plasteel/white,
-/area/toxins/lab)
-"bwL" = (
-/obj/structure/table,
-/obj/machinery/cell_charger,
-/obj/item/stock_parts/cell/high,
-/turf/open/floor/plasteel/white,
-/area/toxins/lab)
-"bwM" = (
-/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/clothing/glasses/welding,
-/obj/item/device/radio/intercom{
- name = "Station Intercom";
- pixel_x = 0;
- pixel_y = 24
- },
-/turf/open/floor/plasteel/white,
-/area/toxins/lab)
-"bwN" = (
-/obj/machinery/light{
- dir = 1
- },
-/turf/open/floor/plasteel/white,
-/area/toxins/lab)
-"bwO" = (
-/obj/machinery/camera/autoname,
-/turf/open/floor/plasteel/white,
-/area/toxins/lab)
-"bwP" = (
-/obj/machinery/door/window/eastright{
- base_state = "left";
- dir = 8;
- icon_state = "left";
- name = "Research Division Delivery";
- req_access_txt = "47"
- },
-/turf/open/floor/plasteel/delivery,
-/area/toxins/lab)
-"bwQ" = (
-/obj/machinery/navbeacon{
- codes_txt = "delivery;dir=8";
- dir = 8;
- freq = 1400;
- location = "Research Division"
- },
-/obj/structure/plasticflaps,
-/turf/open/floor/plasteel/bot,
-/area/toxins/lab)
-"bwR" = (
-/obj/machinery/airalarm{
- dir = 1;
- icon_state = "alarm0";
- pixel_y = -22
- },
-/obj/machinery/firealarm{
- dir = 8;
- pixel_x = -24;
- pixel_y = 0
- },
-/obj/structure/filingcabinet/security,
-/turf/open/floor/plasteel{
- icon_state = "redfull"
- },
-/area/security/checkpoint/supply)
-"bwS" = (
-/obj/machinery/light/small,
-/turf/open/floor/plasteel{
- icon_state = "redfull"
- },
-/area/security/checkpoint/supply)
-"bwT" = (
-/obj/machinery/computer/secure_data,
-/turf/open/floor/plasteel{
- icon_state = "redfull"
- },
-/area/security/checkpoint/supply)
-"bwU" = (
-/obj/structure/table,
-/obj/item/paper_bin,
-/obj/machinery/camera/autoname{
- tag = "icon-camera (NORTH)";
- icon_state = "camera";
- dir = 1
- },
-/turf/open/floor/plasteel/brown{
- tag = "icon-brown (SOUTHWEST)";
- icon_state = "brown";
- dir = 10
- },
-/area/quartermaster/qm)
-"bwV" = (
-/obj/machinery/computer/cargo,
-/turf/open/floor/plasteel/brown,
-/area/quartermaster/qm)
-"bwW" = (
-/obj/machinery/light/small,
-/obj/machinery/computer/security/mining,
-/turf/open/floor/plasteel/brown,
-/area/quartermaster/qm)
-"bwX" = (
-/obj/machinery/firealarm{
- dir = 1;
- pixel_y = -24
- },
-/turf/open/floor/plasteel/brown,
-/area/quartermaster/qm)
-"bwY" = (
-/obj/machinery/airalarm{
- dir = 1;
- icon_state = "alarm0";
- pixel_y = -22
- },
-/obj/structure/filingcabinet/chestdrawer,
-/turf/open/floor/plasteel/brown{
- tag = "icon-brown (SOUTHEAST)";
- icon_state = "brown";
- dir = 6
- },
-/area/quartermaster/qm)
-"bwZ" = (
-/obj/machinery/door/airlock/maintenance{
- name = "Cargo Bay Maintenance";
- req_access_txt = "0";
- req_one_access_txt = "48;50"
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"bxa" = (
-/obj/machinery/light{
- icon_state = "tube1";
- dir = 8
- },
-/turf/open/floor/plasteel/black,
-/area/security/transfer)
-"bxb" = (
-/turf/open/floor/plasteel/black,
-/area/security/transfer)
-"bxc" = (
-/obj/machinery/door/airlock/security{
- name = "Evidence Storage";
- req_access = null;
- req_access_txt = "0";
- req_one_access_txt = "1;4"
- },
-/turf/open/floor/plasteel/black,
-/area/security/transfer)
-"bxd" = (
-/obj/machinery/firealarm{
- dir = 1;
- pixel_x = 0;
- pixel_y = -26
- },
-/turf/open/floor/plasteel/darkred,
-/area/security/transfer)
-"bxe" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 6
- },
-/turf/open/floor/plasteel/darkred,
-/area/security/transfer)
-"bxf" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/cable{
- tag = "icon-1-2";
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/darkred,
-/area/security/transfer)
-"bxg" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/darkred,
-/area/security/transfer)
-"bxh" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 1
- },
-/turf/open/floor/plasteel/darkred,
-/area/security/transfer)
-"bxi" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
-/turf/open/floor/plasteel/darkred,
-/area/security/transfer)
-"bxj" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/darkred,
-/area/security/transfer)
-"bxk" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/firealarm{
- dir = 4;
- pixel_x = 28;
- pixel_y = 0
- },
-/turf/open/floor/plasteel/darkred,
-/area/security/transfer)
-"bxl" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 10
- },
-/turf/closed/wall/r_wall,
-/area/security/transfer)
-"bxm" = (
-/obj/structure/cable{
- tag = "icon-1-2";
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plating,
-/area/maintenance/port)
-"bxn" = (
-/turf/open/floor/plasteel/blue,
-/area/crew_quarters/courtroom)
-"bxo" = (
-/obj/machinery/camera/autoname,
-/turf/open/floor/plasteel/redblue/blueside{
- tag = "icon-bluered (WEST)";
- icon_state = "bluered";
- dir = 8
- },
-/area/crew_quarters/courtroom)
-"bxp" = (
-/obj/machinery/airalarm{
- frequency = 1439;
- locked = 0;
- pixel_y = 23
- },
-/turf/open/floor/plasteel/redgreen/side{
- tag = "icon-redgreen (EAST)";
- icon_state = "redgreen";
- dir = 4
- },
-/area/crew_quarters/courtroom)
-"bxq" = (
-/turf/open/floor/plasteel/green,
-/area/crew_quarters/courtroom)
-"bxr" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/crew_quarters/courtroom)
-"bxs" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/turf/open/floor/plasteel/red/side{
- dir = 9
- },
-/area/crew_quarters/courtroom)
-"bxt" = (
-/turf/open/floor/plasteel/red/side{
- dir = 1
- },
-/area/crew_quarters/courtroom)
-"bxu" = (
-/obj/machinery/door/airlock/glass{
- name = "Courtroom"
- },
-/turf/open/floor/plasteel{
- icon_state = "redfull"
- },
-/area/crew_quarters/courtroom)
-"bxv" = (
-/obj/structure/sign/directions/evac{
- pixel_y = -10
- },
-/obj/structure/sign/directions/engineering,
-/obj/structure/sign/directions/science{
- pixel_y = 10
- },
-/turf/closed/wall,
-/area/hallway/primary/port)
-"bxw" = (
-/obj/machinery/computer/card/minor/hos,
-/obj/machinery/camera/autoname{
- tag = "icon-camera (EAST)";
- icon_state = "camera";
- dir = 4
- },
-/turf/open/floor/wood,
-/area/security/hos)
-"bxx" = (
-/obj/machinery/requests_console{
- announcementConsole = 1;
- department = "Head of Security's Desk";
- departmentType = 5;
- name = "Head of Security RC";
- pixel_x = 0;
- pixel_y = 30
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/wood,
-/area/security/hos)
-"bxy" = (
-/turf/open/floor/wood,
-/area/security/hos)
-"bxz" = (
-/obj/item/storage/secure/safe/HoS{
- pixel_x = 35
- },
-/obj/structure/closet/secure_closet/hos,
-/turf/open/floor/wood,
-/area/security/hos)
-"bxA" = (
-/obj/machinery/camera/motion{
- c_tag = "MiniSat Foyer";
- dir = 1;
- network = list("MiniSat")
- },
-/turf/open/floor/plating,
-/area/ai_monitored/turret_protected/aisat{
- name = "AI Maintenance"
- })
-"bxB" = (
-/turf/closed/wall/r_wall,
-/area/ai_monitored/turret_protected/ai)
-"bxC" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/closed/wall/r_wall,
-/area/ai_monitored/turret_protected/ai)
-"bxD" = (
-/obj/machinery/status_display,
-/turf/closed/wall/r_wall,
-/area/ai_monitored/turret_protected/ai)
-"bxE" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/door/airlock/highsecurity{
- icon_state = "door_closed";
- locked = 0;
- name = "AI Chamber";
- req_access_txt = "16"
- },
-/turf/open/floor/circuit{
- icon_state = "gcircuit";
- luminosity = 2
- },
-/area/ai_monitored/turret_protected/ai)
-"bxF" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/closed/wall/r_wall,
-/area/ai_monitored/turret_protected/ai)
-"bxG" = (
-/turf/closed/wall,
-/area/crew_quarters/captain{
- name = "\improper Captain's Quarters"
- })
-"bxH" = (
-/obj/machinery/door/airlock{
- name = "Private Restroom";
- req_access_txt = "0"
- },
-/turf/open/floor/plasteel{
- icon_state = "freezerfloor"
- },
-/area/crew_quarters/captain{
- name = "\improper Captain's Quarters"
- })
-"bxI" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/purple/corner{
- tag = "icon-purplecorner (WEST)";
- icon_state = "purplecorner";
- dir = 8
- },
-/area/hallway/primary/starboard)
-"bxJ" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 4;
- name = "regular air vent";
- on = 1
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel,
-/area/hallway/primary/starboard)
-"bxK" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 4
- },
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plasteel,
-/area/hallway/primary/starboard)
-"bxL" = (
-/turf/open/floor/plasteel/purple/side{
- tag = "icon-purple (EAST)";
- icon_state = "purple";
- dir = 4
- },
-/area/hallway/primary/starboard)
-"bxM" = (
-/obj/structure/table/reinforced,
-/obj/machinery/door/window/southright{
- dir = 4;
- name = "Research and Development Desk";
- req_access_txt = "7"
- },
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "rnd";
- name = "research lab shutters"
- },
-/turf/open/floor/plating,
-/area/toxins/lab)
-"bxN" = (
-/obj/effect/turf_decal/stripes/line,
-/turf/open/floor/plasteel/white,
-/area/toxins/lab)
-"bxO" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 2;
- name = "regular air scrubber";
- on = 1
- },
-/obj/effect/turf_decal/stripes/line,
-/turf/open/floor/plasteel/white,
-/area/toxins/lab)
-"bxP" = (
-/obj/effect/turf_decal/stripes/corner{
- dir = 1
- },
-/turf/open/floor/plasteel/white,
-/area/toxins/lab)
-"bxQ" = (
-/turf/open/floor/plasteel/white,
-/area/toxins/lab)
-"bxR" = (
-/obj/structure/window/reinforced{
- dir = 1;
- pixel_y = 1
- },
-/obj/structure/table/glass,
-/obj/item/stock_parts/cell/high{
- pixel_x = 10;
- pixel_y = 5
- },
-/obj/item/stock_parts/cell/high,
-/turf/open/floor/plasteel/white,
-/area/toxins/lab)
-"bxS" = (
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"bxT" = (
-/obj/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"bxU" = (
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"bxV" = (
-/obj/structure/closet{
- name = "Evidence Closet 5"
- },
-/turf/open/floor/plasteel/black,
-/area/security/transfer)
-"bxW" = (
-/obj/structure/closet{
- name = "Evidence Closet 4"
- },
-/turf/open/floor/plasteel/black,
-/area/security/transfer)
-"bxX" = (
-/obj/structure/closet{
- name = "Evidence Closet 3"
- },
-/turf/open/floor/plasteel/black,
-/area/security/transfer)
-"bxY" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- req_access_txt = 1
- },
-/turf/closed/wall,
-/area/security/transfer)
-"bxZ" = (
-/obj/structure/cable{
- tag = "icon-1-2";
- icon_state = "1-2"
- },
-/obj/machinery/door/firedoor/heavy,
-/obj/machinery/door/airlock/glass_security{
- name = "Long-Term Cell 2";
- req_access_txt = "2"
- },
-/turf/open/floor/plasteel/darkred/side{
- tag = "icon-darkred (NORTH)";
- icon_state = "darkred";
- dir = 1
- },
-/area/security/transfer)
-"bya" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 6
- },
-/turf/closed/wall,
-/area/security/transfer)
-"byb" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/closed/wall,
-/area/security/transfer)
-"byc" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- req_access_txt = 1
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/closed/wall,
-/area/security/transfer)
-"byd" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/structure/cable{
- tag = "icon-1-2";
- icon_state = "1-2"
- },
-/obj/machinery/door/firedoor/heavy,
-/obj/machinery/door/airlock/glass_security{
- name = "Long-Term Cell 3";
- req_access_txt = "2"
- },
-/turf/open/floor/plasteel/darkred/side{
- tag = "icon-darkred (NORTH)";
- icon_state = "darkred";
- dir = 1
- },
-/area/security/transfer)
-"bye" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 1
- },
-/turf/closed/wall,
-/area/security/transfer)
-"byf" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/machinery/door/firedoor/heavy,
-/obj/machinery/door/airlock/security{
- aiControlDisabled = 1;
- id_tag = null;
- name = "Prisoner Education Supplies";
- req_access = null;
- req_access_txt = "3"
- },
-/turf/open/floor/plasteel/darkred/side{
- tag = "icon-darkred (NORTH)";
- icon_state = "darkred";
- dir = 1
- },
-/area/security/transfer)
-"byg" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 2;
- initialize_directions = 11
- },
-/turf/closed/wall,
-/area/security/transfer)
-"byh" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/structure/tank_dispenser/oxygen,
-/obj/structure/window/reinforced{
- dir = 1;
- layer = 2.9
- },
-/obj/machinery/door/firedoor/border_only{
- tag = "icon-door_open (NORTH)";
- icon_state = "door_open";
- dir = 1
- },
-/turf/open/floor/plasteel/darkred,
-/area/security/transfer)
-"byi" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 1;
- layer = 2.9
- },
-/obj/machinery/door/firedoor/border_only{
- tag = "icon-door_open (NORTH)";
- icon_state = "door_open";
- dir = 1
- },
-/turf/open/floor/plasteel/darkred,
-/area/security/transfer)
-"byj" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/machinery/door/window/brigdoor{
- dir = 1;
- name = "Atmos Locker";
- req_access_txt = "2"
- },
-/obj/machinery/door/firedoor/border_only{
- tag = "icon-door_open (NORTH)";
- icon_state = "door_open";
- dir = 1
- },
-/turf/open/floor/plasteel/darkred,
-/area/security/transfer)
-"byk" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 1
- },
-/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
- },
-/obj/structure/window/reinforced{
- dir = 1;
- layer = 2.9
- },
-/obj/machinery/portable_atmospherics/canister/oxygen,
-/obj/machinery/door/firedoor/border_only{
- tag = "icon-door_open (NORTH)";
- icon_state = "door_open";
- dir = 1
- },
-/turf/open/floor/plasteel/darkred,
-/area/security/transfer)
-"byl" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 8;
- pixel_x = 0
- },
-/obj/structure/window/reinforced{
- dir = 1;
- pixel_y = 0
- },
-/obj/structure/closet/secure_closet/brig,
-/obj/machinery/door/firedoor/border_only{
- tag = "icon-door_open (NORTH)";
- icon_state = "door_open";
- dir = 1
- },
-/turf/open/floor/plasteel/darkred,
-/area/security/transfer)
-"bym" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/machinery/door/firedoor/border_only{
- tag = "icon-door_open (NORTH)";
- icon_state = "door_open";
- dir = 1
- },
-/turf/open/floor/plasteel/darkred,
-/area/security/transfer)
-"byn" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 1
- },
-/obj/structure/window/reinforced{
- dir = 1;
- layer = 2.9
- },
-/obj/structure/filingcabinet/security,
-/obj/machinery/door/firedoor/border_only{
- tag = "icon-door_open (NORTH)";
- icon_state = "door_open";
- dir = 1
- },
-/turf/open/floor/plasteel/darkred,
-/area/security/transfer)
-"byo" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 8;
- pixel_x = 0
- },
-/obj/machinery/door/firedoor/border_only{
- tag = "icon-door_open (WEST)";
- icon_state = "door_open";
- dir = 8
- },
-/obj/structure/cable{
- tag = "icon-1-2";
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/darkred,
-/area/security/transfer)
-"byp" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/darkred,
-/area/security/transfer)
-"byq" = (
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
- },
-/obj/machinery/power/apc{
- dir = 4;
- name = "Prisoner Transfer Centre";
- pixel_x = 24;
- pixel_y = 0
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 10
- },
-/turf/open/floor/plasteel/darkred,
-/area/security/transfer)
-"byr" = (
-/obj/structure/chair{
- dir = 4;
- name = "Prosecution"
- },
-/turf/open/floor/plasteel/blue,
-/area/crew_quarters/courtroom)
-"bys" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- name = "regular air vent";
- on = 1
- },
-/obj/structure/table/wood,
-/turf/open/floor/plasteel/blue,
-/area/crew_quarters/courtroom)
-"byt" = (
-/turf/open/floor/plasteel/redblue/blueside{
- tag = "icon-bluered (WEST)";
- icon_state = "bluered";
- dir = 8
- },
-/area/crew_quarters/courtroom)
-"byu" = (
-/turf/open/floor/plasteel/redgreen/side{
- tag = "icon-redgreen (EAST)";
- icon_state = "redgreen";
- dir = 4
- },
-/area/crew_quarters/courtroom)
-"byv" = (
-/obj/structure/table/wood,
-/turf/open/floor/plasteel/green,
-/area/crew_quarters/courtroom)
-"byw" = (
-/obj/structure/chair{
- dir = 8;
- name = "Defense"
- },
-/turf/open/floor/plasteel/green,
-/area/crew_quarters/courtroom)
-"byx" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4";
- tag = "90Curve"
- },
-/obj/structure/chair{
- dir = 4
- },
-/turf/open/floor/plasteel/red/side{
- dir = 8
- },
-/area/crew_quarters/courtroom)
-"byy" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/courtroom)
-"byz" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plasteel/red/corner,
-/area/crew_quarters/courtroom)
-"byA" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/red/side,
-/area/crew_quarters/courtroom)
-"byB" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0;
- tag = ""
- },
-/turf/open/floor/plasteel/red/side,
-/area/crew_quarters/courtroom)
-"byC" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0;
- tag = ""
- },
-/obj/machinery/door/airlock/glass{
- name = "Courtroom"
- },
-/turf/open/floor/plasteel{
- icon_state = "redfull"
- },
-/area/crew_quarters/courtroom)
-"byD" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0;
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/redblue/blueside{
- tag = "icon-bluered (WEST)";
- icon_state = "bluered";
- dir = 8
- },
-/area/hallway/primary/port)
-"byE" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0;
- tag = ""
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel,
-/area/hallway/primary/port)
-"byF" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/door/firedoor/heavy,
-/turf/open/floor/plating,
-/area/security/detectives_office)
-"byG" = (
-/obj/machinery/light/small{
- dir = 1
- },
-/obj/machinery/computer/secure_data,
-/turf/open/floor/plasteel{
- icon_state = "grimy"
- },
-/area/security/detectives_office)
-"byH" = (
-/turf/open/floor/plasteel{
- icon_state = "grimy"
- },
-/area/security/detectives_office)
-"byI" = (
-/obj/machinery/computer/security/wooden_tv,
-/turf/open/floor/plasteel{
- icon_state = "grimy"
- },
-/area/security/detectives_office)
-"byJ" = (
-/obj/machinery/airalarm{
- dir = 8;
- icon_state = "alarm0";
- pixel_x = 24
- },
-/obj/structure/table/wood,
-/obj/item/hand_labeler,
-/obj/item/reagent_containers/food/drinks/flask/det,
-/obj/item/device/radio/intercom{
- name = "Station Intercom";
- pixel_x = 0;
- pixel_y = 24
- },
-/turf/open/floor/plasteel{
- icon_state = "grimy"
- },
-/area/security/detectives_office)
-"byK" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 6
- },
-/obj/machinery/airalarm{
- dir = 4;
- pixel_x = -23;
- pixel_y = 0
- },
-/obj/machinery/computer/secure_data,
-/turf/open/floor/wood,
-/area/security/hos)
-"byL" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/carpet,
-/area/security/hos)
-"byM" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 8;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/turf/open/floor/carpet,
-/area/security/hos)
-"byN" = (
-/obj/structure/table/wood,
-/obj/item/storage/box/deputy,
-/obj/item/storage/box/seccarts{
- pixel_x = 3;
- pixel_y = 2
- },
-/obj/machinery/airalarm{
- dir = 8;
- icon_state = "alarm0";
- pixel_x = 24
- },
-/turf/open/floor/wood,
-/area/security/hos)
-"byO" = (
-/obj/machinery/light/small{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/ai_monitored/turret_protected/aisat{
- name = "AI Maintenance"
- })
-"byP" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/porta_turret/ai{
- dir = 4
- },
-/turf/open/floor/circuit{
- icon_state = "gcircuit";
- luminosity = 2
- },
-/area/ai_monitored/turret_protected/ai)
-"byQ" = (
-/turf/open/floor/plasteel/black,
-/area/ai_monitored/turret_protected/ai)
-"byR" = (
-/obj/machinery/airalarm{
- frequency = 1439;
- locked = 0;
- pixel_y = 23
- },
-/turf/open/floor/plasteel/black,
-/area/ai_monitored/turret_protected/ai)
-"byS" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/circuit{
- icon_state = "gcircuit";
- luminosity = 2
- },
-/area/ai_monitored/turret_protected/ai)
-"byT" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/porta_turret/ai{
- dir = 4
- },
-/turf/open/floor/circuit{
- icon_state = "gcircuit";
- luminosity = 2
- },
-/area/ai_monitored/turret_protected/ai)
-"byU" = (
-/obj/machinery/light/small{
- brightness = 3;
- dir = 8
- },
-/turf/open/floor/plating,
-/area/ai_monitored/turret_protected/aisat{
- name = "AI Maintenance"
- })
-"byV" = (
-/obj/structure/toilet{
- dir = 4
- },
-/turf/open/floor/plasteel{
- icon_state = "freezerfloor"
- },
-/area/crew_quarters/captain{
- name = "\improper Captain's Quarters"
- })
-"byW" = (
-/obj/machinery/light{
- dir = 1
- },
-/obj/item/soap/deluxe,
-/obj/machinery/shower{
- tag = "icon-shower (NORTH)";
- icon_state = "shower";
- dir = 1
- },
-/turf/open/floor/plasteel{
- icon_state = "freezerfloor"
- },
-/area/crew_quarters/captain{
- name = "\improper Captain's Quarters"
- })
-"byX" = (
-/obj/structure/sink{
- pixel_y = 30
- },
-/turf/open/floor/plasteel{
- icon_state = "freezerfloor"
- },
-/area/crew_quarters/captain{
- name = "\improper Captain's Quarters"
- })
-"byY" = (
-/obj/machinery/airalarm{
- dir = 1;
- icon_state = "alarm0";
- pixel_y = -22
- },
-/turf/open/floor/plasteel{
- icon_state = "freezerfloor"
- },
-/area/crew_quarters/captain{
- name = "\improper Captain's Quarters"
- })
-"byZ" = (
-/turf/closed/wall,
-/area/medical/research{
- name = "Research Division"
- })
-"bza" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/camera/autoname{
- tag = "icon-camera (EAST)";
- icon_state = "camera";
- dir = 4
- },
-/turf/open/floor/plasteel/purple/side{
- tag = "icon-purple (WEST)";
- icon_state = "purple";
- dir = 8
- },
-/area/hallway/primary/starboard)
-"bzb" = (
-/obj/machinery/navbeacon{
- codes_txt = "patrol;next_patrol=HOP";
- location = "CHE"
- },
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/starboard)
-"bzc" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/purple/corner,
-/area/hallway/primary/starboard)
-"bzd" = (
-/turf/open/floor/plasteel/purple/side{
- tag = "icon-purple (SOUTHEAST)";
- icon_state = "purple";
- dir = 6
- },
-/area/hallway/primary/starboard)
-"bze" = (
-/obj/machinery/rnd/destructive_analyzer,
-/turf/open/floor/plasteel/purple,
-/area/toxins/lab)
-"bzf" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/purple,
-/area/toxins/lab)
-"bzg" = (
-/obj/machinery/rnd/protolathe,
-/turf/open/floor/plasteel/purple,
-/area/toxins/lab)
-"bzh" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/toxins/lab)
-"bzi" = (
-/obj/structure/table/glass,
-/obj/item/stock_parts/manipulator,
-/obj/item/stock_parts/capacitor,
-/obj/item/stock_parts/capacitor,
-/obj/item/stock_parts/manipulator,
-/obj/item/stock_parts/micro_laser,
-/obj/item/stock_parts/micro_laser,
-/obj/item/stack/cable_coil{
- pixel_x = 3;
- pixel_y = 3
- },
-/obj/item/stack/cable_coil,
-/obj/machinery/firealarm{
- dir = 4;
- pixel_x = 24
- },
-/turf/open/floor/plasteel/white,
-/area/toxins/lab)
-"bzj" = (
-/obj/structure/cable{
- tag = "icon-1-4";
- icon_state = "1-4"
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"bzk" = (
-/obj/structure/window/reinforced,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"bzl" = (
-/obj/structure/window/reinforced,
-/obj/machinery/power/apc{
- dir = 1;
- name = "Cargo Security APC";
- pixel_x = 1;
- pixel_y = 24
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/turf/open/floor/plating,
-/area/security/checkpoint/supply)
-"bzm" = (
-/obj/structure/window/reinforced,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/light/small{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"bzn" = (
-/obj/structure/window/reinforced,
-/obj/machinery/power/apc{
- dir = 1;
- name = "Quartermaster's Office APC";
- pixel_x = 0;
- pixel_y = 30
- },
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/turf/open/floor/plating,
-/area/quartermaster/qm)
-"bzo" = (
-/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"bzp" = (
-/turf/closed/mineral/random/labormineral,
-/area/maintenance/asmaint2)
-"bzq" = (
-/obj/structure/cable{
- tag = "icon-1-2";
- icon_state = "1-2"
- },
-/obj/machinery/light{
- dir = 8
- },
-/turf/open/floor/plasteel/darkred,
-/area/security/transfer)
-"bzr" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- req_access_txt = 1
- },
-/obj/machinery/light/small{
- dir = 8
- },
-/turf/open/floor/plasteel/black,
-/area/security/transfer)
-"bzs" = (
-/obj/structure/cable{
- tag = "icon-1-2";
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/black,
-/area/security/transfer)
-"bzt" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/black,
-/area/security/transfer)
-"bzu" = (
-/obj/structure/bodycontainer/morgue,
-/turf/open/floor/plasteel/black,
-/area/security/transfer)
-"bzv" = (
-/obj/structure/filingcabinet/security,
-/turf/open/floor/plasteel/black,
-/area/security/transfer)
-"bzw" = (
-/obj/machinery/portable_atmospherics/canister/nitrous_oxide,
-/turf/open/floor/plasteel/darkred,
-/area/security/transfer)
-"bzx" = (
-/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
- },
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 1;
- name = "Waste to Filter";
- on = 1
- },
-/obj/item/storage/toolbox/mechanical,
-/turf/open/floor/plasteel/darkred,
-/area/security/transfer)
-"bzy" = (
-/obj/structure/window/reinforced{
- dir = 8;
- pixel_x = 0
- },
-/obj/structure/closet/secure_closet/brig,
-/turf/open/floor/plasteel/darkred,
-/area/security/transfer)
-"bzz" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 1;
- name = "regular air scrubber";
- on = 1
- },
-/turf/open/floor/plasteel/darkred,
-/area/security/transfer)
-"bzA" = (
-/obj/structure/window/reinforced{
- dir = 8;
- pixel_x = 0
- },
-/obj/machinery/door/firedoor/border_only{
- tag = "icon-door_open (WEST)";
- icon_state = "door_open";
- dir = 8
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4";
- tag = ""
- },
-/turf/open/floor/plasteel/darkred,
-/area/security/transfer)
-"bzB" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/camera/autoname{
- tag = "icon-camera (NORTHWEST)";
- icon_state = "camera";
- dir = 9
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/turf/open/floor/plasteel/darkred,
-/area/security/transfer)
-"bzC" = (
-/obj/machinery/light{
- icon_state = "tube1";
- dir = 8
- },
-/obj/structure/chair{
- dir = 4;
- name = "Prosecution"
- },
-/turf/open/floor/plasteel/blue,
-/area/crew_quarters/courtroom)
-"bzD" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/table/wood,
-/turf/open/floor/plasteel/blue,
-/area/crew_quarters/courtroom)
-"bzE" = (
-/obj/structure/chair{
- dir = 8;
- name = "Defense"
- },
-/obj/machinery/firealarm{
- dir = 4;
- pixel_x = 28;
- pixel_y = 0
- },
-/turf/open/floor/plasteel/green,
-/area/crew_quarters/courtroom)
-"bzF" = (
-/obj/structure/chair{
- dir = 4
- },
-/turf/open/floor/plasteel/red/side{
- dir = 8
- },
-/area/crew_quarters/courtroom)
-"bzG" = (
-/obj/item/device/radio/beacon,
-/turf/open/floor/plasteel,
-/area/crew_quarters/courtroom)
-"bzH" = (
-/obj/structure/chair{
- dir = 8
- },
-/turf/open/floor/plasteel/red/side{
- dir = 4
- },
-/area/crew_quarters/courtroom)
-"bzI" = (
-/turf/closed/wall,
-/area/lawoffice)
-"bzJ" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/lawoffice)
-"bzK" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/light{
- icon_state = "tube1";
- dir = 8
- },
-/turf/open/floor/plasteel/redblue/blueside{
- tag = "icon-bluered (WEST)";
- icon_state = "bluered";
- dir = 8
- },
-/area/hallway/primary/port)
-"bzL" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0;
- tag = ""
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel,
-/area/hallway/primary/port)
-"bzM" = (
-/obj/machinery/computer/med_data,
-/turf/open/floor/plasteel{
- icon_state = "grimy"
- },
-/area/security/detectives_office)
-"bzN" = (
-/obj/structure/chair/office/dark,
-/turf/open/floor/plasteel{
- icon_state = "grimy"
- },
-/area/security/detectives_office)
-"bzO" = (
-/obj/machinery/requests_console{
- department = "Detective's office";
- pixel_x = 30;
- pixel_y = 0
- },
-/turf/open/floor/plasteel{
- icon_state = "grimy"
- },
-/area/security/detectives_office)
-"bzP" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/computer/security,
-/turf/open/floor/wood,
-/area/security/hos)
-"bzQ" = (
-/obj/effect/landmark/start{
- name = "Head of Security"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/carpet,
-/area/security/hos)
-"bzR" = (
-/turf/open/floor/carpet,
-/area/security/hos)
-"bzS" = (
-/obj/machinery/light{
- dir = 4
- },
-/obj/structure/table/wood,
-/obj/machinery/recharger,
-/turf/open/floor/wood,
-/area/security/hos)
-"bzT" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/circuit,
-/area/ai_monitored/turret_protected/ai)
-"bzU" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/circuit,
-/area/ai_monitored/turret_protected/ai)
-"bzV" = (
-/obj/structure/cable{
- tag = "icon-1-8";
- icon_state = "1-8"
- },
-/obj/effect/landmark/start{
- name = "Cyborg"
- },
-/turf/open/floor/circuit{
- icon_state = "gcircuit";
- luminosity = 2
- },
-/area/ai_monitored/turret_protected/ai)
-"bzW" = (
-/turf/open/floor/circuit,
-/area/ai_monitored/turret_protected/ai)
-"bzX" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/circuit,
-/area/ai_monitored/turret_protected/ai)
-"bzY" = (
-/turf/closed/wall/r_wall,
-/area/crew_quarters/hor)
-"bzZ" = (
-/obj/structure/table,
-/obj/machinery/microwave,
-/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
-"bAa" = (
-/obj/machinery/vending/cola,
-/turf/open/floor/plasteel{
- icon_state = "whitepurplefull"
- },
-/area/medical/research{
- name = "Research Division"
- })
-"bAb" = (
-/obj/machinery/vending/snack,
-/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
-"bAc" = (
-/obj/machinery/airalarm{
- frequency = 1439;
- locked = 0;
- pixel_y = 23
- },
-/turf/open/floor/plasteel{
- icon_state = "whitepurplefull"
- },
-/area/medical/research{
- name = "Research Division"
- })
-"bAd" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/medical/research{
- name = "Research Division"
- })
-"bAe" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/purple/side{
- tag = "icon-purple (WEST)";
- icon_state = "purple";
- dir = 8
- },
-/area/hallway/primary/starboard)
-"bAf" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/purple/side{
- tag = "icon-purple (EAST)";
- icon_state = "purple";
- dir = 4
- },
-/area/hallway/primary/starboard)
-"bAg" = (
-/obj/machinery/computer/rdconsole/core,
-/obj/machinery/light{
- dir = 8
- },
-/obj/machinery/requests_console{
- department = "Science";
- departmentType = 2;
- name = "Science Requests Console";
- pixel_x = -30;
- pixel_y = 0
- },
-/turf/open/floor/plasteel/purple,
-/area/toxins/lab)
-"bAh" = (
-/obj/effect/landmark/start{
- name = "Scientist"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/purple,
-/area/toxins/lab)
-"bAi" = (
-/obj/machinery/rnd/circuit_imprinter,
-/obj/item/reagent_containers/glass/beaker/sulphuric,
-/turf/open/floor/plasteel/purple,
-/area/toxins/lab)
-"bAj" = (
-/obj/machinery/holopad,
-/turf/open/floor/plasteel/white,
-/area/toxins/lab)
-"bAk" = (
-/obj/item/stock_parts/console_screen,
-/obj/structure/table/glass,
-/obj/item/stock_parts/console_screen,
-/obj/item/stock_parts/console_screen,
-/obj/item/stock_parts/matter_bin,
-/obj/item/stock_parts/matter_bin,
-/obj/item/stock_parts/scanning_module{
- pixel_x = 2;
- pixel_y = 3
- },
-/obj/item/stock_parts/scanning_module,
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/machinery/airalarm{
- dir = 8;
- icon_state = "alarm0";
- pixel_x = 24
- },
-/turf/open/floor/plasteel/white,
-/area/toxins/lab)
-"bAl" = (
-/obj/structure/window/reinforced{
- dir = 8;
- pixel_x = 0
- },
-/obj/structure/window/reinforced{
- dir = 1
- },
-/turf/open/floor/plating/asteroid/airless{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/ruin/unpowered{
- name = "Asteroid"
- })
-"bAm" = (
-/obj/structure/window/reinforced{
- dir = 8;
- pixel_x = 0
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"bAn" = (
-/obj/structure/grille,
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"bAo" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- tag = "icon-vent_map (NORTH)";
- name = "regular air vent";
- icon_state = "vent_map";
- dir = 1;
- on = 1
- },
-/obj/structure/table,
-/obj/item/paper,
-/obj/item/pen,
-/turf/open/floor/plasteel/black,
-/area/security/transfer)
-"bAp" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 1;
- name = "regular air scrubber";
- on = 1
- },
-/obj/structure/bed,
-/obj/item/bedsheet/orange,
-/turf/open/floor/plasteel/black,
-/area/security/transfer)
-"bAq" = (
-/obj/machinery/light/small,
-/turf/open/floor/plasteel/black,
-/area/security/transfer)
-"bAr" = (
-/obj/structure/table/reinforced,
-/obj/item/storage/box/bodybags,
-/turf/open/floor/plasteel/black,
-/area/security/transfer)
-"bAs" = (
-/obj/machinery/suit_storage_unit/security,
-/turf/open/floor/plasteel/darkred,
-/area/security/transfer)
-"bAt" = (
-/obj/machinery/atmospherics/components/unary/portables_connector/visible{
- dir = 1
- },
-/obj/machinery/portable_atmospherics/scrubber,
-/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
- },
-/turf/open/floor/plasteel/darkred,
-/area/security/transfer)
-"bAu" = (
-/obj/machinery/light,
-/obj/structure/table,
-/obj/structure/window/reinforced{
- dir = 8;
- pixel_x = 0
- },
-/obj/item/storage/box/zipties,
-/turf/open/floor/plasteel/darkred,
-/area/security/transfer)
-"bAv" = (
-/obj/structure/table,
-/obj/item/storage/box/prisoner,
-/turf/open/floor/plasteel/darkred,
-/area/security/transfer)
-"bAw" = (
-/obj/machinery/computer/prisoner,
-/turf/open/floor/plasteel/darkred,
-/area/security/transfer)
-"bAx" = (
-/obj/machinery/door/airlock/glass_security{
- name = "Security Control";
- req_access_txt = "2"
- },
-/turf/open/floor/plasteel/darkred,
-/area/security/transfer)
-"bAy" = (
-/obj/structure/cable{
- tag = "icon-1-2";
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/door/firedoor/heavy,
-/obj/machinery/door/airlock/glass_security{
- name = "Prisoner Processing";
- req_access_txt = "2"
- },
-/turf/open/floor/plasteel/darkred,
-/area/security/transfer)
-"bAz" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/blue,
-/area/crew_quarters/courtroom)
-"bAA" = (
-/obj/machinery/door/airlock/glass{
- name = "Courtroom";
- req_access_txt = "42"
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/courtroom)
-"bAB" = (
-/turf/open/floor/plasteel/red/side{
- dir = 10
- },
-/area/crew_quarters/courtroom)
-"bAC" = (
-/turf/open/floor/plasteel/red/side,
-/area/crew_quarters/courtroom)
-"bAD" = (
-/turf/open/floor/plasteel/red/side{
- dir = 6
- },
-/area/crew_quarters/courtroom)
-"bAE" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock{
- name = "Law Office";
- req_access_txt = "38"
- },
-/turf/open/floor/wood,
-/area/lawoffice)
-"bAF" = (
-/turf/open/floor/wood,
-/area/lawoffice)
-"bAG" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- name = "regular air vent";
- on = 1
- },
-/turf/open/floor/wood,
-/area/lawoffice)
-"bAH" = (
-/obj/machinery/airalarm{
- frequency = 1439;
- locked = 0;
- pixel_y = 23
- },
-/turf/open/floor/wood,
-/area/lawoffice)
-"bAI" = (
-/obj/structure/disposalpipe/trunk{
- dir = 4
- },
-/obj/machinery/disposal/bin,
-/turf/open/floor/wood,
-/area/lawoffice)
-"bAJ" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/door/firedoor,
-/obj/machinery/door/poddoor/preopen{
- id = "lawyer_blast";
- name = "privacy door"
- },
-/turf/open/floor/plating,
-/area/lawoffice)
-"bAK" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel/red/side{
- dir = 8
- },
-/area/hallway/primary/port)
-"bAL" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0;
- tag = ""
- },
-/obj/structure/disposalpipe/junction{
- icon_state = "pipe-j2";
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/port)
-"bAM" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/red/side{
- tag = "icon-red (EAST)";
- icon_state = "red";
- dir = 4
- },
-/area/hallway/primary/port)
-"bAN" = (
-/obj/structure/table/wood,
-/obj/item/device/taperecorder,
-/obj/item/device/camera,
-/turf/open/floor/plasteel{
- icon_state = "grimy"
- },
-/area/security/detectives_office)
-"bAO" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 2;
- name = "regular air scrubber";
- on = 1
- },
-/obj/structure/table/wood,
-/obj/item/folder/red,
-/obj/item/pen/red,
-/turf/open/floor/plasteel{
- icon_state = "grimy"
- },
-/area/security/detectives_office)
-"bAP" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- name = "regular air vent";
- on = 1
- },
-/obj/structure/table/wood,
-/obj/item/paper_bin,
-/obj/item/book/manual/wiki/security_space_law,
-/turf/open/floor/plasteel{
- icon_state = "grimy"
- },
-/area/security/detectives_office)
-"bAQ" = (
-/obj/machinery/camera/autoname{
- tag = "icon-camera (NORTHWEST)";
- icon_state = "camera";
- dir = 9
- },
-/turf/open/floor/plasteel{
- icon_state = "grimy"
- },
-/area/security/detectives_office)
-"bAR" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/light{
- icon_state = "tube1";
- dir = 8
- },
-/obj/item/device/radio/intercom{
- dir = 4;
- name = "Station Intercom (General)";
- pixel_x = -31
- },
-/turf/open/floor/wood,
-/area/security/hos)
-"bAS" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/carpet,
-/area/security/hos)
-"bAT" = (
-/obj/machinery/keycard_auth{
- pixel_x = 24;
- pixel_y = 10
- },
-/obj/structure/table/wood,
-/obj/item/device/radio/off,
-/obj/item/device/taperecorder{
- pixel_y = 0
- },
-/turf/open/floor/wood,
-/area/security/hos)
-"bAU" = (
-/obj/machinery/porta_turret/ai{
- dir = 4
- },
-/turf/open/floor/circuit{
- icon_state = "gcircuit";
- luminosity = 2
- },
-/area/ai_monitored/turret_protected/ai)
-"bAV" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/circuit,
-/area/ai_monitored/turret_protected/ai)
-"bAW" = (
-/turf/open/floor/plasteel/blue,
-/area/ai_monitored/turret_protected/ai)
-"bAX" = (
-/obj/machinery/camera/motion{
- c_tag = "MiniSat Foyer";
- dir = 1;
- network = list("MiniSat")
- },
-/turf/open/floor/circuit,
-/area/ai_monitored/turret_protected/ai)
-"bAY" = (
-/obj/machinery/light,
-/turf/open/floor/circuit{
- icon_state = "gcircuit";
- luminosity = 2
- },
-/area/ai_monitored/turret_protected/ai)
-"bAZ" = (
-/obj/machinery/turretid{
- name = "AI Chamber turret control";
- pixel_x = 5;
- pixel_y = -24
- },
-/turf/open/floor/circuit,
-/area/ai_monitored/turret_protected/ai)
-"bBa" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/door/airlock/maintenance{
- name = "RD Maintenance";
- req_access_txt = "30"
- },
-/turf/open/floor/plating,
-/area/crew_quarters/hor)
-"bBb" = (
-/obj/machinery/power/apc{
- dir = 1;
- name = "RD Office APC";
- pixel_x = 0;
- pixel_y = 24
- },
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/turf/open/floor/plasteel/whitepurple/corner,
-/area/crew_quarters/hor)
-"bBc" = (
-/obj/machinery/requests_console{
- announcementConsole = 1;
- department = "Research Director's Desk";
- departmentType = 5;
- name = "Research Director RC";
- pixel_x = -2;
- pixel_y = 30
- },
-/turf/open/floor/plasteel/whitepurple/corner,
-/area/crew_quarters/hor)
-"bBd" = (
-/obj/structure/disposalpipe/trunk{
- dir = 4
- },
-/obj/machinery/disposal/bin,
-/turf/open/floor/plasteel/whitepurple/corner,
-/area/crew_quarters/hor)
-"bBe" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/item/twohanded/required/kirbyplants/dead,
-/turf/open/floor/plasteel/whitepurple/corner,
-/area/crew_quarters/hor)
-"bBf" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/closed/wall,
-/area/crew_quarters/hor)
-"bBg" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel{
- icon_state = "whitepurplefull"
- },
-/area/medical/research{
- name = "Research Division"
- })
-"bBh" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- name = "regular air vent";
- on = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
-"bBi" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
-"bBj" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/medical/research{
- name = "Research Division"
- })
-"bBk" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel/purple/side{
- tag = "icon-purple (WEST)";
- icon_state = "purple";
- dir = 8
- },
-/area/hallway/primary/starboard)
-"bBl" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/junction{
- icon_state = "pipe-y";
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/starboard)
-"bBm" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel/purple/side{
- tag = "icon-purple (EAST)";
- icon_state = "purple";
- dir = 4
- },
-/area/hallway/primary/starboard)
-"bBn" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "rnd";
- name = "research lab shutters"
- },
-/turf/open/floor/plating,
-/area/toxins/lab)
-"bBo" = (
-/obj/item/folder/white,
-/obj/structure/table,
-/obj/item/disk/tech_disk{
- pixel_x = 0;
- pixel_y = 0
- },
-/obj/item/disk/tech_disk{
- pixel_x = 0;
- pixel_y = 0
- },
-/obj/item/disk/design_disk,
-/obj/item/disk/design_disk,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plasteel/white,
-/area/toxins/lab)
-"bBp" = (
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plasteel/white,
-/area/toxins/lab)
-"bBq" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plasteel/white,
-/area/toxins/lab)
-"bBr" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 6
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plasteel/white,
-/area/toxins/lab)
-"bBs" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/corner{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/toxins/lab)
-"bBt" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 8;
- name = "regular air vent";
- on = 1
- },
-/obj/effect/landmark{
- name = "xeno_spawn";
- pixel_x = -1
- },
-/turf/open/floor/plasteel/white,
-/area/toxins/lab)
-"bBu" = (
-/obj/structure/table/glass,
-/obj/item/reagent_containers/glass/beaker/large{
- pixel_x = -3;
- pixel_y = 3
- },
-/obj/item/reagent_containers/glass/beaker{
- pixel_x = 8;
- pixel_y = 2
- },
-/obj/item/reagent_containers/dropper,
-/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
- },
-/turf/open/floor/plasteel/white,
-/area/toxins/lab)
-"bBv" = (
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 8;
- pixel_x = 0
- },
-/turf/open/floor/plating/asteroid/airless{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/ruin/unpowered{
- name = "Asteroid"
- })
-"bBw" = (
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/turf/open/floor/plating/asteroid/airless{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/ruin/unpowered{
- name = "Asteroid"
- })
-"bBx" = (
-/obj/structure/cable{
- tag = "icon-1-2";
- icon_state = "1-2"
- },
-/obj/item/device/radio/intercom{
- dir = 8;
- pixel_x = -28
- },
-/turf/open/floor/plasteel/darkred,
-/area/security/transfer)
-"bBy" = (
-/obj/structure/cable,
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/structure/sign/electricshock{
- pixel_x = -32
- },
-/obj/structure/sign/electricshock{
- pixel_x = 32
- },
-/obj/machinery/door/firedoor/heavy,
-/turf/open/floor/plating,
-/area/security/transfer)
-"bBz" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/darkred,
-/area/security/transfer)
-"bBA" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 8;
- initialize_directions = 11
- },
-/turf/closed/wall/r_wall,
-/area/security/transfer)
-"bBB" = (
-/obj/structure/cable{
- tag = "icon-1-2";
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/port)
-"bBC" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/closed/wall,
-/area/crew_quarters/courtroom)
-"bBD" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/blue,
-/area/crew_quarters/courtroom)
-"bBE" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
-/turf/open/floor/plasteel/blue,
-/area/crew_quarters/courtroom)
-"bBF" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/redblue/blueside{
- tag = "icon-bluered (WEST)";
- icon_state = "bluered";
- dir = 8
- },
-/area/crew_quarters/courtroom)
-"bBG" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/redgreen/side{
- tag = "icon-redgreen (EAST)";
- icon_state = "redgreen";
- dir = 4
- },
-/area/crew_quarters/courtroom)
-"bBH" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/chair{
- dir = 1;
- name = "Bailiff"
- },
-/turf/open/floor/plasteel/green,
-/area/crew_quarters/courtroom)
-"bBI" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/green,
-/area/crew_quarters/courtroom)
-"bBJ" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/closed/wall/r_wall,
-/area/crew_quarters/courtroom)
-"bBK" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/door/firedoor/heavy,
-/turf/open/floor/plating,
-/area/crew_quarters/courtroom)
-"bBL" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
- },
-/obj/structure/cable{
- tag = "icon-0-8";
- icon_state = "0-8"
- },
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/door/firedoor/heavy,
-/turf/open/floor/plating,
-/area/crew_quarters/courtroom)
-"bBM" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/structure/cable{
- tag = "icon-0-8";
- icon_state = "0-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 1
- },
-/obj/machinery/door/firedoor/heavy,
-/turf/open/floor/plating,
-/area/crew_quarters/courtroom)
-"bBN" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/closed/wall/r_wall,
-/area/lawoffice)
-"bBO" = (
-/obj/structure/table/wood,
-/obj/item/paper_bin,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/item/device/radio/intercom{
- dir = 8;
- pixel_x = -28
- },
-/turf/open/floor/wood,
-/area/lawoffice)
-"bBP" = (
-/obj/structure/table/wood,
-/obj/item/device/flashlight/lamp,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/item/storage/briefcase,
-/turf/open/floor/wood,
-/area/lawoffice)
-"bBQ" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/wood,
-/area/lawoffice)
-"bBR" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/table/wood,
-/obj/item/device/taperecorder,
-/obj/item/device/camera,
-/turf/open/floor/wood,
-/area/lawoffice)
-"bBS" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/door/firedoor,
-/obj/machinery/door/poddoor/preopen{
- id = "lawyer_blast";
- name = "privacy door"
- },
-/turf/open/floor/plating,
-/area/lawoffice)
-"bBT" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/red/side{
- dir = 8
- },
-/area/hallway/primary/port)
-"bBU" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0;
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel,
-/area/hallway/primary/port)
-"bBV" = (
-/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,
-/turf/open/floor/plasteel/red/side{
- tag = "icon-red (EAST)";
- icon_state = "red";
- dir = 4
- },
-/area/hallway/primary/port)
-"bBW" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/door/firedoor/heavy,
-/turf/open/floor/plating,
-/area/security/detectives_office)
-"bBX" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/table/wood,
-/obj/item/storage/briefcase,
-/obj/item/clothing/glasses/sunglasses,
-/turf/open/floor/plasteel{
- icon_state = "grimy"
- },
-/area/security/detectives_office)
-"bBY" = (
-/obj/effect/landmark/start{
- name = "Detective"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel{
- icon_state = "grimy"
- },
-/area/security/detectives_office)
-"bBZ" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
-/turf/open/floor/plasteel{
- icon_state = "grimy"
- },
-/area/security/detectives_office)
-"bCa" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/light{
- dir = 4
- },
-/turf/open/floor/plasteel{
- icon_state = "grimy"
- },
-/area/security/detectives_office)
-"bCb" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/closed/wall/r_wall,
-/area/security/hos)
-"bCc" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/chair/comfy/black{
- dir = 4
- },
-/turf/open/floor/wood,
-/area/security/hos)
-"bCd" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
-/obj/structure/table/wood,
-/obj/item/folder/red,
-/obj/item/stamp/hos,
-/turf/open/floor/carpet,
-/area/security/hos)
-"bCe" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 8;
- name = "regular air vent";
- on = 1
- },
-/turf/open/floor/carpet,
-/area/security/hos)
-"bCf" = (
-/obj/machinery/power/apc{
- dir = 4;
- name = "Head of Security's Office APC";
- pixel_x = 24
- },
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/turf/open/floor/wood,
-/area/security/hos)
-"bCg" = (
-/turf/closed/wall,
-/area/crew_quarters/hor)
-"bCh" = (
-/obj/machinery/suit_storage_unit/rd,
-/obj/effect/turf_decal/stripes/line{
- dir = 5
- },
-/turf/open/floor/plasteel{
- icon_state = "whitepurplefull"
- },
-/area/crew_quarters/hor)
-"bCi" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- name = "regular air vent";
- on = 1
- },
-/turf/open/floor/plasteel/whitepurple/corner{
- dir = 1
- },
-/area/crew_quarters/hor)
-"bCj" = (
-/turf/open/floor/plasteel/whitepurple/corner{
- dir = 1
- },
-/area/crew_quarters/hor)
-"bCk" = (
-/obj/machinery/computer/aifixer,
-/turf/open/floor/plasteel/whitepurple/corner{
- dir = 1
- },
-/area/crew_quarters/hor)
-"bCl" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/crew_quarters/hor)
-"bCm" = (
-/obj/machinery/light{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
-"bCn" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- req_access_txt = 1
- },
-/turf/open/floor/plasteel{
- icon_state = "whitepurplefull"
- },
-/area/medical/research{
- name = "Research Division"
- })
-"bCo" = (
-/obj/structure/chair{
- dir = 4
- },
-/obj/effect/landmark/start{
- name = "Scientist"
- },
-/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
-"bCp" = (
-/obj/structure/table,
-/obj/item/storage/fancy/donut_box,
-/turf/open/floor/plasteel{
- icon_state = "whitepurplefull"
- },
-/area/medical/research{
- name = "Research Division"
- })
-"bCq" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/starboard)
-"bCr" = (
-/obj/structure/disposalpipe/trunk{
- dir = 1
- },
-/obj/machinery/disposal/bin,
-/turf/open/floor/plasteel/white,
-/area/toxins/lab)
-"bCs" = (
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel/white,
-/area/toxins/lab)
-"bCt" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/white,
-/area/toxins/lab)
-"bCu" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/white,
-/area/toxins/lab)
-"bCv" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/button/door{
- id = "rnd2";
- name = "Research Lab Shutter Control";
- pixel_x = -5;
- pixel_y = -24;
- req_access_txt = "47"
- },
-/turf/open/floor/plasteel/white,
-/area/toxins/lab)
-"bCw" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/white,
-/area/toxins/lab)
-"bCx" = (
-/obj/machinery/power/apc{
- dir = 2;
- name = "Research Lab APC";
- pixel_x = 0;
- pixel_y = -26
- },
-/obj/structure/cable{
- tag = "icon-0-8";
- icon_state = "0-8"
- },
-/obj/structure/table/glass,
-/obj/item/device/gps/science,
-/turf/open/floor/plasteel/white,
-/area/toxins/lab)
-"bCy" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"bCz" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/machinery/light/small,
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"bCA" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"bCB" = (
-/obj/structure/cable{
- tag = "icon-1-2";
- icon_state = "1-2"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4";
- tag = "90Curve"
- },
-/turf/open/floor/plasteel/darkred,
-/area/security/transfer)
-"bCC" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/table,
-/obj/item/folder/red,
-/turf/open/floor/plasteel/darkred,
-/area/security/transfer)
-"bCD" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/structure/sign/electricshock{
- pixel_y = -32
- },
-/turf/open/floor/plating,
-/area/security/transfer)
-"bCE" = (
-/turf/closed/wall,
-/area/maintenance/fpmaint2)
-"bCF" = (
-/obj/machinery/power/apc{
- dir = 1;
- name = "Arrivals North Maintenance APC";
- pixel_x = -1;
- pixel_y = 26
- },
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/obj/machinery/light/small{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/maintenance/fpmaint2)
-"bCG" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plating,
-/area/maintenance/fpmaint2)
-"bCH" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/light/small{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/maintenance/fpmaint2)
-"bCI" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/door/airlock/maintenance{
- req_access_txt = "12"
- },
-/turf/open/floor/plating,
-/area/maintenance/fpmaint2)
-"bCJ" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/turf/open/floor/plasteel/darkred,
-/area/maintenance/fpmaint2)
-"bCK" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/structure/cable{
- tag = "icon-2-8";
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/darkred,
-/area/maintenance/fpmaint2)
-"bCL" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/door/airlock/maintenance{
- req_access_txt = "12"
- },
-/turf/open/floor/plating,
-/area/maintenance/port)
-"bCM" = (
-/obj/structure/cable{
- tag = "icon-1-8";
- icon_state = "1-8"
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plating,
-/area/maintenance/port)
-"bCN" = (
-/obj/structure/window/reinforced{
- dir = 1;
- pixel_y = 0
- },
-/obj/machinery/light_switch{
- dir = 8;
- pixel_x = -24
- },
-/obj/machinery/door/firedoor/border_only{
- tag = "icon-door_open (NORTH)";
- icon_state = "door_open";
- dir = 1
- },
-/turf/open/floor/plasteel/blue/side{
- tag = "icon-blue (NORTHWEST)";
- icon_state = "blue";
- dir = 9
- },
-/area/crew_quarters/courtroom)
-"bCO" = (
-/obj/structure/window/reinforced{
- dir = 1;
- pixel_y = 0
- },
-/obj/machinery/door/firedoor/border_only{
- tag = "icon-door_open (NORTH)";
- icon_state = "door_open";
- dir = 1
- },
-/obj/machinery/holopad,
-/turf/open/floor/plasteel/blue/side{
- tag = "icon-blue (NORTH)";
- icon_state = "blue";
- dir = 1
- },
-/area/crew_quarters/courtroom)
-"bCP" = (
-/obj/structure/table/wood,
-/obj/structure/window/reinforced{
- dir = 1;
- pixel_y = 0
- },
-/obj/item/gavelblock,
-/obj/machinery/door/firedoor/border_only{
- tag = "icon-door_open (NORTH)";
- icon_state = "door_open";
- dir = 1
- },
-/turf/open/floor/plasteel/blue/side{
- tag = "icon-blue (NORTH)";
- icon_state = "blue";
- dir = 1
- },
-/area/crew_quarters/courtroom)
-"bCQ" = (
-/obj/structure/table/wood,
-/obj/structure/window/reinforced{
- dir = 1;
- pixel_y = 0
- },
-/obj/item/device/radio/intercom{
- broadcasting = 0;
- dir = 8;
- listening = 1;
- name = "Station Intercom (Court)";
- pixel_x = 0
- },
-/obj/machinery/door/firedoor/border_only{
- tag = "icon-door_open (NORTH)";
- icon_state = "door_open";
- dir = 1
- },
-/turf/open/floor/plasteel/blue/side{
- tag = "icon-blue (NORTH)";
- icon_state = "blue";
- dir = 1
- },
-/area/crew_quarters/courtroom)
-"bCR" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 4;
- name = "regular air scrubber";
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/obj/structure/window/reinforced{
- dir = 1;
- pixel_y = 0
- },
-/obj/machinery/door/firedoor/border_only{
- tag = "icon-door_open (NORTH)";
- icon_state = "door_open";
- dir = 1
- },
-/turf/open/floor/plasteel/blue/side{
- tag = "icon-blue (NORTH)";
- icon_state = "blue";
- dir = 1
- },
-/area/crew_quarters/courtroom)
-"bCS" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/machinery/light{
- dir = 4
- },
-/obj/machinery/door/window/brigdoor{
- dir = 1;
- req_access_txt = "1"
- },
-/obj/machinery/door/firedoor/border_only{
- tag = "icon-door_open (NORTH)";
- icon_state = "door_open";
- dir = 1
- },
-/turf/open/floor/plasteel/blue/side{
- tag = "icon-blue (NORTHEAST)";
- icon_state = "blue";
- dir = 5
- },
-/area/crew_quarters/courtroom)
-"bCT" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/closed/wall/r_wall,
-/area/crew_quarters/courtroom)
-"bCU" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 1;
- initialize_directions = 11
- },
-/obj/structure/table,
-/obj/item/paper_bin,
-/turf/open/floor/plasteel/black,
-/area/crew_quarters/courtroom)
-"bCV" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/black,
-/area/crew_quarters/courtroom)
-"bCW" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/bed,
-/obj/item/bedsheet/orange,
-/turf/open/floor/plasteel/black,
-/area/crew_quarters/courtroom)
-"bCX" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/closed/wall/r_wall,
-/area/lawoffice)
-"bCY" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/machinery/light{
- dir = 8
- },
-/obj/structure/chair/office/light{
- dir = 4
- },
-/obj/machinery/requests_console{
- department = "Law office";
- pixel_x = -32;
- pixel_y = 0
- },
-/obj/effect/landmark/start{
- name = "Lawyer"
- },
-/turf/open/floor/wood,
-/area/lawoffice)
-"bCZ" = (
-/obj/structure/table/wood,
-/obj/item/book/manual/wiki/security_space_law,
-/obj/item/stamp/law,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/wood,
-/area/lawoffice)
-"bDa" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 1;
- initialize_directions = 11
- },
-/turf/open/floor/wood,
-/area/lawoffice)
-"bDb" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/machinery/light{
- dir = 4
- },
-/obj/machinery/photocopier,
-/turf/open/floor/wood,
-/area/lawoffice)
-"bDc" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/closed/wall,
-/area/lawoffice)
-"bDd" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 4;
- initialize_directions = 11
- },
-/turf/open/floor/plasteel/red/side{
- dir = 8
- },
-/area/hallway/primary/port)
-"bDe" = (
-/obj/structure/filingcabinet/security,
-/obj/machinery/firealarm{
- dir = 1;
- pixel_x = 0;
- pixel_y = -26
- },
-/turf/open/floor/plasteel{
- icon_state = "grimy"
- },
-/area/security/detectives_office)
-"bDf" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel{
- icon_state = "grimy"
- },
-/area/security/detectives_office)
-"bDg" = (
-/obj/item/storage/secure/safe{
- pixel_x = 0;
- pixel_y = -23
- },
-/obj/structure/closet{
- name = "Evidence Closet"
- },
-/turf/open/floor/plasteel{
- icon_state = "grimy"
- },
-/area/security/detectives_office)
-"bDh" = (
-/obj/structure/closet/secure_closet/detective,
-/turf/open/floor/plasteel{
- icon_state = "grimy"
- },
-/area/security/detectives_office)
-"bDi" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/table/wood,
-/obj/item/book/manual/wiki/security_space_law,
-/turf/open/floor/wood,
-/area/security/hos)
-"bDj" = (
-/obj/structure/table/wood,
-/obj/item/device/flashlight/lamp,
-/obj/machinery/firealarm{
- dir = 1;
- pixel_x = 0;
- pixel_y = -26
- },
-/turf/open/floor/wood,
-/area/security/hos)
-"bDk" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0;
- tag = ""
- },
-/turf/open/floor/wood,
-/area/security/hos)
-"bDl" = (
-/obj/machinery/suit_storage_unit/hos,
-/turf/open/floor/wood,
-/area/security/hos)
-"bDm" = (
-/obj/effect/landmark{
- name = "tripai"
- },
-/turf/open/floor/circuit,
-/area/ai_monitored/turret_protected/ai)
-"bDn" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 8
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/circuit,
-/area/ai_monitored/turret_protected/ai)
-"bDo" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 8;
- name = "regular air scrubber";
- on = 1;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel/blue,
-/area/ai_monitored/turret_protected/ai)
-"bDp" = (
-/obj/effect/landmark/start{
- name = "AI"
- },
-/obj/item/device/radio/intercom{
- broadcasting = 0;
- freerange = 1;
- listening = 1;
- name = "Common Channel";
- pixel_x = -27;
- pixel_y = 9
- },
-/obj/item/device/radio/intercom{
- anyai = 1;
- freerange = 1;
- listening = 0;
- name = "Custom Channel";
- pixel_x = 0;
- pixel_y = 31
- },
-/obj/item/device/radio/intercom{
- anyai = 1;
- broadcasting = 0;
- freerange = 1;
- frequency = 1447;
- name = "Private Channel";
- pixel_x = 27;
- pixel_y = -9
- },
-/obj/machinery/newscaster/security_unit{
- pixel_x = -28;
- pixel_y = 28
- },
-/obj/machinery/requests_console{
- department = "AI";
- departmentType = 5;
- pixel_x = 28;
- pixel_y = 28
- },
-/turf/open/floor/circuit,
-/area/ai_monitored/turret_protected/ai)
-"bDq" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 4;
- name = "regular air vent";
- on = 1
- },
-/turf/open/floor/plasteel/blue,
-/area/ai_monitored/turret_protected/ai)
-"bDr" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 4
- },
-/turf/open/floor/circuit,
-/area/ai_monitored/turret_protected/ai)
-"bDs" = (
-/obj/structure/displaycase/labcage,
-/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/turf/open/floor/plasteel{
- icon_state = "whitepurplefull"
- },
-/area/crew_quarters/hor)
-"bDt" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- req_access_txt = 1
- },
-/turf/open/floor/plasteel/whitepurple/corner,
-/area/crew_quarters/hor)
-"bDu" = (
-/obj/effect/landmark/start{
- name = "Research Director"
- },
-/obj/structure/chair/office/light{
- dir = 4
- },
-/turf/open/floor/plasteel/whitepurple/corner,
-/area/crew_quarters/hor)
-"bDv" = (
-/obj/machinery/light{
- dir = 4
- },
-/obj/machinery/computer/robotics,
-/turf/open/floor/plasteel/whitepurple/corner,
-/area/crew_quarters/hor)
-"bDw" = (
-/turf/open/floor/plasteel{
- icon_state = "whitepurplefull"
- },
-/area/medical/research{
- name = "Research Division"
- })
-"bDx" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- req_access_txt = 1
- },
-/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
-"bDy" = (
-/obj/structure/chair{
- dir = 4
- },
-/turf/open/floor/plasteel{
- icon_state = "whitepurplefull"
- },
-/area/medical/research{
- name = "Research Division"
- })
-"bDz" = (
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
- },
-/obj/machinery/power/apc{
- cell_type = 10000;
- dir = 4;
- name = "Research Division APC";
- pixel_x = 24;
- pixel_y = 0
- },
-/obj/structure/table,
-/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
-"bDA" = (
-/obj/structure/sign/directions/medical{
- tag = "icon-direction_med (NORTH)";
- icon_state = "direction_med";
- dir = 1
- },
-/obj/structure/sign/directions/evac{
- pixel_y = -10
- },
-/obj/structure/sign/directions/security{
- pixel_y = 10
- },
-/turf/closed/wall/r_wall,
-/area/toxins/lab)
-"bDB" = (
-/turf/closed/wall,
-/area/toxins/lab)
-"bDC" = (
-/obj/structure/disposalpipe/segment,
-/turf/closed/wall,
-/area/toxins/lab)
-"bDD" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "rnd2";
- name = "research lab shutters"
- },
-/obj/machinery/door/firedoor/heavy,
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plasteel/white,
-/area/toxins/lab)
-"bDE" = (
-/obj/structure/cable{
- tag = "icon-1-2";
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "rnd2";
- name = "research lab shutters"
- },
-/obj/machinery/door/firedoor/heavy,
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plasteel/white,
-/area/toxins/lab)
-"bDF" = (
-/obj/machinery/door/airlock/maintenance{
- name = "Research Maintenance";
- req_access_txt = "47";
- req_one_access_txt = "0"
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"bDG" = (
-/turf/closed/wall/r_wall,
-/area/medical/research{
- name = "Research Division"
- })
-"bDH" = (
-/turf/closed/wall/r_wall,
-/area/toxins/storage)
-"bDI" = (
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"bDJ" = (
-/turf/closed/wall/r_wall,
-/area/toxins/test_area)
-"bDK" = (
-/obj/structure/table,
-/turf/open/floor/plasteel/darkred,
-/area/security/transfer)
-"bDL" = (
-/turf/open/floor/plating,
-/area/maintenance/fpmaint2)
-"bDM" = (
-/obj/structure/grille,
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
- },
-/obj/structure/window/reinforced{
- dir = 1;
- layer = 2.9
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/security/armory)
-"bDN" = (
-/obj/structure/grille,
-/obj/structure/cable{
- tag = "icon-0-8";
- icon_state = "0-8"
- },
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/obj/structure/window/reinforced{
- dir = 1;
- layer = 2.9
- },
-/turf/open/floor/plating,
-/area/security/armory)
-"bDO" = (
-/obj/structure/grille,
-/obj/structure/cable{
- tag = "icon-0-8";
- icon_state = "0-8"
- },
-/obj/structure/cable,
-/obj/structure/window/reinforced{
- dir = 1;
- layer = 2.9
- },
-/turf/open/floor/plating,
-/area/security/armory)
-"bDP" = (
-/turf/closed/wall/r_wall,
-/area/security/warden{
- name = "Security Control"
- })
-"bDQ" = (
-/turf/open/floor/plasteel/darkred,
-/area/security/warden{
- name = "Security Control"
- })
-"bDR" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/light/small{
- dir = 4
- },
-/turf/open/floor/plasteel/darkred,
-/area/security/warden{
- name = "Security Control"
- })
-"bDS" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/closed/wall/r_wall,
-/area/security/warden{
- name = "Security Control"
- })
-"bDT" = (
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plating,
-/area/maintenance/port)
-"bDU" = (
-/turf/open/floor/plasteel/blue/side{
- tag = "icon-blue (WEST)";
- icon_state = "blue";
- dir = 8
- },
-/area/crew_quarters/courtroom)
-"bDV" = (
-/turf/open/floor/plasteel,
-/area/crew_quarters/courtroom)
-"bDW" = (
-/obj/structure/chair{
- dir = 1;
- name = "Judge"
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/courtroom)
-"bDX" = (
-/turf/open/floor/plasteel/blue/side{
- tag = "icon-blue (EAST)";
- icon_state = "blue";
- dir = 4
- },
-/area/crew_quarters/courtroom)
-"bDY" = (
-/turf/closed/wall/r_wall,
-/area/crew_quarters/courtroom)
-"bDZ" = (
-/obj/machinery/light/small{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/flasher{
- id = "PCell 1";
- pixel_x = -28
- },
-/turf/open/floor/plasteel/black,
-/area/crew_quarters/courtroom)
-"bEa" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/black,
-/area/crew_quarters/courtroom)
-"bEb" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/black,
-/area/crew_quarters/courtroom)
-"bEc" = (
-/turf/closed/wall/r_wall,
-/area/lawoffice)
-"bEd" = (
-/obj/machinery/light_switch{
- dir = 8;
- pixel_x = -24
- },
-/obj/machinery/camera/autoname{
- tag = "icon-camera (EAST)";
- icon_state = "camera";
- dir = 4
- },
-/turf/open/floor/wood,
-/area/lawoffice)
-"bEe" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 1;
- name = "regular air scrubber";
- on = 1
- },
-/turf/open/floor/wood,
-/area/lawoffice)
-"bEf" = (
-/obj/machinery/button/door{
- id = "lawyer_blast";
- name = "Privacy Shutters";
- pixel_x = 25;
- pixel_y = 8
- },
-/obj/structure/filingcabinet/chestdrawer,
-/turf/open/floor/wood,
-/area/lawoffice)
-"bEg" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/red/side{
- dir = 8
- },
-/area/hallway/primary/port)
-"bEh" = (
-/turf/closed/wall/r_wall,
-/area/security/detectives_office)
-"bEi" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/door/firedoor/heavy,
-/obj/machinery/door/airlock/glass_security{
- name = "Detective";
- req_access_txt = "4"
- },
-/turf/open/floor/plasteel{
- icon_state = "grimy"
- },
-/area/security/detectives_office)
-"bEj" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/closed/wall/r_wall,
-/area/security/hos)
-"bEk" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0;
- tag = ""
- },
-/obj/machinery/door/firedoor/heavy,
-/obj/machinery/door/airlock/command{
- name = "Head of Security's Office";
- req_access = null;
- req_access_txt = "58"
- },
-/turf/open/floor/plasteel,
-/area/security/hos)
-"bEl" = (
-/obj/machinery/power/apc{
- cell_type = 5000;
- dir = 1;
- name = "AI Chamber APC";
- pixel_y = 24
- },
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
- },
-/turf/open/floor/plasteel/blue,
-/area/ai_monitored/turret_protected/ai)
-"bEm" = (
-/obj/machinery/camera/motion,
-/turf/open/floor/plasteel/blue,
-/area/ai_monitored/turret_protected/ai)
-"bEn" = (
-/obj/structure/rack,
-/obj/item/circuitboard/aicore{
- pixel_x = -2;
- pixel_y = 4
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/item/device/radio/intercom{
- dir = 8;
- pixel_x = -28
- },
-/turf/open/floor/plasteel{
- icon_state = "whitepurplefull"
- },
-/area/crew_quarters/hor)
-"bEo" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 5
- },
-/turf/open/floor/plasteel/whitepurple/corner{
- dir = 1
- },
-/area/crew_quarters/hor)
-"bEp" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/holopad,
-/turf/open/floor/plasteel/whitepurple/corner{
- dir = 1
- },
-/area/crew_quarters/hor)
-"bEq" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/computer/mecha,
-/turf/open/floor/plasteel/whitepurple/corner{
- dir = 1
- },
-/area/crew_quarters/hor)
-"bEr" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/crew_quarters/hor)
-"bEs" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
-"bEt" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
-/turf/open/floor/plasteel{
- icon_state = "whitepurplefull"
- },
-/area/medical/research{
- name = "Research Division"
- })
-"bEu" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/chair{
- dir = 4
- },
-/obj/effect/landmark/start{
- name = "Scientist"
- },
-/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
-"bEv" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/table,
-/obj/item/storage/fancy/cigarettes,
-/turf/open/floor/plasteel{
- icon_state = "whitepurplefull"
- },
-/area/medical/research{
- name = "Research Division"
- })
-"bEw" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/closed/wall,
-/area/medical/research{
- name = "Research Division"
- })
-"bEx" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/purple/side{
- tag = "icon-purple (WEST)";
- icon_state = "purple";
- dir = 8
- },
-/area/hallway/primary/starboard)
-"bEy" = (
-/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/starboard)
-"bEz" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/primary/starboard)
-"bEA" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/closed/wall/r_wall,
-/area/medical/research{
- name = "Research Division"
- })
-"bEB" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/light{
- dir = 1
- },
-/obj/machinery/door/firedoor/heavy,
-/obj/machinery/door/poddoor/preopen{
- id = "Biohazard";
- name = "biohazard containment door"
- },
-/turf/open/floor/plasteel/delivery,
-/area/medical/research{
- name = "Research Division"
- })
-"bEC" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/disposalpipe/segment,
-/turf/closed/wall,
-/area/medical/research{
- name = "Research Division"
- })
-"bED" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/whitepurple/side{
- tag = "icon-whitepurple (NORTH)";
- icon_state = "whitepurple";
- dir = 1
- },
-/area/medical/research{
- name = "Research Division"
- })
-"bEE" = (
-/obj/structure/cable{
- tag = "icon-1-2";
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
-/turf/open/floor/plasteel/whitepurple/side{
- tag = "icon-whitepurple (NORTH)";
- icon_state = "whitepurple";
- dir = 1
- },
-/area/medical/research{
- name = "Research Division"
- })
-"bEF" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/whitepurple/side{
- tag = "icon-whitepurple (NORTH)";
- icon_state = "whitepurple";
- dir = 1
- },
-/area/medical/research{
- name = "Research Division"
- })
-"bEG" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 1
- },
-/turf/open/floor/plasteel/whitepurple/side{
- tag = "icon-whitepurple (NORTH)";
- icon_state = "whitepurple";
- dir = 1
- },
-/area/medical/research{
- name = "Research Division"
- })
-"bEH" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/light{
- dir = 1
- },
-/turf/open/floor/plasteel/whitepurple/side{
- tag = "icon-whitepurple (NORTH)";
- icon_state = "whitepurple";
- dir = 1
- },
-/area/medical/research{
- name = "Research Division"
- })
-"bEI" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/airalarm{
- frequency = 1439;
- locked = 0;
- pixel_y = 23
- },
-/turf/open/floor/plasteel/whitepurple/side{
- tag = "icon-whitepurple (NORTH)";
- icon_state = "whitepurple";
- dir = 1
- },
-/area/medical/research{
- name = "Research Division"
- })
-"bEJ" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 10
- },
-/obj/machinery/light/small{
- dir = 1
- },
-/turf/open/floor/plasteel/whitepurple/side{
- tag = "icon-whitepurple (NORTHEAST)";
- icon_state = "whitepurple";
- dir = 5
- },
-/area/medical/research{
- name = "Research Division"
- })
-"bEK" = (
-/turf/closed/wall,
-/area/toxins/storage)
-"bEL" = (
-/obj/machinery/portable_atmospherics/canister/oxygen,
-/turf/open/floor/plasteel/bot,
-/area/toxins/storage)
-"bEM" = (
-/obj/machinery/airalarm{
- frequency = 1439;
- locked = 0;
- pixel_y = 23
- },
-/turf/open/floor/plasteel/floorgrime,
-/area/toxins/storage)
-"bEN" = (
-/obj/machinery/camera/autoname,
-/turf/open/floor/plasteel/floorgrime,
-/area/toxins/storage)
-"bEO" = (
-/obj/machinery/portable_atmospherics/canister/toxins,
-/turf/open/floor/plasteel/delivery,
-/area/toxins/storage)
-"bEP" = (
-/obj/machinery/computer/shuttle/labor,
-/obj/structure/reagent_dispensers/peppertank{
- pixel_x = -31;
- pixel_y = 0
- },
-/turf/open/floor/mineral/plastitanium,
-/area/shuttle/labor)
-"bEQ" = (
-/obj/structure/chair/office/dark{
- dir = 1
- },
-/turf/open/floor/mineral/plastitanium,
-/area/shuttle/labor)
-"bER" = (
-/obj/structure/table,
-/obj/item/folder/red,
-/obj/item/restraints/handcuffs,
-/turf/open/floor/mineral/plastitanium,
-/area/shuttle/labor)
-"bES" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/structure/cable{
- tag = "icon-0-4";
- icon_state = "0-4"
- },
-/turf/open/floor/plating,
-/area/security/transfer)
-"bET" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/structure/cable{
- tag = "icon-0-4";
- icon_state = "0-4"
- },
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/turf/open/floor/plating,
-/area/security/transfer)
-"bEU" = (
-/obj/structure/cable{
- tag = "icon-1-2";
- icon_state = "1-2"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/turf/open/floor/plasteel/darkred,
-/area/security/transfer)
-"bEV" = (
-/obj/machinery/camera/autoname{
- tag = "icon-camera (NORTHWEST)";
- icon_state = "camera";
- dir = 9
- },
-/turf/open/floor/plasteel/darkred,
-/area/security/transfer)
-"bEW" = (
-/obj/structure/grille,
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
- },
-/obj/structure/cable,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/security/armory)
-"bEX" = (
-/obj/structure/grille,
-/turf/open/floor/plating,
-/area/security/armory)
-"bEY" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/darkred,
-/area/security/warden{
- name = "Security Control"
- })
-"bEZ" = (
-/obj/machinery/light/small,
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/obj/item/storage/toolbox/mechanical,
-/turf/open/floor/plating,
-/area/maintenance/port)
-"bFa" = (
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/turf/closed/wall,
-/area/crew_quarters/courtroom)
-"bFb" = (
-/obj/structure/closet/secure_closet/courtroom,
-/obj/item/gavelhammer,
-/turf/open/floor/plasteel/blue/side{
- tag = "icon-blue (SOUTHWEST)";
- icon_state = "blue";
- dir = 10
- },
-/area/crew_quarters/courtroom)
-"bFc" = (
-/turf/open/floor/plasteel/blue/side,
-/area/crew_quarters/courtroom)
-"bFd" = (
-/obj/machinery/firealarm{
- dir = 1;
- pixel_x = 0;
- pixel_y = -26
- },
-/turf/open/floor/plasteel/blue/side,
-/area/crew_quarters/courtroom)
-"bFe" = (
-/obj/machinery/camera/autoname{
- tag = "icon-camera (NORTH)";
- icon_state = "camera";
- dir = 1
- },
-/turf/open/floor/plasteel/blue/side,
-/area/crew_quarters/courtroom)
-"bFf" = (
-/turf/open/floor/plasteel/blue/side{
- tag = "icon-blue (SOUTHEAST)";
- icon_state = "blue";
- dir = 6
- },
-/area/crew_quarters/courtroom)
-"bFg" = (
-/obj/machinery/door/firedoor/heavy,
-/obj/machinery/door/airlock/security{
- name = "Court Cell";
- req_access = null;
- req_access_txt = "63"
- },
-/turf/open/floor/plasteel/black,
-/area/crew_quarters/courtroom)
-"bFh" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 1;
- name = "regular air scrubber";
- on = 1
- },
-/turf/open/floor/plasteel/black,
-/area/crew_quarters/courtroom)
-"bFi" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- tag = "icon-vent_map (NORTH)";
- name = "regular air vent";
- icon_state = "vent_map";
- dir = 1;
- on = 1
- },
-/turf/open/floor/plasteel/black,
-/area/crew_quarters/courtroom)
-"bFj" = (
-/obj/structure/closet/lawcloset,
-/turf/open/floor/wood,
-/area/lawoffice)
-"bFk" = (
-/obj/item/twohanded/required/kirbyplants{
- tag = "icon-plant-18";
- icon_state = "plant-18"
- },
-/turf/open/floor/wood,
-/area/lawoffice)
-"bFl" = (
-/obj/structure/table/wood,
-/turf/open/floor/wood,
-/area/lawoffice)
-"bFm" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0;
- tag = ""
- },
-/obj/structure/disposalpipe/junction{
- dir = 1;
- icon_state = "pipe-j1";
- tag = "icon-pipe-j1 (EAST)"
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/port)
-"bFn" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel/red/side{
- tag = "icon-red (EAST)";
- icon_state = "red";
- dir = 4
- },
-/area/hallway/primary/port)
-"bFo" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/closed/wall/r_wall,
-/area/security/main)
-"bFp" = (
-/obj/structure/disposalpipe/trunk{
- dir = 8
- },
-/obj/machinery/disposal/bin,
-/turf/open/floor/plasteel/red/side{
- dir = 9
- },
-/area/security/main)
-"bFq" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/red/corner{
- dir = 1
- },
-/area/security/main)
-"bFr" = (
-/obj/structure/chair{
- dir = 4
- },
-/obj/effect/landmark/start{
- name = "Security Officer"
- },
-/turf/open/floor/plasteel/red/corner{
- dir = 1
- },
-/area/security/main)
-"bFs" = (
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
- },
-/obj/machinery/power/apc{
- dir = 1;
- name = "Security Office APC";
- pixel_x = 0;
- pixel_y = 24
- },
-/obj/structure/table,
-/obj/item/storage/fancy/donut_box,
-/turf/open/floor/plasteel/red/corner{
- dir = 1
- },
-/area/security/main)
-"bFt" = (
-/obj/machinery/light{
- dir = 1
- },
-/obj/machinery/holopad,
-/turf/open/floor/plasteel/red/corner{
- dir = 1
- },
-/area/security/main)
-"bFu" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/table,
-/obj/item/folder/red,
-/obj/machinery/camera/autoname,
-/obj/item/device/radio/intercom{
- name = "Station Intercom";
- pixel_x = 0;
- pixel_y = 24
- },
-/turf/open/floor/plasteel/red/corner{
- dir = 1
- },
-/area/security/main)
-"bFv" = (
-/obj/structure/chair{
- dir = 8
- },
-/obj/effect/landmark/start{
- name = "Security Officer"
- },
-/turf/open/floor/plasteel/red/corner{
- dir = 1
- },
-/area/security/main)
-"bFw" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0;
- tag = ""
- },
-/turf/open/floor/plasteel/red/corner{
- dir = 1
- },
-/area/security/main)
-"bFx" = (
-/obj/structure/closet/cabinet,
-/obj/item/reagent_containers/food/drinks/bottle/vermouth,
-/obj/item/key/security,
-/obj/machinery/camera/autoname{
- tag = "icon-camera (NORTHWEST)";
- icon_state = "camera";
- dir = 9
- },
-/turf/open/floor/plasteel/red/side{
- dir = 5
- },
-/area/security/main)
-"bFy" = (
-/turf/closed/wall/r_wall,
-/area/security/main)
-"bFz" = (
-/obj/structure/cable{
- tag = "icon-1-4";
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/circuit,
-/area/ai_monitored/turret_protected/ai)
-"bFA" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/cable{
- tag = "icon-1-4";
- icon_state = "1-4"
- },
-/turf/open/floor/circuit,
-/area/ai_monitored/turret_protected/ai)
-"bFB" = (
-/obj/machinery/power/smes{
- charge = 5e+006
- },
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/turf/open/floor/circuit,
-/area/ai_monitored/turret_protected/ai)
-"bFC" = (
-/obj/structure/rack,
-/obj/item/device/aicard,
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/machinery/camera/autoname{
- tag = "icon-camera (NORTHEAST)";
- icon_state = "camera";
- dir = 5
- },
-/turf/open/floor/plasteel{
- icon_state = "whitepurplefull"
- },
-/area/crew_quarters/hor)
-"bFD" = (
-/turf/open/floor/plasteel/whitepurple/corner,
-/area/crew_quarters/hor)
-"bFE" = (
-/obj/machinery/door/airlock/command{
- name = "Research Director's Office";
- req_access_txt = "30";
- req_one_access_txt = "0"
- },
-/turf/open/floor/plasteel/white,
-/area/crew_quarters/hor)
-"bFF" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/turf/open/floor/plasteel{
- icon_state = "whitepurplefull"
- },
-/area/medical/research{
- name = "Research Division"
- })
-"bFG" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
-"bFH" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 2;
- name = "regular air scrubber";
- on = 1
- },
-/turf/open/floor/plasteel{
- icon_state = "whitepurplefull"
- },
-/area/medical/research{
- name = "Research Division"
- })
-"bFI" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/cable{
- tag = "icon-1-8";
- icon_state = "1-8"
- },
-/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
-"bFJ" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/door/airlock/research{
- name = "Research Division";
- req_access_txt = "0";
- req_one_access_txt = "47"
- },
-/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
-"bFK" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/purple/side{
- tag = "icon-purple (WEST)";
- icon_state = "purple";
- dir = 8
- },
-/area/medical/research{
- name = "Research Division"
- })
-"bFL" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/cable{
- tag = "icon-2-8";
- icon_state = "2-8"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/turf/open/floor/plasteel,
-/area/medical/research{
- name = "Research Division"
- })
-"bFM" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel,
-/area/medical/research{
- name = "Research Division"
- })
-"bFN" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/door/airlock/research{
- name = "Research Division";
- req_access_txt = "0";
- req_one_access_txt = "47"
- },
-/turf/open/floor/plasteel,
-/area/medical/research{
- name = "Research Division"
- })
-"bFO" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/door/firedoor/heavy,
-/obj/machinery/door/poddoor/preopen{
- id = "Biohazard";
- name = "biohazard containment door"
- },
-/turf/open/floor/plasteel/delivery,
-/area/medical/research{
- name = "Research Division"
- })
-"bFP" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/door/airlock/research{
- name = "Research Division";
- req_access_txt = "0";
- req_one_access_txt = "47"
- },
-/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
-"bFQ" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
-"bFR" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/cable{
- tag = "icon-1-8";
- icon_state = "1-8"
- },
-/obj/effect/landmark/start{
- name = "Scientist"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
-"bFS" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
-"bFT" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/effect/landmark/start{
- name = "Scientist"
- },
-/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
-"bFU" = (
-/obj/structure/cable{
- tag = "icon-2-8";
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 4;
- name = "regular air vent";
- on = 1
- },
-/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
-"bFV" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 4
- },
-/obj/machinery/camera/autoname{
- tag = "icon-camera (NORTHWEST)";
- icon_state = "camera";
- dir = 9
- },
-/turf/open/floor/plasteel/whitepurple/side{
- tag = "icon-whitepurple (EAST)";
- icon_state = "whitepurple";
- dir = 4
- },
-/area/medical/research{
- name = "Research Division"
- })
-"bFW" = (
-/obj/machinery/light{
- icon_state = "tube1";
- dir = 8
- },
-/obj/machinery/portable_atmospherics/canister/oxygen,
-/turf/open/floor/plasteel/bot,
-/area/toxins/storage)
-"bFX" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 2;
- name = "regular air scrubber";
- on = 1
- },
-/obj/machinery/portable_atmospherics/canister/oxygen,
-/turf/open/floor/plasteel/bot,
-/area/toxins/storage)
-"bFY" = (
-/turf/open/floor/plasteel/floorgrime,
-/area/toxins/storage)
-"bFZ" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- name = "regular air vent";
- on = 1
- },
-/turf/open/floor/plasteel/floorgrime,
-/area/toxins/storage)
-"bGa" = (
-/obj/machinery/light{
- dir = 4
- },
-/obj/machinery/portable_atmospherics/canister/toxins,
-/turf/open/floor/plasteel/delivery,
-/area/toxins/storage)
-"bGb" = (
-/turf/open/floor/plasteel/airless,
-/area/toxins/test_area)
-"bGc" = (
-/turf/open/floor/mineral/plastitanium,
-/area/shuttle/labor)
-"bGd" = (
-/obj/machinery/button/flasher{
- id = "gulagshuttleflasher";
- name = "Flash Control";
- pixel_x = 0;
- pixel_y = -26;
- req_access_txt = "1"
- },
-/obj/machinery/light,
-/turf/open/floor/mineral/plastitanium,
-/area/shuttle/labor)
-"bGe" = (
-/obj/machinery/mineral/labor_claim_console{
- machinedir = 2;
- pixel_x = 30;
- pixel_y = 30
- },
-/turf/open/floor/mineral/plastitanium,
-/area/shuttle/labor)
-"bGf" = (
-/obj/machinery/door/airlock/titanium{
- name = "Labor Shuttle Airlock";
- req_access_txt = "2"
- },
-/turf/open/floor/mineral/plastitanium,
-/area/shuttle/labor)
-"bGg" = (
-/obj/machinery/door/airlock/external{
- name = "Arrival Airlock"
- },
-/turf/open/floor/noslip,
-/area/security/transfer)
-"bGh" = (
-/turf/open/floor/noslip,
-/area/security/transfer)
-"bGi" = (
-/obj/machinery/door/firedoor/heavy,
-/obj/machinery/door/airlock/glass_security{
- name = "Labor Camp Shuttle Airlock";
- req_access_txt = "2"
- },
-/turf/open/floor/noslip,
-/area/security/transfer)
-"bGj" = (
-/obj/machinery/computer/gulag_teleporter_computer,
-/turf/open/floor/plasteel/darkred,
-/area/security/transfer)
-"bGk" = (
-/turf/closed/wall/r_wall,
-/area/security/armory)
-"bGl" = (
-/obj/machinery/door/airlock/glass_security{
- name = "Security Control";
- req_access_txt = "2"
- },
-/turf/open/floor/plasteel/darkred,
-/area/security/warden{
- name = "Security Control"
- })
-"bGm" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/door/firedoor/heavy,
-/obj/machinery/door/airlock/glass_security{
- name = "Security Control";
- req_access_txt = "2"
- },
-/turf/open/floor/plasteel/darkred,
-/area/security/warden{
- name = "Security Control"
- })
-"bGn" = (
-/obj/structure/disposalpipe/segment,
-/turf/closed/wall/r_wall,
-/area/security/warden{
- name = "Security Control"
- })
-"bGo" = (
-/obj/machinery/door/firedoor/heavy,
-/obj/machinery/door/airlock/glass_security{
- id_tag = null;
- name = "Brig";
- req_access_txt = "63"
- },
-/turf/open/floor/plasteel/darkred,
-/area/crew_quarters/courtroom)
-"bGp" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/door/firedoor/heavy,
-/obj/machinery/door/airlock/glass_security{
- name = "Long-Term Cell 1";
- req_access_txt = "2"
- },
-/turf/open/floor/plasteel/darkred/side{
- tag = "icon-darkred (NORTH)";
- icon_state = "darkred";
- dir = 1
- },
-/area/crew_quarters/courtroom)
-"bGq" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 8;
- initialize_directions = 11
- },
-/turf/open/floor/plasteel/red/side{
- dir = 8
- },
-/area/hallway/primary/port)
-"bGr" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0;
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel,
-/area/hallway/primary/port)
-"bGs" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/machinery/light{
- dir = 4
- },
-/turf/open/floor/plasteel/red/side{
- tag = "icon-red (EAST)";
- icon_state = "red";
- dir = 4
- },
-/area/hallway/primary/port)
-"bGt" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/closed/wall/r_wall,
-/area/security/main)
-"bGu" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/red/corner{
- dir = 8
- },
-/area/security/main)
-"bGv" = (
-/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/security/main)
-"bGw" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/structure/chair{
- dir = 4
- },
-/obj/effect/landmark/start{
- name = "Security Officer"
- },
-/turf/open/floor/plasteel,
-/area/security/main)
-"bGx" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0;
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/structure/table,
-/obj/item/book/manual/wiki/security_space_law,
-/turf/open/floor/plasteel,
-/area/security/main)
-"bGy" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/structure/table,
-/obj/item/folder/red,
-/turf/open/floor/plasteel,
-/area/security/main)
-"bGz" = (
-/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,
-/obj/structure/table,
-/turf/open/floor/plasteel,
-/area/security/main)
-"bGA" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 8;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/obj/structure/chair{
- dir = 8
- },
-/obj/effect/landmark/start{
- name = "Security Officer"
- },
-/turf/open/floor/plasteel,
-/area/security/main)
-"bGB" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0;
- tag = ""
- },
-/turf/open/floor/plasteel,
-/area/security/main)
-"bGC" = (
-/obj/machinery/airalarm{
- dir = 8;
- icon_state = "alarm0";
- pixel_x = 24
- },
-/turf/open/floor/plasteel/red/corner{
- dir = 4
- },
-/area/security/main)
-"bGD" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/black,
-/area/ai_monitored/turret_protected/ai)
-"bGE" = (
-/obj/machinery/power/terminal{
- icon_state = "term";
- dir = 1
- },
-/turf/open/floor/circuit,
-/area/ai_monitored/turret_protected/ai)
-"bGF" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/black,
-/area/ai_monitored/turret_protected/ai)
-"bGG" = (
-/obj/structure/rack,
-/obj/item/device/taperecorder{
- pixel_x = -3
- },
-/obj/item/device/paicard{
- pixel_x = 4
- },
-/obj/machinery/airalarm{
- dir = 4;
- pixel_x = -23;
- pixel_y = 0
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/turf/open/floor/plasteel{
- icon_state = "whitepurplefull"
- },
-/area/crew_quarters/hor)
-"bGH" = (
-/obj/machinery/keycard_auth{
- pixel_x = 0;
- pixel_y = -24
- },
-/obj/machinery/light,
-/obj/machinery/computer/card/minor/rd,
-/turf/open/floor/plasteel/whitepurple/corner{
- dir = 1
- },
-/area/crew_quarters/hor)
-"bGI" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 4;
- name = "regular air scrubber";
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/obj/structure/table,
-/obj/machinery/button/door{
- id = "Biohazard";
- name = "Biohazard Shutter Control";
- pixel_x = -5;
- pixel_y = 5;
- req_access_txt = "47"
- },
-/obj/machinery/button/door{
- id = "rnd2";
- name = "Research Lab Shutter Control";
- pixel_x = 5;
- pixel_y = 5;
- req_access_txt = "47"
- },
-/turf/open/floor/plasteel/whitepurple/corner{
- dir = 1
- },
-/area/crew_quarters/hor)
-"bGJ" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/structure/closet/secure_closet/RD,
-/turf/open/floor/plasteel/whitepurple/corner{
- dir = 1
- },
-/area/crew_quarters/hor)
-"bGK" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/closed/wall,
-/area/crew_quarters/hor)
-"bGL" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
-"bGM" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/machinery/camera/autoname{
- tag = "icon-camera (SOUTHWEST)";
- icon_state = "camera";
- dir = 10
- },
-/turf/open/floor/plasteel{
- icon_state = "whitepurplefull"
- },
-/area/medical/research{
- name = "Research Division"
- })
-"bGN" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 2;
- initialize_directions = 11
- },
-/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
-"bGO" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel{
- icon_state = "whitepurplefull"
- },
-/area/medical/research{
- name = "Research Division"
- })
-"bGP" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/closed/wall,
-/area/medical/research{
- name = "Research Division"
- })
-"bGQ" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 2;
- initialize_directions = 11
- },
-/obj/machinery/light{
- dir = 8
- },
-/turf/open/floor/plasteel/purple/side{
- tag = "icon-purple (WEST)";
- icon_state = "purple";
- dir = 8
- },
-/area/hallway/primary/starboard)
-"bGR" = (
-/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/starboard)
-"bGS" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/starboard)
-"bGT" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/closed/wall/r_wall,
-/area/medical/research{
- name = "Research Division"
- })
-"bGU" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/machinery/door/firedoor/heavy,
-/obj/machinery/door/poddoor/preopen{
- id = "Biohazard";
- name = "biohazard containment door"
- },
-/obj/structure/closet/emcloset,
-/turf/open/floor/plasteel/delivery,
-/area/medical/research{
- name = "Research Division"
- })
-"bGV" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/structure/disposalpipe/segment,
-/turf/closed/wall,
-/area/medical/research{
- name = "Research Division"
- })
-"bGW" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 2;
- initialize_directions = 11
- },
-/turf/open/floor/plasteel/whitepurple/side,
-/area/medical/research{
- name = "Research Division"
- })
-"bGX" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0;
- tag = ""
- },
-/turf/open/floor/plasteel/whitepurple/side,
-/area/medical/research{
- name = "Research Division"
- })
-"bGY" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/whitepurple/side,
-/area/medical/research{
- name = "Research Division"
- })
-"bGZ" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/whitepurple/side,
-/area/medical/research{
- name = "Research Division"
- })
-"bHa" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 10
- },
-/turf/open/floor/plasteel/whitepurple/corner{
- tag = "icon-whitepurplecorner (WEST)";
- icon_state = "whitepurplecorner";
- dir = 8
- },
-/area/medical/research{
- name = "Research Division"
- })
-"bHb" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/whitepurple/side{
- tag = "icon-whitepurple (EAST)";
- icon_state = "whitepurple";
- dir = 4
- },
-/area/medical/research{
- name = "Research Division"
- })
-"bHc" = (
-/obj/machinery/portable_atmospherics/canister/bz,
-/turf/open/floor/plasteel/bot,
-/area/toxins/storage)
-"bHd" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/portable_atmospherics/canister/bz,
-/turf/open/floor/plasteel/bot,
-/area/toxins/storage)
-"bHe" = (
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plasteel/floorgrime,
-/area/toxins/storage)
-"bHf" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/floorgrime,
-/area/toxins/storage)
-"bHg" = (
-/obj/item/clothing/shoes/sneakers/purple,
-/obj/item/clothing/head/soft/purple,
-/obj/item/clothing/glasses/regular/hipster,
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"bHh" = (
-/obj/machinery/door/airlock/titanium{
- name = "Labor Shuttle Airlock";
- req_access_txt = "2"
- },
-/turf/open/floor/plasteel/black,
-/area/shuttle/labor)
-"bHi" = (
-/obj/machinery/mineral/stacking_machine/laborstacker{
- input_dir = 2;
- output_dir = 1
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/labor)
-"bHj" = (
-/obj/machinery/gulag_teleporter,
-/turf/open/floor/plasteel/darkred,
-/area/security/transfer)
-"bHk" = (
-/obj/structure/closet/secure_closet/lethalshots,
-/turf/open/floor/plasteel{
- icon_state = "vault";
- dir = 4
- },
-/area/ai_monitored/security/armory)
-"bHl" = (
-/obj/machinery/door/poddoor/shutters{
- id = "armory";
- name = "armory shutters"
- },
-/turf/open/floor/plasteel/black,
-/area/ai_monitored/security/armory)
-"bHm" = (
-/obj/structure/rack,
-/obj/item/storage/box/rubbershot{
- pixel_x = 4;
- pixel_y = -6
- },
-/obj/item/storage/box/rubbershot{
- pixel_x = 1;
- pixel_y = -2
- },
-/obj/item/storage/box/rubbershot{
- pixel_x = -3;
- pixel_y = 3
- },
-/obj/machinery/camera/motion{
- c_tag = "Armory Motion Sensor";
- dir = 2;
- name = "motion-sensitive security camera"
- },
-/turf/open/floor/plasteel/darkred,
-/area/ai_monitored/security/armory)
-"bHn" = (
-/obj/machinery/airalarm{
- frequency = 1439;
- locked = 0;
- pixel_y = 23
- },
-/obj/structure/rack,
-/obj/item/clothing/suit/armor/riot{
- pixel_x = 6;
- pixel_y = -6
- },
-/obj/item/clothing/suit/armor/riot{
- pixel_x = 3;
- pixel_y = -3
- },
-/obj/item/clothing/suit/armor/riot{
- pixel_x = -1;
- pixel_y = 1
- },
-/obj/item/clothing/head/helmet/riot{
- pixel_x = -4;
- pixel_y = -6
- },
-/obj/item/clothing/head/helmet/riot{
- pixel_x = -6;
- pixel_y = -2
- },
-/obj/item/clothing/head/helmet/riot{
- pixel_x = -8;
- pixel_y = 2
- },
-/turf/open/floor/plasteel/darkred,
-/area/ai_monitored/security/armory)
-"bHo" = (
-/obj/structure/rack,
-/obj/item/shield/riot{
- pixel_x = 4;
- pixel_y = -7
- },
-/obj/item/shield/riot{
- pixel_x = 0;
- pixel_y = -3
- },
-/obj/item/shield/riot{
- pixel_x = -4;
- pixel_y = 0
- },
-/turf/open/floor/plasteel/darkred,
-/area/ai_monitored/security/armory)
-"bHp" = (
-/obj/machinery/power/apc{
- cell_type = 5000;
- dir = 4;
- name = "Armory APC";
- pixel_x = 24;
- pixel_y = 0
- },
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
- },
-/obj/machinery/button/door{
- id = "armory";
- name = "Armory Shutters";
- pixel_x = 0;
- pixel_y = 28;
- req_access_txt = "3"
- },
-/obj/structure/rack,
-/obj/item/clothing/mask/gas/sechailer{
- pixel_x = 6;
- pixel_y = -6
- },
-/obj/item/clothing/mask/gas/sechailer{
- pixel_x = 2;
- pixel_y = -2
- },
-/obj/item/clothing/mask/gas/sechailer{
- pixel_x = -2;
- pixel_y = 2
- },
-/turf/open/floor/plasteel/darkred,
-/area/ai_monitored/security/armory)
-"bHq" = (
-/obj/machinery/light{
- icon_state = "tube1";
- dir = 8
- },
-/obj/structure/table,
-/obj/item/clothing/ears/earmuffs,
-/obj/item/clothing/ears/earmuffs,
-/obj/item/clothing/glasses/sunglasses,
-/obj/item/clothing/glasses/sunglasses,
-/obj/item/storage/firstaid/regular,
-/obj/machinery/power/apc{
- cell_type = 5000;
- dir = 8;
- name = "Brig Control APC";
- pixel_x = -26;
- pixel_y = 0
- },
-/obj/structure/cable{
- icon_state = "0-2";
- pixel_y = 1;
- d2 = 2
- },
-/turf/open/floor/plasteel/showroomfloor,
-/area/security/warden{
- name = "Security Control"
- })
-"bHr" = (
-/turf/open/floor/plasteel/showroomfloor,
-/area/security/warden{
- name = "Security Control"
- })
-"bHs" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/showroomfloor,
-/area/security/warden{
- name = "Security Control"
- })
-"bHt" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/table,
-/obj/machinery/recharger,
-/obj/machinery/status_display{
- density = 0;
- layer = 4;
- pixel_x = 0;
- pixel_y = 31
- },
-/turf/open/floor/plasteel/showroomfloor,
-/area/security/warden{
- name = "Security Control"
- })
-"bHu" = (
-/obj/structure/disposalpipe/trunk{
- dir = 4
- },
-/obj/machinery/disposal/bin,
-/obj/machinery/camera/autoname{
- tag = "icon-camera (SOUTHEAST)";
- icon_state = "camera";
- dir = 6
- },
-/turf/open/floor/plasteel/showroomfloor,
-/area/security/warden{
- name = "Security Control"
- })
-"bHv" = (
-/obj/structure/disposalpipe/junction{
- dir = 4;
- icon_state = "pipe-j2";
- tag = "icon-pipe-j1 (WEST)"
- },
-/turf/closed/wall,
-/area/security/warden{
- name = "Security Control"
- })
-"bHw" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/requests_console{
- department = "Security";
- departmentType = 5;
- pixel_y = 30
- },
-/turf/open/floor/plasteel/darkred,
-/area/security/brig{
- name = "Security"
- })
-"bHx" = (
-/obj/machinery/light{
- dir = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel/darkred,
-/area/security/brig{
- name = "Security"
- })
-"bHy" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel/darkred,
-/area/security/brig{
- name = "Security"
- })
-"bHz" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/obj/machinery/power/apc{
- cell_type = 10000;
- dir = 1;
- name = "Brig APC";
- pixel_x = 0;
- pixel_y = 24
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel/darkred,
-/area/security/brig{
- name = "Security"
- })
-"bHA" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0;
- tag = ""
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/firealarm{
- pixel_y = 28
- },
-/turf/open/floor/plasteel/darkred,
-/area/security/brig{
- name = "Security"
- })
-"bHB" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0;
- tag = ""
- },
-/obj/machinery/light{
- dir = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel/darkred,
-/area/security/brig{
- name = "Security"
- })
-"bHC" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0;
- tag = ""
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/button/flasher{
- id = "PCell 1";
- pixel_x = 6;
- pixel_y = 24
- },
-/obj/machinery/camera/autoname,
-/turf/open/floor/plasteel/darkred,
-/area/security/brig{
- name = "Security"
- })
-"bHD" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0;
- tag = ""
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel/darkred,
-/area/security/brig{
- name = "Security"
- })
-"bHE" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0;
- tag = ""
- },
-/obj/structure/disposalpipe/junction{
- icon_state = "pipe-j1";
- dir = 4
- },
-/turf/open/floor/plasteel/darkred,
-/area/security/brig{
- name = "Security"
- })
-"bHF" = (
-/obj/machinery/door/airlock/glass_security{
- id_tag = "innersec";
- name = "Security";
- req_access_txt = "63"
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0;
- tag = ""
- },
-/turf/open/floor/plasteel/darkred,
-/area/security/brig{
- name = "Security"
- })
-"bHG" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0;
- tag = ""
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel/darkred,
-/area/security/brig{
- name = "Security"
- })
-"bHH" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0;
- tag = ""
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4";
- tag = ""
- },
-/turf/open/floor/plasteel/darkred,
-/area/security/brig{
- name = "Security"
- })
-"bHI" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0;
- tag = ""
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/light{
- dir = 1
- },
-/turf/open/floor/plasteel/darkred,
-/area/security/brig{
- name = "Security"
- })
-"bHJ" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0;
- tag = ""
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/flasher{
- id = "secentry";
- pixel_x = 0;
- pixel_y = 28
- },
-/turf/open/floor/plasteel/darkred,
-/area/security/brig{
- name = "Security"
- })
-"bHK" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass_security{
- id_tag = "outersec";
- name = "Security";
- req_access_txt = "63"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0;
- tag = ""
- },
-/turf/open/floor/plasteel/darkred,
-/area/security/brig{
- name = "Security"
- })
-"bHL" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0;
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel/red/side{
- dir = 8
- },
-/area/hallway/primary/port)
-"bHM" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0;
- tag = ""
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/structure/cable{
- tag = "icon-2-8";
- icon_state = "2-8"
- },
-/obj/structure/disposalpipe/junction{
- icon_state = "pipe-j2";
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/port)
-"bHN" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/red/side{
- tag = "icon-red (EAST)";
- icon_state = "red";
- dir = 4
- },
-/area/hallway/primary/port)
-"bHO" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/door/firedoor/heavy,
-/obj/machinery/door/airlock/security{
- name = "Security Office";
- req_access = null;
- req_access_txt = "63"
- },
-/turf/open/floor/plasteel{
- icon_state = "redfull"
- },
-/area/security/main)
-"bHP" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/red/corner{
- dir = 8
- },
-/area/security/main)
-"bHQ" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/security/main)
-"bHR" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel,
-/area/security/main)
-"bHS" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8";
- tag = ""
- },
-/obj/structure/chair{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/security/main)
-"bHT" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/chair{
- dir = 1
- },
-/obj/effect/landmark/start{
- name = "Security Officer"
- },
-/turf/open/floor/plasteel,
-/area/security/main)
-"bHU" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 5
- },
-/obj/structure/chair{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/security/main)
-"bHV" = (
-/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/security/main)
-"bHW" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8";
- tag = ""
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 10
- },
-/turf/open/floor/plasteel,
-/area/security/main)
-"bHX" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/red/corner{
- dir = 4
- },
-/area/security/main)
-"bHY" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/door/airlock/maintenance{
- name = "Security Maintenance";
- req_access_txt = "1"
- },
-/turf/open/floor/plating,
-/area/security/main)
-"bHZ" = (
-/obj/structure/cable{
- tag = "icon-1-8";
- icon_state = "1-8"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/ai_monitored/turret_protected/aisat{
- name = "AI Maintenance"
- })
-"bIa" = (
-/obj/effect/turf_decal/delivery,
-/obj/machinery/light/small{
- dir = 1
- },
-/turf/open/floor/plasteel/black,
-/area/ai_monitored/turret_protected/aisat{
- name = "AI Maintenance"
- })
-"bIb" = (
-/obj/machinery/light,
-/turf/open/floor/plasteel/black,
-/area/ai_monitored/turret_protected/ai)
-"bIc" = (
-/turf/closed/wall/r_wall,
-/area/toxins/server)
-"bId" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/door/airlock/glass_command{
- name = "Server Room";
- req_access_txt = "30"
- },
-/turf/open/floor/plasteel{
- icon_state = "whitepurplefull"
- },
-/area/toxins/server)
-"bIe" = (
-/obj/item/device/radio/intercom{
- dir = 8;
- pixel_x = -28
- },
-/turf/open/floor/plasteel{
- icon_state = "whitepurplefull"
- },
-/area/medical/research{
- name = "Research Division"
- })
-"bIf" = (
-/obj/machinery/vending/coffee,
-/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
-"bIg" = (
-/turf/open/floor/plasteel/purple/side{
- tag = "icon-purple (WEST)";
- icon_state = "purple";
- dir = 8
- },
-/area/hallway/primary/starboard)
-"bIh" = (
-/obj/machinery/camera/autoname{
- tag = "icon-camera (NORTHWEST)";
- icon_state = "camera";
- dir = 9
- },
-/turf/open/floor/plasteel/purple/corner,
-/area/hallway/primary/starboard)
-"bIi" = (
-/obj/structure/disposalpipe/segment,
-/turf/closed/wall,
-/area/medical/research{
- name = "Research Division"
- })
-"bIj" = (
-/obj/machinery/door/firedoor/heavy,
-/obj/machinery/door/poddoor/preopen{
- id = "Biohazard";
- name = "biohazard containment door"
- },
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plasteel{
- icon_state = "whitepurplefull"
- },
-/area/medical/research{
- name = "Research Division"
- })
-"bIk" = (
-/obj/machinery/door/firedoor/heavy,
-/obj/machinery/door/poddoor/preopen{
- id = "Biohazard";
- name = "biohazard containment door"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0;
- tag = ""
- },
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plasteel{
- icon_state = "whitepurplefull"
- },
-/area/medical/research{
- name = "Research Division"
- })
-"bIl" = (
-/turf/closed/wall,
-/area/security/checkpoint/science)
-"bIm" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating,
-/area/security/checkpoint/science)
-"bIn" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/security/checkpoint/science)
-"bIo" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/door/firedoor,
-/turf/open/floor/plasteel/whitepurple/side{
- tag = "icon-whitepurple (WEST)";
- icon_state = "whitepurple";
- dir = 8
- },
-/area/medical/research{
- name = "Research Division"
- })
-"bIp" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/door/firedoor,
-/turf/open/floor/plasteel/whitepurple/side{
- tag = "icon-whitepurple (EAST)";
- icon_state = "whitepurple";
- dir = 4
- },
-/area/medical/research{
- name = "Research Division"
- })
-"bIq" = (
-/obj/machinery/power/apc{
- dir = 8;
- name = "Toxins Storage APC";
- pixel_x = -25
- },
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/obj/machinery/portable_atmospherics/canister/nitrous_oxide,
-/turf/open/floor/plasteel/bot,
-/area/toxins/storage)
-"bIr" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/portable_atmospherics/canister/nitrous_oxide,
-/turf/open/floor/plasteel/bot,
-/area/toxins/storage)
-"bIs" = (
-/obj/structure/cable{
- tag = "icon-2-8";
- icon_state = "2-8"
- },
-/turf/open/floor/plasteel/floorgrime,
-/area/toxins/storage)
-"bIt" = (
-/obj/machinery/light{
- dir = 1
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/labor)
-"bIu" = (
-/obj/machinery/mineral/labor_claim_console{
- machinedir = 1;
- pixel_x = 30;
- pixel_y = 0
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/labor)
-"bIv" = (
-/obj/structure/cable{
- tag = "icon-1-2";
- icon_state = "1-2"
- },
-/obj/structure/sign/electricshock{
- pixel_x = -32
- },
-/obj/machinery/light{
- dir = 8
- },
-/turf/open/floor/plasteel/darkred,
-/area/security/transfer)
-"bIw" = (
-/obj/structure/table,
-/obj/item/storage/firstaid/regular,
-/turf/open/floor/plasteel/darkred,
-/area/security/transfer)
-"bIx" = (
-/obj/structure/grille,
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
- },
-/obj/structure/cable,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/ai_monitored/security/armory)
-"bIy" = (
-/obj/structure/grille,
-/turf/open/floor/plating,
-/area/ai_monitored/security/armory)
-"bIz" = (
-/turf/closed/wall/r_wall,
-/area/ai_monitored/security/armory)
-"bIA" = (
-/obj/structure/closet/secure_closet{
- name = "Autorifle Ammunition Locker";
- req_access_txt = "3"
- },
-/obj/item/ammo_box/magazine/wt550m9/wtap,
-/obj/item/ammo_box/magazine/wt550m9/wtap,
-/obj/item/ammo_box/magazine/wt550m9/wtap,
-/obj/item/ammo_box/magazine/wt550m9/wtap,
-/obj/item/ammo_box/magazine/wt550m9/wtap,
-/obj/item/ammo_box/magazine/wt550m9/wtap,
-/obj/item/ammo_box/magazine/wt550m9/wtap,
-/obj/item/ammo_box/magazine/wt550m9/wtap,
-/obj/item/ammo_box/magazine/wt550m9/wtap,
-/obj/item/ammo_box/magazine/wt550m9/wtap,
-/turf/open/floor/plasteel{
- icon_state = "vault";
- dir = 4
- },
-/area/ai_monitored/security/armory)
-"bIB" = (
-/turf/open/floor/plasteel/darkred,
-/area/ai_monitored/security/armory)
-"bIC" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/darkred,
-/area/ai_monitored/security/armory)
-"bID" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/item/storage/toolbox/mechanical,
-/turf/open/floor/plasteel/showroomfloor,
-/area/security/warden{
- name = "Security Control"
- })
-"bIE" = (
-/obj/structure/cable{
- tag = "icon-1-2";
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/showroomfloor,
-/area/security/warden{
- name = "Security Control"
- })
-"bIF" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/showroomfloor,
-/area/security/warden{
- name = "Security Control"
- })
-"bIG" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/security/warden{
- name = "Security Control"
- })
-"bIH" = (
-/turf/open/floor/plasteel/darkred,
-/area/security/brig{
- name = "Security"
- })
-"bII" = (
-/turf/open/floor/plasteel{
- icon_state = "redfull"
- },
-/area/security/brig{
- name = "Security"
- })
-"bIJ" = (
-/obj/structure/cable{
- tag = "icon-1-2";
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel{
- icon_state = "redfull"
- },
-/area/security/brig{
- name = "Security"
- })
-"bIK" = (
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel/darkred,
-/area/security/brig{
- name = "Security"
- })
-"bIL" = (
-/obj/machinery/door/airlock/glass_security{
- id_tag = "innersec";
- name = "Security";
- req_access_txt = "63"
- },
-/turf/open/floor/plasteel/darkred,
-/area/security/brig{
- name = "Security"
- })
-"bIM" = (
-/obj/structure/cable{
- tag = "icon-1-2";
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/darkred,
-/area/security/brig{
- name = "Security"
- })
-"bIN" = (
-/obj/machinery/door/airlock/glass_security{
- id_tag = "outersec";
- name = "Security";
- req_access_txt = "63"
- },
-/turf/open/floor/plasteel/darkred,
-/area/security/brig{
- name = "Security"
- })
-"bIO" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 8;
- initialize_directions = 11
- },
-/obj/machinery/camera/autoname{
- tag = "icon-camera (NORTHWEST)";
- icon_state = "camera";
- dir = 9
- },
-/turf/open/floor/plasteel/red/side{
- tag = "icon-red (EAST)";
- icon_state = "red";
- dir = 4
- },
-/area/hallway/primary/port)
-"bIP" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/closed/wall/r_wall,
-/area/security/main)
-"bIQ" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/item/device/radio/intercom{
- dir = 8;
- pixel_x = -28
- },
-/turf/open/floor/plasteel/red/corner{
- dir = 8
- },
-/area/security/main)
-"bIR" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0;
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/security/main)
-"bIS" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/security/main)
-"bIT" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 8;
- name = "regular air vent";
- on = 1
- },
-/turf/open/floor/plasteel,
-/area/security/main)
-"bIU" = (
-/turf/open/floor/plasteel,
-/area/security/main)
-"bIV" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/security/main)
-"bIW" = (
-/obj/structure/table,
-/obj/item/paper_bin,
-/turf/open/floor/plasteel/red/corner{
- dir = 4
- },
-/area/security/main)
-"bIX" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/camera/motion{
- c_tag = "MiniSat Core Hallway";
- dir = 4;
- network = list("MiniSat")
- },
-/turf/open/floor/plating,
-/area/ai_monitored/turret_protected/aisat{
- name = "AI Maintenance"
- })
-"bIY" = (
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plasteel/black,
-/area/ai_monitored/turret_protected/aisat{
- name = "AI Maintenance"
- })
-"bIZ" = (
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plasteel/black,
-/area/ai_monitored/turret_protected/aisat)
-"bJa" = (
-/obj/machinery/rnd/server,
-/turf/open/floor/circuit{
- name = "Server Base";
- initial_gas_mix = "n2=500;TEMP=80"
- },
-/area/toxins/server)
-"bJb" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 4;
- external_pressure_bound = 140;
- on = 1;
- pressure_checks = 0
- },
-/turf/open/floor/circuit{
- name = "Server Base";
- initial_gas_mix = "n2=500;TEMP=80"
- },
-/area/toxins/server)
-"bJc" = (
-/obj/structure/grille,
-/obj/machinery/atmospherics/pipe/simple{
- dir = 4
- },
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'SERVER ROOM'.";
- name = "SERVER ROOM";
- pixel_y = 32
- },
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/toxins/server)
-"bJd" = (
-/obj/machinery/atmospherics/pipe/simple{
- dir = 10
- },
-/obj/machinery/camera/autoname,
-/turf/open/floor/plasteel/black,
-/area/toxins/server)
-"bJe" = (
-/obj/machinery/camera{
- c_tag = "Server Room";
- dir = 2;
- network = list("SS13","RD");
- pixel_x = 22
- },
-/obj/machinery/power/apc{
- dir = 1;
- name = "Server Room APC";
- pixel_x = 0;
- pixel_y = 25
- },
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/turf/open/floor/plasteel/black,
-/area/toxins/server)
-"bJf" = (
-/obj/structure/cable{
- tag = "icon-1-8";
- icon_state = "1-8"
- },
-/turf/open/floor/plasteel/black,
-/area/toxins/server)
-"bJg" = (
-/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
-"bJh" = (
-/obj/structure/rack,
-/obj/item/device/gps/science,
-/obj/item/device/radio,
-/turf/open/floor/plasteel{
- icon_state = "whitepurplefull"
- },
-/area/medical/research{
- name = "Research Division"
- })
-"bJi" = (
-/obj/structure/frame,
-/turf/open/floor/plasteel{
- icon_state = "whitepurplefull"
- },
-/area/medical/research{
- name = "Research Division"
- })
-"bJj" = (
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel{
- icon_state = "whitepurplefull"
- },
-/area/medical/research{
- name = "Research Division"
- })
-"bJk" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0;
- tag = ""
- },
-/turf/open/floor/plasteel{
- icon_state = "whitepurplefull"
- },
-/area/medical/research{
- name = "Research Division"
- })
-"bJl" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/table,
-/obj/item/device/radio,
-/turf/open/floor/plasteel{
- icon_state = "redfull"
- },
-/area/security/checkpoint/science)
-"bJm" = (
-/obj/structure/table,
-/obj/machinery/button/door{
- id = "Biohazard";
- name = "Biohazard Shutter Control";
- pixel_x = -5;
- pixel_y = 5;
- req_access_txt = "47"
- },
-/obj/machinery/button/door{
- id = "rnd2";
- name = "Research Lab Shutter Control";
- pixel_x = 5;
- pixel_y = 5;
- req_access_txt = "47"
- },
-/turf/open/floor/plasteel{
- icon_state = "redfull"
- },
-/area/security/checkpoint/science)
-"bJn" = (
-/obj/machinery/computer/security,
-/turf/open/floor/plasteel{
- icon_state = "redfull"
- },
-/area/security/checkpoint/science)
-"bJo" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/whitepurple/side{
- tag = "icon-whitepurple (WEST)";
- icon_state = "whitepurple";
- dir = 8
- },
-/area/medical/research{
- name = "Research Division"
- })
-"bJp" = (
-/obj/machinery/portable_atmospherics/scrubber/huge/movable,
-/turf/open/floor/plasteel/floorgrime,
-/area/toxins/storage)
-"bJq" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/floorgrime,
-/area/toxins/storage)
-"bJr" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/floorgrime,
-/area/toxins/storage)
-"bJs" = (
-/obj/structure/window/reinforced{
- dir = 1;
- layer = 2.9
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"bJt" = (
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 1;
- layer = 2.9
- },
-/obj/structure/closet/crate,
-/obj/item/storage/belt,
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"bJu" = (
-/obj/structure/chair{
- dir = 4
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/labor)
-"bJv" = (
-/obj/structure/chair{
- dir = 8
- },
-/obj/machinery/flasher{
- id = "gulagshuttleflasher";
- pixel_x = 25
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/labor)
-"bJw" = (
-/obj/structure/table,
-/obj/item/storage/box/zipties,
-/turf/open/floor/plasteel/darkred,
-/area/security/transfer)
-"bJx" = (
-/obj/structure/rack,
-/obj/item/gun/ballistic/shotgun/riot{
- pixel_x = -3;
- pixel_y = 3
- },
-/obj/item/gun/ballistic/shotgun/riot,
-/obj/item/gun/ballistic/shotgun/riot{
- pixel_x = 3;
- pixel_y = -3
- },
-/turf/open/floor/plasteel{
- icon_state = "vault";
- dir = 4
- },
-/area/ai_monitored/security/armory)
-"bJy" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- name = "regular air vent";
- on = 1
- },
-/turf/open/floor/plasteel/darkred,
-/area/ai_monitored/security/armory)
-"bJz" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/turf/open/floor/plasteel/darkred,
-/area/ai_monitored/security/armory)
-"bJA" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/door/airlock/security{
- name = "Armory";
- req_access = null;
- req_access_txt = "3"
- },
-/turf/open/floor/plasteel/black,
-/area/ai_monitored/security/armory)
-"bJB" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/cable{
- tag = "icon-1-4";
- icon_state = "1-4"
- },
-/turf/open/floor/plasteel/showroomfloor,
-/area/security/warden{
- name = "Security Control"
- })
-"bJC" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/showroomfloor,
-/area/security/warden{
- name = "Security Control"
- })
-"bJD" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel/showroomfloor,
-/area/security/warden{
- name = "Security Control"
- })
-"bJE" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 8;
- name = "regular air scrubber";
- on = 1;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel/showroomfloor,
-/area/security/warden{
- name = "Security Control"
- })
-"bJF" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/door/firedoor/heavy,
-/obj/machinery/door/airlock/glass_security{
- name = "Security Control";
- req_access_txt = "2"
- },
-/turf/open/floor/plasteel/darkred,
-/area/security/warden{
- name = "Security Control"
- })
-"bJG" = (
-/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/darkred,
-/area/security/brig{
- name = "Security"
- })
-"bJH" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/darkred,
-/area/security/brig{
- name = "Security"
- })
-"bJI" = (
-/obj/structure/cable{
- tag = "icon-1-8";
- icon_state = "1-8"
- },
-/turf/open/floor/plasteel/darkred,
-/area/security/brig{
- name = "Security"
- })
-"bJJ" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- name = "regular air vent";
- on = 1
- },
-/turf/open/floor/plasteel{
- icon_state = "redfull"
- },
-/area/security/brig{
- name = "Security"
- })
-"bJK" = (
-/obj/structure/disposalpipe/trunk{
- dir = 1
- },
-/obj/machinery/disposal/bin,
-/obj/machinery/airalarm{
- dir = 8;
- icon_state = "alarm0";
- pixel_x = 24
- },
-/turf/open/floor/plasteel/darkred,
-/area/security/brig{
- name = "Security"
- })
-"bJL" = (
-/turf/closed/wall,
-/area/security/brig{
- name = "Security"
- })
-"bJM" = (
-/obj/machinery/door/firedoor/heavy,
-/obj/structure/cable,
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/security/brig{
- name = "Security"
- })
-"bJN" = (
-/obj/machinery/door/firedoor/heavy,
-/obj/machinery/door/airlock/glass_security{
- name = "Brig Desk";
- req_access_txt = "1"
- },
-/turf/open/floor/plasteel/darkred/side{
- tag = "icon-darkred (NORTH)";
- icon_state = "darkred";
- dir = 1
- },
-/area/security/brig{
- name = "Security"
- })
-"bJO" = (
-/turf/closed/wall/r_wall,
-/area/security/brig{
- name = "Security"
- })
-"bJP" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0;
- tag = ""
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 8;
- name = "regular air scrubber";
- on = 1;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/port)
-"bJQ" = (
-/obj/machinery/light{
- dir = 8
- },
-/obj/machinery/photocopier,
-/turf/open/floor/plasteel/red/side{
- dir = 10
- },
-/area/security/main)
-"bJR" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0;
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/red/corner,
-/area/security/main)
-"bJS" = (
-/obj/machinery/button/flasher{
- id = "insaneflash";
- pixel_y = -26
- },
-/turf/open/floor/plasteel/red/corner,
-/area/security/main)
-"bJT" = (
-/obj/machinery/computer/security,
-/turf/open/floor/plasteel/red/corner,
-/area/security/main)
-"bJU" = (
-/obj/machinery/computer/secure_data,
-/turf/open/floor/plasteel/red/corner,
-/area/security/main)
-"bJV" = (
-/obj/vehicle/secway,
-/turf/open/floor/plasteel/red/corner,
-/area/security/main)
-"bJW" = (
-/turf/open/floor/plasteel/red/corner,
-/area/security/main)
-"bJX" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/red/corner,
-/area/security/main)
-"bJY" = (
-/obj/machinery/door/window/eastright{
- base_state = "left";
- dir = 8;
- icon_state = "left";
- name = "Security Delivery";
- req_access_txt = "1"
- },
-/obj/structure/window/reinforced{
- dir = 1;
- layer = 2.9
- },
-/turf/open/floor/plasteel{
- icon_state = "delivery"
- },
-/area/security/main)
-"bJZ" = (
-/obj/machinery/navbeacon{
- codes_txt = "delivery;dir=8";
- freq = 1400;
- location = "Security"
- },
-/obj/structure/plasticflaps{
- opacity = 1
- },
-/obj/machinery/door/firedoor/heavy,
-/turf/open/floor/plasteel{
- icon_state = "bot"
- },
-/area/security/main)
-"bKa" = (
-/obj/effect/turf_decal/delivery,
-/obj/machinery/light/small{
- dir = 4
- },
-/turf/open/floor/plasteel/black,
-/area/ai_monitored/turret_protected/aisat{
- name = "AI Maintenance"
- })
-"bKb" = (
-/obj/effect/turf_decal/delivery,
-/obj/machinery/light/small{
- dir = 8
- },
-/turf/open/floor/plasteel/black,
-/area/ai_monitored/turret_protected/aisat{
- name = "AI Maintenance"
- })
-"bKc" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/camera/motion{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/ai_monitored/turret_protected/aisat{
- name = "AI Maintenance"
- })
-"bKd" = (
-/obj/machinery/airalarm/server{
- dir = 4;
- pixel_x = -22;
- pixel_y = 0
- },
-/obj/machinery/light/small{
- dir = 8
- },
-/turf/open/floor/plasteel/black{
- name = "Server Walkway";
- initial_gas_mix = "n2=500;TEMP=80"
- },
-/area/toxins/server)
-"bKe" = (
-/obj/effect/landmark{
- name = "blobstart"
- },
-/turf/open/floor/plasteel/black{
- name = "Server Walkway";
- initial_gas_mix = "n2=500;TEMP=80"
- },
-/area/toxins/server)
-"bKf" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass_command{
- name = "Server Room";
- req_access_txt = "30"
- },
-/turf/open/floor/plasteel/black,
-/area/toxins/server)
-"bKg" = (
-/obj/machinery/atmospherics/pipe/manifold{
- dir = 8
- },
-/turf/open/floor/plasteel/black,
-/area/toxins/server)
-"bKh" = (
-/obj/structure/chair/office/light,
-/obj/machinery/atmospherics/pipe/simple{
- dir = 4
- },
-/turf/open/floor/plasteel/black,
-/area/toxins/server)
-"bKi" = (
-/obj/machinery/light/small{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple{
- dir = 10
- },
-/turf/open/floor/plasteel/black,
-/area/toxins/server)
-"bKj" = (
-/obj/machinery/light/small{
- dir = 8
- },
-/turf/open/floor/plasteel{
- icon_state = "whitepurplefull"
- },
-/area/medical/research{
- name = "Research Division"
- })
-"bKk" = (
-/obj/machinery/light{
- dir = 8
- },
-/obj/machinery/chem_dispenser,
-/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
-"bKl" = (
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
-"bKm" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4";
- tag = ""
- },
-/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
-"bKn" = (
-/obj/machinery/door/airlock/glass_security{
- name = "Security Post - Research Division";
- req_access_txt = "63"
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/turf/open/floor/plasteel{
- icon_state = "redfull"
- },
-/area/security/checkpoint/science)
-"bKo" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/turf/open/floor/plasteel{
- icon_state = "redfull"
- },
-/area/security/checkpoint/science)
-"bKp" = (
-/obj/effect/landmark/start/depsec/science,
-/obj/structure/chair/office/dark{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/turf/open/floor/plasteel{
- icon_state = "redfull"
- },
-/area/security/checkpoint/science)
-"bKq" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 6
- },
-/obj/machinery/computer/secure_data,
-/turf/open/floor/plasteel{
- icon_state = "redfull"
- },
-/area/security/checkpoint/science)
-"bKr" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/security/checkpoint/science)
-"bKs" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 4;
- initialize_directions = 11
- },
-/turf/open/floor/plasteel/whitepurple/side{
- tag = "icon-whitepurple (WEST)";
- icon_state = "whitepurple";
- dir = 8
- },
-/area/medical/research{
- name = "Research Division"
- })
-"bKt" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/closed/wall/r_wall,
-/area/toxins/storage)
-"bKu" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/door/airlock/research{
- name = "Toxins Storage";
- req_access_txt = "8"
- },
-/turf/open/floor/plasteel{
- icon_state = "whitepurplefull"
- },
-/area/toxins/storage)
-"bKv" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/closed/wall/r_wall,
-/area/toxins/storage)
-"bKw" = (
-/turf/closed/wall/r_wall,
-/area/toxins/mixing)
-"bKx" = (
-/turf/closed/mineral/random/labormineral,
-/area/toxins/mixing)
-"bKy" = (
-/obj/structure/closet/crate,
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/labor)
-"bKz" = (
-/obj/machinery/door/airlock/titanium{
- id_tag = "prisonshuttle";
- name = "Labor Shuttle Airlock"
- },
-/obj/docking_port/mobile{
- dir = 8;
- dwidth = 2;
- height = 5;
- id = "laborcamp";
- name = "labor camp shuttle";
- port_angle = 90;
- width = 9
- },
-/obj/docking_port/stationary{
- dir = 8;
- dwidth = 2;
- height = 5;
- id = "laborcamp_home";
- name = "fore bay 1";
- width = 9
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/labor)
-"bKA" = (
-/obj/structure/chair,
-/turf/open/floor/plasteel/darkred,
-/area/security/transfer)
-"bKB" = (
-/obj/structure/grille,
-/turf/open/floor/plating/asteroid/airless,
-/area/ruin/unpowered{
- name = "Asteroid"
- })
-"bKC" = (
-/obj/structure/rack,
-/obj/item/storage/lockbox/loyalty{
- pixel_x = 3;
- pixel_y = -3
- },
-/obj/item/storage/lockbox/loyalty,
-/turf/open/floor/plasteel{
- icon_state = "vault";
- dir = 4
- },
-/area/ai_monitored/security/armory)
-"bKD" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 5
- },
-/turf/open/floor/plasteel/darkred,
-/area/ai_monitored/security/armory)
-"bKE" = (
-/obj/structure/rack,
-/obj/item/storage/box/chemimp{
- pixel_x = 4;
- pixel_y = -3
- },
-/obj/item/storage/box/trackimp,
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- on = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/darkred,
-/area/ai_monitored/security/armory)
-"bKF" = (
-/obj/structure/rack,
-/obj/item/storage/box/handcuffs{
- pixel_x = 3;
- pixel_y = -6
- },
-/obj/item/storage/box/flashbangs{
- pixel_x = -2;
- pixel_y = -2
- },
-/obj/item/storage/box/teargas{
- pixel_x = -6;
- pixel_y = 3
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/darkred,
-/area/ai_monitored/security/armory)
-"bKG" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/light{
- dir = 4
- },
-/turf/open/floor/plasteel/darkred,
-/area/ai_monitored/security/armory)
-"bKH" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/closed/wall/r_wall,
-/area/security/armory)
-"bKI" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/button/door{
- dir = 8;
- id = "armory out";
- name = "Armory Outer Shutters";
- pixel_x = -28;
- pixel_y = 0;
- req_access_txt = "3"
- },
-/obj/machinery/computer/prisoner,
-/turf/open/floor/plasteel/showroomfloor,
-/area/security/warden{
- name = "Security Control"
- })
-"bKJ" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/showroomfloor,
-/area/security/warden{
- name = "Security Control"
- })
-"bKK" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/showroomfloor,
-/area/security/warden{
- name = "Security Control"
- })
-"bKL" = (
-/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,
-/turf/open/floor/plasteel/showroomfloor,
-/area/security/warden{
- name = "Security Control"
- })
-"bKM" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/table/reinforced,
-/obj/item/folder/red,
-/obj/item/pen/red,
-/turf/open/floor/plasteel/showroomfloor,
-/area/security/warden{
- name = "Security Control"
- })
-"bKN" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/door/firedoor/heavy,
-/obj/structure/cable{
- tag = "icon-0-4";
- icon_state = "0-4"
- },
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/security/warden{
- name = "Security Control"
- })
-"bKO" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/cable,
-/obj/structure/cable{
- tag = "icon-0-4";
- icon_state = "0-4"
- },
-/obj/structure/cable{
- tag = "icon-0-8";
- icon_state = "0-8"
- },
-/obj/machinery/door/firedoor/heavy,
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/security/brig{
- name = "Security"
- })
-"bKP" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/door/firedoor/heavy,
-/obj/machinery/door/airlock/glass_security{
- name = "Equipment Room";
- req_access_txt = "1"
- },
-/turf/open/floor/plasteel/darkred/side{
- tag = "icon-darkred (NORTH)";
- icon_state = "darkred";
- dir = 1
- },
-/area/security/brig{
- name = "Security"
- })
-"bKQ" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/cable{
- tag = "icon-0-8";
- icon_state = "0-8"
- },
-/obj/structure/cable{
- tag = "icon-0-4";
- icon_state = "0-4"
- },
-/obj/machinery/door/firedoor/heavy,
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/security/brig{
- name = "Security"
- })
-"bKR" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/cable{
- tag = "icon-0-8";
- icon_state = "0-8"
- },
-/obj/structure/cable{
- icon_state = "0-2";
- pixel_y = 1;
- d2 = 2
- },
-/obj/machinery/door/firedoor/heavy,
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/security/brig{
- name = "Security"
- })
-"bKS" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/vending/security,
-/turf/open/floor/plasteel/darkred,
-/area/security/brig{
- name = "Security"
- })
-"bKT" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel{
- icon_state = "redfull"
- },
-/area/security/brig{
- name = "Security"
- })
-"bKU" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/effect/landmark/start{
- name = "Security Officer"
- },
-/turf/open/floor/plasteel{
- icon_state = "redfull"
- },
-/area/security/brig{
- name = "Security"
- })
-"bKV" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
-/turf/open/floor/plasteel{
- icon_state = "redfull"
- },
-/area/security/brig{
- name = "Security"
- })
-"bKW" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/filingcabinet/security,
-/turf/open/floor/plasteel/darkred,
-/area/security/brig{
- name = "Security"
- })
-"bKX" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/closed/wall,
-/area/security/brig{
- name = "Security"
- })
-"bKY" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 1
- },
-/obj/machinery/light/small{
- dir = 1
- },
-/obj/machinery/button/door{
- desc = "A remote control switch for the medbay foyer.";
- id = "innersec";
- name = "Brig Interior Doors Control";
- normaldoorcontrol = 1;
- pixel_x = -26;
- pixel_y = 5;
- req_access_txt = "63"
- },
-/obj/machinery/button/door{
- desc = "A remote control switch for the medbay foyer.";
- id = "outersec";
- name = "Brig Exterior Doors Control";
- normaldoorcontrol = 1;
- pixel_x = -26;
- pixel_y = -5;
- req_access_txt = "63"
- },
-/turf/open/floor/plasteel/black,
-/area/security/brig{
- name = "Security"
- })
-"bKZ" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/black,
-/area/security/brig{
- name = "Security"
- })
-"bLa" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 2;
- name = "regular air scrubber";
- on = 1
- },
-/obj/item/device/radio/intercom{
- dir = 8;
- freerange = 1;
- name = "Station Intercom (Telecoms)";
- pixel_x = 0;
- pixel_y = 26
- },
-/turf/open/floor/plasteel/black,
-/area/security/brig{
- name = "Security"
- })
-"bLb" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/sign/electricshock{
- pixel_y = 32
- },
-/obj/machinery/door/firedoor/heavy,
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "briggate";
- name = "security shutters"
- },
-/turf/open/floor/plating,
-/area/security/brig{
- name = "Security"
- })
-"bLc" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/red/side{
- dir = 8
- },
-/area/hallway/primary/port)
-"bLd" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0;
- tag = ""
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/port)
-"bLe" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/red/side{
- tag = "icon-red (EAST)";
- icon_state = "red";
- dir = 4
- },
-/area/hallway/primary/port)
-"bLf" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0;
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/door/firedoor/heavy,
-/obj/machinery/door/airlock/glass_security{
- name = "Insanity Ward";
- req_access_txt = "2"
- },
-/turf/open/floor/plasteel{
- icon_state = "redfull"
- },
-/area/security/main)
-"bLg" = (
-/turf/closed/wall/r_wall,
-/area/security/brig{
- name = "Interrogation"
- })
-"bLh" = (
-/obj/machinery/door/firedoor/heavy,
-/obj/machinery/door/airlock/security{
- name = "Interrogation";
- req_access = null;
- req_access_txt = "0";
- req_one_access_txt = "1;4"
- },
-/turf/open/floor/plasteel/black,
-/area/security/brig{
- name = "Interrogation"
- })
-"bLi" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/closed/wall/r_wall,
-/area/security/brig{
- name = "Interrogation"
- })
-"bLj" = (
-/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,
-/area/ai_monitored/turret_protected/aisat{
- name = "AI Maintenance"
- })
-"bLk" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 6
- },
-/turf/open/floor/plating,
-/area/ai_monitored/turret_protected/aisat{
- name = "AI Maintenance"
- })
-"bLl" = (
-/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/ai_monitored/turret_protected/aisat{
- name = "AI Maintenance"
- })
-"bLm" = (
-/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/plating,
-/area/ai_monitored/turret_protected/aisat{
- name = "AI Maintenance"
- })
-"bLn" = (
-/obj/machinery/power/apc{
- cell_type = 5000;
- dir = 1;
- name = "AI Maintenance APC";
- pixel_y = 24
- },
-/obj/structure/cable{
- tag = "icon-0-8";
- icon_state = "0-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/effect/landmark/event_spawn,
-/obj/machinery/camera/motion{
- c_tag = "MiniSat Foyer";
- dir = 1;
- network = list("MiniSat")
- },
-/turf/open/floor/plating,
-/area/ai_monitored/turret_protected/aisat{
- name = "AI Maintenance"
- })
-"bLo" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/ai_monitored/turret_protected/aisat{
- name = "AI Maintenance"
- })
-"bLp" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/ai_monitored/turret_protected/aisat{
- name = "AI Maintenance"
- })
-"bLq" = (
-/obj/machinery/rnd/server,
-/turf/open/floor/circuit{
- name = "Server Base";
- initial_gas_mix = "n2=500;TEMP=80"
- },
-/area/toxins/server)
-"bLr" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 4;
- external_pressure_bound = 120;
- initialize_directions = 1;
- internal_pressure_bound = 4000;
- on = 1;
- pressure_checks = 2;
- pump_direction = 0
- },
-/turf/open/floor/circuit{
- name = "Server Base";
- initial_gas_mix = "n2=500;TEMP=80"
- },
-/area/toxins/server)
-"bLs" = (
-/obj/structure/grille,
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'SERVER ROOM'.";
- name = "SERVER ROOM";
- pixel_y = -32
- },
-/obj/machinery/atmospherics/pipe/simple{
- dir = 4
- },
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/toxins/server)
-"bLt" = (
-/obj/machinery/atmospherics/pipe/simple{
- dir = 9
- },
-/obj/machinery/firealarm{
- dir = 1;
- pixel_y = -24
- },
-/obj/structure/table,
-/obj/item/folder/white,
-/obj/item/pen{
- desc = "Writes upside down!";
- name = "astronaut pen"
- },
-/turf/open/floor/plasteel/black,
-/area/toxins/server)
-"bLu" = (
-/obj/machinery/computer/rdservercontrol,
-/turf/open/floor/plasteel/black,
-/area/toxins/server)
-"bLv" = (
-/obj/machinery/atmospherics/components/unary/thermomachine/freezer{
- dir = 1
- },
-/turf/open/floor/plasteel/black,
-/area/toxins/server)
-"bLw" = (
-/obj/structure/closet/wardrobe/science_white,
-/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
-"bLx" = (
-/obj/structure/closet/wardrobe/science_white,
-/turf/open/floor/plasteel{
- icon_state = "whitepurplefull"
- },
-/area/medical/research{
- name = "Research Division"
- })
-"bLy" = (
-/obj/machinery/autolathe,
-/obj/machinery/camera/autoname{
- tag = "icon-camera (NORTHEAST)";
- icon_state = "camera";
- dir = 5
- },
-/turf/open/floor/plasteel{
- icon_state = "whitepurplefull"
- },
-/area/medical/research{
- name = "Research Division"
- })
-"bLz" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/button/door{
- dir = 2;
- id = "robotics_lab";
- name = "Robotics Door Control";
- pixel_x = 0;
- pixel_y = -24;
- req_access_txt = "29"
- },
-/turf/open/floor/plasteel{
- icon_state = "whitepurplefull"
- },
-/area/medical/research{
- name = "Research Division"
- })
-"bLA" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 1;
- on = 1
- },
-/turf/open/floor/plasteel{
- icon_state = "redfull"
- },
-/area/security/checkpoint/science)
-"bLB" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0;
- tag = ""
- },
-/turf/open/floor/plasteel{
- icon_state = "redfull"
- },
-/area/security/checkpoint/science)
-"bLC" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 1;
- name = "regular air scrubber";
- on = 1
- },
-/turf/open/floor/plasteel{
- icon_state = "redfull"
- },
-/area/security/checkpoint/science)
-"bLD" = (
-/obj/structure/closet/bombcloset,
-/obj/effect/turf_decal/stripes/line,
-/turf/open/floor/plasteel/white,
-/area/toxins/mixing)
-"bLE" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/light{
- dir = 1
- },
-/obj/structure/closet/bombcloset,
-/obj/effect/turf_decal/stripes/line,
-/turf/open/floor/plasteel/white,
-/area/toxins/mixing)
-"bLF" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/effect/turf_decal/stripes/line,
-/turf/open/floor/plasteel/white,
-/area/toxins/mixing)
-"bLG" = (
-/obj/machinery/portable_atmospherics/canister,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/machinery/firealarm{
- dir = 2;
- pixel_y = 24
- },
-/obj/machinery/camera{
- c_tag = "Toxins Lab West";
- dir = 2;
- network = list("SS13","RD");
- pixel_y = 0
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/effect/turf_decal/stripes/line,
-/turf/open/floor/plasteel/white,
-/area/toxins/mixing)
-"bLH" = (
-/obj/machinery/portable_atmospherics/canister,
-/obj/item/device/radio/intercom{
- pixel_y = 25
- },
-/obj/effect/turf_decal/stripes/line,
-/turf/open/floor/plasteel/white,
-/area/toxins/mixing)
-"bLI" = (
-/obj/machinery/portable_atmospherics/scrubber,
-/obj/machinery/airalarm{
- frequency = 1439;
- locked = 0;
- pixel_y = 23
- },
-/obj/item/storage/firstaid/toxin,
-/obj/effect/turf_decal/stripes/line,
-/turf/open/floor/plasteel/white,
-/area/toxins/mixing)
-"bLJ" = (
-/obj/machinery/portable_atmospherics/pump,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/line,
-/turf/open/floor/plasteel/white,
-/area/toxins/mixing)
-"bLK" = (
-/obj/machinery/atmospherics/components/unary/portables_connector/visible,
-/obj/effect/turf_decal/stripes/line,
-/turf/open/floor/plasteel/white,
-/area/toxins/mixing)
-"bLL" = (
-/obj/machinery/atmospherics/components/unary/portables_connector/visible,
-/obj/machinery/light{
- dir = 1
- },
-/obj/effect/turf_decal/stripes/line,
-/turf/open/floor/plasteel/white,
-/area/toxins/mixing)
-"bLM" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/maintenance{
- req_access_txt = "12"
- },
-/turf/open/floor/plating,
-/area/toxins/mixing)
-"bLN" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 9
- },
-/turf/open/floor/plating/airless,
-/area/toxins/test_area)
-"bLO" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plating/airless,
-/area/toxins/test_area)
-"bLP" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 5
- },
-/turf/open/floor/plating/airless,
-/area/toxins/test_area)
-"bLQ" = (
-/obj/structure/shuttle/engine/heater,
-/obj/structure/window/reinforced{
- dir = 1;
- layer = 2.9
- },
-/turf/open/floor/plating/airless,
-/area/shuttle/labor)
-"bLR" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/turf/open/floor/plasteel/darkred,
-/area/security/transfer)
-"bLS" = (
-/obj/machinery/computer/shuttle/labor,
-/turf/open/floor/plasteel/darkred,
-/area/security/transfer)
-"bLT" = (
-/obj/structure/rack,
-/obj/item/gun/energy/plasma/light{
- pixel_x = 4;
- pixel_y = -4
- },
-/obj/item/gun/energy/plasma/light{
- pixel_x = 2;
- pixel_y = -2
- },
-/obj/item/gun/energy/plasma/light,
-/turf/open/floor/plasteel{
- icon_state = "vault";
- dir = 4
- },
-/area/ai_monitored/security/armory)
-"bLU" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 6
- },
-/turf/open/floor/plasteel/darkred,
-/area/ai_monitored/security/armory)
-"bLV" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/darkred,
-/area/ai_monitored/security/armory)
-"bLW" = (
-/obj/structure/rack,
-/obj/item/gun/energy/e_gun{
- pixel_x = -3;
- pixel_y = 3
- },
-/obj/item/gun/energy/e_gun,
-/obj/item/gun/energy/e_gun{
- pixel_x = 3;
- pixel_y = -3
- },
-/obj/effect/turf_decal/bot{
- dir = 2
- },
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "armory out";
- name = "armory"
- },
-/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/black,
-/area/ai_monitored/security/armory)
-"bLX" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/machinery/computer/security,
-/turf/open/floor/plasteel/showroomfloor,
-/area/security/warden{
- name = "Security Control"
- })
-"bLY" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/showroomfloor,
-/area/security/warden{
- name = "Security Control"
- })
-"bLZ" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 2;
- initialize_directions = 11
- },
-/turf/open/floor/plasteel/showroomfloor,
-/area/security/warden{
- name = "Security Control"
- })
-"bMa" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/showroomfloor,
-/area/security/warden{
- name = "Security Control"
- })
-"bMb" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/structure/chair/office/dark{
- dir = 4
- },
-/obj/effect/landmark/start{
- name = "Warden"
- },
-/turf/open/floor/plasteel/showroomfloor,
-/area/security/warden{
- name = "Security Control"
- })
-"bMc" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/machinery/door/firedoor/heavy,
-/obj/structure/table/reinforced,
-/obj/machinery/door/window/brigdoor{
- dir = 8;
- name = "Brig Control Desk";
- req_access_txt = "2"
- },
-/obj/machinery/door/window/eastleft{
- name = "Brig Desk";
- req_access_txt = "1"
- },
-/turf/open/floor/plasteel/black,
-/area/security/warden{
- name = "Security Control"
- })
-"bMd" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/effect/landmark{
- name = "secequipment"
- },
-/turf/open/floor/plasteel/black,
-/area/security/brig{
- name = "Security"
- })
-"bMe" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/black,
-/area/security/brig{
- name = "Security"
- })
-"bMf" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/structure/closet/secure_closet/security,
-/obj/item/storage/belt/security/full,
-/turf/open/floor/plasteel/black,
-/area/security/brig{
- name = "Security"
- })
-"bMg" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "0-2";
- pixel_y = 1;
- d2 = 2
- },
-/obj/structure/cable,
-/obj/machinery/door/firedoor/heavy,
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/security/brig{
- name = "Security"
- })
-"bMh" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/structure/table,
-/obj/item/book/manual/wiki/security_space_law,
-/turf/open/floor/plasteel/darkred,
-/area/security/brig{
- name = "Security"
- })
-"bMi" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 1;
- initialize_directions = 11
- },
-/turf/open/floor/plasteel{
- icon_state = "redfull"
- },
-/area/security/brig{
- name = "Security"
- })
-"bMj" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel{
- icon_state = "redfull"
- },
-/area/security/brig{
- name = "Security"
- })
-"bMk" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/effect/landmark/start{
- name = "Security Officer"
- },
-/turf/open/floor/plasteel{
- icon_state = "redfull"
- },
-/area/security/brig{
- name = "Security"
- })
-"bMl" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/structure/reagent_dispensers/peppertank{
- pixel_x = 30
- },
-/turf/open/floor/plasteel/darkred,
-/area/security/brig{
- name = "Security"
- })
-"bMm" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/closed/wall,
-/area/security/brig{
- name = "Security"
- })
-"bMn" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/components/unary/vent_pump{
- tag = "icon-vent_map (NORTH)";
- name = "regular air vent";
- icon_state = "vent_map";
- dir = 1;
- on = 1
- },
-/turf/open/floor/plasteel/black,
-/area/security/brig{
- name = "Security"
- })
-"bMo" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/machinery/computer/security,
-/turf/open/floor/plasteel/black,
-/area/security/brig{
- name = "Security"
- })
-"bMp" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/machinery/computer/secure_data,
-/turf/open/floor/plasteel/black,
-/area/security/brig{
- name = "Security"
- })
-"bMq" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 2;
- initialize_directions = 11
- },
-/obj/structure/chair/office/dark{
- dir = 4
- },
-/turf/open/floor/plasteel/black,
-/area/security/brig{
- name = "Security"
- })
-"bMr" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/structure/table/reinforced,
-/obj/machinery/door/window/southleft{
- dir = 4;
- name = "Brig Desk";
- req_access_txt = "1"
- },
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "briggate";
- name = "security shutters"
- },
-/turf/open/floor/plasteel/black,
-/area/security/brig{
- name = "Security"
- })
-"bMs" = (
-/turf/closed/wall,
-/area/security/main)
-"bMt" = (
-/obj/structure/table,
-/obj/item/folder/red,
-/obj/item/pen/red,
-/turf/open/floor/plasteel/whitered/side{
- tag = "icon-whitered (NORTHWEST)";
- icon_state = "whitered";
- dir = 9
- },
-/area/security/main)
-"bMu" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0;
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/whitered/side{
- tag = "icon-whitered (NORTH)";
- icon_state = "whitered";
- dir = 1
- },
-/area/security/main)
-"bMv" = (
-/obj/machinery/sleeper{
- icon_state = "sleeper-open";
- dir = 8
- },
-/turf/open/floor/plasteel/whitered/side{
- tag = "icon-whitered (NORTH)";
- icon_state = "whitered";
- dir = 1
- },
-/area/security/main)
-"bMw" = (
-/obj/machinery/airalarm{
- dir = 8;
- icon_state = "alarm0";
- pixel_x = 24
- },
-/obj/machinery/computer/med_data,
-/turf/open/floor/plasteel/whitered/side{
- tag = "icon-whitered (NORTHEAST)";
- icon_state = "whitered";
- dir = 5
- },
-/area/security/main)
-"bMx" = (
-/turf/closed/wall,
-/area/security/brig{
- name = "Interrogation"
- })
-"bMy" = (
-/turf/open/floor/plasteel/black,
-/area/security/brig{
- name = "Interrogation"
- })
-"bMz" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/black,
-/area/security/brig{
- name = "Interrogation"
- })
-"bMA" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/closed/wall/r_wall,
-/area/maintenance/maintcentral)
-"bMB" = (
-/turf/closed/wall/r_wall,
-/area/maintenance/maintcentral)
-"bMC" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/closed/wall/r_wall,
-/area/maintenance/maintcentral)
-"bMD" = (
-/obj/item/device/radio/intercom{
- dir = 8;
- pixel_x = -28
- },
-/turf/open/floor/plasteel/purple/side{
- tag = "icon-purple (WEST)";
- icon_state = "purple";
- dir = 8
- },
-/area/hallway/primary/starboard)
-"bME" = (
-/obj/machinery/airalarm{
- dir = 8;
- icon_state = "alarm0";
- pixel_x = 24
- },
-/turf/open/floor/plasteel/purple/side{
- tag = "icon-purple (EAST)";
- icon_state = "purple";
- dir = 4
- },
-/area/hallway/primary/starboard)
-"bMF" = (
-/turf/closed/wall/r_wall,
-/area/assembly/robotics)
-"bMG" = (
-/turf/closed/wall,
-/area/assembly/robotics)
-"bMH" = (
-/obj/structure/disposalpipe/segment,
-/turf/closed/wall,
-/area/assembly/robotics)
-"bMI" = (
-/obj/machinery/door/firedoor/heavy,
-/obj/machinery/door/poddoor/shutters{
- id = "robotics_lab";
- name = "robotics"
- },
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plasteel{
- icon_state = "whitepurplefull"
- },
-/area/assembly/robotics)
-"bMJ" = (
-/obj/machinery/light,
-/obj/structure/closet,
-/obj/item/screwdriver,
-/obj/item/device/radio/intercom{
- dir = 8;
- pixel_x = -28
- },
-/turf/open/floor/plasteel{
- icon_state = "redfull"
- },
-/area/security/checkpoint/science)
-"bMK" = (
-/obj/machinery/power/apc{
- dir = 2;
- name = "Science Security APC";
- pixel_y = -24
- },
-/obj/structure/cable,
-/turf/open/floor/plasteel{
- icon_state = "redfull"
- },
-/area/security/checkpoint/science)
-"bML" = (
-/obj/machinery/airalarm{
- dir = 1;
- icon_state = "alarm0";
- pixel_y = -22
- },
-/obj/structure/filingcabinet/security,
-/turf/open/floor/plasteel{
- icon_state = "redfull"
- },
-/area/security/checkpoint/science)
-"bMM" = (
-/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/scrubbers/hidden,
-/turf/open/floor/plasteel/whitepurple/side{
- tag = "icon-whitepurple (WEST)";
- icon_state = "whitepurple";
- dir = 8
- },
-/area/medical/research{
- name = "Research Division"
- })
-"bMN" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 8;
- initialize_directions = 11
- },
-/turf/open/floor/plasteel/whitepurple/side{
- tag = "icon-whitepurple (EAST)";
- icon_state = "whitepurple";
- dir = 4
- },
-/area/medical/research{
- name = "Research Division"
- })
-"bMO" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/door/firedoor/heavy,
-/obj/machinery/door/airlock/research{
- name = "Toxins Lab";
- req_access_txt = "8"
- },
-/turf/open/floor/plasteel/white,
-/area/toxins/mixing)
-"bMP" = (
-/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/toxins/mixing)
-"bMQ" = (
-/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/white,
-/area/toxins/mixing)
-"bMR" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/toxins/mixing)
-"bMS" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
-/turf/open/floor/plasteel/white,
-/area/toxins/mixing)
-"bMT" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 10
- },
-/turf/open/floor/plasteel/white,
-/area/toxins/mixing)
-"bMU" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 5
- },
-/turf/open/floor/plasteel/white,
-/area/toxins/mixing)
-"bMV" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/general/visible,
-/obj/machinery/meter,
-/turf/open/floor/plasteel/white,
-/area/toxins/mixing)
-"bMW" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 9
- },
-/turf/open/floor/plasteel/whitepurple/corner,
-/area/toxins/mixing)
-"bMX" = (
-/turf/open/floor/plasteel{
- icon_state = "whitepurplefull"
- },
-/area/toxins/mixing)
-"bMY" = (
-/obj/machinery/light/small{
- dir = 1
- },
-/turf/open/floor/plasteel{
- icon_state = "whitepurplefull"
- },
-/area/toxins/mixing)
-"bMZ" = (
-/obj/structure/closet,
-/turf/open/floor/plasteel/white,
-/area/toxins/mixing)
-"bNa" = (
-/turf/open/floor/plasteel/white,
-/area/toxins/mixing)
-"bNb" = (
-/obj/machinery/camera/autoname,
-/turf/open/floor/plasteel/white,
-/area/toxins/mixing)
-"bNc" = (
-/obj/machinery/light{
- dir = 1
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/toxins/mixing)
-"bNd" = (
-/obj/machinery/button/massdriver{
- dir = 2;
- id = "toxinsdriver";
- pixel_y = 24
- },
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plasteel,
-/area/toxins/mixing)
-"bNe" = (
-/obj/machinery/doppler_array{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/toxins/mixing)
-"bNf" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/floor/plating/airless,
-/area/toxins/test_area)
-"bNg" = (
-/turf/open/floor/plating/airless,
-/area/toxins/test_area)
-"bNh" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/turf/open/floor/plating/airless,
-/area/toxins/test_area)
-"bNi" = (
-/obj/structure/shuttle/engine/propulsion,
-/turf/open/floor/plating/airless,
-/area/shuttle/labor)
-"bNj" = (
-/obj/structure/rack,
-/obj/item/gun/energy/laser/rifle{
- pixel_x = 4;
- pixel_y = -4
- },
-/obj/item/gun/energy/laser/rifle{
- pixel_x = 2;
- pixel_y = -2
- },
-/obj/item/gun/energy/laser/rifle,
-/turf/open/floor/plasteel{
- icon_state = "vault";
- dir = 4
- },
-/area/ai_monitored/security/armory)
-"bNk" = (
-/obj/structure/rack,
-/obj/item/gun/energy/e_gun/dragnet{
- layer = 3.1;
- pixel_x = -4;
- pixel_y = 3
- },
-/obj/item/storage/box/firingpins{
- pixel_x = 3;
- pixel_y = -6
- },
-/obj/item/storage/box/firingpins,
-/turf/open/floor/plasteel/darkred,
-/area/ai_monitored/security/armory)
-"bNl" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 1;
- name = "regular air scrubber";
- on = 1
- },
-/obj/structure/rack,
-/obj/item/clothing/suit/armor/laserproof,
-/obj/item/gun/energy/ionrifle{
- pixel_y = -4
- },
-/turf/open/floor/plasteel/darkred,
-/area/ai_monitored/security/armory)
-"bNm" = (
-/obj/structure/rack,
-/obj/item/gun/energy/laser{
- pixel_x = -3;
- pixel_y = 3
- },
-/obj/item/gun/energy/laser,
-/obj/item/gun/energy/laser{
- pixel_x = 3;
- pixel_y = -3
- },
-/obj/effect/turf_decal/bot{
- dir = 2
- },
-/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
- },
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "armory out";
- name = "armory"
- },
-/turf/open/floor/plasteel/black,
-/area/ai_monitored/security/armory)
-"bNn" = (
-/obj/machinery/computer/secure_data,
-/turf/open/floor/plasteel/showroomfloor,
-/area/security/warden{
- name = "Security Control"
- })
-"bNo" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- tag = "icon-vent_map (NORTH)";
- name = "regular air vent";
- icon_state = "vent_map";
- dir = 1;
- on = 1
- },
-/turf/open/floor/plasteel/showroomfloor,
-/area/security/warden{
- name = "Security Control"
- })
-"bNp" = (
-/obj/machinery/airalarm{
- dir = 8;
- icon_state = "alarm0";
- pixel_x = 24
- },
-/obj/structure/table/reinforced,
-/obj/item/hand_labeler,
-/turf/open/floor/plasteel/showroomfloor,
-/area/security/warden{
- name = "Security Control"
- })
-"bNq" = (
-/turf/closed/wall,
-/area/security/warden{
- name = "Security Control"
- })
-"bNr" = (
-/obj/machinery/light/small{
- dir = 8
- },
-/obj/structure/table,
-/obj/machinery/recharger,
-/turf/open/floor/plasteel/black,
-/area/security/brig{
- name = "Security"
- })
-"bNs" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 4;
- name = "regular air scrubber";
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel/black,
-/area/security/brig{
- name = "Security"
- })
-"bNt" = (
-/obj/structure/closet/secure_closet/security,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 10
- },
-/obj/item/storage/belt/security/full,
-/turf/open/floor/plasteel/black,
-/area/security/brig{
- name = "Security"
- })
-"bNu" = (
-/obj/structure/cable{
- icon_state = "0-2";
- pixel_y = 1;
- d2 = 2
- },
-/obj/structure/cable,
-/obj/machinery/door/firedoor/heavy,
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/security/brig{
- name = "Security"
- })
-"bNv" = (
-/obj/structure/table,
-/obj/item/device/radio,
-/turf/open/floor/plasteel/darkred,
-/area/security/brig{
- name = "Security"
- })
-"bNw" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 1;
- name = "regular air scrubber";
- on = 1
- },
-/turf/open/floor/plasteel{
- icon_state = "redfull"
- },
-/area/security/brig{
- name = "Security"
- })
-"bNx" = (
-/obj/machinery/status_display{
- dir = 4;
- pixel_x = 32
- },
-/turf/open/floor/plasteel/darkred,
-/area/security/brig{
- name = "Security"
- })
-"bNy" = (
-/obj/structure/cable{
- tag = "icon-0-4";
- icon_state = "0-4"
- },
-/obj/machinery/door/firedoor/heavy,
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/security/brig{
- name = "Security"
- })
-"bNz" = (
-/obj/structure/cable{
- icon_state = "0-2";
- pixel_y = 1;
- d2 = 2
- },
-/obj/structure/cable{
- tag = "icon-0-8";
- icon_state = "0-8"
- },
-/obj/machinery/door/firedoor/heavy,
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/security/brig{
- name = "Security"
- })
-"bNA" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/closed/wall/r_wall,
-/area/security/brig{
- name = "Security"
- })
-"bNB" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel/red/side{
- tag = "icon-red (EAST)";
- icon_state = "red";
- dir = 4
- },
-/area/hallway/primary/port)
-"bNC" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
- },
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/security/main)
-"bND" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/whitered/side{
- tag = "icon-whitered (WEST)";
- icon_state = "whitered";
- dir = 8
- },
-/area/security/main)
-"bNE" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0;
- tag = ""
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/white,
-/area/security/main)
-"bNF" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 1
- },
-/turf/open/floor/plasteel/white,
-/area/security/main)
-"bNG" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/flasher{
- id = "insaneflash";
- pixel_x = 26
- },
-/turf/open/floor/plasteel/whitered/side{
- tag = "icon-whitered (EAST)";
- icon_state = "whitered";
- dir = 4
- },
-/area/security/main)
-"bNH" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/closed/wall,
-/area/security/brig{
- name = "Interrogation"
- })
-"bNI" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/chair{
- dir = 4
- },
-/turf/open/floor/plasteel/black,
-/area/security/brig{
- name = "Interrogation"
- })
-"bNJ" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 8;
- name = "regular air vent";
- on = 1
- },
-/obj/structure/table,
-/obj/item/device/flashlight/lamp,
-/turf/open/floor/plasteel/black,
-/area/security/brig{
- name = "Interrogation"
- })
-"bNK" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/chair/office/dark{
- dir = 8
- },
-/turf/open/floor/plasteel/black,
-/area/security/brig{
- name = "Interrogation"
- })
-"bNL" = (
-/obj/machinery/door/airlock/maintenance{
- name = "Security Maintenance";
- req_access_txt = "1"
- },
-/turf/open/floor/plating,
-/area/maintenance/maintcentral{
- name = "Central Maintenance"
- })
-"bNM" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/maintenance/maintcentral{
- name = "Central Maintenance"
- })
-"bNN" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating,
-/area/maintenance/maintcentral{
- name = "Central Maintenance"
- })
-"bNO" = (
-/obj/structure/lattice,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/space,
-/area/space/nearstation)
-"bNP" = (
-/obj/structure/lattice,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/space,
-/area/space/nearstation)
-"bNQ" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/maintenance/maintcentral{
- name = "Central Maintenance"
- })
-"bNR" = (
-/obj/structure/cable{
- tag = "icon-1-4";
- icon_state = "1-4"
- },
-/turf/open/floor/plating,
-/area/maintenance/maintcentral{
- name = "Central Maintenance"
- })
-"bNS" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plating,
-/area/maintenance/maintcentral{
- name = "Central Maintenance"
- })
-"bNT" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4";
- tag = ""
- },
-/turf/open/floor/plating,
-/area/maintenance/maintcentral{
- name = "Central Maintenance"
- })
-"bNU" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/door/airlock/maintenance{
- req_access_txt = "12"
- },
-/turf/open/floor/plating,
-/area/maintenance/maintcentral{
- name = "Central Maintenance"
- })
-"bNV" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/purple/side{
- tag = "icon-purple (NORTH)";
- icon_state = "purple";
- dir = 1
- },
-/area/hallway/primary/starboard)
-"bNW" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/purple/corner{
- tag = "icon-purplecorner (NORTH)";
- icon_state = "purplecorner";
- dir = 1
- },
-/area/hallway/primary/starboard)
-"bNX" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/cable{
- tag = "icon-2-8";
- icon_state = "2-8"
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/starboard)
-"bNY" = (
-/obj/machinery/light{
- dir = 4
- },
-/turf/open/floor/plasteel/purple/side{
- tag = "icon-purple (EAST)";
- icon_state = "purple";
- dir = 4
- },
-/area/hallway/primary/starboard)
-"bNZ" = (
-/obj/machinery/requests_console{
- department = "Robotics";
- departmentType = 2;
- name = "Robotics RC";
- pixel_y = 30
- },
-/obj/machinery/button/door{
- dir = 2;
- id = "robotics";
- name = "Shutters Control Button";
- pixel_x = -24;
- pixel_y = 0;
- req_access_txt = "29"
- },
-/obj/structure/table,
-/obj/item/stock_parts/cell/high,
-/obj/item/stock_parts/cell/high{
- pixel_x = 10;
- pixel_y = 5
- },
-/obj/item/stock_parts/cell/high{
- pixel_x = 10;
- pixel_y = 5
- },
-/turf/open/floor/plasteel/whitepurple/side{
- tag = "icon-whitepurple (NORTHWEST)";
- icon_state = "whitepurple";
- dir = 9
- },
-/area/assembly/robotics)
-"bOa" = (
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel/whitepurple/side{
- tag = "icon-whitepurple (NORTH)";
- icon_state = "whitepurple";
- dir = 1
- },
-/area/assembly/robotics)
-"bOb" = (
-/turf/open/floor/plasteel/whitepurple/side{
- tag = "icon-whitepurple (NORTH)";
- icon_state = "whitepurple";
- dir = 1
- },
-/area/assembly/robotics)
-"bOc" = (
-/obj/machinery/button/door{
- dir = 2;
- id = "robotics_lab";
- name = "Robotics Door Control";
- pixel_x = 24;
- pixel_y = 0;
- req_access_txt = "29"
- },
-/turf/open/floor/plasteel/whitepurple/side{
- tag = "icon-whitepurple (NORTHEAST)";
- icon_state = "whitepurple";
- dir = 5
- },
-/area/assembly/robotics)
-"bOd" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel/whitepurple/side{
- tag = "icon-whitepurple (WEST)";
- icon_state = "whitepurple";
- dir = 8
- },
-/area/medical/research{
- name = "Research Division"
- })
-"bOe" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/machinery/light{
- dir = 4
- },
-/turf/open/floor/plasteel/whitepurple/side{
- tag = "icon-whitepurple (EAST)";
- icon_state = "whitepurple";
- dir = 4
- },
-/area/medical/research{
- name = "Research Division"
- })
-"bOf" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/closed/wall/r_wall,
-/area/toxins/mixing)
-"bOg" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/machinery/camera/autoname{
- tag = "icon-camera (NORTHEAST)";
- icon_state = "camera";
- dir = 5
- },
-/turf/open/floor/plasteel/whitepurple/corner{
- tag = "icon-whitepurplecorner (WEST)";
- icon_state = "whitepurplecorner";
- dir = 8
- },
-/area/toxins/mixing)
-"bOh" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
-/turf/open/floor/plasteel/white,
-/area/toxins/mixing)
-"bOi" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/toxins/mixing)
-"bOj" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 1;
- initialize_directions = 11
- },
-/turf/open/floor/plasteel/white,
-/area/toxins/mixing)
-"bOk" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 10
- },
-/turf/open/floor/plasteel/white,
-/area/toxins/mixing)
-"bOl" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 5
- },
-/turf/open/floor/plasteel/white,
-/area/toxins/mixing)
-"bOm" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 1
- },
-/turf/open/floor/plasteel/white,
-/area/toxins/mixing)
-"bOn" = (
-/obj/machinery/holopad,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/toxins/mixing)
-"bOo" = (
-/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{
- tag = "icon-whitepurple (EAST)";
- icon_state = "whitepurple";
- dir = 4
- },
-/area/toxins/mixing)
-"bOp" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/door/firedoor/heavy,
-/obj/machinery/door/airlock/research{
- name = "Toxins Lab";
- req_access_txt = "8"
- },
-/turf/open/floor/plasteel/white,
-/area/toxins/mixing)
-"bOq" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/toxins/mixing)
-"bOr" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/research{
- name = "Toxins Launch Room";
- req_access_txt = "8"
- },
-/turf/open/floor/plasteel/white,
-/area/toxins/mixing)
-"bOs" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/line,
-/turf/open/floor/plasteel/white,
-/area/toxins/mixing)
-"bOt" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 8;
- name = "regular air vent";
- on = 1
- },
-/obj/effect/landmark{
- name = "xeno_spawn";
- pixel_x = -1
- },
-/obj/effect/turf_decal/stripes/line,
-/turf/open/floor/plasteel/white,
-/area/toxins/mixing)
-"bOu" = (
-/obj/machinery/airalarm{
- dir = 1;
- icon_state = "alarm0";
- pixel_y = -22
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 6
- },
-/turf/open/floor/plasteel/white,
-/area/toxins/mixing)
-"bOv" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 2;
- name = "regular air scrubber";
- on = 1
- },
-/turf/open/floor/plasteel,
-/area/toxins/mixing)
-"bOw" = (
-/obj/machinery/computer/security/telescreen{
- desc = "Used for watching the test chamber.";
- dir = 8;
- layer = 4;
- name = "Test Chamber Telescreen";
- network = list("Toxins");
- pixel_x = 30;
- pixel_y = 0
- },
-/obj/structure/chair/office/dark{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/toxins/mixing)
-"bOx" = (
-/obj/structure/rack,
-/obj/item/gun/ballistic/automatic/wt550{
- pixel_x = 3;
- pixel_y = -3
- },
-/obj/item/gun/ballistic/automatic/wt550{
- pixel_x = -3;
- pixel_y = 3
- },
-/turf/open/floor/plasteel{
- icon_state = "vault";
- dir = 4
- },
-/area/ai_monitored/security/armory)
-"bOy" = (
-/obj/structure/rack,
-/obj/item/gun/energy/e_gun/advtaser{
- pixel_x = -3;
- pixel_y = 3
- },
-/obj/item/gun/energy/e_gun/advtaser,
-/obj/item/gun/energy/e_gun/advtaser{
- pixel_x = 3;
- pixel_y = -3
- },
-/obj/effect/turf_decal/bot{
- dir = 2
- },
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "armory out";
- name = "armory"
- },
-/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
- },
-/turf/open/floor/plasteel/black,
-/area/ai_monitored/security/armory)
-"bOz" = (
-/obj/structure/table,
-/turf/open/floor/plasteel/showroomfloor,
-/area/security/warden{
- name = "Security Control"
- })
-"bOA" = (
-/obj/machinery/button/door{
- id = "Secure Gate";
- name = "Cell Shutters";
- pixel_x = -27;
- pixel_y = -2;
- req_access_txt = "0"
- },
-/obj/machinery/button/door{
- id = "Prison Gate";
- name = "Prison Wing Lockdown";
- pixel_x = -27;
- pixel_y = 8;
- req_access_txt = "2"
- },
-/turf/open/floor/plasteel/showroomfloor,
-/area/security/warden{
- name = "Security Control"
- })
-"bOB" = (
-/obj/machinery/light{
- dir = 4
- },
-/obj/structure/closet/secure_closet/warden,
-/obj/item/key/security,
-/turf/open/floor/plasteel/showroomfloor,
-/area/security/warden{
- name = "Security Control"
- })
-"bOC" = (
-/obj/machinery/newscaster/security_unit,
-/turf/closed/wall,
-/area/security/warden{
- name = "Security Control"
- })
-"bOD" = (
-/obj/structure/table,
-/obj/machinery/recharger,
-/turf/open/floor/plasteel/black,
-/area/security/brig{
- name = "Security"
- })
-"bOE" = (
-/obj/effect/landmark{
- name = "secequipment"
- },
-/turf/open/floor/plasteel/black,
-/area/security/brig{
- name = "Security"
- })
-"bOF" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/closet/secure_closet/security,
-/obj/item/storage/belt/security/full,
-/turf/open/floor/plasteel/black,
-/area/security/brig{
- name = "Security"
- })
-"bOG" = (
-/obj/machinery/door_timer{
- id = "Cell 1";
- name = "Cell 1";
- pixel_y = -32
- },
-/obj/machinery/camera/autoname{
- tag = "icon-camera (NORTH)";
- icon_state = "camera";
- dir = 1
- },
-/turf/open/floor/plasteel/darkred,
-/area/security/brig{
- name = "Security"
- })
-"bOH" = (
-/obj/machinery/light,
-/turf/open/floor/plasteel/darkred,
-/area/security/brig{
- name = "Security"
- })
-"bOI" = (
-/obj/machinery/door_timer{
- id = "Cell 2";
- name = "Cell 2";
- pixel_y = -32
- },
-/turf/open/floor/plasteel/darkred,
-/area/security/brig{
- name = "Security"
- })
-"bOJ" = (
-/obj/machinery/door_timer{
- id = "Cell 3";
- name = "Cell 3";
- pixel_y = -32
- },
-/turf/open/floor/plasteel/darkred,
-/area/security/brig{
- name = "Security"
- })
-"bOK" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/door/firedoor/heavy,
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "briggate";
- name = "security shutters"
- },
-/turf/open/floor/plating,
-/area/security/brig{
- name = "Security"
- })
-"bOL" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/light{
- dir = 8
- },
-/turf/open/floor/plasteel/red/side{
- dir = 8
- },
-/area/hallway/primary/port)
-"bOM" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0;
- tag = ""
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 4;
- name = "regular air vent";
- on = 1
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/port)
-"bON" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/structure/cable,
-/obj/structure/sign/electricshock{
- pixel_y = -32
- },
-/turf/open/floor/plating,
-/area/security/main)
-"bOO" = (
-/obj/structure/table/glass,
-/obj/item/reagent_containers/glass/bottle/morphine,
-/obj/item/reagent_containers/syringe,
-/turf/open/floor/plasteel/whitered/side{
- tag = "icon-whitered (WEST)";
- icon_state = "whitered";
- dir = 8
- },
-/area/security/main)
-"bOP" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0;
- tag = ""
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 1;
- name = "regular air scrubber";
- on = 1
- },
-/turf/open/floor/plasteel/white,
-/area/security/main)
-"bOQ" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- tag = "icon-vent_map (NORTH)";
- name = "regular air vent";
- icon_state = "vent_map";
- dir = 1;
- on = 1
- },
-/turf/open/floor/plasteel/white,
-/area/security/main)
-"bOR" = (
-/obj/machinery/light{
- dir = 4
- },
-/obj/structure/table/glass,
-/obj/item/reagent_containers/glass/bottle/morphine,
-/obj/item/reagent_containers/syringe,
-/turf/open/floor/plasteel/whitered/side{
- tag = "icon-whitered (EAST)";
- icon_state = "whitered";
- dir = 4
- },
-/area/security/main)
-"bOS" = (
-/obj/structure/chair{
- dir = 4
- },
-/turf/open/floor/plasteel/black,
-/area/security/brig{
- name = "Interrogation"
- })
-"bOT" = (
-/obj/structure/table,
-/obj/item/device/taperecorder,
-/turf/open/floor/plasteel/black,
-/area/security/brig{
- name = "Interrogation"
- })
-"bOU" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 1;
- name = "regular air scrubber";
- on = 1
- },
-/obj/structure/chair/office/light{
- dir = 8
- },
-/turf/open/floor/plasteel/black,
-/area/security/brig{
- name = "Interrogation"
- })
-"bOV" = (
-/obj/machinery/airalarm{
- dir = 8;
- icon_state = "alarm0";
- pixel_x = 24
- },
-/turf/open/floor/plasteel/black,
-/area/security/brig{
- name = "Interrogation"
- })
-"bOW" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/closed/wall,
-/area/maintenance/maintcentral{
- name = "Central Maintenance"
- })
-"bOX" = (
-/turf/closed/wall,
-/area/maintenance/maintcentral{
- name = "Central Maintenance"
- })
-"bOY" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/closed/wall/r_wall,
-/area/engine/gravity_generator)
-"bOZ" = (
-/obj/machinery/ai_status_display,
-/turf/closed/wall/r_wall,
-/area/engine/gravity_generator)
-"bPa" = (
-/turf/closed/wall/r_wall,
-/area/engine/gravity_generator)
-"bPb" = (
-/obj/machinery/status_display{
- density = 0;
- layer = 4
- },
-/turf/closed/wall/r_wall,
-/area/engine/gravity_generator)
-"bPc" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/closed/wall/r_wall,
-/area/engine/gravity_generator)
-"bPd" = (
-/turf/open/floor/plating,
-/area/maintenance/maintcentral{
- name = "Central Maintenance"
- })
-"bPe" = (
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plating,
-/area/maintenance/maintcentral{
- name = "Central Maintenance"
- })
-"bPf" = (
-/obj/structure/cable{
- tag = "icon-1-2";
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/maintenance/maintcentral{
- name = "Central Maintenance"
- })
-"bPg" = (
-/obj/machinery/camera/autoname{
- tag = "icon-camera (NORTHEAST)";
- icon_state = "camera";
- dir = 5
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/starboard)
-"bPh" = (
-/turf/open/floor/plasteel,
-/area/hallway/primary/starboard)
-"bPi" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/assembly/robotics)
-"bPj" = (
-/obj/structure/table,
-/obj/machinery/cell_charger,
-/obj/item/stock_parts/cell/high,
-/turf/open/floor/plasteel/whitepurple/corner{
- tag = "icon-whitepurplecorner (NORTH)";
- icon_state = "whitepurplecorner";
- dir = 1
- },
-/area/assembly/robotics)
-"bPk" = (
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel/white,
-/area/assembly/robotics)
-"bPl" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 4;
- name = "regular air vent";
- on = 1
- },
-/obj/effect/landmark{
- name = "xeno_spawn";
- pixel_x = -1
- },
-/turf/open/floor/plasteel/white,
-/area/assembly/robotics)
-"bPm" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/whitepurple/corner{
- tag = "icon-whitepurplecorner (EAST)";
- icon_state = "whitepurplecorner";
- dir = 4
- },
-/area/assembly/robotics)
-"bPn" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/light{
- dir = 1
- },
-/turf/open/floor/plasteel/whitepurple/side{
- tag = "icon-whitepurple (NORTH)";
- icon_state = "whitepurple";
- dir = 1
- },
-/area/assembly/robotics)
-"bPo" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/airalarm{
- frequency = 1439;
- locked = 0;
- pixel_y = 23
- },
-/turf/open/floor/plasteel/whitepurple/side{
- tag = "icon-whitepurple (NORTH)";
- icon_state = "whitepurple";
- dir = 1
- },
-/area/assembly/robotics)
-"bPp" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/camera/autoname{
- tag = "icon-camera (SOUTHEAST)";
- icon_state = "camera";
- dir = 6
- },
-/turf/open/floor/plasteel/whitepurple/side{
- tag = "icon-whitepurple (NORTH)";
- icon_state = "whitepurple";
- dir = 1
- },
-/area/assembly/robotics)
-"bPq" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/whitepurple/side{
- tag = "icon-whitepurple (NORTHEAST)";
- icon_state = "whitepurple";
- dir = 5
- },
-/area/assembly/robotics)
-"bPr" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/door/airlock/research{
- name = "Robotics Lab";
- req_access_txt = "29";
- req_one_access_txt = "0"
- },
-/turf/open/floor/plasteel/white,
-/area/assembly/robotics)
-"bPs" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/whitepurple/side{
- tag = "icon-whitepurple (WEST)";
- icon_state = "whitepurple";
- dir = 8
- },
-/area/medical/research{
- name = "Research Division"
- })
-"bPt" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 4;
- initialize_directions = 11
- },
-/turf/open/floor/plasteel/whitepurple/side{
- tag = "icon-whitepurple (EAST)";
- icon_state = "whitepurple";
- dir = 4
- },
-/area/medical/research{
- name = "Research Division"
- })
-"bPu" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/door/firedoor/heavy,
-/turf/open/floor/plating,
-/area/toxins/mixing)
-"bPv" = (
-/turf/open/floor/plasteel/whitepurple/side{
- tag = "icon-whitepurple (WEST)";
- icon_state = "whitepurple";
- dir = 8
- },
-/area/toxins/mixing)
-"bPw" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 1;
- name = "regular air scrubber";
- on = 1
- },
-/turf/open/floor/plasteel/white,
-/area/toxins/mixing)
-"bPx" = (
-/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_x = 0;
- pixel_y = 2
- },
-/obj/structure/table/reinforced,
-/turf/open/floor/plasteel/white,
-/area/toxins/mixing)
-"bPy" = (
-/obj/structure/chair/stool,
-/obj/effect/landmark/start{
- name = "Scientist"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 5
- },
-/turf/open/floor/plasteel/white,
-/area/toxins/mixing)
-"bPz" = (
-/obj/structure/table/reinforced,
-/obj/item/wrench,
-/obj/item/screwdriver{
- pixel_y = 10
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/toxins/mixing)
-"bPA" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/components/unary/vent_pump{
- tag = "icon-vent_map (NORTH)";
- name = "regular air vent";
- icon_state = "vent_map";
- dir = 1;
- on = 1
- },
-/turf/open/floor/plasteel/white,
-/area/toxins/mixing)
-"bPB" = (
-/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{
- tag = "icon-whitepurple (EAST)";
- icon_state = "whitepurple";
- dir = 4
- },
-/area/toxins/mixing)
-"bPC" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/machinery/light/small,
-/turf/open/floor/plasteel{
- icon_state = "whitepurplefull"
- },
-/area/toxins/mixing)
-"bPD" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel{
- icon_state = "whitepurplefull"
- },
-/area/toxins/mixing)
-"bPE" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/machinery/door/window/southleft,
-/turf/open/floor/plasteel/loadingarea,
-/area/toxins/mixing)
-"bPF" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/toxins/mixing)
-"bPG" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 9
- },
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/toxins/mixing)
-"bPH" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/toxins/mixing)
-"bPI" = (
-/obj/structure/rack,
-/obj/item/gun/ballistic/automatic/wt550{
- pixel_x = 6;
- pixel_y = -6
- },
-/obj/item/gun/ballistic/automatic/wt550{
- pixel_x = 3;
- pixel_y = -3
- },
-/obj/item/gun/ballistic/automatic/wt550,
-/turf/open/floor/plasteel{
- icon_state = "vault";
- dir = 4
- },
-/area/security/armory)
-"bPJ" = (
-/obj/machinery/door/poddoor/shutters{
- id = "armory";
- name = "armory shutters"
- },
-/turf/open/floor/plasteel/black,
-/area/security/armory)
-"bPK" = (
-/obj/structure/rack,
-/obj/item/grenade/barrier{
- pixel_x = 4;
- pixel_y = -4
- },
-/obj/item/grenade/barrier{
- pixel_x = 2;
- pixel_y = -2
- },
-/obj/item/grenade/barrier,
-/obj/item/grenade/barrier{
- pixel_x = -2;
- pixel_y = 2
- },
-/turf/open/floor/plasteel/darkred,
-/area/security/armory)
-"bPL" = (
-/obj/machinery/flasher/portable,
-/turf/open/floor/plasteel/darkred,
-/area/security/armory)
-"bPM" = (
-/obj/structure/closet/secure_closet{
- anchored = 1;
- name = "Contraband Locker";
- req_access_txt = "3"
- },
-/turf/open/floor/plasteel/darkred,
-/area/security/armory)
-"bPN" = (
-/obj/machinery/vending/security,
-/turf/open/floor/plasteel/showroomfloor,
-/area/security/warden{
- name = "Security Control"
- })
-"bPO" = (
-/obj/machinery/firealarm{
- dir = 1;
- pixel_x = 0;
- pixel_y = -26
- },
-/obj/vehicle/secway,
-/turf/open/floor/plasteel/showroomfloor,
-/area/security/warden{
- name = "Security Control"
- })
-"bPP" = (
-/obj/structure/table,
-/obj/item/device/radio/intercom{
- desc = "Talk smack through this.";
- dir = 4;
- pixel_x = 28;
- syndie = 1
- },
-/obj/item/book/manual/wiki/security_space_law,
-/turf/open/floor/plasteel/showroomfloor,
-/area/security/warden{
- name = "Security Control"
- })
-"bPQ" = (
-/obj/structure/table,
-/obj/item/storage/fancy/donut_box,
-/turf/open/floor/plasteel/showroomfloor,
-/area/security/warden{
- name = "Security Control"
- })
-"bPR" = (
-/obj/structure/closet/wardrobe/red,
-/obj/item/device/radio/intercom{
- dir = 8;
- pixel_x = -28
- },
-/turf/open/floor/plasteel/black,
-/area/security/brig{
- name = "Security"
- })
-"bPS" = (
-/obj/structure/cable{
- tag = "icon-1-4";
- icon_state = "1-4"
- },
-/turf/closed/wall,
-/area/security/brig{
- name = "Security"
- })
-"bPT" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/obj/structure/cable{
- tag = "icon-0-8";
- icon_state = "0-8"
- },
-/obj/machinery/door/firedoor/heavy,
-/obj/machinery/door/poddoor/preopen{
- id = "briglockdown";
- name = "brig shutters"
- },
-/turf/open/floor/plating,
-/area/security/brig{
- name = "Security"
- })
-"bPU" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/door/firedoor/border_only,
-/obj/machinery/door/poddoor/preopen{
- id = "briglockdown";
- name = "brig shutters"
- },
-/obj/machinery/door/window/brigdoor{
- id = "Cell 1";
- name = "Cell 1";
- req_access_txt = "2"
- },
-/turf/open/floor/plasteel/darkred/side{
- tag = "icon-darkred (NORTH)";
- icon_state = "darkred";
- dir = 1
- },
-/area/security/brig{
- name = "Security"
- })
-"bPV" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/closed/wall,
-/area/security/brig{
- name = "Security"
- })
-"bPW" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/door/firedoor/border_only,
-/obj/machinery/door/poddoor/preopen{
- id = "briglockdown";
- name = "brig shutters"
- },
-/obj/machinery/door/window/brigdoor{
- id = "Cell 2";
- name = "Cell 2";
- req_access_txt = "2"
- },
-/turf/open/floor/plasteel/darkred/side{
- tag = "icon-darkred (NORTH)";
- icon_state = "darkred";
- dir = 1
- },
-/area/security/brig{
- name = "Security"
- })
-"bPX" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/door/firedoor/border_only,
-/obj/structure/cable{
- tag = "icon-1-4";
- icon_state = "1-4"
- },
-/obj/machinery/door/poddoor/preopen{
- id = "briglockdown";
- name = "brig shutters"
- },
-/obj/machinery/door/window/brigdoor{
- id = "Cell 3";
- name = "Cell 3";
- req_access_txt = "2"
- },
-/turf/open/floor/plasteel/darkred/side{
- tag = "icon-darkred (NORTH)";
- icon_state = "darkred";
- dir = 1
- },
-/area/security/brig{
- name = "Security"
- })
-"bPY" = (
-/obj/structure/cable{
- tag = "icon-1-8";
- icon_state = "1-8"
- },
-/turf/closed/wall/r_wall,
-/area/security/brig{
- name = "Security"
- })
-"bPZ" = (
-/obj/structure/bed,
-/obj/item/clothing/suit/straight_jacket,
-/turf/open/floor/plasteel/whitered/side{
- tag = "icon-whitered (SOUTHWEST)";
- icon_state = "whitered";
- dir = 10
- },
-/area/security/main)
-"bQa" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0;
- tag = ""
- },
-/turf/open/floor/plasteel/whitered/side,
-/area/security/main)
-"bQb" = (
-/turf/open/floor/plasteel/whitered/side,
-/area/security/main)
-"bQc" = (
-/obj/structure/bed,
-/obj/item/clothing/suit/straight_jacket,
-/obj/machinery/camera/autoname{
- tag = "icon-camera (NORTHWEST)";
- icon_state = "camera";
- dir = 9
- },
-/turf/open/floor/plasteel/whitered/side{
- tag = "icon-whitered (SOUTHEAST)";
- icon_state = "whitered";
- dir = 6
- },
-/area/security/main)
-"bQd" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/item/device/radio,
-/turf/open/floor/plating,
-/area/maintenance/maintcentral{
- name = "Central Maintenance"
- })
-"bQe" = (
-/obj/structure/table,
-/obj/item/device/taperecorder,
-/obj/item/device/tape,
-/turf/open/floor/plating,
-/area/maintenance/maintcentral{
- name = "Central Maintenance"
- })
-"bQf" = (
-/turf/open/floor/plasteel{
- icon_state = "dark"
- },
-/area/engine/gravity_generator)
-"bQg" = (
-/obj/machinery/camera/autoname{
- tag = "icon-camera (SOUTHEAST)";
- icon_state = "camera";
- dir = 6
- },
-/turf/open/floor/plasteel{
- icon_state = "dark"
- },
-/area/engine/gravity_generator)
-"bQh" = (
-/obj/machinery/light/small,
-/turf/open/floor/plating,
-/area/maintenance/maintcentral{
- name = "Central Maintenance"
- })
-"bQi" = (
-/obj/machinery/power/apc{
- dir = 2;
- name = "Telecoms Monitoring APC";
- pixel_y = -24
- },
-/obj/structure/cable,
-/turf/open/floor/plating,
-/area/maintenance/maintcentral{
- name = "Central Maintenance"
- })
-"bQj" = (
-/obj/structure/closet/firecloset/full,
-/turf/open/floor/plasteel,
-/area/hallway/primary/starboard)
-"bQk" = (
-/obj/structure/table/reinforced,
-/obj/machinery/door/window/eastright{
- base_state = "left";
- dir = 4;
- icon_state = "left";
- name = "Robotics Desk";
- req_access_txt = "29"
- },
-/obj/item/paper_bin{
- pixel_x = -3;
- pixel_y = 7
- },
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "robotics";
- name = "robotics lab shutters"
- },
-/turf/open/floor/plating,
-/area/assembly/robotics)
-"bQl" = (
-/obj/structure/chair/office/dark{
- dir = 8
- },
-/obj/effect/turf_decal/stripes/line,
-/turf/open/floor/plasteel/white,
-/area/assembly/robotics)
-"bQm" = (
-/obj/structure/disposalpipe/segment,
-/obj/effect/turf_decal/stripes/line,
-/turf/open/floor/plasteel/white,
-/area/assembly/robotics)
-"bQn" = (
-/obj/effect/turf_decal/stripes/line,
-/turf/open/floor/plasteel/white,
-/area/assembly/robotics)
-"bQo" = (
-/obj/effect/turf_decal/stripes/corner{
- dir = 1
- },
-/turf/open/floor/plasteel/white,
-/area/assembly/robotics)
-"bQp" = (
-/obj/machinery/holopad,
-/turf/open/floor/plasteel/white,
-/area/assembly/robotics)
-"bQq" = (
-/turf/open/floor/plasteel/white,
-/area/assembly/robotics)
-"bQr" = (
-/obj/structure/rack{
- dir = 8;
- layer = 2.9
- },
-/obj/item/storage/toolbox/electrical{
- pixel_x = 1;
- pixel_y = 6
- },
-/obj/item/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/white,
-/area/assembly/robotics)
-"bQs" = (
-/obj/structure/closet/l3closet,
-/turf/open/floor/plasteel/whitepurple/side{
- tag = "icon-whitepurple (SOUTHWEST)";
- icon_state = "whitepurple";
- dir = 10
- },
-/area/toxins/mixing)
-"bQt" = (
-/obj/machinery/light,
-/turf/open/floor/plasteel/whitepurple/side,
-/area/toxins/mixing)
-"bQu" = (
-/turf/open/floor/plasteel/whitepurple/side,
-/area/toxins/mixing)
-"bQv" = (
-/obj/machinery/portable_atmospherics/scrubber,
-/turf/open/floor/plasteel/whitepurple/side,
-/area/toxins/mixing)
-"bQw" = (
-/obj/item/device/assembly/signaler{
- pixel_x = 0;
- 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/toxins/mixing)
-"bQx" = (
-/obj/item/device/transfer_valve{
- pixel_x = -5
- },
-/obj/item/device/transfer_valve{
- pixel_x = -5
- },
-/obj/item/device/transfer_valve{
- pixel_x = 0
- },
-/obj/item/device/transfer_valve{
- pixel_x = 0
- },
-/obj/item/device/transfer_valve{
- pixel_x = 5
- },
-/obj/item/device/transfer_valve{
- pixel_x = 5
- },
-/obj/machinery/requests_console{
- department = "Science";
- departmentType = 2;
- name = "Science Requests Console";
- pixel_x = 0;
- pixel_y = -30
- },
-/obj/structure/table/reinforced,
-/turf/open/floor/plasteel/white,
-/area/toxins/mixing)
-"bQy" = (
-/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{
- pixel_x = 0;
- pixel_y = 0
- },
-/obj/structure/table/reinforced,
-/turf/open/floor/plasteel/white,
-/area/toxins/mixing)
-"bQz" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/whitepurple/side,
-/area/toxins/mixing)
-"bQA" = (
-/obj/machinery/power/apc{
- dir = 4;
- name = "Toxins Lab APC";
- pixel_x = 26;
- pixel_y = 0
- },
-/obj/structure/cable,
-/turf/open/floor/plasteel/whitepurple/side{
- tag = "icon-whitepurple (SOUTHEAST)";
- icon_state = "whitepurple";
- dir = 6
- },
-/area/toxins/mixing)
-"bQB" = (
-/obj/machinery/mass_driver{
- dir = 4;
- id = "toxinsdriver"
- },
-/turf/open/floor/plating,
-/area/toxins/mixing)
-"bQC" = (
-/turf/open/floor/plating,
-/area/toxins/mixing)
-"bQD" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/toxins/mixing)
-"bQE" = (
-/obj/machinery/door/poddoor{
- id = "toxinsdriver";
- name = "toxins launcher bay door"
- },
-/turf/open/floor/plating,
-/area/space)
-"bQF" = (
-/obj/item/device/radio/beacon,
-/turf/open/floor/plating/airless,
-/area/toxins/test_area)
-"bQG" = (
-/obj/machinery/camera{
- active_power_usage = 0;
- c_tag = "Bomb Test Site";
- desc = "A specially-reinforced camera with a long lasting battery, used to monitor the bomb testing site.";
- dir = 8;
- invuln = 1;
- light = null;
- name = "Hardened Bomb-Test Camera";
- network = list("Toxins");
- use_power = 0
- },
-/obj/item/target/alien{
- anchored = 1
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/turf/open/floor/plating{
- luminosity = 2;
- initial_gas_mix = "o2=0.01;n2=0.01"
- },
-/area/toxins/test_area)
-"bQH" = (
-/turf/closed/indestructible/riveted,
-/area/toxins/test_area)
-"bQI" = (
-/obj/machinery/light/small{
- dir = 8
- },
-/obj/structure/closet/bombcloset,
-/turf/open/floor/plasteel/black,
-/area/security/brig{
- name = "Security"
- })
-"bQJ" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 6
- },
-/obj/effect/landmark{
- name = "secequipment"
- },
-/turf/open/floor/plasteel/black,
-/area/security/brig{
- name = "Security"
- })
-"bQK" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/closet/secure_closet/security,
-/obj/item/storage/belt/security/full,
-/turf/open/floor/plasteel/black,
-/area/security/brig{
- name = "Security"
- })
-"bQL" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 1
- },
-/obj/machinery/light/small{
- dir = 8
- },
-/turf/open/floor/plasteel/black,
-/area/security/brig{
- name = "Security"
- })
-"bQM" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 2;
- name = "regular air scrubber";
- on = 1
- },
-/turf/open/floor/plasteel/black,
-/area/security/brig{
- name = "Security"
- })
-"bQN" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/closed/wall/r_wall,
-/area/security/brig{
- name = "Security"
- })
-"bQO" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass{
- name = "Port Primary Hallway"
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/port)
-"bQP" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0;
- tag = ""
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass{
- name = "Port Primary Hallway"
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/port)
-"bQQ" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 4
- },
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass{
- name = "Port Primary Hallway"
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/port)
-"bQR" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/obj/structure/cable,
-/obj/structure/sign/electricshock{
- pixel_x = -32
- },
-/turf/open/floor/plating,
-/area/security/main)
-"bQS" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/turf/open/floor/plating,
-/area/security/main)
-"bQT" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/light/small{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/maintenance/maintcentral{
- name = "Central Maintenance"
- })
-"bQU" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/effect/landmark{
- name = "blobstart"
- },
-/turf/open/floor/plating,
-/area/maintenance/maintcentral{
- name = "Central Maintenance"
- })
-"bQV" = (
-/obj/structure/table,
-/obj/item/book/manual/wiki/security_space_law,
-/obj/item/folder/red,
-/turf/open/floor/plating,
-/area/maintenance/maintcentral{
- name = "Central Maintenance"
- })
-"bQW" = (
-/turf/open/floor/plasteel{
- icon_state = "vault";
- dir = 1
- },
-/area/engine/gravity_generator)
-"bQX" = (
-/turf/open/floor/plasteel{
- icon_state = "vault";
- dir = 8
- },
-/area/engine/gravity_generator)
-"bQY" = (
-/turf/open/floor/plasteel{
- icon_state = "vault";
- dir = 4
- },
-/area/engine/gravity_generator)
-"bQZ" = (
-/turf/closed/wall/r_wall,
-/area/maintenance/maintcentral{
- name = "Central Maintenance"
- })
-"bRa" = (
-/turf/closed/wall/r_wall,
-/area/tcommsat/chamber)
-"bRb" = (
-/turf/closed/wall/r_wall,
-/area/tcommsat/computer)
-"bRc" = (
-/obj/structure/closet/emcloset,
-/turf/open/floor/plasteel/caution,
-/area/hallway/primary/starboard)
-"bRd" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 2;
- name = "regular air scrubber";
- on = 1
- },
-/turf/open/floor/plasteel/caution/corner{
- tag = "icon-cautioncorner (WEST)";
- icon_state = "cautioncorner";
- dir = 8
- },
-/area/hallway/primary/starboard)
-"bRe" = (
-/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/assembly/robotics)
-"bRf" = (
-/obj/structure/table,
-/obj/item/storage/firstaid/regular{
- empty = 1;
- name = "First-Aid (empty)"
- },
-/obj/item/storage/firstaid/regular{
- empty = 1;
- name = "First-Aid (empty)"
- },
-/obj/item/storage/firstaid/regular{
- empty = 1;
- name = "First-Aid (empty)"
- },
-/obj/item/device/healthanalyzer,
-/obj/item/device/healthanalyzer,
-/obj/item/device/healthanalyzer,
-/turf/open/floor/plasteel,
-/area/assembly/robotics)
-"bRg" = (
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel,
-/area/assembly/robotics)
-"bRh" = (
-/obj/machinery/mecha_part_fabricator,
-/turf/open/floor/plasteel,
-/area/assembly/robotics)
-"bRi" = (
-/obj/effect/landmark/start{
- name = "Roboticist"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/assembly/robotics)
-"bRj" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 4;
- name = "regular air scrubber";
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel/white,
-/area/assembly/robotics)
-"bRk" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/assembly/robotics)
-"bRl" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/structure/closet/wardrobe/black,
-/turf/open/floor/plasteel/whitepurple/side{
- tag = "icon-whitepurple (EAST)";
- icon_state = "whitepurple";
- dir = 4
- },
-/area/assembly/robotics)
-"bRm" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/assembly/robotics)
-"bRn" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 4;
- initialize_directions = 11
- },
-/obj/machinery/door/firedoor,
-/turf/open/floor/plasteel/whitepurple/side{
- tag = "icon-whitepurple (WEST)";
- icon_state = "whitepurple";
- dir = 8
- },
-/area/medical/research{
- name = "Research Division"
- })
-"bRo" = (
-/obj/effect/turf_decal/stripes/line,
-/obj/machinery/door/firedoor,
-/turf/open/floor/plasteel/whitepurple/side{
- tag = "icon-whitepurple (NORTH)";
- icon_state = "whitepurple";
- dir = 1
- },
-/area/toxins/mixing)
-"bRp" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/effect/turf_decal/stripes/line,
-/obj/machinery/door/firedoor,
-/turf/open/floor/plasteel/whitepurple/side{
- tag = "icon-whitepurple (NORTH)";
- icon_state = "whitepurple";
- dir = 1
- },
-/area/toxins/mixing)
-"bRq" = (
-/obj/structure/closet/emcloset,
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"bRr" = (
-/obj/machinery/space_heater,
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"bRs" = (
-/obj/effect/turf_decal/stripes/line,
-/turf/open/floor/plating/airless,
-/area/toxins/test_area)
-"bRt" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 6
- },
-/turf/open/floor/plating/airless,
-/area/toxins/test_area)
-"bRu" = (
-/obj/item/clothing/glasses/red,
-/obj/item/clothing/head/beret,
-/obj/item/clothing/shoes/sneakers/red,
-/obj/item/clothing/under/color/red,
-/turf/open/floor/plating,
-/area/maintenance/fpmaint2)
-"bRv" = (
-/obj/structure/closet/l3closet/security,
-/turf/open/floor/plasteel/black,
-/area/security/brig{
- name = "Security"
- })
-"bRw" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- tag = "icon-vent_map (NORTH)";
- name = "regular air vent";
- icon_state = "vent_map";
- dir = 1;
- on = 1
- },
-/turf/open/floor/plasteel/black,
-/area/security/brig{
- name = "Security"
- })
-"bRx" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 5
- },
-/obj/structure/closet/secure_closet/security,
-/obj/item/storage/belt/security/full,
-/turf/open/floor/plasteel/black,
-/area/security/brig{
- name = "Security"
- })
-"bRy" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/components/unary/vent_pump{
- tag = "icon-vent_map (NORTH)";
- name = "regular air vent";
- icon_state = "vent_map";
- dir = 1;
- on = 1
- },
-/obj/machinery/flasher{
- id = "Cell 1";
- pixel_x = -28
- },
-/obj/structure/bed,
-/obj/item/bedsheet/orange,
-/turf/open/floor/plasteel/black,
-/area/security/brig{
- name = "Security"
- })
-"bRz" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 2;
- initialize_directions = 11
- },
-/obj/structure/closet/secure_closet/brig{
- id = "Cell 1";
- name = "Cell 1 Locker"
- },
-/turf/open/floor/plasteel/black,
-/area/security/brig{
- name = "Security"
- })
-"bRA" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/components/unary/vent_pump{
- tag = "icon-vent_map (NORTH)";
- name = "regular air vent";
- icon_state = "vent_map";
- dir = 1;
- on = 1
- },
-/obj/machinery/flasher{
- id = "Cell 2";
- pixel_x = -28
- },
-/obj/structure/bed,
-/obj/item/bedsheet/orange,
-/turf/open/floor/plasteel/black,
-/area/security/brig{
- name = "Security"
- })
-"bRB" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 2;
- initialize_directions = 11
- },
-/obj/structure/closet/secure_closet/brig{
- id = "Cell 2";
- name = "Cell 2 Locker"
- },
-/turf/open/floor/plasteel/black,
-/area/security/brig{
- name = "Security"
- })
-"bRC" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/components/unary/vent_pump{
- tag = "icon-vent_map (NORTH)";
- name = "regular air vent";
- icon_state = "vent_map";
- dir = 1;
- on = 1
- },
-/obj/machinery/flasher{
- id = "Cell 3";
- pixel_x = -28
- },
-/obj/structure/bed,
-/obj/item/bedsheet/orange,
-/turf/open/floor/plasteel/black,
-/area/security/brig{
- name = "Security"
- })
-"bRD" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 2;
- initialize_directions = 11
- },
-/obj/structure/closet/secure_closet/brig{
- id = "Cell 3";
- name = "Cell 3 Locker"
- },
-/turf/open/floor/plasteel/black,
-/area/security/brig{
- name = "Security"
- })
-"bRE" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/closed/wall/r_wall,
-/area/security/brig{
- name = "Security"
- })
-"bRF" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 4;
- initialize_directions = 11
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"bRG" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0;
- tag = ""
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"bRH" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"bRI" = (
-/turf/open/floor/plasteel{
- icon_state = "grimy"
- },
-/area/hallway/secondary/entry)
-"bRJ" = (
-/obj/machinery/airalarm{
- frequency = 1439;
- locked = 0;
- pixel_y = 23
- },
-/turf/open/floor/plasteel{
- icon_state = "grimy"
- },
-/area/hallway/secondary/entry)
-"bRK" = (
-/obj/machinery/vending/coffee,
-/turf/open/floor/plasteel{
- icon_state = "grimy"
- },
-/area/hallway/secondary/entry)
-"bRL" = (
-/obj/machinery/vending/cola,
-/turf/open/floor/plasteel{
- icon_state = "grimy"
- },
-/area/hallway/secondary/entry)
-"bRM" = (
-/obj/machinery/vending/snack,
-/turf/open/floor/plasteel{
- icon_state = "grimy"
- },
-/area/hallway/secondary/entry)
-"bRN" = (
-/obj/machinery/vending/cigarette,
-/turf/open/floor/plasteel{
- icon_state = "grimy"
- },
-/area/hallway/secondary/entry)
-"bRO" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating,
-/area/maintenance/maintcentral{
- name = "Central Maintenance"
- })
-"bRP" = (
-/obj/structure/table,
-/obj/item/storage/briefcase,
-/obj/item/pen/red,
-/turf/open/floor/plating,
-/area/maintenance/maintcentral{
- name = "Central Maintenance"
- })
-"bRQ" = (
-/turf/open/floor/circuit{
- name = "Mainframe Base";
- initial_gas_mix = "n2=100;TEMP=80"
- },
-/area/tcommsat/chamber)
-"bRR" = (
-/obj/machinery/telecomms/server/presets/engineering,
-/turf/open/floor/plasteel/black{
- name = "Mainframe Floor";
- initial_gas_mix = "n2=100;TEMP=80"
- },
-/area/tcommsat/chamber)
-"bRS" = (
-/obj/machinery/telecomms/bus/preset_four,
-/turf/open/floor/plasteel/black{
- name = "Mainframe Floor";
- initial_gas_mix = "n2=100;TEMP=80"
- },
-/area/tcommsat/chamber)
-"bRT" = (
-/obj/machinery/light{
- dir = 1
- },
-/obj/machinery/power/apc{
- cell_type = 5000;
- dir = 1;
- name = "Telecoms Server APC";
- pixel_x = 0;
- pixel_y = 25
- },
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
- },
-/turf/open/floor/circuit{
- name = "Mainframe Base";
- initial_gas_mix = "n2=100;TEMP=80"
- },
-/area/tcommsat/chamber)
-"bRU" = (
-/obj/machinery/telecomms/processor/preset_three,
-/turf/open/floor/plasteel/black{
- name = "Mainframe Floor";
- initial_gas_mix = "n2=100;TEMP=80"
- },
-/area/tcommsat/chamber)
-"bRV" = (
-/obj/machinery/telecomms/server/presets/security,
-/turf/open/floor/plasteel/black{
- name = "Mainframe Floor";
- initial_gas_mix = "n2=100;TEMP=80"
- },
-/area/tcommsat/chamber)
-"bRW" = (
-/obj/structure/window/reinforced/fulltile,
-/obj/structure/grille,
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
- },
-/turf/open/floor/plating,
-/area/tcommsat/computer)
-"bRX" = (
-/obj/structure/table,
-/turf/open/floor/plasteel/yellow/side{
- dir = 9
- },
-/area/tcommsat/computer)
-"bRY" = (
-/obj/item/device/radio/intercom{
- dir = 8;
- freerange = 1;
- name = "Station Intercom (Telecoms)";
- pixel_x = 0;
- pixel_y = 26
- },
-/turf/open/floor/plasteel,
-/area/tcommsat/computer)
-"bRZ" = (
-/obj/machinery/light{
- dir = 1
- },
-/obj/machinery/announcement_system,
-/turf/open/floor/plasteel,
-/area/tcommsat/computer)
-"bSa" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/caution{
- tag = "icon-caution (WEST)";
- icon_state = "caution";
- dir = 8
- },
-/area/hallway/primary/starboard)
-"bSb" = (
-/obj/machinery/light{
- dir = 8
- },
-/obj/structure/table,
-/obj/item/device/assembly/flash,
-/obj/item/device/assembly/flash,
-/obj/item/device/assembly/flash,
-/obj/item/device/assembly/flash,
-/obj/item/device/assembly/flash,
-/obj/item/device/assembly/prox_sensor{
- pixel_x = 4;
- pixel_y = 1
- },
-/obj/item/device/assembly/prox_sensor{
- pixel_x = 4;
- pixel_y = 1
- },
-/obj/item/device/assembly/prox_sensor{
- pixel_x = 4;
- pixel_y = 1
- },
-/turf/open/floor/plasteel,
-/area/assembly/robotics)
-"bSc" = (
-/turf/open/floor/plasteel/bot,
-/area/assembly/robotics)
-"bSd" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/assembly/robotics)
-"bSe" = (
-/obj/machinery/vending/robotics,
-/turf/open/floor/plasteel/whitepurple/corner{
- tag = "icon-whitepurplecorner (EAST)";
- icon_state = "whitepurplecorner";
- dir = 4
- },
-/area/assembly/robotics)
-"bSf" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 8;
- initialize_directions = 11
- },
-/turf/open/floor/plasteel/whitepurple/side{
- tag = "icon-whitepurple (WEST)";
- icon_state = "whitepurple";
- dir = 8
- },
-/area/medical/research{
- name = "Research Division"
- })
-"bSg" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 8;
- name = "regular air scrubber";
- on = 1;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel/whitepurple/side{
- tag = "icon-whitepurple (EAST)";
- icon_state = "whitepurple";
- dir = 4
- },
-/area/medical/research{
- name = "Research Division"
- })
-"bSh" = (
-/obj/structure/lattice,
-/turf/open/space,
-/area/toxins/mixing)
-"bSi" = (
-/obj/machinery/door/poddoor{
- id = "mixvent";
- name = "Mixer Room Vent"
- },
-/turf/open/floor/engine/vacuum,
-/area/toxins/mixing)
-"bSj" = (
-/turf/open/floor/engine/vacuum,
-/area/toxins/mixing)
-"bSk" = (
-/obj/machinery/sparker{
- dir = 2;
- id = "mixingsparker";
- pixel_x = 25
- },
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 4;
- external_pressure_bound = 0;
- initialize_directions = 1;
- internal_pressure_bound = 4000;
- on = 1;
- pressure_checks = 2;
- pump_direction = 0
- },
-/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/engine/vacuum,
-/area/toxins/mixing)
-"bSl" = (
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 4
- },
-/turf/closed/wall/r_wall,
-/area/toxins/mixing)
-"bSm" = (
-/obj/machinery/airlock_sensor{
- id_tag = "tox_airlock_sensor";
- master_tag = "tox_airlock_control";
- pixel_y = 24
- },
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 4;
- on = 1
- },
-/turf/open/floor/engine,
-/area/toxins/mixing)
-"bSn" = (
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 4
- },
-/obj/machinery/meter,
-/obj/machinery/embedded_controller/radio/airlock_controller{
- airpump_tag = "tox_airlock_pump";
- exterior_door_tag = "tox_airlock_exterior";
- id_tag = "tox_airlock_control";
- interior_door_tag = "tox_airlock_interior";
- pixel_x = -24;
- pixel_y = 0;
- sanitize_external = 1;
- sensor_tag = "tox_airlock_sensor"
- },
-/turf/open/floor/engine,
-/area/toxins/mixing)
-"bSo" = (
-/obj/machinery/atmospherics/components/binary/valve{
- dir = 4;
- name = "mix to port"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/engine,
-/area/toxins/mixing)
-"bSp" = (
-/obj/machinery/atmospherics/components/unary/portables_connector/visible{
- dir = 8
- },
-/turf/open/floor/engine,
-/area/toxins/mixing)
-"bSq" = (
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/machinery/portable_atmospherics/scrubber,
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"bSr" = (
-/obj/structure/grille,
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/obj/structure/cable,
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/security/armory)
-"bSs" = (
-/obj/structure/grille,
-/obj/structure/cable{
- tag = "icon-0-8";
- icon_state = "0-8"
- },
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/obj/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/security/armory)
-"bSt" = (
-/obj/structure/grille,
-/obj/structure/cable{
- tag = "icon-0-8";
- icon_state = "0-8"
- },
-/obj/structure/window/reinforced,
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
- },
-/turf/open/floor/plating,
-/area/security/armory)
-"bSu" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/security/brig{
- name = "Security"
- })
-"bSv" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"bSw" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0;
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"bSx" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"bSy" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/closed/wall,
-/area/hallway/secondary/entry)
-"bSz" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/structure/table/wood,
-/turf/open/floor/plasteel{
- icon_state = "grimy"
- },
-/area/hallway/secondary/entry)
-"bSA" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 1;
- initialize_directions = 11
- },
-/turf/open/floor/carpet,
-/area/hallway/secondary/entry)
-"bSB" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/structure/chair/comfy/beige,
-/obj/effect/landmark/start{
- name = "Assistant"
- },
-/turf/open/floor/carpet,
-/area/hallway/secondary/entry)
-"bSC" = (
-/obj/structure/chair/comfy/beige,
-/obj/effect/landmark/start{
- name = "Assistant"
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 1;
- initialize_directions = 11
- },
-/turf/open/floor/carpet,
-/area/hallway/secondary/entry)
-"bSD" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel{
- icon_state = "grimy"
- },
-/area/hallway/secondary/entry)
-"bSE" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 10
- },
-/obj/machinery/door/airlock/maintenance,
-/turf/open/floor/plating,
-/area/maintenance/maintcentral{
- name = "Central Maintenance"
- })
-"bSF" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/turf/open/floor/plating,
-/area/maintenance/maintcentral{
- name = "Central Maintenance"
- })
-"bSG" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating,
-/area/maintenance/maintcentral{
- name = "Central Maintenance"
- })
-"bSH" = (
-/obj/machinery/power/apc{
- cell_type = 2500;
- dir = 4;
- name = "Central Maintenance APC";
- pixel_x = 26;
- pixel_y = 0
- },
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/turf/open/floor/plating,
-/area/maintenance/maintcentral{
- name = "Central Maintenance"
- })
-"bSI" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 8
- },
-/turf/closed/wall/r_wall,
-/area/engine/gravity_generator)
-"bSJ" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 8;
- name = "regular air scrubber";
- on = 1;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel{
- icon_state = "dark"
- },
-/area/engine/gravity_generator)
-"bSK" = (
-/obj/machinery/gravity_generator/main/station,
-/turf/open/floor/plasteel{
- icon_state = "vault";
- dir = 8
- },
-/area/engine/gravity_generator)
-"bSL" = (
-/obj/machinery/camera{
- c_tag = "Gravity Generator Room";
- dir = 8;
- network = list("SS13");
- pixel_x = 0;
- pixel_y = 0
- },
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 4;
- name = "regular air vent";
- on = 1
- },
-/turf/open/floor/plasteel{
- icon_state = "dark"
- },
-/area/engine/gravity_generator)
-"bSM" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 4
- },
-/turf/closed/wall/r_wall,
-/area/engine/gravity_generator)
-"bSN" = (
-/obj/machinery/telecomms/server/presets/common,
-/turf/open/floor/plasteel/black{
- name = "Mainframe Floor";
- initial_gas_mix = "n2=100;TEMP=80"
- },
-/area/tcommsat/chamber)
-"bSO" = (
-/obj/machinery/telecomms/processor/preset_four,
-/turf/open/floor/plasteel/black{
- name = "Mainframe Floor";
- initial_gas_mix = "n2=100;TEMP=80"
- },
-/area/tcommsat/chamber)
-"bSP" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/circuit{
- name = "Mainframe Base";
- initial_gas_mix = "n2=100;TEMP=80"
- },
-/area/tcommsat/chamber)
-"bSQ" = (
-/obj/machinery/telecomms/bus/preset_three,
-/turf/open/floor/plasteel/black{
- name = "Mainframe Floor";
- initial_gas_mix = "n2=100;TEMP=80"
- },
-/area/tcommsat/chamber)
-"bSR" = (
-/obj/machinery/telecomms/server/presets/command,
-/turf/open/floor/plasteel/black{
- name = "Mainframe Floor";
- initial_gas_mix = "n2=100;TEMP=80"
- },
-/area/tcommsat/chamber)
-"bSS" = (
-/obj/structure/window/reinforced/fulltile,
-/obj/structure/grille,
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
- },
-/obj/structure/cable,
-/turf/open/floor/plating,
-/area/tcommsat/computer)
-"bST" = (
-/obj/machinery/computer/message_monitor,
-/turf/open/floor/plasteel/yellow/side{
- dir = 8
- },
-/area/tcommsat/computer)
-"bSU" = (
-/obj/structure/chair/office/dark{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/tcommsat/computer)
-"bSV" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 4;
- on = 1
- },
-/turf/open/floor/plasteel,
-/area/tcommsat/computer)
-"bSW" = (
-/obj/structure/table,
-/obj/item/paper_bin,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 10
- },
-/turf/open/floor/plasteel,
-/area/tcommsat/computer)
-"bSX" = (
-/obj/machinery/power/apc{
- dir = 8;
- name = "Robotics Lab APC";
- pixel_x = -25
- },
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
- },
-/turf/open/floor/plasteel,
-/area/assembly/robotics)
-"bSY" = (
-/turf/open/floor/plasteel,
-/area/assembly/robotics)
-"bSZ" = (
-/obj/item/device/radio/intercom{
- desc = "Talk smack through this.";
- dir = 4;
- pixel_x = 28;
- syndie = 1
- },
-/turf/open/floor/plasteel,
-/area/assembly/robotics)
-"bTa" = (
-/obj/structure/window/reinforced{
- dir = 1;
- layer = 2.9
- },
-/turf/open/floor/plasteel/white,
-/area/assembly/robotics)
-"bTb" = (
-/obj/structure/table,
-/obj/item/device/mmi,
-/obj/item/device/mmi,
-/obj/item/device/mmi,
-/obj/structure/window/reinforced{
- dir = 1;
- pixel_y = 1
- },
-/turf/open/floor/plasteel/white,
-/area/assembly/robotics)
-"bTc" = (
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/engine/vacuum,
-/area/toxins/mixing)
-"bTd" = (
-/obj/machinery/door/airlock/glass_research{
- autoclose = 0;
- frequency = 1449;
- glass = 1;
- heat_proof = 1;
- icon_state = "door_locked";
- id_tag = "tox_airlock_exterior";
- locked = 1;
- name = "Mixing Room Exterior Airlock";
- req_access_txt = "8"
- },
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/engine,
-/area/toxins/mixing)
-"bTe" = (
-/obj/machinery/atmospherics/components/binary/dp_vent_pump/high_volume{
- dir = 2;
- frequency = 1449;
- id = "tox_airlock_pump"
- },
-/turf/open/floor/engine,
-/area/toxins/mixing)
-"bTf" = (
-/obj/machinery/door/airlock/glass_research{
- autoclose = 0;
- frequency = 1449;
- glass = 1;
- heat_proof = 1;
- icon_state = "door_locked";
- id_tag = "tox_airlock_interior";
- locked = 1;
- name = "Mixing Room Interior Airlock";
- req_access_txt = "8"
- },
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/engine,
-/area/toxins/mixing)
-"bTg" = (
-/turf/open/floor/engine,
-/area/toxins/mixing)
-"bTh" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 1;
- name = "regular air scrubber";
- on = 1
- },
-/turf/open/floor/engine,
-/area/toxins/mixing)
-"bTi" = (
-/obj/structure/extinguisher_cabinet{
- pixel_x = 27;
- pixel_y = 0
- },
-/obj/machinery/camera{
- c_tag = "Toxins Lab East";
- dir = 8;
- network = list("SS13","RD");
- pixel_y = -22
- },
-/turf/open/floor/engine,
-/area/toxins/mixing)
-"bTj" = (
-/obj/machinery/light/small{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/maintenance/fpmaint2)
-"bTk" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/turf/open/floor/plating,
-/area/maintenance/fpmaint2)
-"bTl" = (
-/obj/machinery/light/small{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
- },
-/turf/open/floor/plating,
-/area/maintenance/fpmaint2)
-"bTm" = (
-/turf/closed/mineral/random/labormineral,
-/area/hallway/secondary/entry)
-"bTn" = (
-/turf/closed/wall,
-/area/hallway/secondary/entry)
-"bTo" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"bTp" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0;
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 6
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"bTq" = (
-/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"bTr" = (
-/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/flora/ausbushes/ppflowers,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/grass,
-/area/hallway/secondary/entry)
-"bTs" = (
-/obj/structure/table/wood,
-/obj/item/device/flashlight/lamp/green,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 10
- },
-/turf/open/floor/plasteel{
- icon_state = "grimy"
- },
-/area/hallway/secondary/entry)
-"bTt" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 1;
- name = "regular air scrubber";
- on = 1
- },
-/turf/open/floor/carpet,
-/area/hallway/secondary/entry)
-"bTu" = (
-/obj/structure/table/wood,
-/turf/open/floor/carpet,
-/area/hallway/secondary/entry)
-"bTv" = (
-/obj/structure/table/wood,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/carpet,
-/area/hallway/secondary/entry)
-"bTw" = (
-/obj/machinery/light{
- dir = 4
- },
-/turf/open/floor/plasteel{
- icon_state = "grimy"
- },
-/area/hallway/secondary/entry)
-"bTx" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/closed/wall,
-/area/maintenance/maintcentral{
- name = "Central Maintenance"
- })
-"bTy" = (
-/obj/machinery/light{
- icon_state = "tube1";
- dir = 8
- },
-/turf/open/floor/plasteel{
- icon_state = "dark"
- },
-/area/engine/gravity_generator)
-"bTz" = (
-/obj/machinery/light{
- dir = 4
- },
-/turf/open/floor/plasteel{
- icon_state = "dark"
- },
-/area/engine/gravity_generator)
-"bTA" = (
-/turf/open/floor/plasteel/black{
- name = "Mainframe Floor";
- initial_gas_mix = "n2=100;TEMP=80"
- },
-/area/tcommsat/chamber)
-"bTB" = (
-/obj/machinery/blackbox_recorder,
-/turf/open/floor/plasteel/black{
- name = "Mainframe Floor";
- initial_gas_mix = "n2=100;TEMP=80"
- },
-/area/tcommsat/chamber)
-"bTC" = (
-/obj/machinery/telecomms/broadcaster/preset_right,
-/turf/open/floor/plasteel/black{
- name = "Mainframe Floor";
- initial_gas_mix = "n2=100;TEMP=80"
- },
-/area/tcommsat/chamber)
-"bTD" = (
-/obj/machinery/telecomms/receiver/preset_right,
-/turf/open/floor/plasteel/black{
- name = "Mainframe Floor";
- initial_gas_mix = "n2=100;TEMP=80"
- },
-/area/tcommsat/chamber)
-"bTE" = (
-/obj/machinery/computer/telecomms/server{
- network = "tcommsat"
- },
-/turf/open/floor/plasteel/yellow/side{
- dir = 10
- },
-/area/tcommsat/computer)
-"bTF" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 4;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel,
-/area/tcommsat/computer)
-"bTG" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 10
- },
-/turf/open/floor/plasteel,
-/area/tcommsat/computer)
-"bTH" = (
-/obj/structure/table,
-/obj/item/folder/blue,
-/obj/item/pen/blue,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
-/area/tcommsat/computer)
-"bTI" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- name = "regular air vent";
- on = 1
- },
-/turf/open/floor/plasteel/purple/side{
- tag = "icon-purple (EAST)";
- icon_state = "purple";
- dir = 4
- },
-/area/hallway/primary/starboard)
-"bTJ" = (
-/obj/structure/cable{
- tag = "icon-1-2";
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel,
-/area/assembly/robotics)
-"bTK" = (
-/obj/structure/disposalpipe/trunk{
- dir = 1
- },
-/obj/machinery/disposal/bin,
-/turf/open/floor/plasteel,
-/area/assembly/robotics)
-"bTL" = (
-/obj/machinery/rnd/circuit_imprinter,
-/turf/open/floor/plasteel,
-/area/assembly/robotics)
-"bTM" = (
-/obj/machinery/computer/rdconsole/robotics,
-/turf/open/floor/plasteel,
-/area/assembly/robotics)
-"bTN" = (
-/obj/structure/table,
-/obj/item/retractor,
-/obj/item/hemostat,
-/turf/open/floor/plasteel/white,
-/area/assembly/robotics)
-"bTO" = (
-/obj/effect/landmark/start{
- name = "Roboticist"
- },
-/turf/open/floor/plasteel/white,
-/area/assembly/robotics)
-"bTP" = (
-/obj/structure/table,
-/obj/item/clothing/gloves/color/latex,
-/obj/item/surgical_drapes,
-/obj/item/razor,
-/turf/open/floor/plasteel/white,
-/area/assembly/robotics)
-"bTQ" = (
-/obj/machinery/sparker{
- dir = 2;
- id = "mixingsparker";
- pixel_x = 25
- },
-/obj/machinery/atmospherics/components/unary/outlet_injector/on{
- dir = 4;
- frequency = 1441;
- id = "air_in"
- },
-/turf/open/floor/engine/vacuum,
-/area/toxins/mixing)
-"bTR" = (
-/obj/structure/sign/fire{
- pixel_y = -32
- },
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 8;
- on = 1
- },
-/turf/open/floor/engine,
-/area/toxins/mixing)
-"bTS" = (
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 4
- },
-/obj/machinery/meter,
-/obj/machinery/button/door{
- id = "mixvent";
- name = "Mixing Room Vent Control";
- pixel_x = -25;
- pixel_y = 5;
- req_access_txt = "7"
- },
-/obj/machinery/button/ignition{
- id = "mixingsparker";
- pixel_x = -25;
- pixel_y = -5
- },
-/turf/open/floor/engine,
-/area/toxins/mixing)
-"bTT" = (
-/obj/machinery/light,
-/obj/machinery/atmospherics/components/binary/valve{
- dir = 4;
- name = "port to mix"
- },
-/turf/open/floor/engine,
-/area/toxins/mixing)
-"bTU" = (
-/obj/structure/rack,
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"bTV" = (
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/item/storage/box/disks,
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"bTW" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 10
- },
-/turf/open/floor/plating/airless,
-/area/toxins/test_area)
-"bTX" = (
-/turf/closed/wall,
-/area/ruin/unpowered{
- name = "Asteroid"
- })
-"bTY" = (
-/obj/machinery/door/airlock/maintenance{
- req_access_txt = "12"
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/turf/open/floor/plating,
-/area/maintenance/fpmaint2)
-"bTZ" = (
-/obj/structure/window/reinforced{
- dir = 1;
- pixel_y = 0
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"bUa" = (
-/obj/machinery/light{
- dir = 1
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"bUb" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"bUc" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0;
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- tag = "icon-2-8";
- icon_state = "2-8"
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"bUd" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- tag = "icon-vent_map (NORTH)";
- name = "regular air vent";
- icon_state = "vent_map";
- dir = 1;
- on = 1
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"bUe" = (
-/obj/structure/table/wood,
-/obj/effect/holodeck_effect/cards,
-/obj/item/device/radio/intercom{
- dir = 8;
- pixel_x = -28
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel{
- icon_state = "grimy"
- },
-/area/hallway/secondary/entry)
-"bUf" = (
-/turf/open/floor/carpet,
-/area/hallway/secondary/entry)
-"bUg" = (
-/obj/structure/chair/comfy/beige{
- dir = 1;
- icon_state = "comfychair"
- },
-/obj/effect/landmark/start{
- name = "Assistant"
- },
-/turf/open/floor/carpet,
-/area/hallway/secondary/entry)
-"bUh" = (
-/obj/structure/chair/comfy/beige{
- dir = 1;
- icon_state = "comfychair"
- },
-/obj/effect/landmark/start{
- name = "Assistant"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/carpet,
-/area/hallway/secondary/entry)
-"bUi" = (
-/obj/machinery/camera/autoname{
- tag = "icon-camera (NORTHWEST)";
- icon_state = "camera";
- dir = 9
- },
-/turf/open/floor/plasteel{
- icon_state = "grimy"
- },
-/area/hallway/secondary/entry)
-"bUj" = (
-/obj/structure/grille,
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'HIGH VOLTAGE'";
- icon_state = "shock";
- name = "HIGH VOLTAGE";
- pixel_x = -32;
- pixel_y = 0
- },
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/engine/gravity_generator)
-"bUk" = (
-/obj/structure/grille,
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/engine/gravity_generator)
-"bUl" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/door/airlock/glass_engineering{
- name = "Gravity Generator";
- req_access_txt = "11";
- req_one_access_txt = "0"
- },
-/turf/open/floor/plasteel{
- icon_state = "dark"
- },
-/area/engine/gravity_generator)
-"bUm" = (
-/obj/structure/grille,
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'RADIOACTIVE AREA'";
- icon_state = "radiation";
- name = "RADIOACTIVE AREA";
- pixel_x = 32;
- pixel_y = 0
- },
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
- },
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/engine/gravity_generator)
-"bUn" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/turf/open/floor/circuit{
- name = "Mainframe Base";
- initial_gas_mix = "n2=100;TEMP=80"
- },
-/area/tcommsat/chamber)
-"bUo" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/turf/open/floor/circuit{
- name = "Mainframe Base";
- initial_gas_mix = "n2=100;TEMP=80"
- },
-/area/tcommsat/chamber)
-"bUp" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/turf/open/floor/circuit{
- name = "Mainframe Base";
- initial_gas_mix = "n2=100;TEMP=80"
- },
-/area/tcommsat/chamber)
-"bUq" = (
-/obj/structure/window/reinforced/fulltile,
-/obj/structure/grille,
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
- },
-/turf/open/floor/plating,
-/area/tcommsat/chamber)
-"bUr" = (
-/obj/structure/window/reinforced/fulltile,
-/obj/structure/grille,
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/structure/cable,
-/turf/open/floor/plating,
-/area/tcommsat/computer)
-"bUs" = (
-/obj/machinery/status_display,
-/turf/closed/wall,
-/area/tcommsat/computer)
-"bUt" = (
-/obj/structure/window/reinforced/fulltile,
-/obj/structure/grille,
-/turf/open/floor/plating,
-/area/tcommsat/computer)
-"bUu" = (
-/obj/machinery/door/airlock/glass_command{
- name = "Control Room";
- req_access_txt = "19; 61"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/tcommsat/computer)
-"bUv" = (
-/obj/structure/window/reinforced/fulltile,
-/obj/structure/grille,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating,
-/area/tcommsat/computer)
-"bUw" = (
-/turf/closed/wall/r_wall,
-/area/assembly/chargebay)
-"bUx" = (
-/obj/structure/cable{
- tag = "icon-1-2";
- icon_state = "1-2"
- },
-/obj/machinery/door/airlock/research{
- name = "Mech Bay";
- req_access_txt = "29";
- req_one_access_txt = "0"
- },
-/turf/open/floor/plasteel/white,
-/area/assembly/chargebay)
-"bUy" = (
-/turf/closed/wall,
-/area/assembly/chargebay)
-"bUz" = (
-/obj/structure/table,
-/obj/item/circular_saw,
-/obj/item/scalpel{
- pixel_y = 12
- },
-/turf/open/floor/plasteel/white,
-/area/assembly/robotics)
-"bUA" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 4;
- name = "regular air vent";
- on = 1
- },
-/turf/open/floor/plasteel/whitepurple/side{
- tag = "icon-whitepurple (WEST)";
- icon_state = "whitepurple";
- dir = 8
- },
-/area/medical/research{
- name = "Research Division"
- })
-"bUB" = (
-/obj/structure/table,
-/obj/item/rack_parts,
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"bUC" = (
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/item/storage/box/lights,
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"bUD" = (
-/obj/machinery/light{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"bUE" = (
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"bUF" = (
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"bUG" = (
-/obj/machinery/camera/autoname{
- tag = "icon-camera (NORTH)";
- icon_state = "camera";
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"bUH" = (
-/obj/machinery/light,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"bUI" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"bUJ" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0;
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"bUK" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel{
- icon_state = "grimy"
- },
-/area/hallway/secondary/entry)
-"bUL" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel{
- icon_state = "grimy"
- },
-/area/hallway/secondary/entry)
-"bUM" = (
-/obj/machinery/airalarm{
- dir = 8;
- icon_state = "alarm0";
- pixel_x = 24
- },
-/turf/open/floor/plasteel{
- icon_state = "grimy"
- },
-/area/hallway/secondary/entry)
-"bUN" = (
-/turf/closed/wall/r_wall,
-/area/ai_monitored/nuke_storage)
-"bUO" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/closed/wall/r_wall,
-/area/ai_monitored/nuke_storage)
-"bUP" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/closed/wall/r_wall,
-/area/ai_monitored/nuke_storage)
-"bUQ" = (
-/obj/machinery/firealarm{
- dir = 8;
- pixel_x = -24
- },
-/obj/effect/turf_decal/stripes{
- tag = "icon-warningline (NORTH)";
- icon_state = "warningline";
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/engine/gravity_generator)
-"bUR" = (
-/obj/effect/turf_decal/stripes{
- tag = "icon-warningline (NORTH)";
- icon_state = "warningline";
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/engine/gravity_generator)
-"bUS" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/effect/turf_decal/stripes{
- tag = "icon-warningline (NORTH)";
- icon_state = "warningline";
- dir = 1
- },
-/obj/machinery/airalarm{
- dir = 8;
- icon_state = "alarm0";
- pixel_x = 24
- },
-/turf/open/floor/plasteel,
-/area/engine/gravity_generator)
-"bUT" = (
-/obj/machinery/power/terminal{
- dir = 4
- },
-/obj/machinery/ntnet_relay,
-/turf/open/floor/circuit{
- name = "Mainframe Base";
- initial_gas_mix = "n2=100;TEMP=80"
- },
-/area/tcommsat/chamber)
-"bUU" = (
-/obj/machinery/power/smes{
- charge = 5e+006
- },
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/turf/open/floor/circuit{
- name = "Mainframe Base";
- initial_gas_mix = "n2=100;TEMP=80"
- },
-/area/tcommsat/chamber)
-"bUV" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/turf/open/floor/circuit{
- name = "Mainframe Base";
- initial_gas_mix = "n2=100;TEMP=80"
- },
-/area/tcommsat/chamber)
-"bUW" = (
-/obj/machinery/telecomms/hub/preset,
-/turf/open/floor/plasteel/vault{
- dir = 8;
- name = "Mainframe Floor";
- initial_gas_mix = "n2=100;TEMP=80"
- },
-/area/tcommsat/chamber)
-"bUX" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/turf/open/floor/circuit{
- name = "Mainframe Base";
- initial_gas_mix = "n2=100;TEMP=80"
- },
-/area/tcommsat/chamber)
-"bUY" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/circuit{
- name = "Mainframe Base";
- initial_gas_mix = "n2=100;TEMP=80"
- },
-/area/tcommsat/chamber)
-"bUZ" = (
-/obj/machinery/door/airlock/glass_engineering{
- cyclelinkeddir = 4;
- name = "Server Room";
- req_access_txt = "61"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/turf/open/floor/plasteel/vault{
- dir = 5
- },
-/area/tcommsat/chamber)
-"bVa" = (
-/turf/open/floor/plasteel/vault{
- dir = 5
- },
-/area/tcommsat/entrance)
-"bVb" = (
-/obj/machinery/door/airlock/glass_engineering{
- cyclelinkeddir = 8;
- name = "Server Room";
- req_access_txt = "61"
- },
-/turf/open/floor/plasteel/vault{
- dir = 5
- },
-/area/tcommsat/entrance)
-"bVc" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/tcommsat/entrance)
-"bVd" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/tcommsat/entrance)
-"bVe" = (
-/obj/structure/closet/emcloset,
-/obj/machinery/camera{
- c_tag = "Telecoms Monitoring";
- dir = 8;
- network = list("SS13")
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
-/area/tcommsat/entrance)
-"bVf" = (
-/turf/closed/wall/r_wall,
-/area/tcommsat/entrance)
-"bVg" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/light{
- dir = 4
- },
-/obj/machinery/button/door{
- dir = 2;
- id = "Skynet_launch";
- name = "Mech Bay Door Control";
- pixel_x = 24;
- pixel_y = 0;
- req_access_txt = "29"
- },
-/turf/open/floor/plasteel/purple/corner{
- tag = "icon-purplecorner (EAST)";
- icon_state = "purplecorner";
- dir = 4
- },
-/area/hallway/primary/starboard)
-"bVh" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4";
- tag = "90Curve"
- },
-/obj/machinery/button/door{
- dir = 2;
- id = "Skynet_launch";
- name = "Mech Bay Door Control";
- pixel_x = -24;
- pixel_y = 0;
- req_access_txt = "29"
- },
-/obj/structure/cable{
- tag = "icon-1-2";
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel,
-/area/assembly/chargebay)
-"bVi" = (
-/obj/machinery/airalarm{
- frequency = 1439;
- locked = 0;
- pixel_y = 23
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/obj/structure/cable{
- tag = "icon-2-8";
- icon_state = "2-8"
- },
-/turf/open/floor/circuit,
-/area/assembly/chargebay)
-"bVj" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/turf/open/floor/circuit,
-/area/assembly/chargebay)
-"bVk" = (
-/obj/machinery/power/apc{
- dir = 4;
- name = "Mech Bay APC";
- pixel_x = 28;
- pixel_y = 0
- },
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/structure/cable{
- tag = "icon-2-8";
- icon_state = "2-8"
- },
-/turf/open/floor/circuit,
-/area/assembly/chargebay)
-"bVl" = (
-/obj/structure/table,
-/obj/item/storage/box/bodybags,
-/obj/item/pen,
-/turf/open/floor/plasteel/white,
-/area/assembly/robotics)
-"bVm" = (
-/obj/structure/table/optable{
- name = "Robotics Operating Table"
- },
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plasteel/white,
-/area/assembly/robotics)
-"bVn" = (
-/obj/machinery/computer/operating{
- name = "Robotics Operating Computer"
- },
-/obj/machinery/light,
-/turf/open/floor/plasteel/white,
-/area/assembly/robotics)
-"bVo" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 8
- },
-/obj/machinery/door/firedoor,
-/turf/open/floor/plasteel/whitepurple/side{
- tag = "icon-whitepurple (WEST)";
- icon_state = "whitepurple";
- dir = 8
- },
-/area/medical/research{
- name = "Research Division"
- })
-"bVp" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/machinery/door/firedoor,
-/turf/open/floor/plasteel/whitepurple/side{
- tag = "icon-whitepurple (EAST)";
- icon_state = "whitepurple";
- dir = 4
- },
-/area/medical/research{
- name = "Research Division"
- })
-"bVq" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/closed/wall,
-/area/toxins/misc_lab)
-"bVr" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/structure/table,
-/obj/item/stack/sheet/metal{
- amount = 50
- },
-/obj/item/stack/sheet/glass{
- amount = 50;
- pixel_x = 3;
- pixel_y = 3
- },
-/turf/open/floor/plasteel,
-/area/toxins/misc_lab)
-"bVs" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/machinery/airalarm{
- frequency = 1439;
- locked = 0;
- pixel_y = 23
- },
-/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,
-/area/toxins/misc_lab)
-"bVt" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/toxins/misc_lab)
-"bVu" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/structure/table,
-/obj/item/device/taperecorder,
-/turf/open/floor/plasteel,
-/area/toxins/misc_lab)
-"bVv" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/engine,
-/area/toxins/misc_lab)
-"bVw" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/engine,
-/area/toxins/misc_lab)
-"bVx" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 8;
- name = "regular air scrubber";
- on = 1;
- scrub_Toxins = 0
- },
-/turf/open/floor/engine,
-/area/toxins/misc_lab)
-"bVy" = (
-/turf/open/floor/engine,
-/area/toxins/misc_lab)
-"bVz" = (
-/turf/closed/wall/r_wall,
-/area/toxins/misc_lab)
-"bVA" = (
-/obj/structure/table,
-/obj/item/device/assembly/prox_sensor{
- pixel_x = 0;
- pixel_y = 2
- },
-/obj/item/device/assembly/signaler{
- pixel_x = -2;
- pixel_y = -2
- },
-/obj/machinery/light/small{
- brightness = 3;
- dir = 8
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"bVB" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/hallway/secondary/entry)
-"bVC" = (
-/obj/machinery/door/airlock/external{
- name = "Arrivals Docking Bay 1"
- },
-/turf/open/floor/noslip,
-/area/hallway/secondary/entry)
-"bVD" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/item/device/radio/intercom{
- dir = 8;
- pixel_x = -28
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"bVE" = (
-/turf/closed/wall,
-/area/storage/eva)
-"bVF" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/closed/wall,
-/area/storage/eva)
-"bVG" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/closed/wall,
-/area/storage/eva)
-"bVH" = (
-/obj/machinery/computer/bank_machine,
-/turf/open/floor/plasteel/vault{
- dir = 8
- },
-/area/ai_monitored/nuke_storage)
-"bVI" = (
-/obj/machinery/light_switch{
- pixel_y = 28
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/circuit,
-/area/ai_monitored/nuke_storage)
-"bVJ" = (
-/obj/machinery/airalarm{
- pixel_y = 23
- },
-/obj/machinery/light{
- dir = 1
- },
-/turf/open/floor/circuit,
-/area/ai_monitored/nuke_storage)
-"bVK" = (
-/obj/machinery/power/apc{
- dir = 1;
- name = "Vault APC";
- pixel_x = 0;
- pixel_y = 25
- },
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/circuit,
-/area/ai_monitored/nuke_storage)
-"bVL" = (
-/obj/structure/filingcabinet,
-/obj/item/folder/documents,
-/turf/open/floor/plasteel/vault{
- dir = 8
- },
-/area/ai_monitored/nuke_storage)
-"bVM" = (
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/obj/machinery/power/apc{
- dir = 8;
- name = "Gravity Generator APC";
- pixel_x = -25;
- pixel_y = 1
- },
-/obj/structure/table,
-/obj/item/paper/gravity_gen{
- layer = 3
- },
-/obj/item/pen/blue,
-/obj/item/device/radio/intercom{
- name = "Station Intercom (General)";
- pixel_y = -35
- },
-/turf/open/floor/plasteel,
-/area/engine/gravity_generator)
-"bVN" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel,
-/area/engine/gravity_generator)
-"bVO" = (
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/structure/cable,
-/obj/machinery/power/smes{
- charge = 5e+006
- },
-/turf/open/floor/plasteel,
-/area/engine/gravity_generator)
-"bVP" = (
-/obj/machinery/camera{
- c_tag = "Telecoms Server Room";
- dir = 4;
- network = list("SS13")
- },
-/turf/open/floor/plasteel/black{
- name = "Mainframe Floor";
- initial_gas_mix = "n2=100;TEMP=80"
- },
-/area/tcommsat/chamber)
-"bVQ" = (
-/obj/structure/window/reinforced/fulltile,
-/obj/structure/grille,
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/obj/structure/cable,
-/turf/open/floor/plating,
-/area/tcommsat/chamber)
-"bVR" = (
-/obj/structure/window/reinforced/fulltile,
-/obj/structure/grille,
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
- },
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/turf/open/floor/plating,
-/area/tcommsat/entrance)
-"bVS" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'SERVER ROOM'.";
- name = "SERVER ROOM";
- pixel_y = 0
- },
-/turf/closed/wall,
-/area/tcommsat/entrance)
-"bVT" = (
-/turf/open/floor/plasteel,
-/area/tcommsat/entrance)
-"bVU" = (
-/obj/machinery/holopad,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/tcommsat/entrance)
-"bVV" = (
-/obj/machinery/requests_console{
- announcementConsole = 1;
- department = "Telecoms Admin";
- departmentType = 5;
- name = "Telecoms RC";
- pixel_x = 30;
- pixel_y = 0
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
-/area/tcommsat/entrance)
-"bVW" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/loadingarea{
- dir = 8
- },
-/area/hallway/primary/starboard)
-"bVX" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/poddoor/shutters{
- id = "Skynet_launch";
- name = "mech bay"
- },
-/turf/open/floor/plasteel/delivery,
-/area/assembly/chargebay)
-"bVY" = (
-/obj/structure/cable{
- tag = "icon-1-2";
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel,
-/area/assembly/chargebay)
-"bVZ" = (
-/obj/machinery/mech_bay_recharge_port,
-/obj/structure/cable,
-/turf/open/floor/plating,
-/area/assembly/chargebay)
-"bWa" = (
-/turf/open/floor/mech_bay_recharge_floor,
-/area/assembly/chargebay)
-"bWb" = (
-/obj/machinery/computer/mech_bay_power_console,
-/obj/structure/cable,
-/turf/open/floor/circuit,
-/area/assembly/chargebay)
-"bWc" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/light{
- icon_state = "tube1";
- dir = 8
- },
-/turf/open/floor/plasteel/whitepurple/side{
- tag = "icon-whitepurple (WEST)";
- icon_state = "whitepurple";
- dir = 8
- },
-/area/medical/research{
- name = "Research Division"
- })
-"bWd" = (
-/turf/closed/wall,
-/area/toxins/misc_lab)
-"bWe" = (
-/obj/structure/table,
-/obj/machinery/camera/autoname{
- tag = "icon-camera (NORTHEAST)";
- icon_state = "camera";
- dir = 5
- },
-/obj/item/device/radio/intercom{
- dir = 8;
- pixel_x = -28
- },
-/turf/open/floor/plasteel,
-/area/toxins/misc_lab)
-"bWf" = (
-/turf/open/floor/plasteel,
-/area/toxins/misc_lab)
-"bWg" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 1;
- name = "regular air scrubber";
- on = 1
- },
-/obj/machinery/light{
- icon_state = "tube1";
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/toxins/misc_lab)
-"bWh" = (
-/obj/structure/table,
-/obj/item/device/plant_analyzer,
-/obj/item/device/gps/science,
-/obj/item/storage/belt,
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"bWi" = (
-/turf/open/floor/noslip,
-/area/hallway/secondary/entry)
-"bWj" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0;
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/disposalpipe/junction{
- dir = 1;
- icon_state = "pipe-j1";
- tag = "icon-pipe-j1 (EAST)"
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"bWk" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"bWl" = (
-/obj/machinery/power/apc{
- dir = 1;
- name = "EVA Storage APC";
- pixel_x = 0;
- pixel_y = 24
- },
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/tank_dispenser/oxygen,
-/turf/open/floor/plasteel,
-/area/storage/eva)
-"bWm" = (
-/turf/open/floor/plasteel,
-/area/storage/eva)
-"bWn" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/airalarm{
- dir = 8;
- icon_state = "alarm0";
- pixel_x = 24
- },
-/obj/structure/closet/crate/rcd,
-/obj/machinery/camera/motion{
- c_tag = "EVA Motion Sensor";
- name = "motion-sensitive security camera"
- },
-/turf/open/floor/plasteel,
-/area/storage/eva)
-"bWo" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 4;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel/vault{
- dir = 1
- },
-/area/ai_monitored/nuke_storage)
-"bWp" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 9
- },
-/turf/open/floor/circuit,
-/area/ai_monitored/nuke_storage)
-"bWq" = (
-/obj/machinery/nuclearbomb/selfdestruct,
-/turf/open/floor/plasteel/vault{
- dir = 8
- },
-/area/ai_monitored/nuke_storage)
-"bWr" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 5
- },
-/turf/open/floor/circuit,
-/area/ai_monitored/nuke_storage)
-"bWs" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 8;
- on = 1
- },
-/turf/open/floor/plasteel/vault{
- dir = 4
- },
-/area/ai_monitored/nuke_storage)
-"bWt" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 5
- },
-/turf/closed/wall/r_wall,
-/area/engine/gravity_generator)
-"bWu" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 1
- },
-/turf/closed/wall/r_wall,
-/area/engine/gravity_generator)
-"bWv" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 8;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel,
-/area/engine/gravity_generator)
-"bWw" = (
-/turf/open/floor/plasteel,
-/area/engine/gravity_generator)
-"bWx" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 4;
- name = "regular air vent";
- on = 1
- },
-/turf/open/floor/plasteel,
-/area/engine/gravity_generator)
-"bWy" = (
-/obj/machinery/power/terminal{
- icon_state = "term";
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 1
- },
-/turf/closed/wall/r_wall,
-/area/engine/gravity_generator)
-"bWz" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 9
- },
-/turf/closed/wall/r_wall,
-/area/engine/gravity_generator)
-"bWA" = (
-/obj/machinery/message_server,
-/turf/open/floor/plasteel/black{
- name = "Mainframe Floor";
- initial_gas_mix = "n2=100;TEMP=80"
- },
-/area/tcommsat/chamber)
-"bWB" = (
-/obj/machinery/telecomms/broadcaster/preset_left,
-/turf/open/floor/plasteel/black{
- name = "Mainframe Floor";
- initial_gas_mix = "n2=100;TEMP=80"
- },
-/area/tcommsat/chamber)
-"bWC" = (
-/obj/machinery/telecomms/receiver/preset_left,
-/turf/open/floor/plasteel/black{
- name = "Mainframe Floor";
- initial_gas_mix = "n2=100;TEMP=80"
- },
-/area/tcommsat/chamber)
-"bWD" = (
-/obj/structure/window/reinforced/fulltile,
-/obj/structure/grille,
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
- },
-/obj/structure/cable,
-/turf/open/floor/plating,
-/area/tcommsat/entrance)
-"bWE" = (
-/obj/structure/table,
-/obj/item/device/multitool,
-/turf/open/floor/plasteel/yellow/side{
- dir = 9
- },
-/area/tcommsat/entrance)
-"bWF" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 4;
- on = 1
- },
-/turf/open/floor/plasteel,
-/area/tcommsat/entrance)
-"bWG" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/tcommsat/entrance)
-"bWH" = (
-/obj/machinery/light_switch{
- pixel_x = 27
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
-/turf/open/floor/plasteel,
-/area/tcommsat/entrance)
-"bWI" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/closed/wall/r_wall,
-/area/tcommsat/entrance)
-"bWJ" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/camera/autoname{
- tag = "icon-camera (NORTHEAST)";
- icon_state = "camera";
- dir = 5
- },
-/turf/open/floor/plasteel/caution{
- tag = "icon-caution (WEST)";
- icon_state = "caution";
- dir = 8
- },
-/area/hallway/primary/starboard)
-"bWK" = (
-/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,
-/turf/open/floor/plasteel/loadingarea{
- dir = 8
- },
-/area/hallway/primary/starboard)
-"bWL" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/poddoor/shutters{
- id = "Skynet_launch";
- name = "mech bay"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/delivery,
-/area/assembly/chargebay)
-"bWM" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4";
- tag = "90Curve"
- },
-/turf/open/floor/plasteel,
-/area/assembly/chargebay)
-"bWN" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/obj/structure/cable{
- icon_state = "2-4";
- tag = "icon-2-8"
- },
-/turf/open/floor/plasteel,
-/area/assembly/chargebay)
-"bWO" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/effect/landmark/start{
- name = "Roboticist"
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/turf/open/floor/plasteel,
-/area/assembly/chargebay)
-"bWP" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 1
- },
-/obj/structure/cable{
- tag = "icon-2-8";
- icon_state = "2-8"
- },
-/obj/machinery/camera/autoname{
- tag = "icon-camera (SOUTHEAST)";
- icon_state = "camera";
- dir = 6
- },
-/turf/open/floor/plasteel,
-/area/assembly/chargebay)
-"bWQ" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 8;
- name = "regular air vent";
- on = 1
- },
-/obj/item/device/radio/intercom{
- name = "Station Intercom";
- pixel_x = 0;
- pixel_y = 24
- },
-/turf/open/floor/plasteel/white,
-/area/assembly/chargebay)
-"bWR" = (
-/obj/structure/closet/wardrobe/robotics_black,
-/turf/open/floor/plasteel/white,
-/area/assembly/chargebay)
-"bWS" = (
-/obj/machinery/recharge_station,
-/turf/open/floor/plasteel/bot,
-/area/assembly/chargebay)
-"bWT" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/door/airlock/research{
- name = "Testing Lab";
- req_access_txt = "47"
- },
-/turf/open/floor/plasteel/white,
-/area/toxins/misc_lab)
-"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/toxins/misc_lab)
-"bWV" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/turf/open/floor/plasteel,
-/area/toxins/misc_lab)
-"bWW" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/toxins/misc_lab)
-"bWX" = (
-/obj/machinery/door/airlock/glass_research{
- name = "Test Chamber";
- req_access_txt = "47"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/engine,
-/area/toxins/misc_lab)
-"bWY" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/engine,
-/area/toxins/misc_lab)
-"bWZ" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 8;
- name = "regular air vent";
- on = 1
- },
-/turf/open/floor/engine,
-/area/toxins/misc_lab)
-"bXa" = (
-/obj/item/device/radio/beacon,
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/engine,
-/area/toxins/misc_lab)
-"bXb" = (
-/obj/machinery/camera/autoname{
- tag = "icon-camera (NORTHWEST)";
- icon_state = "camera";
- dir = 9
- },
-/turf/open/floor/engine,
-/area/toxins/misc_lab)
-"bXc" = (
-/obj/effect/spawner/lootdrop/crate_spawner,
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"bXd" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- tag = "icon-vent_map (NORTH)";
- name = "regular air vent";
- icon_state = "vent_map";
- dir = 1;
- on = 1
- },
-/obj/structure/rack{
- dir = 8;
- layer = 2.9
- },
-/obj/item/tank/jetpack/carbondioxide,
-/turf/open/floor/plasteel,
-/area/storage/eva)
-"bXe" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 1;
- name = "regular air scrubber";
- on = 1
- },
-/obj/structure/rack{
- dir = 8;
- layer = 2.9
- },
-/obj/item/clothing/shoes/magboots,
-/turf/open/floor/plasteel,
-/area/storage/eva)
-"bXf" = (
-/obj/structure/closet/crate{
- name = "Gold Crate"
- },
-/obj/item/stack/sheet/mineral/gold{
- pixel_x = -1;
- pixel_y = 5
- },
-/obj/item/stack/sheet/mineral/gold{
- pixel_y = 2
- },
-/obj/item/stack/sheet/mineral/gold{
- pixel_x = 1;
- pixel_y = -2
- },
-/obj/item/storage/belt/champion,
-/turf/open/floor/plasteel/vault{
- dir = 1
- },
-/area/ai_monitored/nuke_storage)
-"bXg" = (
-/turf/open/floor/circuit,
-/area/ai_monitored/nuke_storage)
-"bXh" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/circuit,
-/area/ai_monitored/nuke_storage)
-"bXi" = (
-/obj/item/coin/silver{
- pixel_x = 7;
- pixel_y = 12
- },
-/obj/item/coin/silver{
- pixel_x = 12;
- pixel_y = 7
- },
-/obj/item/coin/silver{
- pixel_x = 4;
- pixel_y = 8
- },
-/obj/item/coin/silver{
- pixel_x = -6;
- pixel_y = 5
- },
-/obj/item/coin/silver{
- pixel_x = 5;
- pixel_y = -8
- },
-/obj/structure/closet/crate{
- name = "Silver Crate"
- },
-/turf/open/floor/plasteel/vault{
- dir = 4
- },
-/area/ai_monitored/nuke_storage)
-"bXj" = (
-/obj/structure/closet/radiation,
-/turf/open/floor/plasteel{
- icon_state = "dark"
- },
-/area/engine/gravity_generator)
-"bXk" = (
-/obj/machinery/camera/autoname{
- tag = "icon-camera (NORTH)";
- icon_state = "camera";
- dir = 1
- },
-/obj/structure/closet/radiation,
-/turf/open/floor/plasteel{
- icon_state = "dark"
- },
-/area/engine/gravity_generator)
-"bXl" = (
-/obj/machinery/telecomms/server/presets/supply,
-/turf/open/floor/plasteel/black{
- name = "Mainframe Floor";
- initial_gas_mix = "n2=100;TEMP=80"
- },
-/area/tcommsat/chamber)
-"bXm" = (
-/obj/machinery/telecomms/bus/preset_two,
-/turf/open/floor/plasteel/black{
- name = "Mainframe Floor";
- initial_gas_mix = "n2=100;TEMP=80"
- },
-/area/tcommsat/chamber)
-"bXn" = (
-/obj/machinery/telecomms/processor/preset_one,
-/turf/open/floor/plasteel/black{
- name = "Mainframe Floor";
- initial_gas_mix = "n2=100;TEMP=80"
- },
-/area/tcommsat/chamber)
-"bXo" = (
-/obj/machinery/telecomms/server/presets/medical,
-/turf/open/floor/plasteel/black{
- name = "Mainframe Floor";
- initial_gas_mix = "n2=100;TEMP=80"
- },
-/area/tcommsat/chamber)
-"bXp" = (
-/obj/machinery/computer/telecomms/monitor{
- network = "tcommsat"
- },
-/turf/open/floor/plasteel/yellow/side{
- dir = 8
- },
-/area/tcommsat/entrance)
-"bXq" = (
-/obj/structure/chair/office/dark{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 6
- },
-/turf/open/floor/plasteel,
-/area/tcommsat/entrance)
-"bXr" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/tcommsat/entrance)
-"bXs" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/tcommsat/entrance)
-"bXt" = (
-/obj/machinery/door/airlock/engineering{
- name = "Telecommunications";
- req_access_txt = "61"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/tcommsat/entrance)
-"bXu" = (
-/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,
-/turf/open/floor/plasteel/caution{
- tag = "icon-caution (WEST)";
- icon_state = "caution";
- dir = 8
- },
-/area/hallway/primary/starboard)
-"bXv" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/purple/corner,
-/area/hallway/primary/starboard)
-"bXw" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/closed/wall/r_wall,
-/area/assembly/chargebay)
-"bXx" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/machinery/light{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/assembly/chargebay)
-"bXy" = (
-/obj/machinery/mech_bay_recharge_port,
-/obj/structure/cable,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/assembly/chargebay)
-"bXz" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/mech_bay_recharge_floor,
-/area/assembly/chargebay)
-"bXA" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 10
- },
-/obj/machinery/computer/mech_bay_power_console,
-/obj/structure/cable,
-/turf/open/floor/circuit,
-/area/assembly/chargebay)
-"bXB" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 5
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4";
- tag = "90Curve"
- },
-/turf/open/floor/plasteel,
-/area/assembly/chargebay)
-"bXC" = (
-/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/assembly/chargebay)
-"bXD" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel{
- icon_state = "delivery"
- },
-/area/assembly/chargebay)
-"bXE" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/door/airlock/research{
- name = "Mech Bay";
- req_access_txt = "29";
- req_one_access_txt = "0"
- },
-/turf/open/floor/plasteel/white,
-/area/assembly/chargebay)
-"bXF" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/cable{
- tag = "icon-1-8";
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/whitepurple/corner{
- dir = 1
- },
-/area/medical/research{
- name = "Research Division"
- })
-"bXG" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 4;
- initialize_directions = 11
- },
-/obj/machinery/camera/autoname{
- tag = "icon-camera (NORTHWEST)";
- icon_state = "camera";
- dir = 9
- },
-/turf/open/floor/plasteel/whitepurple/corner{
- tag = "icon-whitepurplecorner (EAST)";
- icon_state = "whitepurplecorner";
- dir = 4
- },
-/area/medical/research{
- name = "Research Division"
- })
-"bXH" = (
-/obj/machinery/atmospherics/components/unary/portables_connector{
- tag = "icon-connector_map (EAST)";
- icon_state = "connector_map";
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/toxins/misc_lab)
-"bXI" = (
-/obj/structure/cable{
- tag = "icon-1-2";
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 10
- },
-/turf/open/floor/plasteel,
-/area/toxins/misc_lab)
-"bXJ" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- tag = "icon-vent_map (NORTH)";
- name = "regular air vent";
- icon_state = "vent_map";
- dir = 1;
- on = 1
- },
-/turf/open/floor/plasteel,
-/area/toxins/misc_lab)
-"bXK" = (
-/obj/machinery/light{
- icon_state = "tube1";
- dir = 8
- },
-/turf/open/floor/engine,
-/area/toxins/misc_lab)
-"bXL" = (
-/obj/machinery/portable_atmospherics/canister/air,
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"bXM" = (
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/escape)
-"bXN" = (
-/obj/structure/grille,
-/obj/structure/window/shuttle,
-/turf/open/floor/plating,
-/area/shuttle/escape)
-"bXO" = (
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/arrival)
-"bXP" = (
-/obj/machinery/door/airlock/shuttle{
- name = "Arrivals Shuttle Airlock"
- },
-/turf/open/floor/plasteel/shuttle,
-/area/shuttle/arrival)
-"bXQ" = (
-/obj/structure/grille,
-/obj/structure/window/shuttle,
-/turf/open/floor/plating,
-/area/shuttle/arrival)
-"bXR" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/storage/eva)
-"bXS" = (
-/obj/structure/rack{
- dir = 8;
- layer = 2.9
- },
-/obj/item/tank/jetpack/carbondioxide,
-/turf/open/floor/plasteel,
-/area/storage/eva)
-"bXT" = (
-/obj/structure/rack{
- dir = 8;
- layer = 2.9
- },
-/obj/item/clothing/shoes/magboots,
-/turf/open/floor/plasteel,
-/area/storage/eva)
-"bXU" = (
-/obj/machinery/camera/motion{
- c_tag = "Vault";
- dir = 1;
- network = list("MiniSat")
- },
-/turf/open/floor/plasteel/vault{
- dir = 1
- },
-/area/ai_monitored/nuke_storage)
-"bXV" = (
-/obj/machinery/light,
-/turf/open/floor/plasteel/vault{
- dir = 6
- },
-/area/ai_monitored/nuke_storage)
-"bXW" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/turf/open/floor/plasteel/vault,
-/area/ai_monitored/nuke_storage)
-"bXX" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/machinery/light,
-/turf/open/floor/plasteel/vault{
- dir = 10
- },
-/area/ai_monitored/nuke_storage)
-"bXY" = (
-/obj/structure/safe,
-/obj/item/clothing/head/bearpelt,
-/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass,
-/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass,
-/obj/item/gun/ballistic/revolver/russian,
-/obj/item/ammo_box/a357,
-/obj/item/reagent_containers/food/drinks/bottle/vodka/badminka,
-/turf/open/floor/plasteel/vault{
- dir = 4
- },
-/area/ai_monitored/nuke_storage)
-"bXZ" = (
-/obj/machinery/door/airlock/highsecurity{
- name = "Gravity Generator Room";
- req_access_txt = "19;23"
- },
-/turf/open/floor/plasteel{
- icon_state = "dark"
- },
-/area/engine/gravity_generator)
-"bYa" = (
-/obj/machinery/telecomms/server/presets/service,
-/turf/open/floor/plasteel/black{
- name = "Mainframe Floor";
- initial_gas_mix = "n2=100;TEMP=80"
- },
-/area/tcommsat/chamber)
-"bYb" = (
-/obj/machinery/telecomms/processor/preset_two,
-/turf/open/floor/plasteel/black{
- name = "Mainframe Floor";
- initial_gas_mix = "n2=100;TEMP=80"
- },
-/area/tcommsat/chamber)
-"bYc" = (
-/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"
- },
-/area/tcommsat/chamber)
-"bYd" = (
-/obj/machinery/telecomms/bus/preset_one,
-/turf/open/floor/plasteel/black{
- name = "Mainframe Floor";
- initial_gas_mix = "n2=100;TEMP=80"
- },
-/area/tcommsat/chamber)
-"bYe" = (
-/obj/machinery/telecomms/server/presets/science,
-/turf/open/floor/plasteel/black{
- name = "Mainframe Floor";
- initial_gas_mix = "n2=100;TEMP=80"
- },
-/area/tcommsat/chamber)
-"bYf" = (
-/obj/structure/window/reinforced/fulltile,
-/obj/structure/grille,
-/obj/structure/cable,
-/turf/open/floor/plating,
-/area/tcommsat/entrance)
-"bYg" = (
-/obj/structure/table,
-/obj/item/device/radio/off,
-/turf/open/floor/plasteel/yellow/side{
- dir = 10
- },
-/area/tcommsat/entrance)
-"bYh" = (
-/obj/item/device/radio/intercom{
- name = "Station Intercom (General)";
- pixel_y = -35
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 1;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plasteel,
-/area/tcommsat/entrance)
-"bYi" = (
-/obj/machinery/airalarm{
- dir = 1;
- icon_state = "alarm0";
- pixel_y = -22
- },
-/obj/machinery/light,
-/obj/structure/filingcabinet/chestdrawer,
-/turf/open/floor/plasteel,
-/area/tcommsat/entrance)
-"bYj" = (
-/obj/structure/rack{
- dir = 8;
- layer = 2.9
- },
-/obj/item/storage/toolbox/mechanical{
- pixel_x = -2;
- pixel_y = -1
- },
-/turf/open/floor/plasteel,
-/area/tcommsat/entrance)
-"bYk" = (
-/obj/machinery/door/firedoor/heavy,
-/obj/machinery/door/airlock/research{
- name = "Mech Bay";
- req_access_txt = "29";
- req_one_access_txt = "0"
- },
-/turf/open/floor/plasteel,
-/area/assembly/chargebay)
-"bYl" = (
-/turf/open/floor/plasteel,
-/area/assembly/chargebay)
-"bYm" = (
-/turf/open/floor/circuit,
-/area/assembly/chargebay)
-"bYn" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 5
- },
-/turf/open/floor/circuit,
-/area/assembly/chargebay)
-"bYo" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/assembly/chargebay)
-"bYp" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/machinery/light,
-/turf/open/floor/plasteel/white,
-/area/assembly/chargebay)
-"bYq" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/machinery/droneDispenser,
-/turf/open/floor/plasteel/white,
-/area/assembly/chargebay)
-"bYr" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/machinery/recharge_station,
-/turf/open/floor/plasteel/bot,
-/area/assembly/chargebay)
-"bYs" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/closed/wall,
-/area/assembly/chargebay)
-"bYt" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 4;
- initialize_directions = 11
- },
-/obj/machinery/door/poddoor/preopen{
- id = "Biohazard";
- name = "biohazard containment door"
- },
-/obj/machinery/door/firedoor/heavy,
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
-"bYu" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/door/poddoor/preopen{
- id = "Biohazard";
- name = "biohazard containment door"
- },
-/obj/machinery/door/firedoor/heavy,
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
-"bYv" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/toxins/misc_lab)
-"bYw" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4";
- tag = "90Curve"
- },
-/obj/machinery/atmospherics/pipe/manifold/general/visible,
-/obj/machinery/meter,
-/turf/open/floor/plasteel,
-/area/toxins/misc_lab)
-"bYx" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/toxins/misc_lab)
-"bYy" = (
-/obj/machinery/power/apc{
- dir = 2;
- name = "Testing Lab APC";
- pixel_x = 0;
- pixel_y = -24
- },
-/obj/structure/cable{
- tag = "icon-0-8";
- icon_state = "0-8"
- },
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/toxins/misc_lab)
-"bYz" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 4
- },
-/turf/open/floor/engine,
-/area/toxins/misc_lab)
-"bYA" = (
-/obj/machinery/atmospherics/components/unary/outlet_injector/on{
- dir = 8
- },
-/turf/open/floor/engine,
-/area/toxins/misc_lab)
-"bYB" = (
-/obj/machinery/portable_atmospherics/canister,
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"bYC" = (
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/machinery/portable_atmospherics/pump,
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"bYD" = (
-/turf/open/floor/mineral/titanium,
-/turf/closed/wall/mineral/titanium/interior,
-/area/shuttle/escape)
-"bYE" = (
-/obj/structure/table,
-/obj/machinery/recharger,
-/turf/open/floor/mineral/titanium,
-/area/shuttle/escape)
-"bYF" = (
-/obj/structure/chair{
- dir = 1
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/escape)
-"bYG" = (
-/obj/machinery/computer/emergency_shuttle,
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/escape)
-"bYH" = (
-/obj/structure/table,
-/obj/item/storage/firstaid/regular{
- pixel_x = 2;
- pixel_y = 3
- },
-/obj/item/crowbar,
-/obj/item/storage/firstaid/fire,
-/turf/open/floor/mineral/titanium,
-/area/shuttle/escape)
-"bYI" = (
-/obj/structure/shuttle/engine/propulsion{
- tag = "icon-propulsion_l (EAST)";
- icon_state = "propulsion_l";
- dir = 4
- },
-/turf/open/floor/plating/airless,
-/area/shuttle/arrival)
-"bYJ" = (
-/obj/structure/shuttle/engine/heater{
- icon_state = "heater";
- dir = 8
- },
-/obj/structure/window/reinforced{
- dir = 4
- },
-/turf/open/floor/plating/airless,
-/area/shuttle/arrival)
-"bYK" = (
-/turf/open/floor/plasteel/shuttle,
-/area/shuttle/arrival)
-"bYL" = (
-/obj/machinery/light{
- dir = 1
- },
-/turf/open/floor/plasteel/shuttle,
-/area/shuttle/arrival)
-"bYM" = (
-/obj/structure/closet/wardrobe/black,
-/turf/open/floor/plasteel/shuttle,
-/area/shuttle/arrival)
-"bYN" = (
-/obj/structure/closet/wardrobe/grey,
-/turf/open/floor/plasteel/shuttle,
-/area/shuttle/arrival)
-"bYO" = (
-/obj/structure/closet/wardrobe/mixed,
-/turf/open/floor/plasteel/shuttle,
-/area/shuttle/arrival)
-"bYP" = (
-/obj/structure/closet/wardrobe/white,
-/turf/open/floor/plasteel/shuttle,
-/area/shuttle/arrival)
-"bYQ" = (
-/turf/closed/wall/mineral/titanium/interior,
-/area/shuttle/arrival)
-"bYR" = (
-/obj/machinery/suit_storage_unit/standard_unit,
-/obj/effect/turf_decal/stripes/line{
- dir = 5
- },
-/turf/open/floor/plasteel,
-/area/storage/eva)
-"bYS" = (
-/obj/machinery/suit_storage_unit/standard_unit,
-/obj/effect/turf_decal/stripes/line{
- dir = 9
- },
-/turf/open/floor/plasteel,
-/area/storage/eva)
-"bYT" = (
-/obj/structure/sign/securearea,
-/turf/closed/wall/r_wall,
-/area/ai_monitored/nuke_storage)
-"bYU" = (
-/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"
- },
-/turf/open/floor/plasteel/yellow,
-/area/ai_monitored/nuke_storage)
-"bYV" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/hallway/primary/aft)
-"bYW" = (
-/turf/open/floor/plasteel/stairs,
-/area/hallway/primary/aft)
-"bYX" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/door/airlock/glass{
- name = "Starboard Primary Hallway"
- },
-/obj/machinery/door/poddoor/preopen{
- id = "Biohazard";
- name = "biohazard containment door"
- },
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plasteel/caution{
- tag = "icon-caution (WEST)";
- icon_state = "caution";
- dir = 8
- },
-/area/hallway/primary/starboard)
-"bYY" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/door/airlock/glass{
- name = "Starboard Primary Hallway"
- },
-/obj/machinery/door/poddoor/preopen{
- id = "Biohazard";
- name = "biohazard containment door"
- },
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plasteel,
-/area/hallway/primary/starboard)
-"bYZ" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/door/airlock/glass{
- name = "Starboard Primary Hallway"
- },
-/obj/machinery/door/poddoor/preopen{
- id = "Biohazard";
- name = "biohazard containment door"
- },
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plasteel/purple/side{
- tag = "icon-purple (EAST)";
- icon_state = "purple";
- dir = 4
- },
-/area/hallway/primary/starboard)
-"bZa" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/assembly/chargebay)
-"bZb" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/door/airlock/research{
- name = "Research Division";
- req_access_txt = "0";
- req_one_access_txt = "47"
- },
-/turf/open/floor/plasteel/whitepurple,
-/area/medical/research{
- name = "Research Division"
- })
-"bZc" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/door/airlock/research{
- name = "Research Division";
- req_access_txt = "0";
- req_one_access_txt = "47"
- },
-/turf/open/floor/plasteel/whitepurple,
-/area/medical/research{
- name = "Research Division"
- })
-"bZd" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/engine,
-/area/toxins/misc_lab)
-"bZe" = (
-/obj/machinery/door/airlock/maintenance{
- req_access_txt = "12"
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"bZf" = (
-/obj/machinery/computer/atmos_alert,
-/turf/open/floor/mineral/titanium,
-/area/shuttle/escape)
-"bZg" = (
-/obj/structure/chair{
- dir = 8
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/escape)
-"bZh" = (
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/escape)
-"bZi" = (
-/obj/structure/chair{
- dir = 4
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/escape)
-"bZj" = (
-/obj/machinery/computer/security,
-/turf/open/floor/mineral/titanium,
-/area/shuttle/escape)
-"bZk" = (
-/obj/structure/shuttle/engine/propulsion{
- icon_state = "propulsion";
- dir = 4
- },
-/turf/open/floor/plating/airless,
-/area/shuttle/arrival)
-"bZl" = (
-/obj/effect/landmark/latejoin,
-/obj/structure/chair{
- dir = 4
- },
-/turf/open/floor/plasteel/shuttle,
-/area/shuttle/arrival)
-"bZm" = (
-/obj/machinery/door/airlock/shuttle{
- name = "bridge"
- },
-/turf/open/floor/plasteel/shuttle{
- icon_state = "shuttlefloor3"
- },
-/area/shuttle/arrival)
-"bZn" = (
-/turf/open/floor/plasteel/shuttle{
- icon_state = "shuttlefloor3"
- },
-/area/shuttle/arrival)
-"bZo" = (
-/obj/machinery/suit_storage_unit/standard_unit,
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/storage/eva)
-"bZp" = (
-/obj/machinery/suit_storage_unit/standard_unit,
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/storage/eva)
-"bZq" = (
-/obj/structure/grille,
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
- },
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/hallway/primary/aft)
-"bZr" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/stairs,
-/area/hallway/primary/aft)
-"bZs" = (
-/turf/open/floor/plasteel/yellow,
-/area/hallway/primary/aft)
-"bZt" = (
-/obj/machinery/door/airlock/maintenance{
- req_access_txt = "12"
- },
-/turf/open/floor/plating,
-/area/maintenance/maintcentral{
- name = "Central Maintenance"
- })
-"bZu" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/caution{
- tag = "icon-caution (WEST)";
- icon_state = "caution";
- dir = 8
- },
-/area/hallway/secondary/exit)
-"bZv" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit)
-"bZw" = (
-/obj/machinery/navbeacon{
- codes_txt = "patrol;next_patrol=CHE";
- location = "AIE"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/purple/corner{
- tag = "icon-purplecorner (EAST)";
- icon_state = "purplecorner";
- dir = 4
- },
-/area/hallway/secondary/exit)
-"bZx" = (
-/turf/open/floor/plasteel/purple/side{
- tag = "icon-purple (NORTH)";
- icon_state = "purple";
- dir = 1
- },
-/area/hallway/secondary/exit)
-"bZy" = (
-/obj/machinery/light{
- dir = 1
- },
-/turf/open/floor/plasteel/purple/side{
- tag = "icon-purple (NORTH)";
- icon_state = "purple";
- dir = 1
- },
-/area/hallway/secondary/exit)
-"bZz" = (
-/obj/machinery/camera/autoname,
-/turf/open/floor/plasteel/purple/side{
- tag = "icon-purple (NORTH)";
- icon_state = "purple";
- dir = 1
- },
-/area/hallway/secondary/exit)
-"bZA" = (
-/obj/machinery/door/firedoor,
-/turf/open/floor/plasteel/purple/side{
- tag = "icon-purple (NORTH)";
- icon_state = "purple";
- dir = 1
- },
-/area/hallway/secondary/exit)
-"bZB" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/purple/side{
- tag = "icon-purple (NORTH)";
- icon_state = "purple";
- dir = 1
- },
-/area/hallway/secondary/exit)
-"bZC" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/purple/side{
- tag = "icon-purple (NORTH)";
- icon_state = "purple";
- dir = 1
- },
-/area/hallway/secondary/exit)
-"bZD" = (
-/obj/machinery/airalarm{
- frequency = 1439;
- locked = 0;
- pixel_y = 23
- },
-/turf/open/floor/plasteel/purple/side{
- tag = "icon-purple (NORTH)";
- icon_state = "purple";
- dir = 1
- },
-/area/hallway/secondary/exit)
-"bZE" = (
-/obj/machinery/power/apc{
- dir = 1;
- name = "Escape Hallway APC";
- pixel_x = 0;
- pixel_y = 24
- },
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
- },
-/turf/open/floor/plasteel/purple/corner{
- tag = "icon-purplecorner (NORTH)";
- icon_state = "purplecorner";
- dir = 1
- },
-/area/hallway/secondary/exit)
-"bZF" = (
-/obj/machinery/camera/autoname,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit)
-"bZG" = (
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit)
-"bZH" = (
-/obj/machinery/light{
- dir = 1
- },
-/obj/machinery/vending/cigarette,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit)
-"bZI" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/hallway/secondary/exit)
-"bZJ" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/door/firedoor,
-/turf/open/floor/plating,
-/area/hallway/secondary/exit)
-"bZK" = (
-/turf/closed/wall,
-/area/hallway/secondary/exit)
-"bZL" = (
-/obj/machinery/computer/crew,
-/turf/open/floor/mineral/titanium,
-/area/shuttle/escape)
-"bZM" = (
-/obj/structure/chair{
- dir = 8
- },
-/obj/structure/extinguisher_cabinet{
- pixel_x = 0;
- pixel_y = -30
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/escape)
-"bZN" = (
-/obj/item/device/radio/intercom{
- name = "Station Intercom (General)";
- pixel_x = 0;
- pixel_y = -29
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/escape)
-"bZO" = (
-/obj/machinery/button/flasher{
- id = "cockpit_flasher";
- pixel_x = 6;
- pixel_y = -24
- },
-/obj/machinery/light,
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/escape)
-"bZP" = (
-/obj/machinery/computer/communications,
-/turf/open/floor/mineral/titanium,
-/area/shuttle/escape)
-"bZQ" = (
-/obj/machinery/camera/autoname{
- tag = "icon-camera (NORTHWEST)";
- icon_state = "camera";
- dir = 9
- },
-/turf/open/floor/plasteel/shuttle,
-/area/shuttle/arrival)
-"bZR" = (
-/obj/machinery/computer,
-/turf/open/floor/plasteel/shuttle{
- icon_state = "shuttlefloor3"
- },
-/area/shuttle/arrival)
-"bZS" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/door/firedoor,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"bZT" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0;
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/disposalpipe/segment,
-/obj/machinery/door/firedoor,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"bZU" = (
-/obj/machinery/door/firedoor,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"bZV" = (
-/obj/structure/sign/directions/medical{
- tag = "icon-direction_med (NORTH)";
- icon_state = "direction_med";
- dir = 1
- },
-/obj/structure/sign/directions/evac{
- dir = 4;
- icon_state = "direction_evac";
- pixel_y = -10;
- tag = "icon-direction_evac (EAST)"
- },
-/obj/structure/sign/directions/security{
- dir = 1;
- icon_state = "direction_sec";
- pixel_y = 10;
- tag = "icon-direction_sec (NORTH)"
- },
-/turf/closed/wall,
-/area/storage/eva)
-"bZW" = (
-/obj/structure/sign/directions/science{
- tag = "icon-direction_sci (EAST)";
- icon_state = "direction_sci";
- dir = 4
- },
-/obj/structure/sign/directions/engineering{
- dir = 4;
- icon_state = "direction_eng";
- pixel_y = 10;
- tag = "icon-direction_eng (EAST)"
- },
-/turf/closed/wall,
-/area/storage/eva)
-"bZX" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/command{
- name = "E.V.A. Storage";
- req_access_txt = "18"
- },
-/turf/open/floor/plasteel,
-/area/storage/eva)
-"bZY" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0;
- tag = ""
- },
-/turf/open/floor/plasteel/yellow,
-/area/hallway/primary/aft)
-"bZZ" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plating,
-/area/hallway/primary/aft)
-"caa" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating,
-/area/hallway/primary/aft)
-"cab" = (
-/turf/closed/wall,
-/area/hallway/primary/aft)
-"cac" = (
-/obj/structure/sign/directions/medical{
- tag = "icon-direction_med (WEST)";
- icon_state = "direction_med";
- dir = 8
- },
-/obj/structure/sign/directions/evac{
- dir = 4;
- icon_state = "direction_evac";
- pixel_y = -10;
- tag = "icon-direction_evac (EAST)"
- },
-/obj/structure/sign/directions/security{
- dir = 8;
- icon_state = "direction_sec";
- pixel_y = 10;
- tag = "icon-direction_sec (WEST)"
- },
-/turf/closed/wall,
-/area/hallway/primary/aft)
-"cad" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 8;
- initialize_directions = 11
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit)
-"cae" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit)
-"caf" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 8;
- name = "regular air vent";
- on = 1
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit)
-"cag" = (
-/obj/machinery/door/firedoor,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit)
-"cah" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 4;
- name = "regular air scrubber";
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit)
-"cai" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit)
-"caj" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit)
-"cak" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit)
-"cal" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/machinery/door/firedoor,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit)
-"cam" = (
-/obj/structure/cable{
- tag = "icon-1-2";
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit)
-"can" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass{
- name = "Departures"
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit)
-"cao" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/escape{
- tag = "icon-escape (NORTHWEST)";
- icon_state = "escape";
- dir = 9
- },
-/area/hallway/secondary/exit)
-"cap" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/machinery/light{
- dir = 1
- },
-/turf/open/floor/plasteel/escape{
- tag = "icon-escape (NORTH)";
- icon_state = "escape";
- dir = 1
- },
-/area/hallway/secondary/exit)
-"caq" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/structure/chair,
-/turf/open/floor/plasteel/escape{
- tag = "icon-escape (NORTH)";
- icon_state = "escape";
- dir = 1
- },
-/area/hallway/secondary/exit)
-"car" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/structure/chair,
-/obj/machinery/camera/autoname,
-/turf/open/floor/plasteel/escape{
- tag = "icon-escape (NORTH)";
- icon_state = "escape";
- dir = 1
- },
-/area/hallway/secondary/exit)
-"cas" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 10
- },
-/turf/open/floor/plasteel/escape{
- tag = "icon-escape (NORTH)";
- icon_state = "escape";
- dir = 1
- },
-/area/hallway/secondary/exit)
-"cat" = (
-/obj/machinery/computer/arcade,
-/turf/open/floor/plasteel/escape{
- tag = "icon-escape (NORTHEAST)";
- icon_state = "escape";
- dir = 5
- },
-/area/hallway/secondary/exit)
-"cau" = (
-/obj/machinery/door/airlock/glass{
- name = "Emergency Shuttle Cockpit";
- req_access_txt = "19"
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/escape)
-"cav" = (
-/obj/machinery/status_display,
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/escape)
-"caw" = (
-/obj/effect/landmark{
- name = "Observer-Start"
- },
-/turf/open/floor/plasteel/shuttle,
-/area/shuttle/arrival)
-"cax" = (
-/obj/machinery/light{
- icon_state = "tube1";
- dir = 8
- },
-/turf/open/floor/plasteel/shuttle{
- icon_state = "shuttlefloor3"
- },
-/area/shuttle/arrival)
-"cay" = (
-/obj/structure/chair{
- dir = 4
- },
-/turf/open/floor/plasteel/shuttle{
- icon_state = "shuttlefloor3"
- },
-/area/shuttle/arrival)
-"caz" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0;
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 8
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"caA" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"caB" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass{
- name = "Engineering Hallway"
- },
-/turf/open/floor/plasteel/yellow/side{
- tag = "icon-yellow (NORTHWEST)";
- icon_state = "yellow";
- dir = 9
- },
-/area/hallway/primary/aft)
-"caC" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/yellow/side{
- tag = "icon-yellow (NORTH)";
- icon_state = "yellow";
- dir = 1
- },
-/area/hallway/primary/aft)
-"caD" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 1
- },
-/turf/open/floor/plasteel/yellow/side{
- tag = "icon-yellow (NORTH)";
- icon_state = "yellow";
- dir = 1
- },
-/area/hallway/primary/aft)
-"caE" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0;
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/yellow/side{
- tag = "icon-yellow (NORTH)";
- icon_state = "yellow";
- dir = 1
- },
-/area/hallway/primary/aft)
-"caF" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/door/firedoor,
-/turf/open/floor/plasteel/yellow/side{
- tag = "icon-yellow (NORTH)";
- icon_state = "yellow";
- dir = 1
- },
-/area/hallway/primary/aft)
-"caG" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
-/obj/machinery/door/firedoor,
-/turf/open/floor/plasteel/yellow/side{
- tag = "icon-yellow (NORTH)";
- icon_state = "yellow";
- dir = 1
- },
-/area/hallway/primary/aft)
-"caH" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/airalarm{
- frequency = 1439;
- locked = 0;
- pixel_y = 23
- },
-/turf/open/floor/plasteel/yellow/side{
- tag = "icon-yellow (NORTH)";
- icon_state = "yellow";
- dir = 1
- },
-/area/hallway/primary/aft)
-"caI" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/light{
- dir = 1
- },
-/turf/open/floor/plasteel/yellow/side{
- tag = "icon-yellow (NORTH)";
- icon_state = "yellow";
- dir = 1
- },
-/area/hallway/primary/aft)
-"caJ" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass{
- name = "Engineering Hallway"
- },
-/turf/open/floor/plasteel/yellow/side{
- tag = "icon-yellow (NORTHEAST)";
- icon_state = "yellow";
- dir = 5
- },
-/area/hallway/primary/aft)
-"caK" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/caution{
- tag = "icon-caution (WEST)";
- icon_state = "caution";
- dir = 8
- },
-/area/hallway/secondary/exit)
-"caL" = (
-/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/secondary/exit)
-"caM" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit)
-"caN" = (
-/obj/machinery/button/door{
- id = 9966;
- req_access_txt = "19"
- },
-/turf/closed/wall,
-/area/storage/tools)
-"caO" = (
-/obj/machinery/door/poddoor/shutters/preopen{
- id = 9966;
- name = "Tool Storage shutters"
- },
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plasteel/black,
-/area/storage/tools)
-"caP" = (
-/obj/machinery/door/poddoor/shutters/preopen{
- id = 9966;
- name = "Tool Storage shutters"
- },
-/obj/machinery/door/window/northleft,
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plasteel/black,
-/area/storage/tools)
-"caQ" = (
-/obj/machinery/door/poddoor/shutters/preopen{
- id = 9966;
- name = "Tool Storage shutters"
- },
-/obj/machinery/light/small{
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plasteel/black,
-/area/storage/tools)
-"caR" = (
-/turf/closed/wall,
-/area/storage/tools)
-"caS" = (
-/obj/machinery/power/apc{
- dir = 8;
- name = "Tool Storage APC";
- pixel_x = -24;
- pixel_y = 0
- },
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
- },
-/turf/open/floor/plasteel,
-/area/storage/tools)
-"caT" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit)
-"caU" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit)
-"caV" = (
-/turf/closed/wall,
-/area/storage/emergency)
-"caW" = (
-/obj/structure/window/reinforced{
- dir = 1;
- pixel_y = 1
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plasteel/black,
-/area/storage/emergency)
-"caX" = (
-/obj/machinery/door/window/northleft,
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plasteel/black,
-/area/storage/emergency)
-"caY" = (
-/obj/machinery/light/small{
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 1;
- pixel_y = 1
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plasteel/black,
-/area/storage/emergency)
-"caZ" = (
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/obj/machinery/power/apc{
- dir = 8;
- name = "Port Emergency Storage APC";
- pixel_x = -24;
- pixel_y = 0
- },
-/turf/open/floor/plasteel,
-/area/storage/emergency)
-"cba" = (
-/obj/structure/cable{
- tag = "icon-1-2";
- icon_state = "1-2"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit)
-"cbb" = (
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit)
-"cbc" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass{
- name = "Departures"
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit)
-"cbd" = (
-/turf/open/floor/plasteel/escape{
- tag = "icon-escape (WEST)";
- icon_state = "escape";
- dir = 8
- },
-/area/hallway/secondary/exit)
-"cbe" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit)
-"cbf" = (
-/turf/open/floor/plasteel/escape{
- tag = "icon-escape (EAST)";
- icon_state = "escape";
- dir = 4
- },
-/area/hallway/secondary/exit)
-"cbg" = (
-/obj/structure/closet,
-/turf/open/floor/mineral/titanium/yellow,
-/area/shuttle/escape)
-"cbh" = (
-/turf/open/floor/mineral/titanium/yellow,
-/area/shuttle/escape)
-"cbi" = (
-/obj/machinery/flasher{
- id = "cockpit_flasher";
- pixel_x = 6;
- pixel_y = 24
- },
-/obj/machinery/light{
- dir = 1
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/escape)
-"cbj" = (
-/turf/open/floor/mineral/titanium,
-/area/shuttle/escape)
-"cbk" = (
-/obj/structure/closet/emcloset,
-/turf/open/floor/mineral/titanium,
-/area/shuttle/escape)
-"cbl" = (
-/obj/structure/table,
-/obj/item/storage/firstaid/fire,
-/obj/item/storage/firstaid/regular{
- pixel_x = 2;
- pixel_y = 3
- },
-/obj/item/crowbar,
-/turf/open/floor/mineral/titanium,
-/area/shuttle/escape)
-"cbm" = (
-/obj/machinery/navbeacon{
- codes_txt = "patrol;next_patrol=AIW";
- location = "QM"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"cbn" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0;
- tag = ""
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"cbo" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"cbp" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass{
- name = "Engineering Hallway"
- },
-/turf/open/floor/plasteel/yellow/side{
- tag = "icon-yellow (WEST)";
- icon_state = "yellow";
- dir = 8
- },
-/area/hallway/primary/aft)
-"cbq" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"cbr" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- req_access_txt = 1
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"cbs" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "2-4";
- tag = "icon-2-8"
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"cbt" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/components/unary/vent_pump{
- tag = "icon-vent_map (NORTH)";
- name = "regular air vent";
- icon_state = "vent_map";
- dir = 1;
- on = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"cbu" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"cbv" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"cbw" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0;
- tag = ""
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4";
- tag = ""
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"cbx" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0;
- tag = ""
- },
-/obj/structure/cable{
- icon_state = "2-4";
- tag = "icon-2-8"
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"cby" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 2;
- name = "regular air scrubber";
- on = 1
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"cbz" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/door/firedoor,
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"cbA" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- req_access_txt = 1
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"cbB" = (
-/obj/structure/cable{
- tag = "icon-2-8";
- icon_state = "2-8"
- },
-/obj/structure/cable{
- icon_state = "2-4";
- tag = "icon-2-8"
- },
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"cbC" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0;
- tag = ""
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"cbD" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0;
- tag = ""
- },
-/obj/machinery/door/firedoor,
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"cbE" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0;
- tag = ""
- },
-/obj/machinery/atmospherics/components/unary/vent_pump{
- tag = "icon-vent_map (NORTH)";
- name = "regular air vent";
- icon_state = "vent_map";
- dir = 1;
- on = 1
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"cbF" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0;
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"cbG" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0;
- tag = ""
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 2;
- name = "regular air scrubber";
- on = 1
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"cbH" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0;
- tag = ""
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"cbI" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0;
- tag = ""
- },
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass{
- name = "Engineering Hallway"
- },
-/turf/open/floor/plasteel/yellow/side{
- tag = "icon-yellow (EAST)";
- icon_state = "yellow";
- dir = 4
- },
-/area/hallway/primary/aft)
-"cbJ" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0;
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/caution{
- tag = "icon-caution (WEST)";
- icon_state = "caution";
- dir = 8
- },
-/area/hallway/secondary/exit)
-"cbK" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0;
- tag = ""
- },
-/obj/structure/cable{
- tag = "icon-1-8";
- icon_state = "1-8"
- },
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit)
-"cbL" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit)
-"cbM" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/storage/tools)
-"cbN" = (
-/obj/structure/table/reinforced,
-/obj/item/stack/cable_coil,
-/obj/item/device/multitool,
-/obj/item/device/geiger_counter,
-/turf/open/floor/plasteel{
- tag = "icon-vault (WEST)";
- icon_state = "vault";
- dir = 8
- },
-/area/storage/tools)
-"cbO" = (
-/obj/machinery/vending/tool,
-/turf/open/floor/plasteel{
- tag = "icon-vault (WEST)";
- icon_state = "vault";
- dir = 8
- },
-/area/storage/tools)
-"cbP" = (
-/obj/machinery/vending/assist,
-/turf/open/floor/plasteel{
- tag = "icon-vault (WEST)";
- icon_state = "vault";
- dir = 8
- },
-/area/storage/tools)
-"cbQ" = (
-/obj/structure/table/reinforced,
-/obj/item/stack/sheet/metal{
- amount = 50
- },
-/obj/item/stack/sheet/metal{
- amount = 50
- },
-/obj/item/stack/sheet/plasteel{
- amount = 10
- },
-/obj/item/stack/sheet/plasteel{
- amount = 10
- },
-/turf/open/floor/plasteel{
- tag = "icon-vault (WEST)";
- icon_state = "vault";
- dir = 8
- },
-/area/storage/tools)
-"cbR" = (
-/obj/structure/table/reinforced,
-/obj/item/stack/sheet/rglass{
- amount = 50
- },
-/obj/item/stack/sheet/glass{
- amount = 50
- },
-/obj/item/stack/rods{
- amount = 50
- },
-/turf/open/floor/plasteel{
- tag = "icon-vault (WEST)";
- icon_state = "vault";
- dir = 8
- },
-/area/storage/tools)
-"cbS" = (
-/obj/structure/closet/toolcloset,
-/turf/open/floor/plasteel{
- tag = "icon-vault (WEST)";
- icon_state = "vault";
- dir = 8
- },
-/area/storage/tools)
-"cbT" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0;
- tag = ""
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit)
-"cbU" = (
-/obj/structure/cable{
- tag = "icon-1-8";
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit)
-"cbV" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit)
-"cbW" = (
-/obj/machinery/light{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit)
-"cbX" = (
-/obj/structure/tank_dispenser/oxygen,
-/turf/open/floor/plasteel{
- tag = "icon-vault (WEST)";
- icon_state = "vault";
- dir = 8
- },
-/area/storage/emergency)
-"cbY" = (
-/obj/item/clothing/mask/breath,
-/obj/item/clothing/mask/breath,
-/obj/item/clothing/mask/breath,
-/obj/item/clothing/mask/breath,
-/obj/item/clothing/mask/breath,
-/obj/item/clothing/mask/breath,
-/obj/item/clothing/mask/breath,
-/obj/item/clothing/mask/breath,
-/obj/item/clothing/mask/breath,
-/obj/structure/closet/crate,
-/turf/open/floor/plasteel{
- tag = "icon-vault (WEST)";
- icon_state = "vault";
- dir = 8
- },
-/area/storage/emergency)
-"cbZ" = (
-/obj/machinery/portable_atmospherics/canister/oxygen,
-/turf/open/floor/plasteel{
- tag = "icon-vault (WEST)";
- icon_state = "vault";
- dir = 8
- },
-/area/storage/emergency)
-"cca" = (
-/obj/machinery/portable_atmospherics/canister/air,
-/turf/open/floor/plasteel{
- tag = "icon-vault (WEST)";
- icon_state = "vault";
- dir = 8
- },
-/area/storage/emergency)
-"ccb" = (
-/obj/structure/reagent_dispensers/watertank,
-/turf/open/floor/plasteel{
- tag = "icon-vault (WEST)";
- icon_state = "vault";
- dir = 8
- },
-/area/storage/emergency)
-"ccc" = (
-/obj/structure/reagent_dispensers/fueltank,
-/turf/open/floor/plasteel{
- tag = "icon-vault (WEST)";
- icon_state = "vault";
- dir = 8
- },
-/area/storage/emergency)
-"ccd" = (
-/obj/machinery/space_heater,
-/turf/open/floor/plasteel{
- tag = "icon-vault (WEST)";
- icon_state = "vault";
- dir = 8
- },
-/area/storage/emergency)
-"cce" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/structure/cable{
- icon_state = "2-4";
- tag = "icon-2-8"
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit)
-"ccf" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0;
- tag = ""
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit)
-"ccg" = (
-/obj/machinery/navbeacon{
- codes_txt = "patrol;next_patrol=AIE";
- location = "AftH"
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0;
- tag = ""
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit)
-"cch" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0;
- tag = ""
- },
-/obj/machinery/door/firedoor,
-/turf/open/floor/plating,
-/area/hallway/secondary/exit)
-"cci" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/turf/open/floor/plasteel/escape{
- tag = "icon-escape (WEST)";
- icon_state = "escape";
- dir = 8
- },
-/area/hallway/secondary/exit)
-"ccj" = (
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/window/reinforced{
- dir = 8;
- pixel_x = 0
- },
-/obj/structure/flora/ausbushes/ppflowers,
-/turf/open/floor/grass,
-/area/hallway/secondary/exit)
-"cck" = (
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/flora/ausbushes/ppflowers,
-/turf/open/floor/grass,
-/area/hallway/secondary/exit)
-"ccl" = (
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/flora/ausbushes/ppflowers,
-/turf/open/floor/grass,
-/area/hallway/secondary/exit)
-"ccm" = (
-/obj/machinery/light/small{
- brightness = 3;
- dir = 8
- },
-/turf/open/floor/mineral/titanium/yellow,
-/area/shuttle/escape)
-"ccn" = (
-/obj/machinery/door/airlock/glass{
- name = "Emergency Shuttle Cargo"
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/escape)
-"cco" = (
-/obj/machinery/light/small{
- dir = 4
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/escape)
-"ccp" = (
-/obj/structure/shuttle/engine/propulsion{
- tag = "icon-propulsion_r (EAST)";
- icon_state = "propulsion_r";
- dir = 4
- },
-/turf/open/floor/plating/airless,
-/area/shuttle/arrival)
-"ccq" = (
-/obj/machinery/light,
-/turf/open/floor/plasteel/shuttle,
-/area/shuttle/arrival)
-"ccr" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0;
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"ccs" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"cct" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass{
- name = "Engineering Hallway"
- },
-/turf/open/floor/plasteel/yellow/side{
- tag = "icon-yellow (SOUTHWEST)";
- icon_state = "yellow";
- dir = 10
- },
-/area/hallway/primary/aft)
-"ccu" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/machinery/light,
-/turf/open/floor/plasteel/yellow/side,
-/area/hallway/primary/aft)
-"ccv" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- req_access_txt = 1
- },
-/turf/open/floor/plasteel/yellow/side,
-/area/hallway/primary/aft)
-"ccw" = (
-/obj/structure/cable{
- tag = "icon-1-2";
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 1;
- initialize_directions = 11
- },
-/turf/open/floor/plasteel/yellow/side,
-/area/hallway/primary/aft)
-"ccx" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/yellow/side,
-/area/hallway/primary/aft)
-"ccy" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/machinery/light,
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel/yellow/side,
-/area/hallway/primary/aft)
-"ccz" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0;
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/yellow/side,
-/area/hallway/primary/aft)
-"ccA" = (
-/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,
-/turf/open/floor/plasteel/yellow/side,
-/area/hallway/primary/aft)
-"ccB" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/machinery/camera/autoname{
- tag = "icon-camera (SOUTHWEST)";
- icon_state = "camera";
- dir = 10
- },
-/turf/open/floor/plasteel/yellow/side,
-/area/hallway/primary/aft)
-"ccC" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 2;
- initialize_directions = 11
- },
-/obj/machinery/door/firedoor,
-/turf/open/floor/plasteel/yellow/side,
-/area/hallway/primary/aft)
-"ccD" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/machinery/door/firedoor,
-/turf/open/floor/plasteel/yellow/side,
-/area/hallway/primary/aft)
-"ccE" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/yellow/side,
-/area/hallway/primary/aft)
-"ccF" = (
-/obj/structure/cable{
- tag = "icon-1-2";
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/yellow/side,
-/area/hallway/primary/aft)
-"ccG" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 1
- },
-/turf/open/floor/plasteel/yellow/side,
-/area/hallway/primary/aft)
-"ccH" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass{
- name = "Engineering Hallway"
- },
-/turf/open/floor/plasteel/yellow/side{
- tag = "icon-yellow (SOUTHEAST)";
- icon_state = "yellow";
- dir = 6
- },
-/area/hallway/primary/aft)
-"ccI" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 9
- },
-/turf/open/floor/plasteel/caution{
- tag = "icon-caution (WEST)";
- icon_state = "caution";
- dir = 8
- },
-/area/hallway/secondary/exit)
-"ccJ" = (
-/obj/machinery/navbeacon{
- codes_txt = "patrol;next_patrol=AftH";
- location = "AIW"
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit)
-"ccK" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0;
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit)
-"ccL" = (
-/obj/machinery/door/poddoor/shutters/preopen{
- id = 9966;
- name = "Tool Storage shutters"
- },
-/obj/structure/window/reinforced,
-/obj/machinery/light/small{
- dir = 8
- },
-/obj/effect/turf_decal/stripes/line,
-/turf/open/floor/plasteel/black,
-/area/storage/tools)
-"ccM" = (
-/obj/machinery/door/poddoor/shutters/preopen{
- id = 9966;
- name = "Tool Storage shutters"
- },
-/obj/machinery/door/window,
-/obj/effect/turf_decal/stripes/line,
-/turf/open/floor/plasteel/black,
-/area/storage/tools)
-"ccN" = (
-/obj/machinery/door/poddoor/shutters/preopen{
- id = 9966;
- name = "Tool Storage shutters"
- },
-/obj/structure/window/reinforced,
-/obj/effect/turf_decal/stripes/line,
-/turf/open/floor/plasteel/black,
-/area/storage/tools)
-"ccO" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0;
- tag = ""
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit)
-"ccP" = (
-/obj/machinery/light/small{
- dir = 8
- },
-/obj/structure/window/reinforced,
-/obj/effect/turf_decal/stripes/line,
-/turf/open/floor/plasteel/black,
-/area/storage/emergency)
-"ccQ" = (
-/obj/machinery/door/window,
-/obj/effect/turf_decal/stripes/line,
-/turf/open/floor/plasteel/black,
-/area/storage/emergency)
-"ccR" = (
-/obj/structure/window/reinforced,
-/obj/effect/turf_decal/stripes/line,
-/turf/open/floor/plasteel/black,
-/area/storage/emergency)
-"ccS" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit)
-"ccT" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0;
- tag = ""
- },
-/turf/open/floor/plasteel/escape{
- tag = "icon-escape (WEST)";
- icon_state = "escape";
- dir = 8
- },
-/area/hallway/secondary/exit)
-"ccU" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- name = "regular air vent";
- on = 1
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit)
-"ccV" = (
-/obj/machinery/door/airlock/external{
- name = "Escape Airlock"
- },
-/turf/open/floor/noslip,
-/area/hallway/secondary/exit)
-"ccW" = (
-/turf/open/floor/noslip,
-/area/hallway/secondary/exit)
-"ccX" = (
-/obj/machinery/door/airlock/titanium{
- name = "Emergency Shuttle Airlock";
- req_access_txt = "2"
- },
-/turf/open/floor/noslip,
-/area/shuttle/escape)
-"ccY" = (
-/obj/structure/closet/crate,
-/turf/open/floor/mineral/titanium/yellow,
-/area/shuttle/escape)
-"ccZ" = (
-/obj/structure/chair,
-/turf/open/floor/mineral/titanium,
-/area/shuttle/escape)
-"cda" = (
-/obj/structure/chair{
- dir = 4
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/escape)
-"cdb" = (
-/obj/structure/table,
-/turf/open/floor/mineral/titanium,
-/area/shuttle/escape)
-"cdc" = (
-/obj/machinery/door/airlock/titanium{
- name = "Arrivals Shuttle Airlock"
- },
-/obj/docking_port/mobile{
- dwidth = 3;
- height = 8;
- id = "arrival";
- name = "arrival shuttle";
- port_angle = -90;
- preferred_direction = 8;
- width = 16
- },
-/obj/docking_port/stationary{
- dwidth = 3;
- height = 8;
- id = "arrival_home";
- name = "port bay 1";
- width = 16
- },
-/turf/open/floor/plating,
-/area/shuttle/arrival)
-"cdd" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4";
- tag = "90Curve"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"cde" = (
-/obj/machinery/power/apc{
- dir = 4;
- name = "Entry Hall APC";
- pixel_x = 24;
- pixel_y = 0
- },
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"cdf" = (
-/turf/closed/wall/r_wall,
-/area/hallway/secondary/entry)
-"cdg" = (
-/turf/closed/wall/r_wall,
-/area/teleporter)
-"cdh" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- req_access_txt = 1
- },
-/turf/closed/wall/r_wall,
-/area/teleporter)
-"cdi" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/command{
- name = "Teleport Access";
- req_access_txt = "17"
- },
-/obj/structure/cable{
- tag = "icon-1-2";
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- tag = "icon-intact (NORTH)";
- icon_state = "intact";
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/teleporter)
-"cdj" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass_engineering{
- name = "Engineering Foyer";
- req_access_txt = "0";
- req_one_access_txt = "32;19"
- },
-/turf/open/floor/plasteel/yellow,
-/area/engine/engineering)
-"cdk" = (
-/turf/closed/wall,
-/area/engine/engineering)
-"cdl" = (
-/obj/structure/disposalpipe/segment,
-/turf/closed/wall,
-/area/engine/engineering)
-"cdm" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/turf/closed/wall,
-/area/engine/chiefs_office)
-"cdn" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/structure/cable{
- tag = "icon-0-8";
- icon_state = "0-8"
- },
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/obj/structure/cable,
-/turf/open/floor/plating,
-/area/engine/chiefs_office)
-"cdo" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/structure/cable{
- tag = "icon-0-8";
- icon_state = "0-8"
- },
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/turf/open/floor/plating,
-/area/engine/chiefs_office)
-"cdp" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/closed/wall,
-/area/engine/chiefs_office)
-"cdq" = (
-/turf/closed/wall,
-/area/engine/chiefs_office)
-"cdr" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- req_access_txt = 1
- },
-/turf/open/floor/plating,
-/area/engine/engineering)
-"cds" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0;
- tag = ""
- },
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass_engineering{
- name = "Engineering Foyer";
- req_access_txt = "0";
- req_one_access_txt = "32;19"
- },
-/turf/open/floor/plasteel/yellow,
-/area/engine/engineering)
-"cdt" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/engine/engineering)
-"cdu" = (
-/turf/closed/wall/r_wall,
-/area/ai_monitored/storage/secure)
-"cdv" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/closed/wall/r_wall,
-/area/ai_monitored/storage/secure)
-"cdw" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/closed/wall/r_wall,
-/area/ai_monitored/storage/secure)
-"cdx" = (
-/obj/structure/cable{
- tag = "icon-1-2";
- icon_state = "1-2"
- },
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/engineering{
- name = "Tech Storage";
- req_access_txt = "0";
- req_one_access_txt = "23;30"
- },
-/turf/open/floor/plating{
- tag = "icon-delivery";
- icon_state = "delivery";
- dir = 2
- },
-/area/ai_monitored/storage/secure)
-"cdy" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/door/airlock/maintenance{
- req_access_txt = "12"
- },
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"cdz" = (
-/obj/machinery/camera/autoname{
- tag = "icon-camera (NORTHEAST)";
- icon_state = "camera";
- dir = 5
- },
-/turf/open/floor/plasteel/caution{
- tag = "icon-caution (WEST)";
- icon_state = "caution";
- dir = 8
- },
-/area/hallway/secondary/exit)
-"cdA" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit)
-"cdB" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0;
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 6
- },
-/obj/machinery/door/firedoor,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit)
-"cdC" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0;
- tag = ""
- },
-/obj/structure/cable{
- tag = "icon-1-8";
- icon_state = "1-8"
- },
-/obj/structure/cable{
- icon_state = "2-4";
- tag = "icon-2-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit)
-"cdD" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0;
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 4;
- initialize_directions = 11
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit)
-"cdE" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0;
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit)
-"cdF" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0;
- tag = ""
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit)
-"cdG" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0;
- tag = ""
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 2;
- name = "regular air scrubber";
- on = 1
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit)
-"cdH" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0;
- tag = ""
- },
-/obj/machinery/atmospherics/components/unary/vent_pump{
- name = "regular air vent";
- on = 1
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit)
-"cdI" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0;
- tag = ""
- },
-/obj/machinery/door/firedoor,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit)
-"cdJ" = (
-/obj/structure/cable{
- tag = "icon-1-8";
- icon_state = "1-8"
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit)
-"cdK" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 6
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit)
-"cdL" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass{
- name = "Departures"
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit)
-"cdM" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0;
- tag = ""
- },
-/turf/open/floor/plasteel/escape{
- tag = "icon-escape (WEST)";
- icon_state = "escape";
- dir = 8
- },
-/area/hallway/secondary/exit)
-"cdN" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 4;
- initialize_directions = 11
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit)
-"cdO" = (
-/obj/machinery/light{
- dir = 4
- },
-/turf/open/floor/plasteel/escape{
- tag = "icon-escape (EAST)";
- icon_state = "escape";
- dir = 4
- },
-/area/hallway/secondary/exit)
-"cdP" = (
-/turf/closed/wall/mineral/titanium/nodiagonal,
-/area/shuttle/escape)
-"cdQ" = (
-/obj/structure/table,
-/obj/machinery/light{
- icon_state = "tube1";
- dir = 8
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/escape)
-"cdR" = (
-/obj/machinery/shieldwallgen,
-/obj/effect/turf_decal/bot,
-/turf/open/floor/plasteel,
-/area/teleporter)
-"cdS" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- req_access_txt = 1
- },
-/obj/machinery/airalarm{
- frequency = 1439;
- locked = 0;
- pixel_y = 23
- },
-/turf/open/floor/plasteel,
-/area/teleporter)
-"cdT" = (
-/obj/structure/cable{
- tag = "icon-1-2";
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- tag = "icon-intact (NORTH)";
- icon_state = "intact";
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/teleporter)
-"cdU" = (
-/turf/open/floor/plasteel/yellow,
-/area/engine/engineering)
-"cdV" = (
-/obj/machinery/light{
- dir = 4
- },
-/turf/open/floor/plasteel/yellow,
-/area/engine/engineering)
-"cdW" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/lattice,
-/turf/open/space,
-/area/space/nearstation)
-"cdX" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/structure/cable,
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/sign/electricshock{
- pixel_y = 32
- },
-/turf/open/floor/plating,
-/area/engine/chiefs_office)
-"cdY" = (
-/obj/structure/disposalpipe/trunk{
- dir = 8
- },
-/obj/machinery/disposal/bin,
-/turf/open/floor/wood,
-/area/engine/chiefs_office)
-"cdZ" = (
-/turf/open/floor/wood,
-/area/engine/chiefs_office)
-"cea" = (
-/obj/machinery/airalarm{
- frequency = 1439;
- locked = 0;
- pixel_y = 23
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 1;
- name = "regular air scrubber";
- on = 1
- },
-/turf/open/floor/wood,
-/area/engine/chiefs_office)
-"ceb" = (
-/obj/structure/closet/secure_closet/engineering_chief{
- req_access_txt = "0"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/floor/plasteel/yellow/side{
- tag = "icon-yellow (EAST)";
- icon_state = "yellow";
- dir = 4
- },
-/area/engine/chiefs_office)
-"cec" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- req_access_txt = 1
- },
-/turf/open/floor/plasteel/yellow,
-/area/engine/engineering)
-"ced" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0;
- tag = ""
- },
-/turf/open/floor/plasteel/yellow,
-/area/engine/engineering)
-"cee" = (
-/obj/structure/closet/emcloset,
-/turf/open/floor/plasteel/yellow,
-/area/hallway/primary/aft)
-"cef" = (
-/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/machinery/ai_status_display{
- pixel_x = -32;
- pixel_y = 0
- },
-/turf/open/floor/plating{
- icon_state = "floorgrime"
- },
-/area/ai_monitored/storage/secure)
-"ceg" = (
-/obj/structure/table,
-/obj/item/electronics/apc,
-/obj/item/electronics/airlock,
-/obj/machinery/light/small{
- dir = 1
- },
-/turf/open/floor/plating{
- icon_state = "floorgrime"
- },
-/area/ai_monitored/storage/secure)
-"ceh" = (
-/obj/structure/table,
-/obj/machinery/cell_charger,
-/obj/item/stock_parts/cell,
-/turf/open/floor/plating{
- icon_state = "floorgrime"
- },
-/area/ai_monitored/storage/secure)
-"cei" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/vending/assist,
-/turf/open/floor/plating{
- icon_state = "floorgrime"
- },
-/area/ai_monitored/storage/secure)
-"cej" = (
-/obj/machinery/airalarm{
- frequency = 1439;
- locked = 0;
- pixel_y = 23
- },
-/turf/open/floor/plating{
- icon_state = "floorgrime"
- },
-/area/ai_monitored/storage/secure)
-"cek" = (
-/obj/machinery/power/apc{
- dir = 1;
- name = "Tech Storage APC";
- pixel_y = 24
- },
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plating{
- icon_state = "floorgrime"
- },
-/area/ai_monitored/storage/secure)
-"cel" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0;
- tag = ""
- },
-/turf/open/floor/plating{
- icon_state = "floorgrime"
- },
-/area/ai_monitored/storage/secure)
-"cem" = (
-/obj/structure/cable{
- tag = "icon-1-2";
- icon_state = "1-2"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/turf/open/floor/plating{
- icon_state = "floorgrime"
- },
-/area/ai_monitored/storage/secure)
-"cen" = (
-/turf/open/floor/plating{
- icon_state = "floorgrime"
- },
-/area/ai_monitored/storage/secure)
-"ceo" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"cep" = (
-/turf/open/floor/plasteel/caution{
- tag = "icon-caution (WEST)";
- icon_state = "caution";
- dir = 8
- },
-/area/hallway/secondary/exit)
-"ceq" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/caution/corner,
-/area/hallway/secondary/exit)
-"cer" = (
-/turf/open/floor/plasteel/caution,
-/area/hallway/secondary/exit)
-"ces" = (
-/obj/machinery/light,
-/turf/open/floor/plasteel/caution,
-/area/hallway/secondary/exit)
-"cet" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/door/firedoor,
-/turf/open/floor/plasteel/caution,
-/area/hallway/secondary/exit)
-"ceu" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0;
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 6
- },
-/turf/open/floor/plasteel/caution,
-/area/hallway/secondary/exit)
-"cev" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/caution,
-/area/hallway/secondary/exit)
-"cew" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
-/turf/open/floor/plasteel/caution,
-/area/hallway/secondary/exit)
-"cex" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/caution,
-/area/hallway/secondary/exit)
-"cey" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 1
- },
-/turf/open/floor/plasteel/caution,
-/area/hallway/secondary/exit)
-"cez" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/camera/autoname{
- tag = "icon-camera (NORTH)";
- icon_state = "camera";
- dir = 1
- },
-/turf/open/floor/plasteel/caution,
-/area/hallway/secondary/exit)
-"ceA" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/caution/corner{
- tag = "icon-cautioncorner (WEST)";
- icon_state = "cautioncorner";
- dir = 8
- },
-/area/hallway/secondary/exit)
-"ceB" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/door/firedoor,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit)
-"ceC" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/light,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit)
-"ceD" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/closet/emcloset,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit)
-"ceE" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 9
- },
-/obj/structure/closet/firecloset/full,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit)
-"ceF" = (
-/obj/machinery/door/airlock/external{
- name = "External Access";
- req_access = null;
- req_access_txt = "13"
- },
-/turf/open/floor/noslip,
-/area/hallway/secondary/exit)
-"ceG" = (
-/obj/structure/chair{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit)
-"ceH" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/chair{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit)
-"ceI" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/chair{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit)
-"ceJ" = (
-/obj/machinery/door/airlock/titanium{
- name = "Emergency Shuttle Airlock"
- },
-/obj/docking_port/mobile/emergency{
- name = "Box emergency shuttle";
- timid = 0
- },
-/obj/docking_port/stationary{
- dir = 4;
- dwidth = 12;
- height = 18;
- id = "emergency_home";
- name = "BoxStation emergency evac bay";
- turf_type = /turf/open/space;
- width = 32
- },
-/turf/open/floor/noslip,
-/area/shuttle/escape)
-"ceK" = (
-/obj/machinery/light/small{
- dir = 1
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/escape)
-"ceL" = (
-/obj/structure/extinguisher_cabinet{
- pixel_x = -5;
- pixel_y = 30
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/escape)
-"ceM" = (
-/obj/structure/extinguisher_cabinet{
- pixel_x = 27;
- pixel_y = 0
- },
-/obj/machinery/light/small{
- dir = 4
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/escape)
-"ceN" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- tag = "icon-vent_map (NORTH)";
- name = "regular air vent";
- icon_state = "vent_map";
- dir = 1;
- on = 1
- },
-/turf/open/floor/plasteel,
-/area/teleporter)
-"ceO" = (
-/obj/machinery/shieldwallgen,
-/obj/effect/turf_decal/bot,
-/obj/machinery/light{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/teleporter)
-"ceP" = (
-/turf/open/floor/plasteel/yellow/side{
- dir = 8
- },
-/area/engine/break_room{
- name = "Engineering Hallway"
- })
-"ceQ" = (
-/turf/open/floor/plasteel/yellow/side{
- dir = 4
- },
-/area/engine/break_room{
- name = "Engineering Hallway"
- })
-"ceR" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/engine/break_room{
- name = "Engineering Hallway"
- })
-"ceS" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/structure/cable,
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
- },
-/turf/open/floor/plating,
-/area/engine/chiefs_office)
-"ceT" = (
-/obj/machinery/computer/atmos_alert,
-/turf/open/floor/wood,
-/area/engine/chiefs_office)
-"ceU" = (
-/obj/structure/table/reinforced,
-/obj/item/clipboard,
-/obj/item/lighter,
-/obj/item/clothing/glasses/meson{
- pixel_y = 4
- },
-/obj/item/stamp/ce,
-/obj/item/stock_parts/cell/high/plus,
-/turf/open/floor/wood,
-/area/engine/chiefs_office)
-"ceV" = (
-/obj/item/cartridge/engineering{
- pixel_x = 4;
- pixel_y = 5
- },
-/obj/item/cartridge/engineering{
- pixel_x = -3;
- pixel_y = 2
- },
-/obj/item/cartridge/engineering{
- pixel_x = 3
- },
-/obj/structure/table/reinforced,
-/obj/machinery/light_switch{
- pixel_x = 27
- },
-/obj/item/cartridge/atmos,
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/floor/plasteel/yellow/side{
- tag = "icon-yellow (EAST)";
- icon_state = "yellow";
- dir = 4
- },
-/area/engine/chiefs_office)
-"ceW" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- req_access_txt = 1
- },
-/turf/open/floor/plasteel/yellow/side{
- dir = 8
- },
-/area/engine/engineering)
-"ceX" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0;
- tag = ""
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"ceY" = (
-/turf/open/floor/plasteel/yellow/side{
- tag = "icon-yellow (EAST)";
- icon_state = "yellow";
- dir = 4
- },
-/area/engine/engineering)
-"ceZ" = (
-/obj/structure/table,
-/obj/item/device/aicard,
-/obj/item/aiModule/reset,
-/turf/open/floor/plating{
- icon_state = "floorgrime"
- },
-/area/ai_monitored/storage/secure)
-"cfa" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating{
- icon_state = "floorgrime"
- },
-/area/ai_monitored/storage/secure)
-"cfb" = (
-/obj/structure/rack{
- dir = 8;
- layer = 2.9
- },
-/obj/item/circuitboard/computer/pandemic{
- pixel_x = -3;
- pixel_y = 3
- },
-/obj/item/circuitboard/computer/rdconsole,
-/obj/item/circuitboard/machine/rdserver{
- pixel_x = 3;
- pixel_y = -3
- },
-/obj/item/circuitboard/machine/destructive_analyzer,
-/obj/item/circuitboard/machine/protolathe,
-/obj/item/circuitboard/computer/aifixer,
-/obj/item/circuitboard/computer/teleporter,
-/obj/item/circuitboard/machine/circuit_imprinter,
-/obj/item/circuitboard/machine/mechfab,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plating{
- icon_state = "floorgrime"
- },
-/area/ai_monitored/storage/secure)
-"cfc" = (
-/obj/structure/rack{
- dir = 8;
- layer = 2.9
- },
-/obj/item/circuitboard/computer/mining,
-/obj/item/circuitboard/machine/autolathe{
- pixel_x = 3;
- pixel_y = -3
- },
-/obj/item/circuitboard/computer/arcade/battle,
-/turf/open/floor/plating{
- icon_state = "floorgrime"
- },
-/area/ai_monitored/storage/secure)
-"cfd" = (
-/obj/structure/rack,
-/obj/item/circuitboard/machine/telecomms/processor,
-/obj/item/circuitboard/machine/telecomms/receiver,
-/obj/item/circuitboard/machine/telecomms/server,
-/obj/item/circuitboard/machine/telecomms/bus,
-/obj/item/circuitboard/machine/telecomms/broadcaster,
-/obj/item/circuitboard/computer/message_monitor{
- pixel_y = -5
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plating{
- icon_state = "floorgrime"
- },
-/area/ai_monitored/storage/secure)
-"cfe" = (
-/obj/machinery/light/small{
- dir = 4
- },
-/turf/open/floor/plating{
- icon_state = "floorgrime"
- },
-/area/ai_monitored/storage/secure)
-"cff" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 6
- },
-/turf/open/floor/plasteel{
- dir = 8;
- icon_state = "caution"
- },
-/area/hallway/secondary/exit)
-"cfg" = (
-/obj/structure/extinguisher_cabinet{
- pixel_x = 27;
- pixel_y = 0
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 9
- },
-/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
- },
-/turf/open/floor/plasteel{
- icon_state = "caution";
- dir = 4
- },
-/area/hallway/secondary/exit)
-"cfh" = (
-/turf/closed/wall/r_wall,
-/area/atmos)
-"cfi" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/closed/wall/r_wall,
-/area/atmos)
-"cfj" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0;
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/door/airlock/glass_engineering{
- name = "Atmospherics";
- req_access_txt = "32"
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"cfk" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 5
- },
-/turf/closed/wall/r_wall,
-/area/atmos)
-"cfl" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/closed/wall/r_wall,
-/area/atmos)
-"cfm" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 1;
- initialize_directions = 11
- },
-/turf/closed/wall/r_wall,
-/area/atmos)
-"cfn" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 9
- },
-/turf/closed/wall/r_wall,
-/area/atmos)
-"cfo" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- req_access_txt = 1
- },
-/turf/closed/wall/r_wall,
-/area/atmos)
-"cfp" = (
-/obj/machinery/power/apc{
- cell_type = 5000;
- dir = 8;
- name = "Departure Lounge APC";
- pixel_x = -24;
- pixel_y = 0
- },
-/obj/structure/cable,
-/turf/open/floor/plasteel/escape{
- tag = "icon-escape (WEST)";
- icon_state = "escape";
- dir = 8
- },
-/area/hallway/secondary/exit)
-"cfq" = (
-/obj/structure/chair{
- dir = 8
- },
-/obj/structure/window/reinforced{
- dir = 4
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/escape)
-"cfr" = (
-/obj/structure/chair{
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/escape)
-"cfs" = (
-/obj/structure/chair{
- dir = 8
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/escape)
-"cft" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'.";
- name = "KEEP CLEAR: DOCKING AREA";
- pixel_y = 0
- },
-/turf/closed/wall,
-/area/hallway/secondary/entry)
-"cfu" = (
-/turf/open/floor/plasteel,
-/area/teleporter)
-"cfv" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/closed/wall,
-/area/engine/chiefs_office)
-"cfw" = (
-/obj/machinery/computer/station_alert,
-/obj/machinery/camera{
- c_tag = "Chief Engineer's Office";
- dir = 4;
- network = list("SS13")
- },
-/obj/machinery/requests_console{
- announcementConsole = 1;
- department = "Chief Engineer's Desk";
- departmentType = 3;
- name = "Chief Engineer RC";
- pixel_x = -32;
- pixel_y = 0
- },
-/turf/open/floor/wood,
-/area/engine/chiefs_office)
-"cfx" = (
-/obj/structure/chair/office/light{
- dir = 4
- },
-/obj/effect/landmark/start{
- name = "Chief Engineer"
- },
-/turf/open/floor/wood,
-/area/engine/chiefs_office)
-"cfy" = (
-/obj/structure/table/reinforced,
-/obj/item/folder/yellow,
-/obj/item/paper/monitorkey,
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/wood,
-/area/engine/chiefs_office)
-"cfz" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/floor/plasteel/yellow/side{
- tag = "icon-yellow (EAST)";
- icon_state = "yellow";
- dir = 4
- },
-/area/engine/chiefs_office)
-"cfA" = (
-/obj/machinery/door/airlock/command{
- name = "Chief Engineer's Office";
- req_access_txt = "56";
- req_one_access_txt = "0"
- },
-/turf/open/floor/plasteel/yellow,
-/area/engine/chiefs_office)
-"cfB" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- req_access_txt = 1
- },
-/turf/open/floor/plasteel/yellow/side{
- dir = 8
- },
-/area/engine/break_room{
- name = "Engineering Hallway"
- })
-"cfC" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0;
- tag = ""
- },
-/turf/open/floor/plasteel,
-/area/engine/break_room{
- name = "Engineering Hallway"
- })
-"cfD" = (
-/turf/open/floor/plasteel/yellow/side{
- tag = "icon-yellow (EAST)";
- icon_state = "yellow";
- dir = 4
- },
-/area/engine/break_room{
- name = "Engineering Hallway"
- })
-"cfE" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
- },
-/turf/open/floor/plating,
-/area/ai_monitored/storage/secure)
-"cfF" = (
-/obj/structure/rack{
- dir = 8;
- layer = 2.9
- },
-/obj/item/circuitboard/computer/borgupload{
- pixel_x = -1;
- pixel_y = 1
- },
-/obj/item/circuitboard/computer/aiupload{
- pixel_x = 2;
- pixel_y = -2
- },
-/turf/open/floor/plasteel,
-/area/ai_monitored/storage/secure)
-"cfG" = (
-/obj/machinery/light/small{
- dir = 4
- },
-/obj/machinery/camera/autoname,
-/turf/open/floor/plating{
- icon_state = "floorgrime"
- },
-/area/ai_monitored/storage/secure)
-"cfH" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/turf/open/floor/plating{
- icon_state = "floorgrime"
- },
-/area/ai_monitored/storage/secure)
-"cfI" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/turf/open/floor/plating{
- icon_state = "floorgrime"
- },
-/area/ai_monitored/storage/secure)
-"cfJ" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/obj/structure/table,
-/obj/item/stack/cable_coil{
- pixel_y = 3
- },
-/obj/item/stack/cable_coil,
-/turf/open/floor/plating{
- icon_state = "floorgrime"
- },
-/area/ai_monitored/storage/secure)
-"cfK" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/turf/open/floor/plating{
- icon_state = "floorgrime"
- },
-/area/ai_monitored/storage/secure)
-"cfL" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/turf/open/floor/plating{
- icon_state = "floorgrime"
- },
-/area/ai_monitored/storage/secure)
-"cfM" = (
-/obj/structure/cable{
- tag = "icon-1-8";
- icon_state = "1-8"
- },
-/turf/open/floor/plating{
- icon_state = "floorgrime"
- },
-/area/ai_monitored/storage/secure)
-"cfN" = (
-/obj/machinery/camera/autoname{
- tag = "icon-camera (NORTHWEST)";
- icon_state = "camera";
- dir = 9
- },
-/turf/open/floor/plating{
- icon_state = "floorgrime"
- },
-/area/ai_monitored/storage/secure)
-"cfO" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/item/device/radio/beacon,
-/turf/open/floor/plasteel{
- dir = 8;
- icon_state = "caution"
- },
-/area/hallway/secondary/exit)
-"cfP" = (
-/turf/open/floor/plasteel{
- icon_state = "caution";
- dir = 4
- },
-/area/hallway/secondary/exit)
-"cfQ" = (
-/obj/machinery/portable_atmospherics/canister/oxygen,
-/turf/open/floor/plasteel{
- dir = 2;
- icon_state = "bot"
- },
-/area/atmos)
-"cfR" = (
-/obj/machinery/portable_atmospherics/canister/nitrous_oxide,
-/obj/machinery/light{
- dir = 1
- },
-/turf/open/floor/plasteel{
- dir = 2;
- icon_state = "bot"
- },
-/area/atmos)
-"cfS" = (
-/obj/machinery/portable_atmospherics/canister/nitrogen,
-/obj/machinery/camera/autoname,
-/turf/open/floor/plasteel{
- dir = 2;
- icon_state = "bot"
- },
-/area/atmos)
-"cfT" = (
-/obj/machinery/portable_atmospherics/canister/bz,
-/turf/open/floor/plasteel{
- dir = 2;
- icon_state = "bot"
- },
-/area/atmos)
-"cfU" = (
-/obj/machinery/portable_atmospherics/canister/toxins,
-/turf/open/floor/plasteel{
- dir = 2;
- icon_state = "bot"
- },
-/area/atmos)
-"cfV" = (
-/turf/open/floor/plasteel{
- icon_state = "delivery";
- name = "floor"
- },
-/area/atmos)
-"cfW" = (
-/obj/machinery/firealarm{
- dir = 2;
- pixel_y = 24
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/atmos)
-"cfX" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
-/area/atmos)
-"cfY" = (
-/obj/machinery/pipedispenser,
-/turf/open/floor/plasteel,
-/area/atmos)
-"cfZ" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/atmos)
-"cga" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{
- dir = 8
- },
-/obj/machinery/light{
- dir = 1
- },
-/obj/machinery/meter{
- frequency = 1441;
- id_tag = "waste_meter";
- name = "Waste Loop"
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"cgb" = (
-/obj/machinery/camera{
- c_tag = "Atmospherics North East"
- },
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 8;
- name = "Distro to Waste";
- on = 0
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"cgc" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/visible{
- dir = 2
- },
-/obj/machinery/meter{
- frequency = 1441;
- id_tag = "distro_meter";
- name = "Distribution Loop"
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"cgd" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/visible{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"cge" = (
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 8;
- name = "Air to Distro";
- on = 1
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"cgf" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/visible{
- dir = 10;
- initialize_directions = 10
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"cgg" = (
-/obj/machinery/atmospherics/components/unary/portables_connector/visible,
-/turf/open/floor/plasteel,
-/area/atmos)
-"cgh" = (
-/obj/machinery/camera/autoname{
- tag = "icon-camera (NORTHWEST)";
- icon_state = "camera";
- dir = 9
- },
-/turf/open/floor/plasteel/escape{
- tag = "icon-escape (EAST)";
- icon_state = "escape";
- dir = 4
- },
-/area/hallway/secondary/exit)
-"cgi" = (
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/pod_1)
-"cgj" = (
-/obj/structure/shuttle/engine/propulsion/burst{
- dir = 4;
- icon_state = "propulsion";
- tag = "icon-propulsion (WEST)"
- },
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/pod_1)
-"cgk" = (
-/obj/structure/closet/emcloset,
-/turf/open/floor/plating,
-/area/hallway/secondary/entry)
-"cgl" = (
-/obj/machinery/camera/autoname,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"cgm" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 4;
- name = "regular air scrubber";
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"cgn" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"cgo" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 8;
- initialize_directions = 11
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"cgp" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 8;
- name = "regular air vent";
- on = 1
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"cgq" = (
-/obj/machinery/bluespace_beacon,
-/obj/structure/cable{
- tag = "icon-1-2";
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- tag = "icon-intact (NORTH)";
- icon_state = "intact";
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/teleporter)
-"cgr" = (
-/obj/machinery/camera/autoname{
- tag = "icon-camera (NORTHWEST)";
- icon_state = "camera";
- dir = 9
- },
-/turf/open/floor/plasteel/yellow/side{
- dir = 4
- },
-/area/engine/break_room{
- name = "Engineering Hallway"
- })
-"cgs" = (
-/obj/machinery/computer/card/minor/ce,
-/turf/open/floor/wood,
-/area/engine/chiefs_office)
-"cgt" = (
-/obj/structure/table/reinforced,
-/obj/item/paper_bin{
- pixel_x = -3;
- pixel_y = 7
- },
-/obj/item/storage/fancy/cigarettes,
-/turf/open/floor/wood,
-/area/engine/chiefs_office)
-"cgu" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- name = "regular air vent";
- on = 1
- },
-/turf/open/floor/wood,
-/area/engine/chiefs_office)
-"cgv" = (
-/obj/item/device/radio/intercom{
- dir = 4;
- name = "Station Intercom (General)";
- pixel_x = 27
- },
-/obj/structure/filingcabinet/chestdrawer,
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/mob/living/simple_animal/parrot/Poly,
-/turf/open/floor/plasteel/yellow/side{
- tag = "icon-yellow (EAST)";
- icon_state = "yellow";
- dir = 4
- },
-/area/engine/chiefs_office)
-"cgw" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
- },
-/obj/structure/cable,
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/turf/open/floor/plating,
-/area/ai_monitored/storage/secure)
-"cgx" = (
-/obj/structure/rack{
- dir = 8;
- layer = 2.9
- },
-/obj/item/circuitboard/computer/crew{
- pixel_x = -1;
- pixel_y = 1
- },
-/obj/item/circuitboard/computer/card{
- pixel_x = 2;
- pixel_y = -2
- },
-/obj/item/circuitboard/computer/communications{
- pixel_x = 5;
- pixel_y = -5
- },
-/obj/machinery/light/small{
- dir = 8
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0;
- tag = ""
- },
-/turf/open/floor/plasteel,
-/area/ai_monitored/storage/secure)
-"cgy" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0;
- tag = ""
- },
-/obj/machinery/door/airlock/highsecurity{
- name = "Secure Tech Storage";
- req_access_txt = "19;23"
- },
-/turf/open/floor/plating{
- dir = 1;
- icon_state = "delivery"
- },
-/area/ai_monitored/storage/secure)
-"cgz" = (
-/obj/structure/table,
-/obj/item/stock_parts/subspace/analyzer,
-/obj/item/stock_parts/subspace/analyzer,
-/obj/item/stock_parts/subspace/analyzer,
-/turf/open/floor/plating{
- icon_state = "floorgrime"
- },
-/area/ai_monitored/storage/secure)
-"cgA" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- tag = "icon-vent_map (NORTH)";
- name = "regular air vent";
- icon_state = "vent_map";
- dir = 1;
- on = 1
- },
-/turf/open/floor/plating{
- icon_state = "floorgrime"
- },
-/area/ai_monitored/storage/secure)
-"cgB" = (
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plating{
- icon_state = "floorgrime"
- },
-/area/ai_monitored/storage/secure)
-"cgC" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 1;
- name = "regular air scrubber";
- on = 1
- },
-/turf/open/floor/plating{
- icon_state = "floorgrime"
- },
-/area/ai_monitored/storage/secure)
-"cgD" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/atmospherics/components/unary/portables_connector/visible{
- dir = 4
- },
-/obj/machinery/portable_atmospherics/pump,
-/turf/open/floor/plasteel{
- icon_state = "arrival";
- dir = 8
- },
-/area/hallway/secondary/exit)
-"cgE" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 10
- },
-/turf/open/floor/plasteel{
- icon_state = "caution";
- dir = 4
- },
-/area/hallway/secondary/exit)
-"cgF" = (
-/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
- },
-/turf/open/floor/plating,
-/area/atmos)
-"cgG" = (
-/obj/machinery/portable_atmospherics/canister/nitrous_oxide,
-/turf/open/floor/plasteel{
- dir = 2;
- icon_state = "bot"
- },
-/area/atmos)
-"cgH" = (
-/obj/machinery/portable_atmospherics/canister/nitrogen,
-/turf/open/floor/plasteel{
- dir = 2;
- icon_state = "bot"
- },
-/area/atmos)
-"cgI" = (
-/turf/open/floor/plasteel,
-/area/atmos)
-"cgJ" = (
-/obj/machinery/computer/atmos_control,
-/turf/open/floor/plasteel{
- icon_state = "caution";
- dir = 4
- },
-/area/atmos)
-"cgK" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 4;
- on = 1
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"cgL" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,
-/turf/open/floor/plasteel,
-/area/atmos)
-"cgM" = (
-/obj/machinery/pipedispenser/disposal,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"cgN" = (
-/obj/structure/grille,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/atmos)
-"cgO" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"cgP" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 8;
- on = 1
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"cgQ" = (
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 1;
- name = "Mix to Distro";
- on = 0
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"cgR" = (
-/obj/machinery/atmospherics/pipe/manifold/cyan/visible{
- dir = 8;
- initialize_directions = 11
- },
-/obj/machinery/meter,
-/turf/open/floor/plasteel,
-/area/atmos)
-"cgS" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/visible{
- dir = 4
- },
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 1;
- name = "Mix to Incinerator";
- on = 0
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"cgT" = (
-/obj/structure/grille,
-/obj/machinery/atmospherics/pipe/simple/cyan/visible{
- dir = 10;
- initialize_directions = 10
- },
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/atmos)
-"cgU" = (
-/obj/structure/grille,
-/turf/closed/wall/r_wall,
-/area/atmos)
-"cgV" = (
-/obj/structure/lattice/catwalk,
-/turf/open/space,
-/area/space/nearstation)
-"cgW" = (
-/obj/machinery/light{
- dir = 8
- },
-/turf/open/floor/plasteel/escape{
- tag = "icon-escape (WEST)";
- icon_state = "escape";
- dir = 8
- },
-/area/hallway/secondary/exit)
-"cgX" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 4;
- name = "regular air scrubber";
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/obj/structure/chair{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit)
-"cgY" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 4;
- initialize_directions = 11
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit)
-"cgZ" = (
-/obj/structure/closet/emcloset,
-/turf/open/floor/plasteel/escape{
- tag = "icon-escape (EAST)";
- icon_state = "escape";
- dir = 4
- },
-/area/hallway/secondary/exit)
-"cha" = (
-/obj/docking_port/stationary/random{
- dir = 8;
- id = "pod_asteroid1";
- name = "asteroid"
- },
-/turf/open/space,
-/area/space)
-"chb" = (
-/obj/structure/grille,
-/obj/structure/window/shuttle,
-/turf/open/floor/plating,
-/area/shuttle/pod_1)
-"chc" = (
-/obj/machinery/computer/shuttle/pod{
- pixel_x = 0;
- pixel_y = -32;
- possible_destinations = "pod_asteroid1";
- shuttleId = "pod1"
- },
-/obj/structure/chair{
- dir = 8
- },
-/obj/machinery/status_display{
- density = 0;
- layer = 3;
- pixel_x = 0;
- pixel_y = 32
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/pod_1)
-"chd" = (
-/obj/item/storage/pod{
- pixel_x = 6;
- pixel_y = -28
- },
-/obj/item/device/radio/intercom{
- pixel_x = 0;
- pixel_y = 25
- },
-/obj/structure/chair{
- dir = 8
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/pod_1)
-"che" = (
-/obj/machinery/door/airlock/titanium{
- name = "Escape Pod Airlock"
- },
-/obj/docking_port/mobile/pod{
- dir = 8;
- id = "pod1";
- name = "escape pod 1";
- port_angle = 180
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/pod_1)
-"chf" = (
-/obj/machinery/door/airlock/external{
- cyclelinkeddir = 1;
- name = "Escape Pod One"
- },
-/turf/open/floor/plating,
-/area/hallway/secondary/entry)
-"chg" = (
-/turf/open/floor/plating,
-/area/hallway/secondary/entry)
-"chh" = (
-/obj/structure/closet/crate,
-/obj/machinery/power/apc{
- dir = 8;
- name = "Teleporter APC";
- pixel_x = -24
- },
-/obj/structure/cable{
- tag = "icon-0-4";
- icon_state = "0-4"
- },
-/turf/open/floor/plasteel,
-/area/teleporter)
-"chi" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/turf/open/floor/plasteel,
-/area/teleporter)
-"chj" = (
-/obj/structure/cable{
- tag = "icon-1-8";
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 1;
- name = "regular air scrubber";
- on = 1
- },
-/turf/open/floor/plasteel,
-/area/teleporter)
-"chk" = (
-/obj/structure/closet/crate,
-/obj/machinery/firealarm{
- dir = 4;
- pixel_x = 24
- },
-/turf/open/floor/plasteel,
-/area/teleporter)
-"chl" = (
-/obj/machinery/suit_storage_unit/ce,
-/obj/effect/turf_decal/stripes/line{
- dir = 5
- },
-/turf/open/floor/plasteel/yellow,
-/area/engine/chiefs_office)
-"chm" = (
-/obj/machinery/light,
-/turf/open/floor/wood,
-/area/engine/chiefs_office)
-"chn" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/wood,
-/area/engine/chiefs_office)
-"cho" = (
-/obj/machinery/power/apc{
- dir = 4;
- name = "CE Office APC";
- pixel_x = 28;
- pixel_y = 0
- },
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/floor/plasteel/yellow/side{
- tag = "icon-yellow (EAST)";
- icon_state = "yellow";
- dir = 4
- },
-/area/engine/chiefs_office)
-"chp" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/structure/cable,
-/turf/open/floor/plating,
-/area/ai_monitored/storage/secure)
-"chq" = (
-/obj/structure/rack{
- dir = 8;
- layer = 2.9
- },
-/obj/item/circuitboard/computer/robotics{
- pixel_x = -2;
- pixel_y = 2
- },
-/obj/item/circuitboard/computer/mecha_control{
- pixel_x = 1;
- pixel_y = -1
- },
-/turf/open/floor/plasteel,
-/area/ai_monitored/storage/secure)
-"chr" = (
-/obj/structure/table,
-/obj/item/stock_parts/micro_laser,
-/obj/item/stock_parts/manipulator,
-/obj/item/stock_parts/manipulator,
-/obj/item/stock_parts/manipulator,
-/obj/item/stock_parts/manipulator,
-/obj/item/stock_parts/capacitor,
-/obj/item/stock_parts/micro_laser/high,
-/obj/item/stock_parts/micro_laser/high,
-/obj/item/stock_parts/micro_laser/high,
-/obj/item/stock_parts/micro_laser/high,
-/obj/machinery/camera/autoname{
- tag = "icon-camera (EAST)";
- icon_state = "camera";
- dir = 4
- },
-/turf/open/floor/plating{
- icon_state = "floorgrime"
- },
-/area/ai_monitored/storage/secure)
-"chs" = (
-/obj/structure/table,
-/obj/item/stock_parts/subspace/amplifier,
-/obj/item/stock_parts/subspace/amplifier,
-/obj/item/stock_parts/subspace/amplifier,
-/turf/open/floor/plating{
- icon_state = "floorgrime"
- },
-/area/ai_monitored/storage/secure)
-"cht" = (
-/obj/structure/rack{
- dir = 8;
- layer = 2.9
- },
-/obj/item/circuitboard/computer/cloning{
- pixel_x = 0
- },
-/obj/item/circuitboard/computer/med_data{
- pixel_x = 3;
- pixel_y = -3
- },
-/obj/item/circuitboard/machine/clonescanner,
-/obj/item/circuitboard/machine/clonepod,
-/obj/item/circuitboard/computer/scan_consolenew,
-/turf/open/floor/plating{
- icon_state = "floorgrime"
- },
-/area/ai_monitored/storage/secure)
-"chu" = (
-/obj/structure/rack{
- dir = 8;
- layer = 2.9
- },
-/obj/item/circuitboard/computer/secure_data{
- pixel_x = -2;
- pixel_y = 2
- },
-/obj/item/circuitboard/computer/security{
- pixel_x = 1;
- pixel_y = -1
- },
-/turf/open/floor/plating{
- icon_state = "floorgrime"
- },
-/area/ai_monitored/storage/secure)
-"chv" = (
-/obj/structure/rack{
- dir = 8;
- layer = 2.9
- },
-/obj/item/circuitboard/computer/powermonitor{
- pixel_x = -2;
- pixel_y = 2
- },
-/obj/item/circuitboard/computer/stationalert{
- pixel_x = 1;
- pixel_y = -1
- },
-/obj/item/circuitboard/computer/atmos_alert{
- pixel_x = 3;
- pixel_y = -3
- },
-/turf/open/floor/plating{
- icon_state = "floorgrime"
- },
-/area/ai_monitored/storage/secure)
-"chw" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel{
- icon_state = "caution";
- dir = 4
- },
-/area/hallway/secondary/exit)
-"chx" = (
-/obj/structure/table/reinforced,
-/obj/machinery/door/poddoor{
- density = 0;
- icon_state = "pdoor0";
- id = "atmos";
- name = "Atmos Blast Door";
- opacity = 0
- },
-/obj/machinery/door/window/northleft{
- dir = 4;
- icon_state = "left";
- name = "Atmospherics Desk";
- req_access_txt = "24"
- },
-/obj/item/folder/yellow,
-/obj/item/folder/yellow,
-/obj/item/pen,
-/obj/machinery/door/firedoor,
-/obj/machinery/door/poddoor{
- density = 0;
- icon_state = "open";
- id = "atmos";
- name = "Atmos Blast Door";
- opacity = 0
- },
-/turf/open/floor/plasteel{
- icon_state = "delivery";
- name = "floor"
- },
-/area/atmos)
-"chy" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 4;
- name = "regular air scrubber";
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"chz" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"chA" = (
-/obj/machinery/computer/atmos_control,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel{
- icon_state = "caution";
- dir = 4
- },
-/area/atmos)
-"chB" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/atmos)
-"chC" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel{
- icon_state = "delivery";
- name = "floor"
- },
-/area/atmos)
-"chD" = (
-/obj/machinery/atmospherics/pipe/manifold4w/scrubbers,
-/turf/open/floor/plasteel,
-/area/atmos)
-"chE" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
-/area/atmos)
-"chF" = (
-/obj/machinery/pipedispenser/disposal/transit_tube,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"chG" = (
-/obj/structure/grille,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/atmos)
-"chH" = (
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 0;
- name = "Waste In";
- on = 1
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"chI" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 8;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"chJ" = (
-/obj/machinery/atmospherics/pipe/simple/yellow/visible{
- dir = 6
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"chK" = (
-/obj/machinery/atmospherics/pipe/manifold/yellow/visible,
-/turf/open/floor/plasteel,
-/area/atmos)
-"chL" = (
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 8;
- name = "Mix Outlet Pump";
- on = 0
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"chM" = (
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 0;
- name = "Air to Mix";
- on = 0
- },
-/obj/machinery/atmospherics/pipe/simple/yellow/visible{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"chN" = (
-/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
- },
-/obj/machinery/atmospherics/pipe/manifold/yellow/visible,
-/turf/open/floor/plasteel/green/side{
- dir = 5
- },
-/area/atmos)
-"chO" = (
-/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/atmos)
-"chP" = (
-/obj/structure/lattice,
-/obj/machinery/atmospherics/pipe/simple/yellow/visible{
- dir = 4
- },
-/turf/open/space,
-/area/space/nearstation)
-"chQ" = (
-/obj/machinery/atmospherics/pipe/simple{
- dir = 4
- },
-/obj/structure/grille,
-/obj/machinery/meter,
-/turf/closed/wall/r_wall,
-/area/atmos)
-"chR" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 8;
- external_pressure_bound = 0;
- frequency = 1441;
- id_tag = "mix_in";
- initialize_directions = 1;
- internal_pressure_bound = 4000;
- on = 1;
- pressure_checks = 2;
- pump_direction = 0
- },
-/turf/open/floor/engine/vacuum,
-/area/atmos)
-"chS" = (
-/obj/machinery/camera{
- c_tag = "Atmospherics Waste Tank"
- },
-/turf/open/floor/engine/vacuum,
-/area/atmos)
-"chT" = (
-/turf/open/floor/engine/vacuum,
-/area/atmos)
-"chU" = (
-/obj/machinery/airalarm{
- dir = 4;
- pixel_x = -23;
- pixel_y = 0
- },
-/turf/open/floor/plasteel/escape{
- tag = "icon-escape (WEST)";
- icon_state = "escape";
- dir = 8
- },
-/area/hallway/secondary/exit)
-"chV" = (
-/obj/machinery/camera{
- c_tag = "Arrivals Escape Pod 1";
- dir = 8
- },
-/obj/machinery/light/small,
-/turf/open/floor/plating,
-/area/hallway/secondary/entry)
-"chW" = (
-/obj/structure/sign/pods,
-/turf/closed/wall,
-/area/hallway/secondary/entry)
-"chX" = (
-/obj/machinery/airalarm{
- dir = 1;
- icon_state = "alarm0";
- pixel_y = -22
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"chY" = (
-/obj/structure/table,
-/obj/effect/turf_decal/stripes/line,
-/obj/item/device/radio/beacon,
-/obj/item/device/radio/intercom{
- dir = 8;
- pixel_x = -28
- },
-/obj/machinery/light{
- icon_state = "tube1";
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/teleporter)
-"chZ" = (
-/obj/effect/turf_decal/stripes/line,
-/turf/open/floor/plasteel,
-/area/teleporter)
-"cia" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4";
- tag = "90Curve"
- },
-/turf/closed/wall,
-/area/engine/chiefs_office)
-"cib" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/closed/wall,
-/area/engine/chiefs_office)
-"cic" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/structure/cable{
- tag = "icon-0-4";
- icon_state = "0-4"
- },
-/turf/open/floor/plating,
-/area/engine/chiefs_office)
-"cid" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/structure/cable{
- tag = "icon-0-8";
- icon_state = "0-8"
- },
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 5
- },
-/turf/open/floor/plating,
-/area/engine/chiefs_office)
-"cie" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/structure/cable{
- tag = "icon-0-8";
- icon_state = "0-8"
- },
-/obj/structure/cable,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- tag = "icon-intact (EAST)";
- icon_state = "intact";
- dir = 4
- },
-/turf/open/floor/plating,
-/area/engine/chiefs_office)
-"cif" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- tag = "icon-intact (EAST)";
- icon_state = "intact";
- dir = 4
- },
-/turf/closed/wall,
-/area/engine/chiefs_office)
-"cig" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 9
- },
-/turf/open/floor/plasteel/yellow/side{
- dir = 8
- },
-/area/engine/break_room{
- name = "Engineering Hallway"
- })
-"cih" = (
-/obj/structure/table,
-/obj/item/stock_parts/subspace/transmitter,
-/obj/item/stock_parts/subspace/transmitter,
-/obj/item/stock_parts/subspace/treatment,
-/obj/item/stock_parts/subspace/treatment,
-/obj/item/stock_parts/subspace/treatment,
-/turf/open/floor/plating{
- icon_state = "floorgrime"
- },
-/area/ai_monitored/storage/secure)
-"cii" = (
-/obj/structure/table,
-/obj/item/stock_parts/subspace/filter,
-/obj/item/stock_parts/subspace/filter,
-/obj/item/stock_parts/subspace/filter,
-/obj/item/stock_parts/subspace/filter,
-/obj/item/stock_parts/subspace/filter,
-/obj/machinery/light/small,
-/turf/open/floor/plating{
- icon_state = "floorgrime"
- },
-/area/ai_monitored/storage/secure)
-"cij" = (
-/obj/structure/table,
-/obj/item/stock_parts/subspace/ansible,
-/obj/item/stock_parts/subspace/ansible,
-/obj/item/stock_parts/subspace/ansible,
-/obj/item/stock_parts/subspace/crystal,
-/obj/item/stock_parts/subspace/crystal,
-/obj/item/stock_parts/subspace/crystal,
-/turf/open/floor/plating{
- icon_state = "floorgrime"
- },
-/area/ai_monitored/storage/secure)
-"cik" = (
-/obj/machinery/vending/engivend,
-/turf/open/floor/plating{
- icon_state = "floorgrime"
- },
-/area/ai_monitored/storage/secure)
-"cil" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/atmospherics/components/unary/portables_connector/visible{
- dir = 4
- },
-/obj/machinery/portable_atmospherics/scrubber,
-/turf/open/floor/plasteel{
- dir = 8;
- icon_state = "escape"
- },
-/area/hallway/secondary/exit)
-"cim" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 10
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit)
-"cin" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel{
- icon_state = "caution";
- dir = 4
- },
-/area/hallway/secondary/exit)
-"cio" = (
-/obj/structure/tank_dispenser,
-/turf/open/floor/plasteel,
-/area/atmos)
-"cip" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 4;
- on = 1
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"ciq" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"cir" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/chair/office/dark{
- dir = 4
- },
-/obj/effect/landmark/start{
- name = "Atmospheric Technician"
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"cis" = (
-/obj/machinery/computer/atmos_alert,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel{
- icon_state = "caution";
- dir = 4
- },
-/area/atmos)
-"cit" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/atmos)
-"ciu" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel{
- icon_state = "delivery";
- name = "floor"
- },
-/area/atmos)
-"civ" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 1;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"ciw" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 9
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"cix" = (
-/obj/structure/closet/crate,
-/turf/open/floor/plasteel,
-/area/atmos)
-"ciy" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{
- dir = 8
- },
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plasteel,
-/area/atmos)
-"ciz" = (
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 8;
- name = "Mix to Filter";
- on = 1
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"ciA" = (
-/obj/machinery/atmospherics/pipe/manifold/yellow/visible{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"ciB" = (
-/obj/machinery/atmospherics/pipe/simple/green/visible{
- dir = 6
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"ciC" = (
-/obj/machinery/atmospherics/pipe/manifold/green/visible{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"ciD" = (
-/obj/machinery/atmospherics/pipe/manifold/green/visible{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"ciE" = (
-/obj/machinery/computer/atmos_control/tank{
- frequency = 1441;
- input_tag = "mix_in";
- name = "Gas Mix Tank Control";
- output_tag = "mix_out";
- sensors = list("mix_sensor" = "Tank")
- },
-/turf/open/floor/plasteel/green/side{
- dir = 4
- },
-/area/atmos)
-"ciF" = (
-/obj/structure/grille,
-/obj/machinery/atmospherics/pipe/simple/cyan/visible,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/atmos)
-"ciG" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating/airless,
-/area/atmos)
-"ciH" = (
-/obj/machinery/air_sensor{
- frequency = 1441;
- id_tag = "mix_sensor"
- },
-/turf/open/floor/engine/vacuum,
-/area/atmos)
-"ciI" = (
-/obj/machinery/light/small{
- dir = 4
- },
-/turf/open/floor/engine/vacuum,
-/area/atmos)
-"ciJ" = (
-/obj/machinery/vending/cola,
-/turf/open/floor/plasteel/escape{
- tag = "icon-escape (WEST)";
- icon_state = "escape";
- dir = 8
- },
-/area/hallway/secondary/exit)
-"ciK" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/light{
- dir = 8
- },
-/obj/item/device/radio/intercom{
- dir = 8;
- pixel_x = -28
- },
-/obj/machinery/door/firedoor,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"ciL" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/door/firedoor,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"ciM" = (
-/obj/structure/table,
-/obj/item/hand_tele,
-/turf/open/floor/plasteel,
-/area/teleporter)
-"ciN" = (
-/obj/machinery/computer/teleporter,
-/turf/open/floor/plating,
-/area/teleporter)
-"ciO" = (
-/obj/machinery/teleport/station,
-/turf/open/floor/plating,
-/area/teleporter)
-"ciP" = (
-/obj/machinery/teleport/hub,
-/turf/open/floor/plating,
-/area/teleporter)
-"ciQ" = (
-/obj/machinery/light{
- dir = 8
- },
-/turf/open/floor/plasteel/yellow/side{
- dir = 8
- },
-/area/engine/break_room{
- name = "Engineering Hallway"
- })
-"ciR" = (
-/turf/open/floor/plasteel/yellow/side{
- dir = 4
- },
-/area/engine/break_room)
-"ciS" = (
-/turf/closed/wall,
-/area/engine/break_room)
-"ciT" = (
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/obj/structure/lattice,
-/turf/open/space,
-/area/space/nearstation)
-"ciU" = (
-/obj/structure/lattice,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/space,
-/area/space/nearstation)
-"ciV" = (
-/obj/structure/disposalpipe/junction{
- dir = 8;
- icon_state = "pipe-j2"
- },
-/obj/structure/lattice,
-/turf/open/space,
-/area/space/nearstation)
-"ciW" = (
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/obj/structure/lattice,
-/turf/open/space,
-/area/space/nearstation)
-"ciX" = (
-/turf/closed/wall,
-/area/engine/break_room{
- name = "Engineering Hallway"
- })
-"ciY" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/engineering{
- name = "Tech Storage";
- req_access_txt = "0";
- req_one_access_txt = "23;30"
- },
-/turf/open/floor/plating{
- tag = "icon-delivery";
- icon_state = "delivery";
- dir = 2
- },
-/area/ai_monitored/storage/secure)
-"ciZ" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"cja" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/closed/wall,
-/area/hallway/secondary/exit)
-"cjb" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/atmospherics/components/unary/portables_connector/visible{
- dir = 4
- },
-/obj/machinery/portable_atmospherics/scrubber,
-/turf/open/floor/plasteel{
- dir = 8;
- icon_state = "escape"
- },
-/area/hallway/secondary/exit)
-"cjc" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 4;
- initialize_directions = 11
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit)
-"cjd" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel{
- icon_state = "caution";
- dir = 4
- },
-/area/hallway/secondary/exit)
-"cje" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/plasticflaps{
- opacity = 1
- },
-/obj/machinery/navbeacon{
- codes_txt = "delivery;dir=4";
- freq = 1400;
- location = "Atmospherics"
- },
-/obj/machinery/door/poddoor{
- density = 0;
- icon_state = "open";
- id = "atmos";
- name = "Atmos Blast Door";
- opacity = 0
- },
-/turf/open/floor/plasteel{
- icon_state = "delivery";
- name = "floor"
- },
-/area/atmos)
-"cjf" = (
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/obj/structure/table,
-/obj/item/clothing/mask/breath,
-/turf/open/floor/plasteel,
-/area/atmos)
-"cjg" = (
-/obj/machinery/computer/station_alert,
-/turf/open/floor/plasteel{
- dir = 6;
- icon_state = "caution"
- },
-/area/atmos)
-"cjh" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
- dir = 6
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"cji" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"cjj" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
- dir = 4
- },
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass_atmos{
- name = "Distribution Loop";
- req_access_txt = "24"
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"cjk" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
- dir = 9
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"cjl" = (
-/obj/machinery/atmospherics/pipe/simple/yellow/visible{
- dir = 9
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"cjm" = (
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 1;
- name = "Pure to Mix";
- on = 0
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"cjn" = (
-/obj/machinery/atmospherics/pipe/simple/green/visible{
- dir = 5;
- initialize_directions = 12
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"cjo" = (
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 1;
- name = "Unfiltered to Mix";
- on = 1
- },
-/obj/machinery/atmospherics/pipe/simple/green/visible{
- dir = 4;
- initialize_directions = 12
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"cjp" = (
-/obj/machinery/atmospherics/pipe/simple/green/visible{
- dir = 4
- },
-/turf/open/floor/plasteel/green/side{
- dir = 6
- },
-/area/atmos)
-"cjq" = (
-/obj/structure/grille,
-/obj/machinery/atmospherics/pipe/simple/cyan/visible,
-/obj/machinery/atmospherics/pipe/simple/green/visible{
- dir = 4
- },
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/atmos)
-"cjr" = (
-/obj/structure/lattice,
-/obj/machinery/atmospherics/pipe/simple/green/visible{
- dir = 4
- },
-/turf/open/space,
-/area/space/nearstation)
-"cjs" = (
-/obj/machinery/atmospherics/components/unary/outlet_injector/on{
- dir = 8;
- frequency = 1441;
- id = "mix_in";
- pixel_y = 1
- },
-/turf/open/floor/engine/vacuum,
-/area/atmos)
-"cjt" = (
-/obj/machinery/vending/snack,
-/turf/open/floor/plasteel/escape{
- tag = "icon-escape (SOUTHWEST)";
- icon_state = "escape";
- dir = 10
- },
-/area/hallway/secondary/exit)
-"cju" = (
-/turf/open/floor/plasteel/escape,
-/area/hallway/secondary/exit)
-"cjv" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/escape,
-/area/hallway/secondary/exit)
-"cjw" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/escape,
-/area/hallway/secondary/exit)
-"cjx" = (
-/turf/open/floor/plasteel/escape{
- tag = "icon-escape (SOUTHEAST)";
- icon_state = "escape";
- dir = 6
- },
-/area/hallway/secondary/exit)
-"cjy" = (
-/obj/machinery/door/airlock/titanium{
- name = "Emergency Shuttle Airlock"
- },
-/turf/open/floor/noslip,
-/area/shuttle/escape)
-"cjz" = (
-/obj/machinery/light/small,
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/escape)
-"cjA" = (
-/obj/structure/extinguisher_cabinet{
- pixel_x = 0;
- pixel_y = -30
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/escape)
-"cjB" = (
-/obj/machinery/light,
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/escape)
-"cjC" = (
-/obj/machinery/camera/autoname{
- tag = "icon-camera (NORTHWEST)";
- icon_state = "camera";
- dir = 9
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"cjD" = (
-/turf/closed/wall/r_wall,
-/area/hallway/primary/aft)
-"cjE" = (
-/turf/closed/wall/r_wall,
-/area/security/checkpoint/engineering)
-"cjF" = (
-/turf/open/floor/plasteel/yellow/side{
- dir = 10
- },
-/area/engine/break_room{
- name = "Engineering Hallway"
- })
-"cjG" = (
-/turf/open/floor/plasteel/yellow/side{
- tag = "icon-yellow (SOUTHEAST)";
- icon_state = "yellow";
- dir = 6
- },
-/area/engine/break_room)
-"cjH" = (
-/obj/structure/disposalpipe/segment,
-/turf/closed/wall,
-/area/engine/break_room)
-"cjI" = (
-/obj/structure/closet/emcloset,
-/turf/open/floor/plasteel/yellow,
-/area/engine/break_room{
- name = "Engineering Hallway"
- })
-"cjJ" = (
-/turf/open/floor/plasteel/yellow,
-/area/engine/break_room{
- name = "Engineering Hallway"
- })
-"cjK" = (
-/turf/open/floor/plasteel/yellow,
-/area/space)
-"cjL" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"cjM" = (
-/obj/item/crowbar,
-/obj/item/wrench,
-/obj/structure/table,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel{
- dir = 8;
- icon_state = "cautioncorner"
- },
-/area/hallway/secondary/exit)
-"cjN" = (
-/obj/machinery/light/small{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 5
- },
-/obj/machinery/firealarm{
- dir = 4;
- pixel_x = 24
- },
-/turf/open/floor/plasteel{
- icon_state = "caution";
- dir = 4
- },
-/area/hallway/secondary/exit)
-"cjO" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/closed/wall/r_wall,
-/area/atmos)
-"cjP" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/disposalpipe/segment,
-/obj/structure/table,
-/obj/item/wrench,
-/turf/open/floor/plasteel,
-/area/atmos)
-"cjQ" = (
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 8;
- name = "Air to External";
- on = 1
- },
-/turf/open/floor/plasteel{
- icon_state = "delivery";
- name = "floor"
- },
-/area/atmos)
-"cjR" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/visible{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"cjS" = (
-/obj/structure/grille,
-/obj/machinery/atmospherics/pipe/simple/cyan/visible{
- dir = 6;
- initialize_directions = 6
- },
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/atmos)
-"cjT" = (
-/obj/structure/grille,
-/obj/machinery/atmospherics/pipe/simple/cyan/visible{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/yellow/visible,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/atmos)
-"cjU" = (
-/obj/structure/grille,
-/obj/machinery/atmospherics/pipe/simple/cyan/visible{
- dir = 4
- },
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/atmos)
-"cjV" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/visible{
- dir = 4
- },
-/obj/structure/grille,
-/obj/machinery/atmospherics/pipe/simple/yellow/visible,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/atmos)
-"cjW" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/visible{
- dir = 4
- },
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/atmos)
-"cjX" = (
-/obj/machinery/atmospherics/pipe/simple/green/visible,
-/obj/machinery/atmospherics/pipe/simple/cyan/visible{
- dir = 4
- },
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/atmos)
-"cjY" = (
-/obj/structure/grille,
-/obj/machinery/atmospherics/pipe/manifold/cyan/visible{
- dir = 4;
- initialize_directions = 11
- },
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/atmos)
-"cjZ" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/door/airlock/security{
- name = "Brig";
- req_access = null;
- req_access_txt = "63; 42"
- },
-/turf/open/floor/plasteel/red,
-/area/hallway/secondary/exit)
-"cka" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plating,
-/area/hallway/secondary/exit)
-"ckb" = (
-/obj/machinery/door/airlock/glass{
- name = "Emergency Shuttle Brig";
- req_access_txt = "2"
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/escape)
-"ckc" = (
-/obj/machinery/door/airlock/glass{
- name = "Emergency Shuttle Infirmary"
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/escape)
-"ckd" = (
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/transport)
-"cke" = (
-/obj/structure/grille,
-/obj/structure/window/shuttle,
-/turf/open/floor/plating,
-/area/shuttle/transport)
-"ckf" = (
-/obj/machinery/door/airlock/external,
-/turf/open/floor/pod/dark,
-/area/shuttle/transport)
-"ckg" = (
-/turf/open/space,
-/area/hallway/secondary/entry)
-"ckh" = (
-/obj/structure/closet/emcloset,
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"cki" = (
-/turf/closed/wall,
-/area/security/checkpoint/engineering)
-"ckj" = (
-/obj/machinery/airalarm{
- frequency = 1439;
- locked = 0;
- pixel_y = 23
- },
-/obj/structure/table,
-/obj/machinery/recharger,
-/turf/open/floor/plasteel{
- icon_state = "redfull"
- },
-/area/security/checkpoint/engineering)
-"ckk" = (
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
- },
-/obj/machinery/power/apc{
- dir = 1;
- name = "Engineering Security APC";
- pixel_x = 0;
- pixel_y = 24
- },
-/obj/structure/chair/office/dark{
- dir = 4
- },
-/turf/open/floor/plasteel{
- icon_state = "redfull"
- },
-/area/security/checkpoint/engineering)
-"ckl" = (
-/obj/machinery/computer/security,
-/turf/open/floor/plasteel{
- icon_state = "redfull"
- },
-/area/security/checkpoint/engineering)
-"ckm" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/structure/cable,
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
- },
-/turf/open/floor/plating,
-/area/security/checkpoint/engineering)
-"ckn" = (
-/turf/open/floor/plasteel,
-/area/engine/break_room)
-"cko" = (
-/obj/structure/table,
-/obj/item/device/radio/intercom{
- name = "Station Intercom";
- pixel_x = 0;
- pixel_y = 24
- },
-/turf/open/floor/plasteel/yellow,
-/area/engine/break_room)
-"ckp" = (
-/obj/machinery/light/small{
- dir = 1
- },
-/obj/structure/table,
-/obj/item/reagent_containers/food/drinks/soda_cans/thirteenloko,
-/turf/open/floor/plasteel,
-/area/engine/break_room)
-"ckq" = (
-/obj/machinery/airalarm{
- frequency = 1439;
- locked = 0;
- pixel_y = 23
- },
-/obj/structure/table,
-/turf/open/floor/plasteel/yellow,
-/area/engine/break_room)
-"ckr" = (
-/obj/structure/disposalpipe/trunk{
- dir = 1
- },
-/obj/machinery/disposal/bin,
-/obj/machinery/camera/autoname,
-/turf/open/floor/plasteel,
-/area/engine/break_room)
-"cks" = (
-/obj/structure/lattice,
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/turf/open/space,
-/area/space/nearstation)
-"ckt" = (
-/turf/open/floor/plasteel,
-/area/engine/break_room{
- name = "Engineering Hallway"
- })
-"cku" = (
-/turf/open/floor/plasteel/yellow/side{
- tag = "icon-yellow (EAST)";
- icon_state = "yellow";
- dir = 4
- },
-/area/space)
-"ckv" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/closet/emcloset,
-/turf/open/floor/plasteel{
- dir = 10;
- icon_state = "yellow"
- },
-/area/hallway/secondary/exit)
-"ckw" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 5
- },
-/turf/open/floor/plasteel/yellow/side,
-/area/hallway/secondary/exit)
-"ckx" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel{
- dir = 6;
- icon_state = "yellow"
- },
-/area/hallway/secondary/exit)
-"cky" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/structure/disposalpipe/trunk{
- dir = 1
- },
-/obj/machinery/disposal/bin,
-/turf/open/floor/plasteel,
-/area/atmos)
-"ckz" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/structure/sign/atmosplaque{
- pixel_y = -30
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"ckA" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/machinery/door/airlock/glass_atmos{
- name = "Atmospherics Monitoring";
- req_access_txt = "24"
- },
-/obj/structure/sign/nosmoking_2{
- pixel_y = 30
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"ckB" = (
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 4;
- name = "External to Filter";
- on = 1
- },
-/turf/open/floor/plasteel{
- icon_state = "delivery";
- name = "floor"
- },
-/area/atmos)
-"ckC" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"ckD" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/visible{
- tag = "icon-intact (NORTHEAST)";
- icon_state = "intact";
- dir = 5
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"ckE" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/visible{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"ckF" = (
-/obj/machinery/atmospherics/pipe/manifold/cyan/visible{
- dir = 4;
- initialize_directions = 11
- },
-/obj/machinery/meter,
-/turf/open/floor/plasteel,
-/area/atmos)
-"ckG" = (
-/obj/machinery/atmospherics/pipe/simple/yellow/visible,
-/obj/machinery/meter,
-/turf/open/floor/plasteel,
-/area/atmos)
-"ckH" = (
-/obj/machinery/atmospherics/pipe/simple/yellow/visible{
- dir = 6
- },
-/obj/machinery/meter,
-/turf/open/floor/plasteel,
-/area/atmos)
-"ckI" = (
-/obj/machinery/atmospherics/pipe/manifold/yellow/visible{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"ckJ" = (
-/obj/machinery/atmospherics/pipe/simple/green/visible,
-/obj/machinery/atmospherics/pipe/simple/yellow/visible{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"ckK" = (
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 8;
- name = "N2O Outlet Pump";
- on = 0
- },
-/turf/open/floor/plasteel/escape{
- dir = 5
- },
-/area/atmos)
-"ckL" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 8;
- external_pressure_bound = 0;
- frequency = 1441;
- id_tag = "n2o_out";
- initialize_directions = 1;
- internal_pressure_bound = 4000;
- on = 1;
- pressure_checks = 2;
- pump_direction = 0
- },
-/turf/open/floor/engine/n2o,
-/area/atmos)
-"ckM" = (
-/turf/open/floor/engine/n2o,
-/area/atmos)
-"ckN" = (
-/turf/open/floor/plasteel/red,
-/area/hallway/secondary/exit)
-"ckO" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/red,
-/area/hallway/secondary/exit)
-"ckP" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/red,
-/area/hallway/secondary/exit)
-"ckQ" = (
-/turf/open/floor/mineral/plastitanium/brig,
-/area/shuttle/escape)
-"ckR" = (
-/obj/structure/chair{
- name = "tactical chair"
- },
-/turf/open/floor/mineral/plastitanium/brig,
-/area/shuttle/escape)
-"ckS" = (
-/obj/structure/extinguisher_cabinet{
- pixel_x = 27;
- pixel_y = 0
- },
-/obj/structure/chair{
- name = "tactical chair"
- },
-/turf/open/floor/mineral/plastitanium/brig,
-/area/shuttle/escape)
-"ckT" = (
-/obj/machinery/sleeper{
- icon_state = "sleeper-open";
- dir = 8
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/escape)
-"ckU" = (
-/obj/structure/shuttle/engine/propulsion{
- dir = 8;
- icon_state = "propulsion_l"
- },
-/turf/open/floor/plating/airless,
-/area/shuttle/transport)
-"ckV" = (
-/obj/structure/shuttle/engine/heater{
- icon_state = "heater";
- dir = 8
- },
-/obj/structure/window/reinforced,
-/turf/open/floor/plating/airless,
-/area/shuttle/transport)
-"ckW" = (
-/obj/structure/chair,
-/turf/open/floor/pod/dark,
-/area/shuttle/transport)
-"ckX" = (
-/obj/structure/chair,
-/obj/machinery/light{
- dir = 1
- },
-/turf/open/floor/pod/dark,
-/area/shuttle/transport)
-"ckY" = (
-/turf/open/floor/pod/light,
-/area/shuttle/transport)
-"ckZ" = (
-/obj/structure/grille,
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
- icon_state = "space";
- layer = 4;
- name = "EXTERNAL AIRLOCK";
- pixel_x = 0
- },
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/hallway/secondary/entry)
-"cla" = (
-/obj/structure/closet/firecloset/full,
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"clb" = (
-/obj/structure/reagent_dispensers/peppertank{
- pixel_x = -30
- },
-/obj/structure/table,
-/obj/item/book/manual/wiki/security_space_law,
-/turf/open/floor/plasteel{
- icon_state = "redfull"
- },
-/area/security/checkpoint/engineering)
-"clc" = (
-/obj/structure/cable{
- tag = "icon-1-2";
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 4;
- name = "regular air scrubber";
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel{
- icon_state = "redfull"
- },
-/area/security/checkpoint/engineering)
-"cld" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/machinery/computer/secure_data,
-/turf/open/floor/plasteel{
- icon_state = "redfull"
- },
-/area/security/checkpoint/engineering)
-"cle" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/structure/cable,
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/security/checkpoint/engineering)
-"clf" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/engine/break_room{
- name = "Engineering Hallway"
- })
-"clg" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/yellow,
-/area/engine/break_room)
-"clh" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/structure/chair/stool,
-/turf/open/floor/plasteel,
-/area/engine/break_room)
-"cli" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 10
- },
-/obj/structure/chair/stool,
-/obj/effect/landmark/start{
- name = "Station Engineer"
- },
-/turf/open/floor/plasteel/yellow,
-/area/engine/break_room)
-"clj" = (
-/obj/structure/chair/stool,
-/turf/open/floor/plasteel,
-/area/engine/break_room)
-"clk" = (
-/obj/structure/sink/kitchen{
- dir = 8;
- pixel_x = 11
- },
-/turf/open/floor/plasteel/yellow,
-/area/engine/break_room)
-"cll" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plating,
-/area/engine/break_room{
- name = "Engineering Hallway"
- })
-"clm" = (
-/obj/machinery/door/firedoor,
-/turf/open/floor/plasteel/yellow/side{
- dir = 8
- },
-/area/engine/break_room{
- name = "Engineering Hallway"
- })
-"cln" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0;
- tag = ""
- },
-/obj/machinery/door/firedoor,
-/turf/open/floor/plasteel,
-/area/engine/break_room{
- name = "Engineering Hallway"
- })
-"clo" = (
-/obj/machinery/door/firedoor,
-/turf/open/floor/plasteel/yellow/side{
- tag = "icon-yellow (EAST)";
- icon_state = "yellow";
- dir = 4
- },
-/area/engine/break_room{
- name = "Engineering Hallway"
- })
-"clp" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/door/airlock/maintenance,
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"clq" = (
-/turf/closed/wall/r_wall,
-/area/engine/break_room)
-"clr" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/closed/wall/r_wall,
-/area/engine/break_room)
-"cls" = (
-/obj/machinery/door/airlock/glass_engineering{
- name = "Engineering Storage";
- req_access_txt = "32"
- },
-/turf/open/floor/plasteel/yellow,
-/area/engine/break_room)
-"clt" = (
-/obj/machinery/door/airlock/glass_atmos{
- name = "Atmospherics Monitoring";
- req_access_txt = "24"
- },
-/turf/open/floor/plasteel,
-/area/engine/break_room)
-"clu" = (
-/obj/machinery/airalarm{
- dir = 4;
- pixel_x = -23;
- pixel_y = 0
- },
-/turf/open/floor/plasteel{
- icon_state = "delivery";
- name = "floor"
- },
-/area/atmos)
-"clv" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
-/turf/open/floor/plasteel,
-/area/atmos)
-"clw" = (
-/obj/item/device/radio/beacon,
-/turf/open/floor/plasteel,
-/area/atmos)
-"clx" = (
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 0;
- name = "Air to Port";
- on = 0
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"cly" = (
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 0;
- name = "Mix to Port";
- on = 0
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"clz" = (
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 0;
- name = "Pure to Port";
- on = 0
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"clA" = (
-/obj/machinery/atmospherics/pipe/simple/yellow/visible,
-/turf/open/floor/plasteel,
-/area/atmos)
-"clB" = (
-/obj/machinery/atmospherics/pipe/simple/green/visible,
-/turf/open/floor/plasteel,
-/area/atmos)
-"clC" = (
-/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/escape{
- dir = 4
- },
-/area/atmos)
-"clD" = (
-/obj/machinery/air_sensor{
- frequency = 1441;
- id_tag = "n2o_sensor"
- },
-/turf/open/floor/engine/n2o,
-/area/atmos)
-"clE" = (
-/obj/machinery/portable_atmospherics/canister/nitrous_oxide,
-/turf/open/floor/engine/n2o,
-/area/atmos)
-"clF" = (
-/obj/machinery/light/small{
- dir = 4
- },
-/turf/open/floor/engine/n2o,
-/area/atmos)
-"clG" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 4;
- name = "regular air vent";
- on = 1
- },
-/turf/open/floor/plasteel/red,
-/area/hallway/secondary/exit)
-"clH" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 9
- },
-/turf/open/floor/plasteel/red,
-/area/hallway/secondary/exit)
-"clI" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 4;
- name = "regular air scrubber";
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel/red,
-/area/hallway/secondary/exit)
-"clJ" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 9
- },
-/turf/open/floor/plasteel/red,
-/area/hallway/secondary/exit)
-"clK" = (
-/obj/machinery/flasher{
- id = "shuttle_flasher";
- pixel_x = -24;
- pixel_y = 6
- },
-/obj/machinery/button/flasher{
- id = "shuttle_flasher";
- pixel_x = -24;
- pixel_y = -6
- },
-/obj/machinery/light/small{
- brightness = 3;
- dir = 8
- },
-/turf/open/floor/mineral/plastitanium/brig,
-/area/shuttle/escape)
-"clL" = (
-/obj/machinery/light/small{
- dir = 4
- },
-/obj/machinery/flasher{
- id = "shuttle_flasher";
- pixel_x = 24;
- pixel_y = 6
- },
-/turf/open/floor/mineral/plastitanium/brig,
-/area/shuttle/escape)
-"clM" = (
-/obj/machinery/light/small{
- brightness = 3;
- dir = 8
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/escape)
-"clN" = (
-/obj/structure/table,
-/obj/item/storage/firstaid/fire,
-/obj/item/storage/firstaid/regular{
- pixel_x = 2;
- pixel_y = 3
- },
-/obj/item/crowbar,
-/obj/structure/extinguisher_cabinet{
- pixel_x = 27;
- pixel_y = 0
- },
-/obj/machinery/light/small{
- dir = 4
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/escape)
-"clO" = (
-/obj/structure/shuttle/engine/heater{
- icon_state = "heater";
- dir = 8
- },
-/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
- },
-/turf/open/floor/plating/airless,
-/area/shuttle/transport)
-"clP" = (
-/obj/machinery/light/small{
- dir = 1
- },
-/turf/open/floor/pod/light,
-/area/shuttle/transport)
-"clQ" = (
-/obj/machinery/door/airlock/titanium,
-/turf/open/floor/pod/light,
-/area/shuttle/transport)
-"clR" = (
-/obj/machinery/computer/shuttle/ferry/request,
-/turf/open/floor/pod/dark,
-/area/shuttle/transport)
-"clS" = (
-/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)
-"clT" = (
-/obj/machinery/door/airlock/external{
- id_tag = null;
- name = "Port Docking Bay 2";
- req_access_txt = "0"
- },
-/turf/open/floor/noslip,
-/area/hallway/secondary/entry)
-"clU" = (
-/obj/machinery/light{
- dir = 8
- },
-/obj/item/device/radio/intercom{
- dir = 8;
- pixel_x = -28
- },
-/turf/open/floor/plasteel{
- icon_state = "redfull"
- },
-/area/security/checkpoint/engineering)
-"clV" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4";
- tag = "90Curve"
- },
-/turf/open/floor/plasteel{
- icon_state = "redfull"
- },
-/area/security/checkpoint/engineering)
-"clW" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0;
- tag = ""
- },
-/turf/open/floor/plasteel{
- icon_state = "redfull"
- },
-/area/security/checkpoint/engineering)
-"clX" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0;
- tag = ""
- },
-/obj/structure/cable{
- tag = "icon-1-4";
- icon_state = "1-4"
- },
-/obj/structure/cable{
- icon_state = "2-4";
- tag = "icon-2-8"
- },
-/obj/machinery/door/airlock/glass_security{
- name = "Engineering Security Post";
- req_access_txt = "63"
- },
-/turf/open/floor/plasteel{
- icon_state = "redfull"
- },
-/area/security/checkpoint/engineering)
-"clY" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0;
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 6
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/turf/open/floor/plasteel/yellow,
-/area/engine/break_room{
- name = "Engineering Hallway"
- })
-"clZ" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0;
- tag = ""
- },
-/turf/open/floor/plasteel,
-/area/engine/break_room)
-"cma" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0;
- tag = ""
- },
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 8;
- name = "regular air vent";
- on = 1
- },
-/turf/open/floor/plasteel/yellow,
-/area/engine/break_room)
-"cmb" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0;
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/engine/break_room)
-"cmc" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0;
- tag = ""
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 2;
- name = "regular air scrubber";
- on = 1
- },
-/turf/open/floor/plasteel/yellow,
-/area/engine/break_room)
-"cmd" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0;
- tag = ""
- },
-/turf/open/floor/plasteel,
-/area/engine/break_room)
-"cme" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0;
- tag = ""
- },
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass_engineering{
- name = "Engineering Foyer";
- req_access_txt = "0";
- req_one_access_txt = "32;19"
- },
-/turf/open/floor/plasteel/yellow,
-/area/engine/break_room)
-"cmf" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0;
- tag = ""
- },
-/turf/open/floor/plasteel/yellow/side{
- tag = "icon-yellow (NORTH)";
- icon_state = "yellow";
- dir = 1
- },
-/area/engine/break_room{
- name = "Engineering Hallway"
- })
-"cmg" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0;
- tag = ""
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel/yellow/side{
- tag = "icon-yellow (NORTH)";
- icon_state = "yellow";
- dir = 1
- },
-/area/engine/break_room{
- name = "Engineering Hallway"
- })
-"cmh" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0;
- tag = ""
- },
-/obj/machinery/airalarm{
- frequency = 1439;
- locked = 0;
- pixel_y = 23
- },
-/turf/open/floor/plasteel/yellow/side{
- tag = "icon-yellow (NORTH)";
- icon_state = "yellow";
- dir = 1
- },
-/area/engine/break_room{
- name = "Engineering Hallway"
- })
-"cmi" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0;
- tag = ""
- },
-/turf/open/floor/plasteel/yellow/corner{
- tag = "icon-yellowcorner (NORTH)";
- icon_state = "yellowcorner";
- dir = 1
- },
-/area/engine/break_room{
- name = "Engineering Hallway"
- })
-"cmj" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0;
- tag = ""
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4";
- tag = "90Curve"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plasteel,
-/area/engine/break_room{
- name = "Engineering Hallway"
- })
-"cmk" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0;
- tag = ""
- },
-/turf/open/floor/plasteel/yellow/corner{
- tag = "icon-yellowcorner (EAST)";
- icon_state = "yellowcorner";
- dir = 4
- },
-/area/engine/break_room{
- name = "Engineering Hallway"
- })
-"cml" = (
-/obj/machinery/power/apc{
- dir = 1;
- name = "Engineering Foyer APC";
- pixel_x = 0;
- pixel_y = 24
- },
-/obj/structure/cable{
- tag = "icon-0-8";
- icon_state = "0-8"
- },
-/turf/open/floor/plasteel/yellow/side{
- tag = "icon-yellow (NORTH)";
- icon_state = "yellow";
- dir = 1
- },
-/area/engine/break_room{
- name = "Engineering Hallway"
- })
-"cmm" = (
-/obj/machinery/light{
- dir = 1
- },
-/turf/open/floor/plasteel/yellow/side{
- tag = "icon-yellow (NORTH)";
- icon_state = "yellow";
- dir = 1
- },
-/area/engine/break_room{
- name = "Engineering Hallway"
- })
-"cmn" = (
-/obj/machinery/camera/autoname{
- tag = "icon-camera (SOUTHEAST)";
- icon_state = "camera";
- dir = 6
- },
-/turf/open/floor/plasteel/yellow/side{
- tag = "icon-yellow (NORTH)";
- icon_state = "yellow";
- dir = 1
- },
-/area/engine/break_room{
- name = "Engineering Hallway"
- })
-"cmo" = (
-/turf/open/floor/plasteel/yellow/side{
- tag = "icon-yellow (NORTH)";
- icon_state = "yellow";
- dir = 1
- },
-/area/engine/break_room{
- name = "Engineering Hallway"
- })
-"cmp" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 2;
- name = "regular air scrubber";
- on = 1
- },
-/turf/open/floor/plasteel/yellow/side{
- tag = "icon-yellow (NORTH)";
- icon_state = "yellow";
- dir = 1
- },
-/area/engine/break_room{
- name = "Engineering Hallway"
- })
-"cmq" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 4;
- name = "regular air vent";
- on = 1
- },
-/obj/effect/landmark{
- name = "xeno_spawn";
- pixel_x = -1
- },
-/turf/open/floor/plasteel/yellow/side{
- tag = "icon-yellow (NORTH)";
- icon_state = "yellow";
- dir = 1
- },
-/area/engine/break_room{
- name = "Engineering Hallway"
- })
-"cmr" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass_engineering{
- name = "Engineering Foyer";
- req_access_txt = "0";
- req_one_access_txt = "32;19"
- },
-/turf/open/floor/plasteel/yellow,
-/area/engine/break_room{
- name = "Engineering Hallway"
- })
-"cms" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/light{
- dir = 1
- },
-/turf/open/floor/plasteel/yellow/side{
- tag = "icon-yellow (NORTH)";
- icon_state = "yellow";
- dir = 1
- },
-/area/engine/break_room{
- name = "Engineering Hallway"
- })
-"cmt" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/yellow/corner{
- tag = "icon-yellowcorner (NORTH)";
- icon_state = "yellowcorner";
- dir = 1
- },
-/area/engine/break_room{
- name = "Engineering Hallway"
- })
-"cmu" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/engine/break_room{
- name = "Engineering Hallway"
- })
-"cmv" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/yellow/corner{
- tag = "icon-yellowcorner (EAST)";
- icon_state = "yellowcorner";
- dir = 4
- },
-/area/engine/break_room{
- name = "Engineering Hallway"
- })
-"cmw" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/yellow/side{
- tag = "icon-yellow (NORTH)";
- icon_state = "yellow";
- dir = 1
- },
-/area/engine/break_room{
- name = "Engineering Hallway"
- })
-"cmx" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel/yellow/side{
- tag = "icon-yellow (NORTHEAST)";
- icon_state = "yellow";
- dir = 5
- },
-/area/engine/break_room{
- name = "Engineering Hallway"
- })
-"cmy" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass_engineering{
- name = "Engineering Storage";
- req_access_txt = "32"
- },
-/turf/open/floor/plasteel/yellow,
-/area/engine/break_room)
-"cmz" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/yellow/side{
- tag = "icon-yellow (NORTHWEST)";
- icon_state = "yellow";
- dir = 9
- },
-/area/engine/break_room)
-"cmA" = (
-/turf/open/floor/plasteel/yellow/side{
- tag = "icon-yellow (NORTH)";
- icon_state = "yellow";
- dir = 1
- },
-/area/engine/break_room)
-"cmB" = (
-/obj/machinery/vending/engivend,
-/turf/open/floor/plasteel/yellow/side{
- tag = "icon-yellow (NORTH)";
- icon_state = "yellow";
- dir = 1
- },
-/area/engine/break_room)
-"cmC" = (
-/obj/machinery/vending/tool,
-/turf/open/floor/plasteel/yellow/side{
- tag = "icon-yellow (NORTH)";
- icon_state = "yellow";
- dir = 1
- },
-/area/engine/break_room)
-"cmD" = (
-/obj/machinery/airalarm{
- frequency = 1439;
- locked = 0;
- pixel_y = 23
- },
-/obj/structure/closet/secure_closet/engineering_welding,
-/turf/open/floor/plasteel/yellow/side{
- tag = "icon-yellow (NORTH)";
- icon_state = "yellow";
- dir = 1
- },
-/area/engine/break_room)
-"cmE" = (
-/obj/structure/closet/secure_closet/engineering_electrical,
-/turf/open/floor/plasteel/yellow/side{
- tag = "icon-yellow (NORTH)";
- icon_state = "yellow";
- dir = 1
- },
-/area/engine/break_room)
-"cmF" = (
-/turf/open/floor/plasteel/yellow/side{
- tag = "icon-yellow (NORTHEAST)";
- icon_state = "yellow";
- dir = 5
- },
-/area/engine/break_room)
-"cmG" = (
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plasteel/yellow,
-/area/engine/break_room)
-"cmH" = (
-/obj/structure/reagent_dispensers/watertank,
-/turf/open/floor/plasteel,
-/area/atmos)
-"cmI" = (
-/obj/structure/reagent_dispensers/fueltank,
-/turf/open/floor/plasteel,
-/area/atmos)
-"cmJ" = (
-/obj/structure/rack{
- dir = 8;
- layer = 2.9
- },
-/obj/item/clothing/suit/hazardvest,
-/obj/item/clothing/suit/hazardvest,
-/obj/item/clothing/suit/hazardvest,
-/obj/item/clothing/suit/hazardvest,
-/obj/item/clothing/gloves/color/black,
-/obj/item/clothing/gloves/color/black,
-/obj/item/clothing/gloves/color/black,
-/obj/item/clothing/mask/gas,
-/obj/item/clothing/mask/gas,
-/turf/open/floor/plasteel,
-/area/atmos)
-"cmK" = (
-/obj/machinery/atmospherics/pipe/manifold/general/visible{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"cmL" = (
-/obj/machinery/atmospherics/pipe/manifold/general/visible,
-/obj/machinery/meter,
-/turf/open/floor/plasteel,
-/area/atmos)
-"cmM" = (
-/obj/machinery/atmospherics/pipe/manifold/general/visible{
- dir = 4;
- initialize_directions = 11
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"cmN" = (
-/obj/machinery/atmospherics/components/trinary/filter{
- dir = 1;
- filter_type = "n2o";
- on = 1
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"cmO" = (
-/obj/machinery/atmospherics/pipe/simple/green/visible{
- dir = 4
- },
-/turf/open/floor/plasteel/escape{
- dir = 6
- },
-/area/atmos)
-"cmP" = (
-/obj/machinery/atmospherics/components/unary/outlet_injector/on{
- dir = 8;
- frequency = 1441;
- id = "n2o_in";
- pixel_y = 1
- },
-/turf/open/floor/engine/n2o,
-/area/atmos)
-"cmQ" = (
-/obj/structure/chair{
- dir = 1
- },
-/turf/open/floor/plasteel/red,
-/area/hallway/secondary/exit)
-"cmR" = (
-/obj/machinery/camera/autoname{
- tag = "icon-camera (SOUTHWEST)";
- icon_state = "camera";
- dir = 10
- },
-/turf/open/floor/plasteel/red,
-/area/hallway/secondary/exit)
-"cmS" = (
-/obj/machinery/light,
-/obj/structure/chair{
- dir = 1
- },
-/turf/open/floor/plasteel/red,
-/area/hallway/secondary/exit)
-"cmT" = (
-/obj/structure/chair{
- dir = 1;
- name = "tactical chair"
- },
-/turf/open/floor/mineral/plastitanium/brig,
-/area/shuttle/escape)
-"cmU" = (
-/obj/structure/shuttle/engine/heater{
- icon_state = "heater";
- dir = 8
- },
-/obj/structure/window/reinforced{
- dir = 1;
- pixel_y = 1
- },
-/turf/open/floor/plating/airless,
-/area/shuttle/transport)
-"cmV" = (
-/obj/structure/chair{
- dir = 1
- },
-/turf/open/floor/pod/dark,
-/area/shuttle/transport)
-"cmW" = (
-/obj/structure/chair{
- dir = 1
- },
-/obj/machinery/light,
-/turf/open/floor/pod/dark,
-/area/shuttle/transport)
-"cmX" = (
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"cmY" = (
-/obj/structure/filingcabinet/security,
-/turf/open/floor/plasteel{
- icon_state = "redfull"
- },
-/area/security/checkpoint/engineering)
-"cmZ" = (
-/obj/effect/landmark/start/depsec/engineering,
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 4;
- name = "regular air vent";
- on = 1
- },
-/turf/open/floor/plasteel{
- icon_state = "redfull"
- },
-/area/security/checkpoint/engineering)
-"cna" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel{
- icon_state = "redfull"
- },
-/area/security/checkpoint/engineering)
-"cnb" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/structure/cable,
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/security/checkpoint/engineering)
-"cnc" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel,
-/area/engine/break_room{
- name = "Engineering Hallway"
- })
-"cnd" = (
-/turf/open/floor/plasteel/yellow,
-/area/engine/break_room)
-"cne" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 6
- },
-/turf/open/floor/plasteel,
-/area/engine/break_room)
-"cnf" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 2;
- initialize_directions = 11
- },
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plasteel/yellow,
-/area/engine/break_room)
-"cng" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 2;
- initialize_directions = 11
- },
-/turf/open/floor/plasteel,
-/area/engine/break_room)
-"cnh" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass_engineering{
- name = "Engineering Foyer";
- req_access_txt = "0";
- req_one_access_txt = "32;19"
- },
-/turf/open/floor/plasteel/yellow,
-/area/engine/break_room)
-"cni" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/yellow/side,
-/area/engine/break_room{
- name = "Engineering Hallway"
- })
-"cnj" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel/yellow/side,
-/area/engine/break_room{
- name = "Engineering Hallway"
- })
-"cnk" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/machinery/camera/autoname{
- tag = "icon-camera (SOUTHWEST)";
- icon_state = "camera";
- dir = 10
- },
-/turf/open/floor/plasteel/yellow/side,
-/area/engine/break_room{
- name = "Engineering Hallway"
- })
-"cnl" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/yellow/corner{
- tag = "icon-yellowcorner (WEST)";
- icon_state = "yellowcorner";
- dir = 8
- },
-/area/engine/break_room{
- name = "Engineering Hallway"
- })
-"cnm" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0;
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/engine/break_room{
- name = "Engineering Hallway"
- })
-"cnn" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/yellow/corner,
-/area/engine/break_room{
- name = "Engineering Hallway"
- })
-"cno" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 2;
- initialize_directions = 11
- },
-/turf/open/floor/plasteel/yellow/side,
-/area/engine/break_room{
- name = "Engineering Hallway"
- })
-"cnp" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass_engineering{
- name = "Engineering Foyer";
- req_access_txt = "0";
- req_one_access_txt = "32;19"
- },
-/turf/open/floor/plasteel/yellow,
-/area/engine/break_room{
- name = "Engineering Hallway"
- })
-"cnq" = (
-/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel/yellow/side{
- tag = "icon-yellow (SOUTHEAST)";
- icon_state = "yellow";
- dir = 6
- },
-/area/engine/break_room)
-"cnr" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass_engineering{
- name = "Engineering Storage";
- req_access_txt = "32"
- },
-/turf/open/floor/plasteel/yellow,
-/area/engine/break_room)
-"cns" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- req_access_txt = 1
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/yellow/side{
- tag = "icon-yellow (WEST)";
- icon_state = "yellow";
- dir = 8
- },
-/area/engine/break_room)
-"cnt" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/engine/break_room)
-"cnu" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 8;
- name = "regular air scrubber";
- on = 1;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel,
-/area/engine/break_room)
-"cnv" = (
-/turf/open/floor/plasteel/yellow/side{
- tag = "icon-yellow (EAST)";
- icon_state = "yellow";
- dir = 4
- },
-/area/engine/break_room)
-"cnw" = (
-/obj/machinery/door/airlock/glass_engineering{
- name = "Atmospherics";
- req_access_txt = "32"
- },
-/turf/open/floor/plasteel{
- icon_state = "dark"
- },
-/area/atmos)
-"cnx" = (
-/obj/structure/extinguisher_cabinet{
- pixel_x = 27;
- pixel_y = 0
- },
-/obj/machinery/camera{
- c_tag = "Atmospherics West";
- dir = 8;
- network = list("SS13")
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
-/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"cny" = (
-/turf/closed/wall,
-/area/atmos)
-"cnz" = (
-/obj/structure/extinguisher_cabinet{
- pixel_x = -27;
- pixel_y = 0
- },
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 0;
- name = "Air to Port";
- on = 0
- },
-/obj/machinery/light{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"cnA" = (
-/obj/effect/landmark/start{
- name = "Atmospheric Technician"
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"cnB" = (
-/obj/machinery/light{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"cnC" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/shuttle/engine/heater,
-/turf/open/floor/plating/airless,
-/area/shuttle/escape)
-"cnD" = (
-/obj/machinery/door/airlock/external,
-/turf/open/floor/pod/light,
-/area/shuttle/transport)
-"cnE" = (
-/obj/structure/closet/emcloset,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"cnF" = (
-/obj/structure/closet,
-/turf/open/floor/plasteel{
- icon_state = "redfull"
- },
-/area/security/checkpoint/engineering)
-"cnG" = (
-/obj/machinery/camera/autoname{
- tag = "icon-camera (NORTH)";
- icon_state = "camera";
- dir = 1
- },
-/turf/open/floor/plasteel{
- icon_state = "redfull"
- },
-/area/security/checkpoint/engineering)
-"cnH" = (
-/obj/item/device/radio,
-/turf/open/floor/plasteel{
- icon_state = "redfull"
- },
-/area/security/checkpoint/engineering)
-"cnI" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/yellow,
-/area/engine/break_room{
- name = "Engineering Hallway"
- })
-"cnJ" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/noticeboard{
- dir = 1;
- pixel_y = -27
- },
-/turf/open/floor/plasteel/yellow,
-/area/engine/break_room)
-"cnK" = (
-/obj/structure/table,
-/obj/machinery/microwave,
-/turf/open/floor/plasteel,
-/area/engine/break_room)
-"cnL" = (
-/obj/machinery/light/small,
-/obj/machinery/vending/cola,
-/turf/open/floor/plasteel/yellow,
-/area/engine/break_room)
-"cnM" = (
-/obj/machinery/vending/snack,
-/turf/open/floor/plasteel,
-/area/engine/break_room)
-"cnN" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0;
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/door/firedoor,
-/turf/open/floor/plasteel,
-/area/engine/break_room{
- name = "Engineering Hallway"
- })
-"cnO" = (
-/turf/closed/wall,
-/area/maintenance/aft)
-"cnP" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- req_access_txt = 1
- },
-/obj/machinery/light{
- dir = 8
- },
-/obj/structure/tank_dispenser/oxygen,
-/turf/open/floor/plasteel/yellow/side{
- tag = "icon-yellow (WEST)";
- icon_state = "yellow";
- dir = 8
- },
-/area/engine/break_room)
-"cnQ" = (
-/obj/structure/closet/secure_closet/atmospherics,
-/turf/open/floor/plasteel{
- dir = 2;
- icon_state = "bot"
- },
-/area/engine/break_room)
-"cnR" = (
-/obj/structure/closet/secure_closet/engineering_personal,
-/turf/open/floor/plasteel{
- dir = 2;
- icon_state = "bot"
- },
-/area/engine/break_room)
-"cnS" = (
-/obj/effect/turf_decal/delivery,
-/obj/item/device/radio/intercom{
- desc = "Talk smack through this.";
- dir = 4;
- pixel_x = 28;
- syndie = 1
- },
-/turf/open/floor/plasteel/yellow,
-/area/engine/break_room)
-"cnT" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"cnU" = (
-/obj/structure/closet/secure_closet/atmospherics,
-/turf/open/floor/plasteel{
- icon_state = "delivery";
- name = "floor"
- },
-/area/atmos)
-"cnV" = (
-/obj/machinery/atmospherics/components/unary/portables_connector/visible{
- dir = 4
- },
-/obj/machinery/portable_atmospherics/canister,
-/turf/open/floor/plasteel{
- dir = 2;
- icon_state = "bot"
- },
-/area/atmos)
-"cnW" = (
-/obj/machinery/atmospherics/components/unary/portables_connector/visible{
- dir = 8
- },
-/obj/effect/turf_decal/bot{
- dir = 2
- },
-/turf/open/floor/plasteel{
- dir = 2
- },
-/area/atmos)
-"cnX" = (
-/obj/machinery/atmospherics/pipe/manifold/yellow/visible{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"cnY" = (
-/obj/machinery/camera{
- c_tag = "Atmospherics East";
- dir = 8;
- network = list("SS13")
- },
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 8;
- name = "Plasma Outlet Pump";
- on = 0
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 5
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"cnZ" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 8;
- external_pressure_bound = 0;
- frequency = 1441;
- id_tag = "tox_out";
- initialize_directions = 1;
- internal_pressure_bound = 4000;
- on = 1;
- pressure_checks = 2;
- pump_direction = 0
- },
-/turf/open/floor/engine/plasma,
-/area/atmos)
-"coa" = (
-/turf/open/floor/engine/plasma,
-/area/atmos)
-"cob" = (
-/obj/effect/landmark{
- name = "xeno_spawn";
- pixel_x = -1
- },
-/turf/open/floor/engine/plasma,
-/area/atmos)
-"coc" = (
-/obj/structure/shuttle/engine/propulsion,
-/turf/open/floor/plating/airless,
-/area/shuttle/escape)
-"cod" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/yellow/side{
- dir = 9
- },
-/area/engine/break_room{
- name = "Engineering Hallway"
- })
-"coe" = (
-/turf/open/floor/plasteel/yellow/side{
- tag = "icon-yellow (NORTHEAST)";
- icon_state = "yellow";
- dir = 5
- },
-/area/engine/break_room{
- name = "Engineering Hallway"
- })
-"cof" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/closed/wall,
-/area/engine/break_room{
- name = "Engineering Hallway"
- })
-"cog" = (
-/obj/structure/lattice,
-/obj/structure/disposalpipe/junction{
- dir = 1;
- icon_state = "pipe-j1";
- tag = "icon-pipe-j1 (EAST)"
- },
-/turf/open/space,
-/area/space/nearstation)
-"coh" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/closed/wall,
-/area/engine/break_room{
- name = "Engineering Hallway"
- })
-"coi" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel/yellow/side{
- dir = 8
- },
-/area/engine/break_room{
- name = "Engineering Hallway"
- })
-"coj" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0;
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/engine/break_room{
- name = "Engineering Hallway"
- })
-"cok" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/light{
- dir = 4
- },
-/turf/open/floor/plasteel/yellow/side{
- tag = "icon-yellow (EAST)";
- icon_state = "yellow";
- dir = 4
- },
-/area/engine/break_room{
- name = "Engineering Hallway"
- })
-"col" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/closed/wall,
-/area/maintenance/aft)
-"com" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/disposalpipe/junction{
- tag = "icon-pipe-y (WEST)";
- icon_state = "pipe-y";
- dir = 8
- },
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"con" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- req_access_txt = 1
- },
-/obj/machinery/suit_storage_unit/engine,
-/turf/open/floor/plasteel/yellow/side{
- tag = "icon-yellow (WEST)";
- icon_state = "yellow";
- dir = 8
- },
-/area/engine/break_room)
-"coo" = (
-/obj/machinery/light{
- dir = 4
- },
-/turf/open/floor/plasteel/yellow/side{
- tag = "icon-yellow (EAST)";
- icon_state = "yellow";
- dir = 4
- },
-/area/engine/break_room)
-"cop" = (
-/obj/structure/fireaxecabinet{
- pixel_x = -30
- },
-/obj/machinery/camera/autoname{
- tag = "icon-camera (EAST)";
- icon_state = "camera";
- dir = 4
- },
-/turf/open/floor/plasteel{
- icon_state = "delivery";
- name = "floor"
- },
-/area/atmos)
-"coq" = (
-/obj/machinery/suit_storage_unit/atmos,
-/turf/open/floor/plasteel{
- icon_state = "delivery";
- name = "floor"
- },
-/area/atmos)
-"cor" = (
-/obj/structure/sign/nosmoking_2,
-/turf/closed/wall,
-/area/atmos)
-"cos" = (
-/obj/machinery/atmospherics/pipe/manifold/general/visible{
- dir = 4;
- initialize_directions = 11
- },
-/obj/machinery/meter,
-/turf/open/floor/plasteel,
-/area/atmos)
-"cot" = (
-/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")
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"cou" = (
-/obj/machinery/air_sensor{
- frequency = 1441;
- id_tag = "tox_sensor"
- },
-/turf/open/floor/engine/plasma,
-/area/atmos)
-"cov" = (
-/obj/machinery/portable_atmospherics/canister/toxins,
-/turf/open/floor/engine/plasma,
-/area/atmos)
-"cow" = (
-/obj/machinery/light/small{
- dir = 4
- },
-/turf/open/floor/engine/plasma,
-/area/atmos)
-"cox" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/light{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"coy" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/yellow/side{
- dir = 8
- },
-/area/engine/break_room{
- name = "Engineering Hallway"
- })
-"coz" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plating,
-/area/engine/break_room{
- name = "Engineering Hallway"
- })
-"coA" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0;
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/engine/break_room{
- name = "Engineering Hallway"
- })
-"coB" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 8;
- initialize_directions = 11
- },
-/obj/machinery/suit_storage_unit/engine,
-/turf/open/floor/plasteel/yellow/side{
- tag = "icon-yellow (WEST)";
- icon_state = "yellow";
- dir = 8
- },
-/area/engine/break_room)
-"coC" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/engine/break_room)
-"coD" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/engine/break_room)
-"coE" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 8;
- name = "regular air vent";
- on = 1
- },
-/turf/open/floor/plasteel,
-/area/engine/break_room)
-"coF" = (
-/turf/open/floor/plasteel/yellow/corner{
- tag = "icon-yellowcorner (EAST)";
- icon_state = "yellowcorner";
- dir = 4
- },
-/area/engine/break_room)
-"coG" = (
-/obj/structure/closet/toolcloset,
-/turf/open/floor/plasteel/yellow/side{
- tag = "icon-yellow (NORTHEAST)";
- icon_state = "yellow";
- dir = 5
- },
-/area/engine/break_room)
-"coH" = (
-/obj/machinery/power/apc{
- dir = 8;
- name = "Atmospherics APC";
- pixel_x = -24
- },
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/turf/open/floor/plasteel{
- icon_state = "dark"
- },
-/area/atmos)
-"coI" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0;
- tag = ""
- },
-/turf/open/floor/plasteel{
- icon_state = "delivery";
- name = "floor"
- },
-/area/atmos)
-"coJ" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"coK" = (
-/obj/machinery/atmospherics/pipe/manifold/general/visible{
- dir = 4;
- initialize_directions = 11
- },
-/obj/item/wrench,
-/turf/open/floor/plasteel,
-/area/atmos)
-"coL" = (
-/obj/machinery/atmospherics/pipe/manifold/general/visible{
- dir = 8
- },
-/obj/machinery/meter,
-/turf/open/floor/plasteel,
-/area/atmos)
-"coM" = (
-/obj/machinery/atmospherics/components/trinary/filter{
- dir = 1;
- filter_type = "plasma";
- on = 1
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"coN" = (
-/obj/machinery/atmospherics/pipe/simple/green/visible{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 6
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"coO" = (
-/obj/machinery/atmospherics/components/unary/outlet_injector/on{
- dir = 8;
- frequency = 1441;
- id = "tox_in";
- pixel_y = 1
- },
-/turf/open/floor/engine/plasma,
-/area/atmos)
-"coP" = (
-/obj/structure/grille,
-/obj/structure/lattice,
-/turf/open/space,
-/area/space)
-"coQ" = (
-/obj/structure/grille{
- density = 0;
- icon_state = "brokengrille"
- },
-/obj/structure/lattice,
-/turf/open/space,
-/area/space)
-"coR" = (
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/pod_2)
-"coS" = (
-/obj/structure/shuttle/engine/propulsion/burst{
- dir = 4;
- icon_state = "propulsion";
- tag = "icon-propulsion (WEST)"
- },
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/pod_2)
-"coT" = (
-/obj/machinery/light{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"coU" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"coV" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- req_access_txt = 1
- },
-/obj/machinery/suit_storage_unit/atmos,
-/turf/open/floor/plasteel/green/side{
- dir = 10
- },
-/area/engine/break_room)
-"coW" = (
-/obj/machinery/camera/autoname{
- tag = "icon-camera (SOUTHWEST)";
- icon_state = "camera";
- dir = 10
- },
-/turf/open/floor/plasteel/green/side,
-/area/engine/break_room)
-"coX" = (
-/obj/machinery/suit_storage_unit/engine,
-/turf/open/floor/plasteel/orange/side,
-/area/engine/break_room)
-"coY" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- req_access_txt = 1
- },
-/turf/open/floor/plasteel/yellow/corner{
- tag = "icon-yellowcorner (WEST)";
- icon_state = "yellowcorner";
- dir = 8
- },
-/area/engine/break_room)
-"coZ" = (
-/turf/open/floor/plasteel/yellow/corner,
-/area/engine/break_room)
-"cpa" = (
-/turf/open/floor/plasteel/yellow/side,
-/area/engine/break_room)
-"cpb" = (
-/obj/structure/closet/radiation,
-/turf/open/floor/plasteel/yellow/side{
- tag = "icon-yellow (SOUTHEAST)";
- icon_state = "yellow";
- dir = 6
- },
-/area/engine/break_room)
-"cpc" = (
-/obj/structure/closet/wardrobe/atmospherics_yellow,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 6
- },
-/turf/open/floor/plasteel{
- icon_state = "dark"
- },
-/area/atmos)
-"cpd" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 8;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel{
- icon_state = "delivery";
- name = "floor"
- },
-/area/atmos)
-"cpe" = (
-/obj/machinery/requests_console{
- department = "Atmospherics";
- departmentType = 4;
- name = "Atmos RC";
- pixel_x = 30;
- pixel_y = 0
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
-/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"cpf" = (
-/obj/machinery/light{
- icon_state = "tube1";
- dir = 8
- },
-/obj/machinery/camera{
- c_tag = "Atmospherics Central";
- dir = 4;
- network = list("SS13")
- },
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 0;
- name = "Port to Filter";
- on = 0
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"cpg" = (
-/obj/machinery/atmospherics/pipe/manifold/general/visible{
- dir = 8
- },
-/obj/structure/chair/stool,
-/turf/open/floor/plasteel,
-/area/atmos)
-"cph" = (
-/obj/machinery/atmospherics/components/unary/thermomachine/heater{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"cpi" = (
-/obj/structure/grille,
-/obj/structure/window/shuttle,
-/turf/open/floor/plating,
-/area/shuttle/pod_2)
-"cpj" = (
-/obj/machinery/computer/shuttle/pod{
- pixel_x = 0;
- pixel_y = -32;
- possible_destinations = "pod_asteroid2";
- shuttleId = "pod2"
- },
-/obj/structure/chair{
- dir = 8
- },
-/obj/machinery/status_display{
- density = 0;
- layer = 3;
- pixel_x = 0;
- pixel_y = 32
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/pod_2)
-"cpk" = (
-/obj/item/storage/pod{
- pixel_x = 6;
- pixel_y = -28
- },
-/obj/item/device/radio/intercom{
- pixel_x = 0;
- pixel_y = 25
- },
-/obj/structure/chair{
- dir = 8
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/pod_2)
-"cpl" = (
-/obj/machinery/door/airlock/titanium{
- name = "Escape Pod Airlock"
- },
-/obj/docking_port/mobile/pod{
- dir = 8;
- id = "pod2";
- name = "escape pod 2";
- port_angle = 180
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/pod_2)
-"cpm" = (
-/obj/machinery/door/airlock/external{
- cyclelinkeddir = 1;
- name = "Escape Pod Two"
- },
-/turf/open/floor/plating,
-/area/hallway/secondary/entry)
-"cpn" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/light/small{
- dir = 8
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/yellow/side{
- dir = 8
- },
-/area/engine/break_room{
- name = "Engineering Hallway"
- })
-"cpo" = (
-/obj/structure/reagent_dispensers/watertank,
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"cpp" = (
-/obj/structure/reagent_dispensers/fueltank,
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"cpq" = (
-/obj/machinery/portable_atmospherics/canister/air,
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"cpr" = (
-/mob/living/simple_animal/bot/floorbot,
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"cps" = (
-/turf/closed/wall/r_wall,
-/area/maintenance/atmos_control)
-"cpt" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- req_access_txt = 1
- },
-/turf/closed/wall/r_wall,
-/area/maintenance/atmos_control)
-"cpu" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- req_access_txt = 1
- },
-/turf/open/floor/plasteel/yellow/side{
- tag = "icon-yellow (SOUTHWEST)";
- icon_state = "yellow";
- dir = 10
- },
-/area/engine/break_room)
-"cpv" = (
-/obj/machinery/portable_atmospherics/canister/oxygen,
-/turf/open/floor/plasteel/yellow/side{
- tag = "icon-yellow (SOUTHEAST)";
- icon_state = "yellow";
- dir = 6
- },
-/area/engine/break_room)
-"cpw" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel{
- icon_state = "dark"
- },
-/area/atmos)
-"cpx" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
-/turf/open/floor/plasteel,
-/area/atmos)
-"cpy" = (
-/obj/structure/closet/wardrobe/atmospherics_yellow,
-/turf/open/floor/plasteel,
-/area/atmos)
-"cpz" = (
-/obj/machinery/space_heater,
-/obj/effect/turf_decal/stripes/line{
- dir = 10
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"cpA" = (
-/obj/machinery/space_heater,
-/obj/effect/turf_decal/stripes/line{
- dir = 6
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"cpB" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"cpC" = (
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 8;
- name = "Port to Filter";
- on = 0
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"cpD" = (
-/obj/machinery/atmospherics/pipe/manifold/general/visible,
-/obj/item/cigbutt,
-/turf/open/floor/plasteel,
-/area/atmos)
-"cpE" = (
-/obj/machinery/atmospherics/components/unary/thermomachine/freezer{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"cpF" = (
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 8;
- name = "CO2 Outlet Pump";
- on = 0
- },
-/turf/open/floor/plasteel/yellow/side{
- dir = 5
- },
-/area/atmos)
-"cpG" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 8;
- external_pressure_bound = 0;
- frequency = 1441;
- id_tag = "co2_out";
- initialize_directions = 1;
- internal_pressure_bound = 4000;
- on = 1;
- pressure_checks = 2;
- pump_direction = 0
- },
-/turf/open/floor/engine/co2,
-/area/atmos)
-"cpH" = (
-/turf/open/floor/engine/co2,
-/area/atmos)
-"cpI" = (
-/obj/machinery/camera{
- c_tag = "Arrivals Escape Pod 2";
- dir = 8
- },
-/obj/machinery/light/small,
-/turf/open/floor/plating,
-/area/hallway/secondary/entry)
-"cpJ" = (
-/obj/machinery/airalarm{
- dir = 1;
- pixel_y = -22
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"cpK" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4";
- tag = ""
- },
-/turf/open/floor/plasteel/yellow,
-/area/engine/break_room{
- name = "Engineering Hallway"
- })
-"cpL" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/turf/open/floor/plasteel/yellow,
-/area/engine/break_room{
- name = "Engineering Hallway"
- })
-"cpM" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0;
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/yellow/side,
-/area/engine/break_room{
- name = "Engineering Hallway"
- })
-"cpN" = (
-/turf/open/floor/plasteel/yellow/side{
- tag = "icon-yellow (SOUTHEAST)";
- icon_state = "yellow";
- dir = 6
- },
-/area/engine/break_room{
- name = "Engineering Hallway"
- })
-"cpO" = (
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"cpP" = (
-/obj/structure/cable{
- icon_state = "2-4";
- tag = "icon-2-8"
- },
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"cpQ" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0;
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 6
- },
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"cpR" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0;
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"cpS" = (
-/obj/structure/cable{
- tag = "icon-2-8";
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"cpT" = (
-/obj/structure/grille,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/atmos_control)
-"cpU" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 9
- },
-/obj/structure/closet/crate{
- name = "solar pack crate"
- },
-/turf/open/floor/plating,
-/area/maintenance/atmos_control)
-"cpV" = (
-/obj/machinery/light/small{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/maintenance/atmos_control)
-"cpW" = (
-/obj/item/storage/backpack/industrial,
-/turf/open/floor/plating,
-/area/maintenance/atmos_control)
-"cpX" = (
-/turf/closed/wall/r_wall,
-/area/maintenance/aft)
-"cpY" = (
-/obj/machinery/door/airlock/maintenance{
- name = "Storage Room";
- req_access_txt = "32"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"cpZ" = (
-/obj/structure/disposalpipe/trunk,
-/obj/machinery/disposal/bin,
-/turf/open/floor/plasteel{
- icon_state = "dark"
- },
-/area/atmos)
-"cqa" = (
-/turf/open/floor/plasteel{
- icon_state = "dark"
- },
-/area/atmos)
-"cqb" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
- dir = 5
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"cqc" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{
- dir = 1
- },
-/obj/machinery/meter,
-/turf/open/floor/plasteel,
-/area/atmos)
-"cqd" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"cqe" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
- dir = 9
- },
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plasteel,
-/area/atmos)
-"cqf" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/visible{
- dir = 6;
- initialize_directions = 6
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"cqg" = (
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 4;
- name = "N2 to Pure";
- on = 0
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"cqh" = (
-/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/atmos)
-"cqi" = (
-/obj/machinery/air_sensor{
- frequency = 1441;
- id_tag = "co2_sensor"
- },
-/turf/open/floor/engine/co2,
-/area/atmos)
-"cqj" = (
-/obj/machinery/portable_atmospherics/canister/carbon_dioxide,
-/turf/open/floor/engine/co2,
-/area/atmos)
-"cqk" = (
-/obj/machinery/light/small{
- dir = 4
- },
-/turf/open/floor/engine/co2,
-/area/atmos)
-"cql" = (
-/obj/structure/lattice,
-/obj/structure/grille,
-/turf/open/space,
-/area/space)
-"cqm" = (
-/turf/closed/wall,
-/area/mining_construction)
-"cqn" = (
-/turf/closed/wall/r_wall,
-/area/engine/engineering)
-"cqo" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- req_access_txt = 1
- },
-/turf/closed/wall/r_wall,
-/area/engine/engineering)
-"cqp" = (
-/obj/machinery/door/airlock/glass_engineering{
- name = "Power Monitoring";
- req_access_txt = "32"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/yellow,
-/area/engine/engineering)
-"cqq" = (
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/turf/closed/wall,
-/area/engine/break_room{
- name = "Engineering Hallway"
- })
-"cqr" = (
-/obj/machinery/light{
- dir = 8
- },
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plasteel/yellow,
-/area/engine/break_room{
- name = "Engineering Hallway"
- })
-"cqs" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0;
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plasteel/yellow,
-/area/engine/break_room{
- name = "Engineering Hallway"
- })
-"cqt" = (
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plasteel/yellow,
-/area/engine/break_room{
- name = "Engineering Hallway"
- })
-"cqu" = (
-/obj/structure/rack{
- dir = 8;
- layer = 2.9
- },
-/obj/item/storage/belt/utility,
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"cqv" = (
-/obj/structure/cable{
- tag = "icon-1-2";
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"cqw" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"cqx" = (
-/obj/machinery/light/small,
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"cqy" = (
-/obj/structure/grille,
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"cqz" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0;
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/turf/open/floor/plating,
-/area/maintenance/atmos_control)
-"cqA" = (
-/obj/structure/grille,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/atmos_control)
-"cqB" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/atmos_control)
-"cqC" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0;
- tag = ""
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/landmark{
- name = "blobstart"
- },
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"cqD" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0;
- tag = ""
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"cqE" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0;
- tag = ""
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- req_access_txt = 1
- },
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"cqF" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0;
- tag = ""
- },
-/obj/machinery/door/airlock/maintenance{
- name = "Atmospherics Maintenance";
- req_access_txt = "24"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"cqG" = (
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/turf/open/floor/plasteel{
- icon_state = "dark"
- },
-/area/atmos)
-"cqH" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel{
- icon_state = "delivery";
- name = "floor"
- },
-/area/atmos)
-"cqI" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/visible{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
-/turf/open/floor/plasteel,
-/area/atmos)
-"cqJ" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/visible{
- dir = 4
- },
-/obj/machinery/meter,
-/turf/open/floor/plasteel,
-/area/atmos)
-"cqK" = (
-/obj/machinery/atmospherics/pipe/manifold/cyan/visible,
-/turf/open/floor/plasteel,
-/area/atmos)
-"cqL" = (
-/obj/machinery/atmospherics/components/trinary/mixer{
- dir = 4;
- node1_concentration = 0.8;
- node2_concentration = 0.2;
- on = 1;
- pixel_x = 0;
- pixel_y = 0;
- target_pressure = 4500
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"cqM" = (
-/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/atmos)
-"cqN" = (
-/obj/machinery/atmospherics/components/trinary/filter{
- dir = 1;
- filter_type = "co2";
- on = 1
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"cqO" = (
-/obj/machinery/atmospherics/pipe/simple/green/visible{
- dir = 4
- },
-/turf/open/floor/plasteel/yellow/side{
- dir = 6
- },
-/area/atmos)
-"cqP" = (
-/obj/machinery/atmospherics/components/unary/outlet_injector/on{
- dir = 8;
- frequency = 1441;
- id = "co2_in";
- pixel_y = 1
- },
-/turf/open/floor/engine/co2,
-/area/atmos)
-"cqQ" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 9
- },
-/turf/open/floor/plating,
-/area/shuttle/auxillary_base)
-"cqR" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/shuttle/auxillary_base)
-"cqS" = (
-/obj/structure/closet/secure_closet/miner{
- locked = 0
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 5
- },
-/turf/open/floor/plating,
-/area/shuttle/auxillary_base)
-"cqT" = (
-/obj/machinery/computer/arcade,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"cqU" = (
-/obj/machinery/light/small{
- dir = 8
- },
-/obj/machinery/computer/station_alert,
-/turf/open/floor/plasteel/yellow/side{
- tag = "icon-yellow (NORTHWEST)";
- icon_state = "yellow";
- dir = 9
- },
-/area/engine/engineering)
-"cqV" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 4;
- name = "regular air scrubber";
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/turf/open/floor/plasteel/yellow/side{
- tag = "icon-yellow (NORTH)";
- icon_state = "yellow";
- dir = 1
- },
-/area/engine/engineering)
-"cqW" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/item/device/radio/intercom{
- name = "Station Intercom";
- pixel_x = 0;
- pixel_y = 24
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0;
- tag = ""
- },
-/turf/open/floor/plasteel/yellow/side{
- tag = "icon-yellow (NORTH)";
- icon_state = "yellow";
- dir = 1
- },
-/area/engine/engineering)
-"cqX" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/machinery/camera/autoname,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- req_access_txt = 1
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0;
- tag = ""
- },
-/turf/open/floor/plasteel/yellow/side{
- tag = "icon-yellow (NORTH)";
- icon_state = "yellow";
- dir = 1
- },
-/area/engine/engineering)
-"cqY" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8";
- tag = ""
- },
-/turf/open/floor/plasteel/yellow/side{
- tag = "icon-yellow (NORTHEAST)";
- icon_state = "yellow";
- dir = 5
- },
-/area/engine/engineering)
-"cqZ" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 9
- },
-/turf/open/floor/plating,
-/area/engine/engineering)
-"cra" = (
-/obj/structure/disposalpipe/segment,
-/turf/closed/wall/r_wall,
-/area/engine/engineering)
-"crb" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0;
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/engineering{
- name = "Engine Room";
- req_access_txt = "10"
- },
-/turf/open/floor/plasteel/yellow,
-/area/engine/engineering)
-"crc" = (
-/obj/structure/cable{
- tag = "icon-1-2";
- icon_state = "1-2"
- },
-/obj/machinery/door/airlock/maintenance{
- name = "Engine Maintenance";
- req_access_txt = "10"
- },
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"crd" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/closed/wall/r_wall,
-/area/engine/engineering)
-"cre" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4";
- tag = "90Curve"
- },
-/obj/machinery/power/apc{
- dir = 8;
- name = "Engineering Maintenance APC";
- pixel_x = -25;
- pixel_y = 1
- },
-/obj/structure/cable,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"crf" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0;
- tag = ""
- },
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"crg" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"crh" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 5
- },
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"cri" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating{
- tag = "icon-platingdmg3";
- icon_state = "platingdmg3"
- },
-/area/maintenance/aft)
-"crj" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/reagent_dispensers/watertank,
-/turf/open/floor/plasteel{
- icon_state = "dark"
- },
-/area/atmos)
-"crk" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/reagent_dispensers/watertank,
-/turf/open/floor/plasteel{
- icon_state = "delivery";
- name = "floor"
- },
-/area/atmos)
-"crl" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/atmos)
-"crm" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/visible,
-/turf/open/floor/plasteel,
-/area/atmos)
-"crn" = (
-/obj/machinery/atmospherics/components/binary/valve/digital{
- name = "Waste Release"
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"cro" = (
-/obj/machinery/light{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/visible{
- dir = 6
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"crp" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/atmospherics/pipe/simple/cyan/visible{
- dir = 9
- },
-/turf/open/floor/plating,
-/area/atmos)
-"crq" = (
-/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/auxstarboard{
- name = "Auxiliary Solar Array"
- })
-"crr" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/structure/lattice/catwalk,
-/turf/open/space,
-/area/solar/auxstarboard{
- name = "Auxiliary Solar Array"
- })
-"crs" = (
-/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/auxstarboard{
- name = "Auxiliary Solar Array"
- })
-"crt" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/shuttle/auxillary_base)
-"cru" = (
-/turf/open/floor/plating,
-/area/shuttle/auxillary_base)
-"crv" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/shuttle/auxillary_base)
-"crw" = (
-/obj/machinery/vending/cola,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"crx" = (
-/obj/machinery/computer/monitor{
- name = "primary power monitoring console"
- },
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/turf/open/floor/plasteel/yellow/side{
- tag = "icon-yellow (SOUTHWEST)";
- icon_state = "yellow";
- dir = 10
- },
-/area/engine/engineering)
-"cry" = (
-/obj/structure/chair/office/dark{
- dir = 8
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8";
- tag = ""
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
- },
-/turf/open/floor/plasteel/yellow/side,
-/area/engine/engineering)
-"crz" = (
-/obj/structure/cable/yellow{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 4;
- name = "regular air vent";
- on = 1
- },
-/turf/open/floor/plasteel/yellow/side,
-/area/engine/engineering)
-"crA" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8";
- d1 = 4;
- d2 = 8
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
-/turf/open/floor/plasteel/yellow/side,
-/area/engine/engineering)
-"crB" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8";
- d1 = 4;
- d2 = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- tag = "icon-intact (EAST)";
- icon_state = "intact";
- dir = 4
- },
-/turf/open/floor/plasteel/yellow/side{
- tag = "icon-yellow (SOUTHEAST)";
- icon_state = "yellow";
- dir = 6
- },
-/area/engine/engineering)
-"crC" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8";
- d1 = 4;
- d2 = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/yellow,
-/area/engine/engineering)
-"crD" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8";
- d1 = 4;
- d2 = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/door/airlock/glass_engineering{
- name = "Power Monitoring";
- req_access_txt = "32"
- },
-/turf/open/floor/plasteel/yellow,
-/area/engine/engineering)
-"crE" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8";
- d1 = 4;
- d2 = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/yellow/side{
- tag = "icon-yellow (NORTHWEST)";
- icon_state = "yellow";
- dir = 9
- },
-/area/engine/engineering)
-"crF" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8";
- d1 = 4;
- d2 = 8
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 1
- },
-/obj/machinery/camera/autoname,
-/turf/open/floor/plasteel/yellow/side{
- tag = "icon-yellow (NORTH)";
- icon_state = "yellow";
- dir = 1
- },
-/area/engine/engineering)
-"crG" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8";
- d1 = 4;
- d2 = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/light{
- dir = 1
- },
-/obj/structure/rack,
-/obj/item/clothing/mask/gas,
-/obj/item/clothing/mask/gas,
-/turf/open/floor/plasteel/yellow/side{
- tag = "icon-yellow (NORTH)";
- icon_state = "yellow";
- dir = 1
- },
-/area/engine/engineering)
-"crH" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8";
- d1 = 4;
- d2 = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/rack,
-/obj/item/clothing/head/welding,
-/obj/item/clothing/glasses/welding,
-/obj/item/clothing/glasses/welding,
-/turf/open/floor/plasteel/yellow/side{
- tag = "icon-yellow (NORTH)";
- icon_state = "yellow";
- dir = 1
- },
-/area/engine/engineering)
-"crI" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8";
- d1 = 4;
- d2 = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/airalarm{
- frequency = 1439;
- locked = 0;
- pixel_y = 23
- },
-/obj/structure/rack,
-/obj/item/storage/belt/utility,
-/turf/open/floor/plasteel/yellow/side{
- dir = 5
- },
-/area/engine/engineering)
-"crJ" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8";
- d1 = 4;
- d2 = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/engine/engineering)
-"crK" = (
-/obj/structure/cable/yellow{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/disposalpipe/trunk{
- dir = 1
- },
-/obj/machinery/disposal/bin,
-/turf/open/floor/plasteel/yellow,
-/area/engine/engineering)
-"crL" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/yellow/side{
- tag = "icon-yellow (NORTH)";
- icon_state = "yellow";
- dir = 1
- },
-/area/engine/engineering)
-"crM" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8";
- tag = ""
- },
-/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";
- pixel_x = 0
- },
-/turf/open/floor/plasteel/yellow/side{
- tag = "icon-yellow (NORTH)";
- icon_state = "yellow";
- dir = 1
- },
-/area/engine/engineering)
-"crN" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 1
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/obj/structure/chair/office/dark{
- dir = 4
- },
-/turf/open/floor/plasteel/yellow/side{
- tag = "icon-yellow (NORTH)";
- icon_state = "yellow";
- dir = 1
- },
-/area/engine/engineering)
-"crO" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/computer/station_alert,
-/obj/structure/cable{
- tag = "icon-0-8";
- icon_state = "0-8"
- },
-/turf/open/floor/plasteel/yellow,
-/area/engine/engineering)
-"crP" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/engine/engineering)
-"crQ" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/closet/secure_closet/engineering_personal,
-/turf/open/floor/plasteel/yellow/side{
- dir = 9
- },
-/area/engine/engineering)
-"crR" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/light{
- dir = 1
- },
-/obj/structure/closet/secure_closet/engineering_personal,
-/turf/open/floor/plasteel/yellow/side{
- tag = "icon-yellow (NORTH)";
- icon_state = "yellow";
- dir = 1
- },
-/area/engine/engineering)
-"crS" = (
-/obj/structure/cable{
- tag = "icon-1-2";
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/yellow/side{
- tag = "icon-yellow (NORTH)";
- icon_state = "yellow";
- dir = 1
- },
-/area/engine/engineering)
-"crT" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 4
- },
-/obj/structure/closet/wardrobe/engineering_yellow,
-/turf/open/floor/plasteel/yellow/side{
- tag = "icon-yellow (NORTH)";
- icon_state = "yellow";
- dir = 1
- },
-/area/engine/engineering)
-"crU" = (
-/obj/structure/reagent_dispensers/watertank,
-/turf/open/floor/plasteel/yellow/side{
- tag = "icon-yellow (NORTHEAST)";
- icon_state = "yellow";
- dir = 5
- },
-/area/engine/engineering)
-"crV" = (
-/obj/machinery/power/port_gen/pacman,
-/turf/open/floor/plasteel{
- tag = "icon-vault (WEST)";
- icon_state = "vault";
- dir = 8
- },
-/area/engine/engineering)
-"crW" = (
-/obj/machinery/portable_atmospherics/scrubber/huge/movable,
-/turf/open/floor/plasteel{
- tag = "icon-vault (WEST)";
- icon_state = "vault";
- dir = 8
- },
-/area/engine/engineering)
-"crX" = (
-/obj/machinery/portable_atmospherics/canister/toxins,
-/turf/open/floor/plasteel{
- tag = "icon-vault (WEST)";
- icon_state = "vault";
- dir = 8
- },
-/area/engine/engineering)
-"crY" = (
-/obj/machinery/portable_atmospherics/canister/oxygen,
-/turf/open/floor/plasteel{
- icon_state = "dark"
- },
-/area/engine/engineering)
-"crZ" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 5
- },
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"csa" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"csb" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/closed/wall,
-/area/maintenance/aft)
-"csc" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/structure/reagent_dispensers/fueltank,
-/turf/open/floor/plasteel{
- icon_state = "dark"
- },
-/area/atmos)
-"csd" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/structure/reagent_dispensers/fueltank,
-/turf/open/floor/plasteel{
- icon_state = "delivery";
- name = "floor"
- },
-/area/atmos)
-"cse" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 9
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"csf" = (
-/obj/machinery/atmospherics/components/trinary/filter{
- dir = 2;
- filter_type = "n2";
- on = 1
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"csg" = (
-/obj/machinery/atmospherics/components/unary/portables_connector/visible{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"csh" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/visible{
- dir = 9
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"csi" = (
-/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"
- },
-/obj/structure/lattice/catwalk,
-/turf/open/space,
-/area/solar/auxstarboard{
- name = "Auxiliary Solar Array"
- })
-"csj" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/mining_construction)
-"csk" = (
-/obj/machinery/vending/snack,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"csl" = (
-/turf/closed/wall/r_wall,
-/area/engine/engine_smes)
-"csm" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/engine/engine_smes)
-"csn" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/structure/cable{
- tag = "icon-1-2";
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/engine/engine_smes)
-"cso" = (
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/door/airlock/glass_engineering{
- name = "Power Monitoring";
- req_access_txt = "32"
- },
-/turf/open/floor/plasteel{
- icon_state = "dark"
- },
-/area/engine/engine_smes)
-"csp" = (
-/turf/closed/wall,
-/area/engine/engine_smes)
-"csq" = (
-/obj/item/device/radio/intercom{
- dir = 8;
- pixel_x = -28
- },
-/turf/open/floor/plasteel/yellow/side{
- tag = "icon-yellow (WEST)";
- icon_state = "yellow";
- dir = 8
- },
-/area/engine/engineering)
-"csr" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"css" = (
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"cst" = (
-/obj/structure/cable/yellow{
- icon_state = "1-4";
- d1 = 1;
- d2 = 4
- },
-/obj/structure/closet/secure_closet/engineering_personal,
-/turf/open/floor/plasteel/yellow,
-/area/engine/engineering)
-"csu" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8";
- d1 = 4;
- d2 = 8
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0;
- tag = ""
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"csv" = (
-/obj/structure/cable/yellow{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"csw" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- tag = "icon-vent_map (NORTH)";
- name = "regular air vent";
- icon_state = "vent_map";
- dir = 1;
- on = 1
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"csx" = (
-/obj/machinery/computer/monitor,
-/turf/open/floor/plasteel/yellow,
-/area/engine/engineering)
-"csy" = (
-/turf/open/floor/plasteel/yellow/side{
- dir = 8
- },
-/area/engine/engineering)
-"csz" = (
-/obj/structure/cable{
- tag = "icon-1-2";
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"csA" = (
-/obj/machinery/door/poddoor{
- id = "Secure Storage";
- name = "secure storage"
- },
-/turf/open/floor/plating,
-/area/engine/engineering)
-"csB" = (
-/turf/open/floor/plasteel{
- icon_state = "dark"
- },
-/area/engine/engineering)
-"csC" = (
-/obj/machinery/light/small{
- dir = 4
- },
-/obj/structure/tank_dispenser,
-/turf/open/floor/plasteel{
- icon_state = "dark"
- },
-/area/engine/engineering)
-"csD" = (
-/obj/machinery/portable_atmospherics/scrubber,
-/obj/machinery/camera/autoname{
- tag = "icon-camera (EAST)";
- icon_state = "camera";
- dir = 4
- },
-/turf/open/floor/plasteel{
- icon_state = "dark"
- },
-/area/atmos)
-"csE" = (
-/obj/machinery/portable_atmospherics/scrubber,
-/turf/open/floor/plasteel{
- icon_state = "delivery";
- name = "floor"
- },
-/area/atmos)
-"csF" = (
-/obj/machinery/atmospherics/pipe/simple/green/visible,
-/obj/machinery/portable_atmospherics/pump,
-/turf/open/floor/plasteel,
-/area/atmos)
-"csG" = (
-/obj/machinery/atmospherics/pipe/simple/green/visible{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/visible,
-/turf/open/floor/plasteel,
-/area/atmos)
-"csH" = (
-/obj/machinery/atmospherics/pipe/simple/green/visible{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
-/turf/open/floor/plasteel,
-/area/atmos)
-"csI" = (
-/obj/machinery/atmospherics/components/trinary/filter{
- dir = 4;
- filter_type = "o2";
- on = 1
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"csJ" = (
-/obj/machinery/atmospherics/pipe/simple/green/visible{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"csK" = (
-/obj/machinery/atmospherics/pipe/simple/green/visible{
- dir = 4;
- initialize_directions = 12
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"csL" = (
-/obj/machinery/atmospherics/pipe/simple/green/visible{
- dir = 9
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"csM" = (
-/obj/machinery/light,
-/turf/open/floor/plating,
-/area/shuttle/auxillary_base)
-"csN" = (
-/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 = 0;
- pixel_y = 32
- },
-/turf/open/floor/plating,
-/area/mining_construction)
-"csO" = (
-/obj/structure/closet/toolcloset,
-/turf/open/floor/plasteel/yellow/side{
- dir = 9
- },
-/area/mining_construction)
-"csP" = (
-/obj/structure/closet/toolcloset,
-/turf/open/floor/plasteel/yellow/side{
- dir = 1
- },
-/area/mining_construction)
-"csQ" = (
-/obj/structure/reagent_dispensers/fueltank,
-/turf/open/floor/plasteel/yellow/side{
- dir = 5
- },
-/area/mining_construction)
-"csR" = (
-/obj/structure/chair{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"csS" = (
-/obj/structure/table,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"csT" = (
-/obj/machinery/power/apc{
- dir = 8;
- name = "SMES Room APC";
- pixel_x = -24;
- pixel_y = 0
- },
-/obj/structure/cable{
- tag = "icon-0-4";
- icon_state = "0-4"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/turf/open/floor/plasteel{
- icon_state = "dark"
- },
-/area/engine/engine_smes)
-"csU" = (
-/obj/structure/cable{
- tag = "icon-1-8";
- icon_state = "1-8"
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel{
- icon_state = "dark"
- },
-/area/engine/engine_smes)
-"csV" = (
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel{
- icon_state = "dark"
- },
-/area/engine/engine_smes)
-"csW" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel{
- icon_state = "dark"
- },
-/area/engine/engine_smes)
-"csX" = (
-/obj/structure/cable{
- tag = "icon-2-8";
- icon_state = "2-8"
- },
-/turf/open/floor/plasteel{
- icon_state = "dark"
- },
-/area/engine/engine_smes)
-"csY" = (
-/obj/structure/table,
-/obj/item/device/flashlight,
-/turf/open/floor/plasteel/yellow/side{
- dir = 9
- },
-/area/engine/engineering)
-"csZ" = (
-/turf/open/floor/plasteel/yellow/side{
- dir = 1
- },
-/area/engine/engineering)
-"cta" = (
-/turf/open/floor/plasteel/yellow/corner{
- tag = "icon-yellowcorner (NORTH)";
- icon_state = "yellowcorner";
- dir = 1
- },
-/area/engine/engineering)
-"ctb" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 4;
- name = "regular air scrubber";
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"ctc" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/yellow/side{
- tag = "icon-yellow (EAST)";
- icon_state = "yellow";
- dir = 4
- },
-/area/engine/engineering)
-"ctd" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/machinery/door/airlock/engineering{
- name = "Engine Room";
- req_access_txt = "10"
- },
-/turf/open/floor/plasteel/yellow,
-/area/engine/engineering)
-"cte" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/yellow,
-/area/engine/engineering)
-"ctf" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0;
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"ctg" = (
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
-/obj/effect/landmark/start{
- name = "Station Engineer"
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"cth" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"cti" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/yellow/side{
- dir = 8
- },
-/area/engine/engineering)
-"ctj" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 8;
- name = "regular air scrubber";
- on = 1;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"ctk" = (
-/obj/structure/cable{
- tag = "icon-1-2";
- icon_state = "1-2"
- },
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"ctl" = (
-/obj/machinery/shieldgen,
-/turf/open/floor/plasteel{
- icon_state = "dark"
- },
-/area/engine/engineering)
-"ctm" = (
-/obj/machinery/portable_atmospherics/pump,
-/turf/open/floor/plasteel{
- icon_state = "dark"
- },
-/area/atmos)
-"ctn" = (
-/obj/machinery/portable_atmospherics/pump,
-/turf/open/floor/plasteel{
- icon_state = "delivery";
- name = "floor"
- },
-/area/atmos)
-"cto" = (
-/obj/machinery/atmospherics/pipe/simple/green/visible,
-/obj/machinery/portable_atmospherics/pump,
-/turf/open/floor/plasteel/red/side{
- dir = 10
- },
-/area/atmos)
-"ctp" = (
-/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/red/side,
-/area/atmos)
-"ctq" = (
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 1;
- name = "N2 Outlet Pump";
- on = 1
- },
-/turf/open/floor/plasteel/red/side{
- dir = 6
- },
-/area/atmos)
-"ctr" = (
-/obj/machinery/light,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
-/turf/open/floor/plasteel,
-/area/atmos)
-"cts" = (
-/obj/machinery/atmospherics/pipe/simple/green/visible,
-/turf/open/floor/plasteel/blue/side{
- dir = 10
- },
-/area/atmos)
-"ctt" = (
-/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/blue/side{
- dir = 0
- },
-/area/atmos)
-"ctu" = (
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 1;
- name = "O2 Outlet Pump";
- on = 1
- },
-/turf/open/floor/plasteel/blue/side{
- dir = 6
- },
-/area/atmos)
-"ctv" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/visible,
-/turf/open/floor/plasteel/arrival{
- dir = 10
- },
-/area/atmos)
-"ctw" = (
-/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/arrival,
-/area/atmos)
-"ctx" = (
-/obj/machinery/camera{
- c_tag = "Atmospherics South East";
- dir = 1
- },
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 1;
- name = "Air Outlet Pump";
- on = 1
- },
-/turf/open/floor/plasteel/arrival{
- dir = 6
- },
-/area/atmos)
-"cty" = (
-/obj/machinery/door/airlock/external{
- name = "Atmospherics External Airlock";
- req_access_txt = "24"
- },
-/turf/open/floor/noslip,
-/area/atmos)
-"ctz" = (
-/turf/open/floor/noslip,
-/area/atmos)
-"ctA" = (
-/obj/machinery/camera{
- c_tag = "Auxillary Mining Base";
- dir = 8;
- network = list("SS13","AuxBase")
- },
-/turf/open/floor/plating,
-/area/shuttle/auxillary_base)
-"ctB" = (
-/obj/docking_port/mobile/auxillary_base{
- dheight = 4;
- dir = 4;
- dwidth = 4;
- height = 9;
- width = 9
- },
-/obj/machinery/bluespace_beacon,
-/obj/machinery/computer/auxillary_base{
- pixel_y = 0
- },
-/turf/closed/wall,
-/area/shuttle/auxillary_base)
-"ctC" = (
-/obj/structure/mining_shuttle_beacon{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/shuttle/auxillary_base)
-"ctD" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/docking_port/stationary/public_mining_dock{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/shuttle/auxillary_base)
-"ctE" = (
-/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/mining_construction)
-"ctF" = (
-/turf/open/floor/plasteel/yellow/side{
- dir = 8
- },
-/area/mining_construction)
-"ctG" = (
-/turf/open/floor/plasteel,
-/area/mining_construction)
-"ctH" = (
-/obj/machinery/airalarm{
- dir = 8;
- icon_state = "alarm0";
- pixel_x = 24
- },
-/obj/machinery/light{
- icon_state = "tube1";
- dir = 4
- },
-/obj/machinery/camera{
- c_tag = "Auxillary Base Construction";
- dir = 8
- },
-/obj/machinery/computer/camera_advanced/base_construction,
-/turf/open/floor/plasteel/yellow/side{
- dir = 4
- },
-/area/mining_construction)
-"ctI" = (
-/obj/machinery/light{
- dir = 8
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4";
- tag = "90Curve"
- },
-/obj/structure/cable{
- tag = "icon-1-2";
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel{
- icon_state = "dark"
- },
-/area/engine/engine_smes)
-"ctJ" = (
-/obj/machinery/power/smes/engineering,
-/obj/structure/cable{
- tag = "icon-0-8";
- icon_state = "0-8"
- },
-/turf/open/floor/plasteel{
- tag = "icon-vault (WEST)";
- icon_state = "vault";
- dir = 8
- },
-/area/engine/engine_smes)
-"ctK" = (
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel{
- icon_state = "dark"
- },
-/area/engine/engine_smes)
-"ctL" = (
-/obj/machinery/power/smes/engineering,
-/obj/structure/cable{
- tag = "icon-0-4";
- icon_state = "0-4"
- },
-/turf/open/floor/plasteel{
- tag = "icon-vault (WEST)";
- icon_state = "vault";
- dir = 8
- },
-/area/engine/engine_smes)
-"ctM" = (
-/obj/machinery/light{
- dir = 4
- },
-/obj/structure/cable{
- tag = "icon-1-8";
- icon_state = "1-8"
- },
-/obj/structure/cable{
- tag = "icon-1-2";
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel{
- icon_state = "dark"
- },
-/area/engine/engine_smes)
-"ctN" = (
-/obj/machinery/power/apc{
- cell_type = 10000;
- dir = 8;
- name = "Engine Room APC";
- pixel_x = -26;
- pixel_y = 0
- },
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
- },
-/turf/open/floor/plasteel/yellow/side{
- tag = "icon-yellow (WEST)";
- icon_state = "yellow";
- dir = 8
- },
-/area/engine/engineering)
-"ctO" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4";
- tag = ""
- },
-/obj/structure/table,
-/obj/item/storage/toolbox,
-/obj/item/storage/toolbox,
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"ctP" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"ctQ" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/yellow/side{
- tag = "icon-yellow (EAST)";
- icon_state = "yellow";
- dir = 4
- },
-/area/engine/engineering)
-"ctR" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/engine/engineering)
-"ctS" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/closet/radiation,
-/turf/open/floor/plasteel/yellow,
-/area/engine/engineering)
-"ctT" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8";
- tag = ""
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 1;
- name = "regular air scrubber";
- on = 1
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"ctU" = (
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"ctV" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/table,
-/obj/item/clothing/gloves/color/yellow,
-/obj/item/reagent_containers/pill/charcoal,
-/turf/open/floor/plasteel/yellow,
-/area/engine/engineering)
-"ctW" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/table,
-/obj/item/storage/box/lights/mixed,
-/obj/machinery/camera/autoname{
- tag = "icon-camera (EAST)";
- icon_state = "camera";
- dir = 4
- },
-/turf/open/floor/plasteel/yellow/side{
- dir = 8
- },
-/area/engine/engineering)
-"ctX" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/cable{
- tag = "icon-1-8";
- icon_state = "1-8"
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"ctY" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"ctZ" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/structure/closet/secure_closet/engineering_electrical,
-/obj/machinery/button/door{
- desc = "A remote control-switch for secure storage.";
- id = "Secure Storage";
- name = "Engineering Secure Storage";
- pixel_x = 24;
- pixel_y = 0;
- req_access_txt = "11"
- },
-/turf/open/floor/plasteel/yellow/side{
- tag = "icon-yellow (EAST)";
- icon_state = "yellow";
- dir = 4
- },
-/area/engine/engineering)
-"cua" = (
-/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/electronics/airlock,
-/obj/item/electronics/airlock,
-/obj/item/stock_parts/cell/high{
- charge = 100;
- maxcharge = 15000
- },
-/obj/item/stack/sheet/mineral/plasma{
- amount = 30
- },
-/obj/item/device/gps,
-/obj/machinery/button/door{
- desc = "A remote control-switch for secure storage.";
- id = "Secure Storage";
- name = "Engineering Secure Storage";
- pixel_x = -24;
- pixel_y = 0;
- req_access_txt = "11"
- },
-/turf/open/floor/plasteel{
- icon_state = "dark"
- },
-/area/engine/engineering)
-"cub" = (
-/obj/machinery/shieldgen,
-/obj/machinery/camera/autoname{
- tag = "icon-camera (NORTHWEST)";
- icon_state = "camera";
- dir = 9
- },
-/turf/open/floor/plasteel{
- icon_state = "dark"
- },
-/area/engine/engineering)
-"cuc" = (
-/obj/machinery/atmospherics/pipe/simple/green/visible,
-/turf/closed/wall/r_wall,
-/area/atmos)
-"cud" = (
-/obj/structure/grille,
-/obj/machinery/atmospherics/pipe/simple/yellow/visible,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/atmos)
-"cue" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
-/turf/open/floor/plating,
-/area/atmos)
-"cuf" = (
-/obj/structure/grille,
-/obj/machinery/atmospherics/pipe/simple/green/visible,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/atmos)
-"cug" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/visible,
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/atmos)
-"cuh" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/visible,
-/turf/closed/wall/r_wall,
-/area/atmos)
-"cui" = (
-/obj/structure/lattice/catwalk,
-/turf/open/space,
-/area/space)
-"cuj" = (
-/turf/closed/wall/r_wall,
-/area/maintenance/auxsolarstarboard{
- name = "Auxiliary Solar Control"
- })
-"cuk" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating/airless,
-/area/maintenance/auxsolarstarboard{
- name = "Auxiliary Solar Control"
- })
-"cul" = (
-/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)
-"cum" = (
-/obj/machinery/light{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/shuttle/auxillary_base)
-"cun" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- on = 1
- },
-/turf/open/floor/plasteel/yellow/side{
- dir = 8
- },
-/area/mining_construction)
-"cuo" = (
-/obj/structure/rack{
- dir = 4
- },
-/obj/item/electronics/airlock,
-/obj/item/electronics/airlock,
-/obj/item/electronics/airlock,
-/obj/item/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,
-/obj/machinery/computer/security/telescreen{
- desc = "Used for the Auxillary Mining Base.";
- dir = 8;
- name = "Auxillary Base Monitor";
- network = list("AuxBase");
- pixel_x = 28
- },
-/turf/open/floor/plasteel/yellow/side{
- dir = 4
- },
-/area/mining_construction)
-"cup" = (
-/obj/structure/cable{
- tag = "icon-1-2";
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel{
- icon_state = "dark"
- },
-/area/engine/engine_smes)
-"cuq" = (
-/obj/machinery/power/terminal{
- icon_state = "term";
- dir = 1
- },
-/obj/structure/cable/yellow{
- d2 = 4;
- icon_state = "0-4"
- },
-/turf/open/floor/plasteel{
- icon_state = "dark"
- },
-/area/engine/engine_smes)
-"cur" = (
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8";
- tag = ""
- },
-/turf/open/floor/plasteel{
- icon_state = "dark"
- },
-/area/engine/engine_smes)
-"cus" = (
-/obj/machinery/power/terminal{
- icon_state = "term";
- dir = 1
- },
-/obj/structure/cable/yellow{
- d2 = 8;
- icon_state = "0-8"
- },
-/turf/open/floor/plasteel{
- icon_state = "dark"
- },
-/area/engine/engine_smes)
-"cut" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0;
- tag = ""
- },
-/obj/structure/table,
-/obj/item/folder/yellow,
-/obj/item/clothing/ears/earmuffs{
- pixel_x = -3;
- pixel_y = -2
- },
-/turf/open/floor/plasteel/yellow/side{
- tag = "icon-yellow (WEST)";
- icon_state = "yellow";
- dir = 8
- },
-/area/engine/engineering)
-"cuu" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/structure/table,
-/obj/item/storage/toolbox/electrical,
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"cuv" = (
-/obj/effect/landmark/start{
- name = "Station Engineer"
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"cuw" = (
-/obj/structure/cable/yellow{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/structure/table,
-/obj/item/electronics/apc,
-/obj/item/electronics/apc,
-/turf/open/floor/plasteel/yellow/side{
- tag = "icon-yellow (EAST)";
- icon_state = "yellow";
- dir = 4
- },
-/area/engine/engineering)
-"cux" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8";
- d1 = 4;
- d2 = 8
- },
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/engine/engineering)
-"cuy" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8";
- d1 = 4;
- d2 = 8
- },
-/obj/machinery/light,
-/obj/structure/closet/radiation,
-/turf/open/floor/plasteel/yellow,
-/area/engine/engineering)
-"cuz" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8";
- d1 = 4;
- d2 = 8
- },
-/turf/open/floor/plasteel/yellow/side,
-/area/engine/engineering)
-"cuA" = (
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/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/plasteel/yellow/side,
-/area/engine/engineering)
-"cuB" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8";
- d1 = 4;
- d2 = 8
- },
-/obj/machinery/computer/security/telescreen{
- desc = "Used for watching the singularity chamber.";
- dir = 2;
- layer = 4;
- name = "Engine Containment Telescreen";
- network = list("Singularity");
- pixel_x = 0;
- pixel_y = -30
- },
-/turf/open/floor/plasteel/yellow/side,
-/area/engine/engineering)
-"cuC" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8";
- d1 = 4;
- d2 = 8
- },
-/obj/machinery/light,
-/obj/structure/table,
-/obj/machinery/cell_charger,
-/obj/item/stock_parts/cell/high,
-/turf/open/floor/plasteel/yellow,
-/area/engine/engineering)
-"cuD" = (
-/obj/structure/cable/yellow{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/structure/table,
-/obj/item/book/manual/wiki/engineering_construction{
- pixel_x = 6
- },
-/obj/item/book/manual/wiki/engineering_guide,
-/obj/item/book/manual/wiki/engineering_hacking{
- pixel_x = -6
- },
-/turf/open/floor/plasteel/yellow/side{
- dir = 8
- },
-/area/engine/engineering)
-"cuE" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0;
- tag = ""
- },
-/obj/structure/closet/secure_closet/engineering_welding,
-/turf/open/floor/plasteel/yellow/side{
- tag = "icon-yellow (EAST)";
- icon_state = "yellow";
- dir = 4
- },
-/area/engine/engineering)
-"cuF" = (
-/obj/machinery/field/generator{
- anchored = 0;
- state = 2
- },
-/obj/machinery/camera/autoname{
- tag = "icon-camera (EAST)";
- icon_state = "camera";
- dir = 4
- },
-/turf/open/floor/plasteel{
- icon_state = "dark"
- },
-/area/engine/engineering)
-"cuG" = (
-/obj/machinery/field/generator{
- anchored = 0;
- state = 2
- },
-/turf/open/floor/plasteel{
- icon_state = "dark"
- },
-/area/engine/engineering)
-"cuH" = (
-/obj/machinery/the_singularitygen{
- anchored = 0
- },
-/turf/open/floor/plasteel{
- icon_state = "dark"
- },
-/area/engine/engineering)
-"cuI" = (
-/obj/structure/lattice,
-/obj/machinery/atmospherics/pipe/simple/green/visible,
-/turf/open/space,
-/area/space/nearstation)
-"cuJ" = (
-/obj/structure/lattice,
-/obj/machinery/atmospherics/pipe/simple/yellow/visible,
-/turf/open/space,
-/area/space/nearstation)
-"cuK" = (
-/obj/machinery/atmospherics/components/unary/outlet_injector/on{
- dir = 1;
- frequency = 1441;
- id = "waste_out"
- },
-/turf/open/floor/plating/airless,
-/area/atmos)
-"cuL" = (
-/obj/structure/lattice,
-/obj/machinery/atmospherics/pipe/simple/cyan/visible,
-/turf/open/space,
-/area/space/nearstation)
-"cuM" = (
-/obj/structure/lattice/catwalk,
-/obj/structure/cable{
- icon_state = "0-2";
- pixel_y = 1;
- d2 = 2
- },
-/turf/open/space,
-/area/space)
-"cuN" = (
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
- },
-/obj/machinery/power/smes,
-/turf/open/floor/plating,
-/area/maintenance/auxsolarstarboard{
- name = "Auxiliary Solar Control"
- })
-"cuO" = (
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
- },
-/obj/machinery/light/small{
- dir = 1
- },
-/obj/machinery/power/terminal{
- tag = "icon-term (WEST)";
- icon_state = "term";
- dir = 8
- },
-/turf/open/floor/plating,
-/area/maintenance/auxsolarstarboard{
- name = "Auxiliary Solar Control"
- })
-"cuP" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
- icon_state = "space";
- layer = 4;
- name = "EXTERNAL AIRLOCK";
- pixel_x = 32;
- pixel_y = 0
- },
-/obj/item/stack/cable_coil,
-/turf/open/floor/plating,
-/area/maintenance/auxsolarstarboard{
- name = "Auxiliary Solar Control"
- })
-"cuQ" = (
-/obj/structure/cable,
-/obj/structure/lattice/catwalk,
-/turf/open/space,
-/area/solar/auxstarboard{
- name = "Auxiliary Solar Array"
- })
-"cuR" = (
-/obj/structure/lattice/catwalk,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/space,
-/area/solar/auxstarboard{
- name = "Auxiliary Solar Array"
- })
-"cuS" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/yellow/side{
- dir = 8
- },
-/area/mining_construction)
-"cuT" = (
-/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/plasteel/yellow/side{
- dir = 4
- },
-/area/mining_construction)
-"cuU" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4";
- tag = "90Curve"
- },
-/turf/open/floor/plasteel{
- icon_state = "dark"
- },
-/area/engine/engine_smes)
-"cuV" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plating,
-/area/engine/engine_smes)
-"cuW" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0;
- tag = ""
- },
-/obj/structure/table,
-/obj/item/stack/sheet/glass{
- amount = 50
- },
-/obj/item/stack/sheet/glass{
- amount = 50
- },
-/obj/item/stack/sheet/glass{
- amount = 50
- },
-/obj/item/stack/rods{
- amount = 50
- },
-/obj/item/stack/rods{
- amount = 50
- },
-/obj/structure/cable{
- tag = "icon-2-8";
- icon_state = "2-8"
- },
-/turf/open/floor/plasteel/yellow/side{
- tag = "icon-yellow (WEST)";
- icon_state = "yellow";
- dir = 8
- },
-/area/engine/engineering)
-"cuX" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- tag = "icon-vent_map (NORTH)";
- name = "regular air vent";
- icon_state = "vent_map";
- dir = 1;
- on = 1
- },
-/obj/structure/table,
-/obj/item/storage/toolbox/emergency,
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"cuY" = (
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/table,
-/obj/item/electronics/airlock,
-/obj/item/electronics/airlock,
-/turf/open/floor/plasteel/yellow/side{
- tag = "icon-yellow (EAST)";
- icon_state = "yellow";
- dir = 4
- },
-/area/engine/engineering)
-"cuZ" = (
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/button/door{
- id = "Singularity";
- name = "Shutters Control";
- pixel_x = -25;
- pixel_y = 0;
- req_access_txt = "11"
- },
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "Singularity";
- name = "radiation shutters"
- },
-/obj/machinery/door/airlock/engineering{
- name = "Engine Room";
- req_access_txt = "10"
- },
-/turf/open/floor/plating{
- dir = 1;
- icon_state = "delivery"
- },
-/area/engine/engineering)
-"cva" = (
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/table,
-/obj/item/book/manual/engineering_particle_accelerator{
- pixel_x = 3
- },
-/obj/item/book/manual/engineering_singularity_safety{
- pixel_x = -3
- },
-/turf/open/floor/plasteel/yellow/side{
- tag = "icon-yellow (WEST)";
- icon_state = "yellow";
- dir = 8
- },
-/area/engine/engineering)
-"cvb" = (
-/obj/structure/table,
-/obj/item/stack/sheet/rglass{
- amount = 50
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"cvc" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- tag = "icon-vent_map (NORTH)";
- name = "regular air vent";
- icon_state = "vent_map";
- dir = 1;
- on = 1
- },
-/obj/effect/landmark{
- name = "xeno_spawn";
- pixel_x = -1
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"cvd" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0;
- tag = ""
- },
-/obj/structure/closet/toolcloset,
-/turf/open/floor/plasteel/yellow/side{
- tag = "icon-yellow (EAST)";
- icon_state = "yellow";
- dir = 4
- },
-/area/engine/engineering)
-"cve" = (
-/obj/machinery/field/generator{
- anchored = 0;
- state = 2
- },
-/obj/machinery/light/small{
- dir = 8
- },
-/turf/open/floor/plasteel{
- icon_state = "dark"
- },
-/area/engine/engineering)
-"cvf" = (
-/obj/machinery/atmospherics/pipe/simple,
-/obj/structure/grille,
-/obj/machinery/meter,
-/turf/closed/wall/r_wall,
-/area/atmos)
-"cvg" = (
-/obj/machinery/atmospherics/pipe/simple,
-/obj/structure/grille,
-/obj/machinery/meter{
- name = "Mixed Air Tank In"
- },
-/turf/closed/wall/r_wall,
-/area/atmos)
-"cvh" = (
-/obj/machinery/atmospherics/pipe/simple,
-/obj/structure/grille,
-/obj/machinery/meter{
- name = "Mixed Air Tank Out"
- },
-/turf/closed/wall/r_wall,
-/area/atmos)
-"cvi" = (
-/obj/structure/lattice/catwalk,
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4";
- tag = ""
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4";
- tag = ""
- },
-/turf/open/space,
-/area/space)
-"cvj" = (
-/obj/structure/lattice/catwalk,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/space,
-/area/space)
-"cvk" = (
-/obj/machinery/door/airlock/external{
- cyclelinkeddir = 8;
- name = "Solar Maintenance";
- req_access = null;
- req_access_txt = "10; 13"
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plating,
-/area/maintenance/auxsolarstarboard{
- name = "Auxiliary Solar Control"
- })
-"cvl" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plating,
-/area/maintenance/auxsolarstarboard{
- name = "Auxiliary Solar Control"
- })
-"cvm" = (
-/obj/machinery/door/airlock/external{
- cyclelinkeddir = 4;
- name = "Solar Maintenance";
- req_access = null;
- req_access_txt = "10; 13"
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plating,
-/area/maintenance/auxsolarstarboard{
- name = "Auxiliary Solar Control"
- })
-"cvn" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8";
- tag = ""
- },
-/turf/open/floor/plating,
-/area/maintenance/auxsolarstarboard{
- name = "Auxiliary Solar Control"
- })
-"cvo" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4";
- tag = ""
- },
-/turf/open/floor/plating,
-/area/maintenance/auxsolarstarboard{
- name = "Auxiliary Solar Control"
- })
-"cvp" = (
-/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/plating,
-/area/maintenance/auxsolarstarboard{
- name = "Auxiliary Solar Control"
- })
-"cvq" = (
-/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/auxsolarstarboard{
- name = "Auxiliary Solar Control"
- })
-"cvr" = (
-/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/auxsolarstarboard{
- name = "Auxiliary Solar Control"
- })
-"cvs" = (
-/obj/structure/lattice/catwalk,
-/turf/open/space,
-/area/maintenance/auxsolarstarboard{
- name = "Auxiliary Solar Control"
- })
-"cvt" = (
-/obj/structure/lattice/catwalk,
-/turf/open/space,
-/area/solar/auxstarboard{
- name = "Auxiliary Solar Array"
- })
-"cvu" = (
-/obj/structure/lattice/catwalk,
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/turf/open/space,
-/area/solar/auxstarboard{
- name = "Auxiliary Solar Array"
- })
-"cvv" = (
-/obj/structure/lattice/catwalk,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/space,
-/area/solar/auxstarboard{
- name = "Auxiliary Solar Array"
- })
-"cvw" = (
-/obj/structure/lattice/catwalk,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8";
- tag = ""
- },
-/turf/open/space,
-/area/solar/auxstarboard{
- name = "Auxiliary Solar Array"
- })
-"cvx" = (
-/obj/structure/lattice/catwalk,
-/obj/item/stack/cable_coil,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/space,
-/area/solar/auxstarboard{
- name = "Auxiliary Solar Array"
- })
-"cvy" = (
-/obj/machinery/power/tracker,
-/obj/structure/cable{
- tag = "icon-0-8";
- icon_state = "0-8"
- },
-/turf/open/floor/plasteel/airless/solarpanel,
-/area/solar/auxstarboard{
- name = "Auxiliary Solar Array"
- })
-"cvz" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel,
-/area/mining_construction)
-"cvA" = (
-/obj/structure/table,
-/obj/item/stack/sheet/plasteel{
- amount = 10
- },
-/obj/item/stack/rods{
- amount = 50
- },
-/turf/open/floor/plasteel/yellow/side{
- dir = 4
- },
-/area/mining_construction)
-"cvB" = (
-/obj/structure/closet/firecloset,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"cvC" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0;
- tag = ""
- },
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/engine/engine_smes)
-"cvD" = (
-/turf/open/floor/plasteel{
- icon_state = "dark"
- },
-/area/engine/engine_smes)
-"cvE" = (
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8";
- tag = ""
- },
-/turf/open/floor/plasteel{
- icon_state = "dark"
- },
-/area/engine/engine_smes)
-"cvF" = (
-/obj/structure/table,
-/obj/item/stack/sheet/metal{
- amount = 50
- },
-/obj/item/stack/sheet/metal{
- amount = 50
- },
-/obj/structure/cable{
- tag = "icon-1-2";
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/yellow/side{
- tag = "icon-yellow (WEST)";
- icon_state = "yellow";
- dir = 8
- },
-/area/engine/engineering)
-"cvG" = (
-/obj/structure/table,
-/obj/item/storage/toolbox/mechanical,
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"cvH" = (
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/table,
-/obj/item/electronics/firealarm,
-/obj/item/stack/cable_coil{
- pixel_x = 5
- },
-/obj/item/stack/cable_coil,
-/turf/open/floor/plasteel/yellow/side{
- tag = "icon-yellow (EAST)";
- icon_state = "yellow";
- dir = 4
- },
-/area/engine/engineering)
-"cvI" = (
-/turf/open/floor/plating{
- icon_state = "floorgrime"
- },
-/area/engine/engineering)
-"cvJ" = (
-/obj/structure/cable/yellow{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/turf/open/floor/plating{
- icon_state = "floorgrime"
- },
-/area/engine/engineering)
-"cvK" = (
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/turf/open/floor/plating{
- icon_state = "floorgrime"
- },
-/area/engine/engineering)
-"cvL" = (
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/table,
-/obj/item/airlock_painter,
-/turf/open/floor/plasteel/yellow/side{
- tag = "icon-yellow (WEST)";
- icon_state = "yellow";
- dir = 8
- },
-/area/engine/engineering)
-"cvM" = (
-/obj/structure/table,
-/obj/item/stack/sheet/glass{
- amount = 50
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"cvN" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0;
- tag = ""
- },
-/obj/structure/table,
-/obj/item/wrench,
-/obj/item/crowbar/red,
-/obj/item/storage/belt/utility,
-/turf/open/floor/plasteel/yellow/side{
- tag = "icon-yellow (EAST)";
- icon_state = "yellow";
- dir = 4
- },
-/area/engine/engineering)
-"cvO" = (
-/obj/machinery/power/emitter,
-/turf/open/floor/plasteel{
- icon_state = "dark"
- },
-/area/engine/engineering)
-"cvP" = (
-/obj/structure/closet/crate,
-/obj/machinery/power/rad_collector,
-/obj/machinery/power/rad_collector,
-/obj/machinery/power/rad_collector,
-/obj/machinery/power/rad_collector,
-/obj/machinery/power/rad_collector,
-/obj/machinery/power/rad_collector,
-/turf/open/floor/plasteel{
- icon_state = "dark"
- },
-/area/engine/engineering)
-"cvQ" = (
-/obj/machinery/atmospherics/components/unary/outlet_injector/on{
- dir = 1;
- frequency = 1441;
- id = "n2_in"
- },
-/turf/open/floor/engine/n2,
-/area/atmos)
-"cvR" = (
-/obj/machinery/air_sensor{
- frequency = 1441;
- id_tag = "n2_sensor"
- },
-/turf/open/floor/engine/n2,
-/area/atmos)
-"cvS" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 1;
- external_pressure_bound = 0;
- frequency = 1441;
- id_tag = "n2_out";
- initialize_directions = 1;
- internal_pressure_bound = 4000;
- on = 1;
- pressure_checks = 2;
- pump_direction = 0
- },
-/turf/open/floor/engine/n2,
-/area/atmos)
-"cvT" = (
-/obj/machinery/atmospherics/components/unary/outlet_injector/on{
- dir = 1;
- frequency = 1441;
- id = "o2_in"
- },
-/turf/open/floor/engine/o2,
-/area/atmos)
-"cvU" = (
-/obj/machinery/air_sensor{
- frequency = 1441;
- id_tag = "o2_sensor"
- },
-/turf/open/floor/engine/o2,
-/area/atmos)
-"cvV" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 1;
- external_pressure_bound = 0;
- frequency = 1441;
- id_tag = "o2_out";
- initialize_directions = 1;
- internal_pressure_bound = 4000;
- on = 1;
- pressure_checks = 2;
- pump_direction = 0
- },
-/turf/open/floor/engine/o2,
-/area/atmos)
-"cvW" = (
-/obj/machinery/atmospherics/components/unary/outlet_injector/on{
- dir = 1;
- frequency = 1441;
- id = "air_in"
- },
-/turf/open/floor/engine/air,
-/area/atmos)
-"cvX" = (
-/obj/machinery/air_sensor{
- frequency = 1441;
- id_tag = "air_sensor"
- },
-/turf/open/floor/engine/air,
-/area/atmos)
-"cvY" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/high_volume{
- dir = 1;
- external_pressure_bound = 0;
- frequency = 1441;
- icon_state = "vent_map";
- id_tag = "air_out";
- internal_pressure_bound = 2000;
- on = 1;
- pressure_checks = 2;
- pump_direction = 0
- },
-/turf/open/floor/engine/air,
-/area/atmos)
-"cvZ" = (
-/obj/structure/lattice/catwalk,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/turf/open/space,
-/area/space)
-"cwa" = (
-/obj/machinery/power/apc{
- dir = 8;
- name = "Aft Port Solar APC";
- pixel_x = -23;
- pixel_y = 2
- },
-/obj/machinery/camera{
- c_tag = "Aft Port Solar Control";
- dir = 1
- },
-/obj/structure/cable,
-/turf/open/floor/plating,
-/area/maintenance/auxsolarstarboard{
- name = "Auxiliary Solar Control"
- })
-"cwb" = (
-/turf/open/floor/plating,
-/area/maintenance/auxsolarstarboard{
- name = "Auxiliary Solar Control"
- })
-"cwc" = (
-/obj/machinery/power/solar_control{
- id = "portsolar";
- name = "Aft Port Solar Control";
- track = 0
- },
-/obj/structure/cable,
-/turf/open/floor/plating,
-/area/maintenance/auxsolarstarboard{
- name = "Auxiliary Solar Control"
- })
-"cwd" = (
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
- },
-/obj/structure/lattice/catwalk,
-/turf/open/space,
-/area/solar/auxstarboard{
- name = "Auxiliary Solar Array"
- })
-"cwe" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 10
- },
-/turf/open/floor/plating,
-/area/shuttle/auxillary_base)
-"cwf" = (
-/obj/effect/turf_decal/stripes/line,
-/turf/open/floor/plating,
-/area/shuttle/auxillary_base)
-"cwg" = (
-/obj/machinery/portable_atmospherics/canister/air,
-/obj/effect/turf_decal/stripes/line{
- dir = 6
- },
-/turf/open/floor/plating,
-/area/shuttle/auxillary_base)
-"cwh" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/yellow/side{
- dir = 10
- },
-/area/mining_construction)
-"cwi" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/yellow/side,
-/area/mining_construction)
-"cwj" = (
-/obj/structure/table,
-/obj/item/storage/box/lights/mixed,
-/obj/item/pipe_dispenser,
-/obj/machinery/button/door{
- id = "aux_base_shutters";
- name = "Public Shutters Control";
- pixel_x = 24;
- pixel_y = 0;
- req_access_txt = "0";
- req_one_access_txt = "32;47;48"
- },
-/turf/open/floor/plasteel/yellow/side{
- dir = 6
- },
-/area/mining_construction)
-"cwk" = (
-/obj/structure/table,
-/obj/item/stack/sheet/plasteel{
- amount = 10
- },
-/obj/machinery/light{
- dir = 8
- },
-/obj/structure/cable{
- tag = "icon-1-2";
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/yellow/side{
- dir = 10
- },
-/area/engine/engineering)
-"cwl" = (
-/obj/structure/table,
-/obj/item/clothing/gloves/color/yellow,
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"cwm" = (
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"cwn" = (
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/button/door{
- id = "Singularity";
- name = "Shutters Control";
- pixel_x = 25;
- pixel_y = 0;
- req_access_txt = "11"
- },
-/obj/structure/closet/radiation,
-/turf/open/floor/plasteel/yellow/side{
- tag = "icon-yellow (EAST)";
- icon_state = "yellow";
- dir = 4
- },
-/area/engine/engineering)
-"cwo" = (
-/obj/structure/cable/yellow{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4";
- tag = ""
- },
-/obj/machinery/button/door{
- id = "Singularity";
- name = "Shutters Control";
- pixel_x = -25;
- pixel_y = 0;
- req_access_txt = "11"
- },
-/turf/open/floor/plating{
- icon_state = "floorgrime"
- },
-/area/engine/engineering)
-"cwp" = (
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8";
- tag = ""
- },
-/turf/open/floor/plating{
- icon_state = "floorgrime"
- },
-/area/engine/engineering)
-"cwq" = (
-/obj/structure/particle_accelerator/end_cap,
-/turf/open/floor/plating{
- icon_state = "floorgrime"
- },
-/area/engine/engineering)
-"cwr" = (
-/obj/machinery/light{
- dir = 4
- },
-/obj/machinery/button/door{
- id = "Singularity";
- name = "Shutters Control";
- pixel_x = 25;
- pixel_y = 0;
- req_access_txt = "11"
- },
-/turf/open/floor/plating{
- icon_state = "floorgrime"
- },
-/area/engine/engineering)
-"cws" = (
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/button/door{
- id = "Singularity";
- name = "Shutters Control";
- pixel_x = -25;
- pixel_y = 0;
- req_access_txt = "11"
- },
-/obj/structure/closet/radiation,
-/turf/open/floor/plasteel/yellow/side{
- tag = "icon-yellow (WEST)";
- icon_state = "yellow";
- dir = 8
- },
-/area/engine/engineering)
-"cwt" = (
-/obj/structure/table,
-/obj/item/stack/sheet/metal{
- amount = 50
- },
-/obj/item/stack/rods{
- amount = 50
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"cwu" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0;
- tag = ""
- },
-/obj/structure/table,
-/obj/item/clothing/gloves/color/yellow,
-/obj/item/storage/firstaid/fire,
-/turf/open/floor/plasteel/yellow/side{
- tag = "icon-yellow (EAST)";
- icon_state = "yellow";
- dir = 4
- },
-/area/engine/engineering)
-"cwv" = (
-/turf/open/floor/engine/n2,
-/area/atmos)
-"cww" = (
-/obj/machinery/portable_atmospherics/canister/nitrogen,
-/turf/open/floor/engine/n2,
-/area/atmos)
-"cwx" = (
-/turf/open/floor/engine/o2,
-/area/atmos)
-"cwy" = (
-/obj/machinery/portable_atmospherics/canister/oxygen,
-/turf/open/floor/engine/o2,
-/area/atmos)
-"cwz" = (
-/obj/effect/landmark{
- name = "xeno_spawn";
- pixel_x = -1
- },
-/turf/open/floor/engine/air,
-/area/atmos)
-"cwA" = (
-/obj/machinery/portable_atmospherics/canister/air,
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/engine/air,
-/area/atmos)
-"cwB" = (
-/turf/open/floor/engine/air,
-/area/atmos)
-"cwC" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/lattice/catwalk,
-/turf/open/space,
-/area/solar/auxstarboard{
- name = "Auxiliary Solar Array"
- })
-"cwD" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/door/poddoor/shutters{
- id = "aux_base_shutters";
- name = "Auxillary Base Shutters"
- },
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plasteel,
-/area/mining_construction)
-"cwE" = (
-/obj/machinery/door/airlock/engineering{
- cyclelinkeddir = 1;
- name = "Auxillary Base Construction";
- req_access_txt = "0";
- req_one_access_txt = "32;47;48"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/mining_construction)
-"cwF" = (
-/obj/structure/closet/firecloset,
-/turf/open/floor/plasteel/yellow,
-/area/engine/engineering)
-"cwG" = (
-/obj/structure/cable{
- tag = "icon-1-2";
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/yellow/side{
- tag = "icon-yellow (WEST)";
- icon_state = "yellow";
- dir = 8
- },
-/area/engine/engineering)
-"cwH" = (
-/obj/structure/table,
-/obj/item/book/manual/wiki/engineering_guide,
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"cwI" = (
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/yellow/side{
- tag = "icon-yellow (EAST)";
- icon_state = "yellow";
- dir = 4
- },
-/area/engine/engineering)
-"cwJ" = (
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "Singularity";
- name = "radiation shutters"
- },
-/obj/machinery/door/airlock/engineering{
- name = "Engine Room";
- req_access_txt = "10"
- },
-/turf/open/floor/plating{
- dir = 1;
- icon_state = "delivery"
- },
-/area/engine/engineering)
-"cwK" = (
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plating{
- icon_state = "floorgrime"
- },
-/area/engine/engineering)
-"cwL" = (
-/obj/structure/cable/yellow,
-/obj/machinery/particle_accelerator/control_box,
-/turf/open/floor/plating{
- icon_state = "floorgrime"
- },
-/area/engine/engineering)
-"cwM" = (
-/obj/structure/particle_accelerator/fuel_chamber,
-/turf/open/floor/plating{
- icon_state = "floorgrime"
- },
-/area/engine/engineering)
-"cwN" = (
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/yellow/side{
- tag = "icon-yellow (WEST)";
- icon_state = "yellow";
- dir = 8
- },
-/area/engine/engineering)
-"cwO" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0;
- tag = ""
- },
-/turf/open/floor/plasteel/yellow/side{
- tag = "icon-yellow (EAST)";
- icon_state = "yellow";
- dir = 4
- },
-/area/engine/engineering)
-"cwP" = (
-/obj/machinery/light{
- dir = 4
- },
-/obj/structure/closet/emcloset,
-/turf/open/floor/plasteel/yellow,
-/area/engine/engineering)
-"cwQ" = (
-/obj/machinery/light/small,
-/turf/open/floor/engine/n2,
-/area/atmos)
-"cwR" = (
-/obj/machinery/light/small,
-/turf/open/floor/engine/o2,
-/area/atmos)
-"cwS" = (
-/obj/machinery/light/small,
-/turf/open/floor/engine/air,
-/area/atmos)
-"cwT" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- req_access_txt = 1
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"cwU" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 2;
- initialize_directions = 11
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"cwV" = (
-/obj/machinery/light{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"cwW" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 9
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"cwX" = (
-/obj/machinery/camera/autoname{
- tag = "icon-camera (NORTHEAST)";
- icon_state = "camera";
- dir = 5
- },
-/obj/structure/closet/firecloset,
-/turf/open/floor/plasteel/yellow,
-/area/engine/engineering)
-"cwY" = (
-/obj/structure/cable{
- tag = "icon-1-2";
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/yellow/side{
- dir = 10
- },
-/area/engine/engineering)
-"cwZ" = (
-/turf/open/floor/plasteel/yellow/side,
-/area/engine/engineering)
-"cxa" = (
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/yellow/side{
- tag = "icon-yellow (SOUTHEAST)";
- icon_state = "yellow";
- dir = 6
- },
-/area/engine/engineering)
-"cxb" = (
-/obj/structure/particle_accelerator/power_box,
-/turf/open/floor/plating{
- icon_state = "floorgrime"
- },
-/area/engine/engineering)
-"cxc" = (
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/yellow/side{
- tag = "icon-yellow (SOUTHWEST)";
- icon_state = "yellow";
- dir = 10
- },
-/area/engine/engineering)
-"cxd" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4";
- tag = "90Curve"
- },
-/turf/open/floor/plasteel/yellow/side{
- tag = "icon-yellow (SOUTHEAST)";
- icon_state = "yellow";
- dir = 6
- },
-/area/engine/engineering)
-"cxe" = (
-/obj/structure/cable{
- tag = "icon-2-8";
- icon_state = "2-8"
- },
-/turf/open/floor/plasteel/yellow,
-/area/engine/engineering)
-"cxf" = (
-/obj/structure/lattice/catwalk,
-/obj/structure/cable,
-/turf/open/space,
-/area/space)
-"cxg" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 5
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"cxh" = (
-/obj/machinery/camera/autoname{
- tag = "icon-camera (NORTH)";
- icon_state = "camera";
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 9;
- pixel_y = 0
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"cxi" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/turf/open/floor/plasteel/yellow,
-/area/engine/engineering)
-"cxj" = (
-/obj/structure/cable{
- tag = "icon-1-8";
- icon_state = "1-8"
- },
-/turf/open/floor/plasteel/yellow,
-/area/engine/engineering)
-"cxk" = (
-/obj/structure/cable/yellow{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/turf/open/floor/plating{
- dir = 1;
- icon_state = "delivery"
- },
-/area/engine/engineering)
-"cxl" = (
-/obj/structure/cable/yellow{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8";
- d1 = 4;
- d2 = 8
- },
-/turf/open/floor/plating{
- dir = 1;
- icon_state = "delivery"
- },
-/area/engine/engineering)
-"cxm" = (
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plating{
- dir = 1;
- icon_state = "delivery"
- },
-/area/engine/engineering)
-"cxn" = (
-/obj/structure/particle_accelerator/particle_emitter/left,
-/turf/open/floor/plating{
- icon_state = "floorgrime"
- },
-/area/engine/engineering)
-"cxo" = (
-/obj/structure/particle_accelerator/particle_emitter/center,
-/turf/open/floor/plating{
- icon_state = "floorgrime"
- },
-/area/engine/engineering)
-"cxp" = (
-/obj/structure/particle_accelerator/particle_emitter/right,
-/turf/open/floor/plating{
- icon_state = "floorgrime"
- },
-/area/engine/engineering)
-"cxq" = (
-/obj/structure/cable/yellow{
- icon_state = "1-4";
- d1 = 1;
- d2 = 4
- },
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plating{
- dir = 1;
- icon_state = "delivery"
- },
-/area/engine/engineering)
-"cxr" = (
-/obj/structure/cable/yellow{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8";
- d1 = 4;
- d2 = 8
- },
-/turf/open/floor/plating{
- dir = 1;
- icon_state = "delivery"
- },
-/area/engine/engineering)
-"cxs" = (
-/obj/structure/cable/yellow{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/turf/open/floor/plating{
- dir = 1;
- icon_state = "delivery"
- },
-/area/engine/engineering)
-"cxt" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4";
- tag = "90Curve"
- },
-/turf/open/floor/plasteel/yellow,
-/area/engine/engineering)
-"cxu" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/camera/autoname,
-/turf/open/floor/plasteel/yellow,
-/area/engine/engineering)
-"cxv" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/yellow,
-/area/engine/engineering)
-"cxw" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/yellow,
-/area/engine/engineering)
-"cxx" = (
-/obj/machinery/door/airlock/external{
- cyclelinkedairlock = 4;
- name = "External Access";
- req_access = null;
- req_access_txt = "13"
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/noslip,
-/area/engine/engineering)
-"cxy" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/noslip,
-/area/engine/engineering)
-"cxz" = (
-/obj/machinery/door/airlock/external{
- cyclelinkedairlock = 8;
- name = "External Access";
- req_access = null;
- req_access_txt = "13"
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/noslip,
-/area/engine/engineering)
-"cxA" = (
-/obj/structure/lattice/catwalk,
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
- },
-/turf/open/space,
-/area/space)
-"cxB" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/effect/landmark{
- name = "Syndicate Breach Area"
- },
-/turf/open/floor/plating,
-/area/hallway/secondary/entry)
-"cxC" = (
-/obj/structure/closet/emcloset,
-/turf/open/floor/plasteel/yellow,
-/area/engine/engineering)
-"cxD" = (
-/obj/structure/reagent_dispensers/fueltank,
-/turf/open/floor/plasteel/yellow,
-/area/engine/engineering)
-"cxE" = (
-/obj/structure/cable/yellow,
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "Singularity";
- name = "radiation shutters"
- },
-/turf/open/floor/plating{
- dir = 1;
- icon_state = "delivery"
- },
-/area/engine/engineering)
-"cxF" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "Singularity";
- name = "radiation shutters"
- },
-/turf/open/floor/plating,
-/area/engine/engineering)
-"cxG" = (
-/obj/structure/cable/yellow{
- icon_state = "1-4";
- d1 = 1;
- d2 = 4
- },
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "Singularity";
- name = "radiation shutters"
- },
-/turf/open/floor/plating{
- dir = 1;
- icon_state = "delivery"
- },
-/area/engine/engineering)
-"cxH" = (
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "Singularity";
- name = "radiation shutters"
- },
-/turf/open/floor/plating{
- dir = 1;
- icon_state = "delivery"
- },
-/area/engine/engineering)
-"cxI" = (
-/obj/structure/cable/yellow{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "Singularity";
- name = "radiation shutters"
- },
-/turf/open/floor/plating{
- dir = 1;
- icon_state = "delivery"
- },
-/area/engine/engineering)
-"cxJ" = (
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "Singularity";
- name = "radiation shutters"
- },
-/turf/open/floor/plating{
- dir = 1;
- icon_state = "delivery"
- },
-/area/engine/engineering)
-"cxK" = (
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "Singularity";
- name = "radiation shutters"
- },
-/obj/machinery/camera/emp_proof{
- c_tag = "Containment - Particle Accelerator";
- dir = 1;
- network = list("Singularity")
- },
-/turf/open/floor/plating{
- dir = 1;
- icon_state = "delivery"
- },
-/area/engine/engineering)
-"cxL" = (
-/obj/structure/reagent_dispensers/watertank,
-/turf/open/floor/plasteel/yellow,
-/area/engine/engineering)
-"cxM" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/turf/open/floor/plasteel/yellow,
-/area/engine/engineering)
-"cxN" = (
-/obj/structure/cable{
- tag = "icon-2-8";
- icon_state = "2-8"
- },
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
- icon_state = "space";
- layer = 4;
- name = "EXTERNAL AIRLOCK";
- pixel_x = 32;
- pixel_y = 0
- },
-/turf/open/floor/plasteel/yellow,
-/area/engine/engineering)
-"cxO" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/structure/lattice/catwalk,
-/turf/open/space,
-/area/solar/auxstarboard{
- name = "Auxiliary Solar Array"
- })
-"cxP" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0;
- tag = ""
- },
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plasteel/yellow,
-/area/engine/engineering)
-"cxQ" = (
-/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)
-"cxR" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4";
- tag = "90Curve"
- },
-/obj/machinery/light/small{
- brightness = 3;
- dir = 8
- },
-/turf/open/floor/noslip,
-/area/engine/engineering)
-"cxS" = (
-/obj/machinery/door/airlock/external{
- cyclelinkedairlock = 0;
- name = "Engineering External Access";
- req_access = null;
- req_access_txt = "10;13"
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0;
- tag = ""
- },
-/turf/open/floor/noslip,
-/area/engine/engineering)
-"cxT" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0;
- tag = ""
- },
-/turf/open/floor/noslip,
-/area/engine/engineering)
-"cxU" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0;
- tag = ""
- },
-/obj/machinery/door/airlock/external{
- cyclelinkedairlock = 0;
- name = "Engineering External Access";
- req_access = null;
- req_access_txt = "10;13"
- },
-/turf/open/floor/noslip,
-/area/engine/engineering)
-"cxV" = (
-/obj/structure/lattice/catwalk,
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/turf/open/space,
-/area/engine/engineering{
- name = "Singularity Chamber"
- })
-"cxW" = (
-/obj/structure/lattice/catwalk,
-/turf/open/space,
-/area/engine/engineering{
- name = "Singularity Chamber"
- })
-"cxX" = (
-/obj/machinery/power/grounding_rod,
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plating/airless,
-/area/engine/engineering{
- name = "Singularity Chamber"
- })
-"cxY" = (
-/obj/structure/lattice/catwalk,
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/space,
-/area/engine/engineering{
- name = "Singularity Chamber"
- })
-"cxZ" = (
-/obj/structure/lattice/catwalk,
-/obj/structure/cable{
- icon_state = "2-4";
- tag = "icon-2-8"
- },
-/turf/open/space,
-/area/engine/engineering{
- name = "Singularity Chamber"
- })
-"cya" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8";
- tag = ""
- },
-/obj/machinery/light/small{
- dir = 4
- },
-/turf/open/floor/noslip,
-/area/engine/engineering)
-"cyb" = (
-/obj/structure/lattice/catwalk,
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4";
- tag = ""
- },
-/turf/open/space,
-/area/space)
-"cyc" = (
-/obj/structure/lattice/catwalk,
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4";
- tag = ""
- },
-/turf/open/space,
-/area/space)
-"cyd" = (
-/obj/structure/lattice/catwalk,
-/obj/structure/cable{
- tag = "icon-0-8";
- icon_state = "0-8"
- },
-/turf/open/space,
-/area/space)
-"cye" = (
-/turf/closed/wall/r_wall,
-/area/engine/engineering{
- name = "Singularity Chamber"
- })
-"cyf" = (
-/obj/structure/lattice/catwalk,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/turf/open/space,
-/area/engine/engineering{
- name = "Singularity Chamber"
- })
-"cyg" = (
-/turf/closed/wall/r_wall,
-/area/maintenance/starboardsolar)
-"cyh" = (
-/obj/machinery/door/airlock/external{
- cyclelinkeddir = 2;
- name = "Solar Maintenance";
- req_access = null;
- req_access_txt = "10; 13"
- },
-/obj/structure/cable{
- tag = "icon-1-2";
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/maintenance/starboardsolar)
-"cyi" = (
-/obj/structure/lattice,
-/turf/open/space,
-/area/engine/engineering{
- name = "Singularity Chamber"
- })
-"cyj" = (
-/obj/structure/lattice/catwalk,
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8";
- tag = ""
- },
-/turf/open/space,
-/area/engine/engineering{
- name = "Singularity Chamber"
- })
-"cyk" = (
-/turf/open/floor/plating/airless,
-/area/engine/engineering{
- name = "Singularity Chamber"
- })
-"cyl" = (
-/turf/open/space,
-/area/engine/engineering{
- name = "Singularity Chamber"
- })
-"cym" = (
-/obj/structure/lattice/catwalk,
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4";
- tag = "90Curve"
- },
-/turf/open/space,
-/area/engine/engineering{
- name = "Singularity Chamber"
- })
-"cyn" = (
-/obj/structure/cable{
- tag = "icon-1-2";
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/maintenance/starboardsolar)
-"cyo" = (
-/obj/structure/cable{
- tag = "icon-1-2";
- icon_state = "1-2"
- },
-/obj/machinery/camera/emp_proof{
- c_tag = "Containment - Fore Port";
- dir = 4;
- icon_state = "camera";
- network = list("Singularity");
- tag = "icon-camera (EAST)"
- },
-/turf/open/floor/plating/airless,
-/area/engine/engineering{
- name = "Singularity Chamber"
- })
-"cyp" = (
-/obj/structure/cable/yellow{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4";
- tag = ""
- },
-/turf/open/floor/plating/airless,
-/area/engine/engineering{
- name = "Singularity Chamber"
- })
-"cyq" = (
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plating/airless,
-/area/engine/engineering{
- name = "Singularity Chamber"
- })
-"cyr" = (
-/obj/structure/cable/yellow{
- icon_state = "0-4";
- d2 = 4
- },
-/obj/structure/cable/yellow{
- tag = "icon-0-8";
- icon_state = "0-8"
- },
-/obj/machinery/power/tesla_coil,
-/obj/effect/turf_decal/bot,
-/turf/open/floor/plating/airless,
-/area/engine/engineering{
- name = "Singularity Chamber"
- })
-"cys" = (
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8";
- tag = ""
- },
-/obj/structure/cable/yellow{
- icon_state = "1-4";
- d1 = 1;
- d2 = 4
- },
-/turf/open/floor/plating/airless,
-/area/engine/engineering{
- name = "Singularity Chamber"
- })
-"cyt" = (
-/obj/structure/cable/yellow{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/turf/open/floor/plating/airless,
-/area/engine/engineering{
- name = "Singularity Chamber"
- })
-"cyu" = (
-/obj/structure/cable{
- tag = "icon-1-2";
- icon_state = "1-2"
- },
-/obj/machinery/camera/emp_proof{
- c_tag = "Containment - Fore Starboard";
- dir = 8;
- icon_state = "camera";
- network = list("Singularity");
- tag = "icon-camera (WEST)"
- },
-/turf/open/floor/plating/airless,
-/area/engine/engineering{
- name = "Singularity Chamber"
- })
-"cyv" = (
-/obj/machinery/door/airlock/external{
- cyclelinkeddir = 1;
- name = "Solar Maintenance";
- req_access = null;
- req_access_txt = "10; 13"
- },
-/obj/structure/cable{
- tag = "icon-1-2";
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/maintenance/starboardsolar)
-"cyw" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'HIGH VOLTAGE'";
- icon_state = "shock";
- name = "HIGH VOLTAGE";
- pixel_y = 0
- },
-/turf/closed/wall/r_wall,
-/area/maintenance/starboardsolar)
-"cyx" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0;
- tag = ""
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4";
- tag = "90Curve"
- },
-/turf/open/floor/plating/airless,
-/area/engine/engineering{
- name = "Singularity Chamber"
- })
-"cyy" = (
-/obj/machinery/power/emitter{
- anchored = 1;
- dir = 4;
- state = 2
- },
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plating/airless,
-/area/engine/engineering{
- name = "Singularity Chamber"
- })
-"cyz" = (
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plating/airless,
-/area/engine/engineering{
- name = "Singularity Chamber"
- })
-"cyA" = (
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plating/airless,
-/area/engine/engineering{
- name = "Singularity Chamber"
- })
-"cyB" = (
-/obj/machinery/field/generator{
- anchored = 1;
- state = 2
- },
-/obj/effect/turf_decal/bot,
-/turf/open/floor/plating/airless,
-/area/engine/engineering{
- name = "Singularity Chamber"
- })
-"cyC" = (
-/obj/machinery/power/emitter{
- anchored = 1;
- dir = 8;
- state = 2
- },
-/obj/effect/turf_decal/delivery,
-/obj/structure/cable{
- tag = "icon-0-4";
- icon_state = "0-4"
- },
-/turf/open/floor/plating/airless,
-/area/engine/engineering{
- name = "Singularity Chamber"
- })
-"cyD" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0;
- tag = ""
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8";
- tag = ""
- },
-/turf/open/floor/plating/airless,
-/area/engine/engineering{
- name = "Singularity Chamber"
- })
-"cyE" = (
-/obj/machinery/power/apc{
- dir = 8;
- name = "Aft Starboard Solar APC";
- pixel_x = -26;
- pixel_y = 3
- },
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/starboardsolar)
-"cyF" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/turf/open/floor/plating,
-/area/maintenance/starboardsolar)
-"cyG" = (
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/machinery/power/smes,
-/turf/open/floor/plating,
-/area/maintenance/starboardsolar)
-"cyH" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0;
- tag = ""
- },
-/turf/open/floor/plating/airless,
-/area/engine/engineering{
- name = "Singularity Chamber"
- })
-"cyI" = (
-/obj/structure/cable/yellow{
- d2 = 2;
- icon_state = "0-2"
- },
-/obj/structure/cable/yellow,
-/obj/machinery/power/tesla_coil,
-/obj/effect/turf_decal/bot,
-/turf/open/floor/plating/airless,
-/area/engine/engineering{
- name = "Singularity Chamber"
- })
-"cyJ" = (
-/obj/structure/chair/stool,
-/obj/machinery/camera{
- c_tag = "Aft Starboard Solar Control";
- dir = 4;
- network = list("SS13")
- },
-/turf/open/floor/plating,
-/area/maintenance/starboardsolar)
-"cyK" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/turf/open/floor/plating,
-/area/maintenance/starboardsolar)
-"cyL" = (
-/obj/machinery/power/terminal{
- icon_state = "term";
- dir = 1
- },
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/machinery/light/small{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/starboardsolar)
-"cyM" = (
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plating/airless,
-/area/engine/engineering{
- name = "Singularity Chamber"
- })
-"cyN" = (
-/obj/machinery/power/solar_control{
- id = "starboardsolar";
- name = "Aft Starboard Solar Control";
- track = 0
- },
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/starboardsolar)
-"cyO" = (
-/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/starboardsolar)
-"cyP" = (
-/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/item/stack/cable_coil,
-/turf/open/floor/plating,
-/area/maintenance/starboardsolar)
-"cyQ" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/maintenance/starboardsolar)
-"cyR" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/obj/machinery/door/airlock/external{
- cyclelinkeddir = 2;
- name = "Solar Maintenance";
- req_access = null;
- req_access_txt = "10; 13"
- },
-/turf/open/floor/plating,
-/area/maintenance/starboardsolar)
-"cyS" = (
-/obj/machinery/the_singularitygen/tesla,
-/obj/effect/turf_decal/bot,
-/turf/open/floor/plating/airless,
-/area/engine/engineering{
- name = "Singularity Chamber"
- })
-"cyT" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/turf/open/floor/plating,
-/area/maintenance/starboardsolar)
-"cyU" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/obj/machinery/door/airlock/external{
- cyclelinkeddir = 1;
- name = "Solar Maintenance";
- req_access = null;
- req_access_txt = "10; 13"
- },
-/turf/open/floor/plating,
-/area/maintenance/starboardsolar)
-"cyV" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/obj/structure/lattice/catwalk,
-/turf/open/space,
-/area/solar/starboard)
-"cyW" = (
-/obj/structure/cable{
- tag = "icon-1-2";
- icon_state = "1-2"
- },
-/turf/open/floor/plating/airless,
-/area/engine/engineering{
- name = "Singularity Chamber"
- })
-"cyX" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4";
- tag = "90Curve"
- },
-/turf/open/floor/plating/airless,
-/area/engine/engineering{
- name = "Singularity Chamber"
- })
-"cyY" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8";
- tag = ""
- },
-/turf/open/floor/plating/airless,
-/area/engine/engineering{
- name = "Singularity Chamber"
- })
-"cyZ" = (
-/obj/structure/lattice,
-/obj/structure/grille/broken,
-/turf/open/space,
-/area/space)
-"cza" = (
-/obj/machinery/camera/emp_proof{
- c_tag = "Containment - Aft Port";
- dir = 4;
- icon_state = "camera";
- network = list("Singularity");
- tag = "icon-camera (NORTHEAST)"
- },
-/turf/open/floor/plating/airless,
-/area/engine/engineering{
- name = "Singularity Chamber"
- })
-"czb" = (
-/obj/structure/cable/yellow{
- icon_state = "1-4";
- d1 = 1;
- d2 = 4
- },
-/turf/open/floor/plating/airless,
-/area/engine/engineering{
- name = "Singularity Chamber"
- })
-"czc" = (
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8";
- tag = ""
- },
-/turf/open/floor/plating/airless,
-/area/engine/engineering{
- name = "Singularity Chamber"
- })
-"czd" = (
-/obj/machinery/camera/emp_proof{
- c_tag = "Containment - Aft Starboard";
- dir = 8;
- icon_state = "camera";
- network = list("Singularity");
- tag = "icon-camera (NORTHWEST)"
- },
-/turf/open/floor/plating/airless,
-/area/engine/engineering{
- name = "Singularity Chamber"
- })
-"cze" = (
-/obj/structure/cable,
-/obj/structure/lattice/catwalk,
-/turf/open/space,
-/area/solar/starboard)
-"czf" = (
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
- },
-/obj/machinery/power/solar{
- id = "starboardsolar";
- name = "Starboard Solar Array"
- },
-/turf/open/floor/plasteel/airless/solarpanel,
-/area/solar/starboard)
-"czg" = (
-/obj/structure/lattice/catwalk,
-/turf/open/space,
-/area/solar/starboard)
-"czh" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/structure/lattice/catwalk,
-/turf/open/space,
-/area/solar/starboard)
-"czi" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/obj/structure/lattice/catwalk,
-/turf/open/space,
-/area/solar/starboard)
-"czj" = (
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/structure/lattice/catwalk,
-/turf/open/space,
-/area/solar/starboard)
-"czk" = (
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/obj/structure/lattice/catwalk,
-/turf/open/space,
-/area/solar/starboard)
-"czl" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/obj/structure/lattice/catwalk,
-/turf/open/space,
-/area/solar/starboard)
-"czm" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/structure/lattice/catwalk,
-/turf/open/space,
-/area/solar/starboard)
-"czn" = (
-/obj/structure/cable,
-/obj/machinery/power/solar{
- id = "starboardsolar";
- name = "Starboard Solar Array"
- },
-/turf/open/floor/plasteel/airless/solarpanel,
-/area/solar/starboard)
-"czo" = (
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
- },
-/obj/structure/lattice/catwalk,
-/turf/open/space,
-/area/solar/starboard)
-"czp" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/obj/structure/lattice/catwalk,
-/turf/open/space,
-/area/solar/starboard)
-"czq" = (
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
- },
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/structure/cable,
-/obj/structure/lattice/catwalk,
-/turf/open/space,
-/area/solar/starboard)
-"czr" = (
-/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)
-"czs" = (
-/obj/structure/cable,
-/obj/machinery/power/tracker,
-/turf/open/floor/plasteel/airless/solarpanel,
-/area/solar/starboard)
-
-(1,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(2,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(3,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(4,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(5,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(6,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(7,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(8,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(9,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(10,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(11,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(12,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(13,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(14,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(15,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(16,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(17,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(18,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(19,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(20,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(21,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(22,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(23,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(24,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(25,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(26,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(27,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(28,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(29,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(30,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(31,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(32,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(33,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(34,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-abl
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(35,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(36,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aap
-aaq
-aaq
-aaq
-aaq
-aev
-aaq
-aaq
-aaq
-abm
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(37,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aap
-aaq
-aaq
-aaq
-aaq
-aaq
-aaq
-adt
-adJ
-adt
-adu
-aew
-aff
-afD
-afG
-agd
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-abl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(38,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaq
-aci
-aci
-acw
-aci
-aci
-aaq
-adu
-adu
-adu
-adu
-aex
-adu
-afE
-afG
-age
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-abl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(39,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaq
-aay
-aay
-aay
-aay
-aay
-aaq
-adv
-adu
-adu
-adu
-aey
-afg
-afF
-afG
-agf
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-agI
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-abl
-abl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(40,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aap
-aaq
-aaq
-aaq
-abm
-aaa
-aaa
-aaq
-aay
-acp
-aay
-aay
-aay
-aaq
-adw
-adu
-adu
-adu
-aez
-aaq
-aaq
-aaq
-agJ
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-abl
-abl
-abl
-abl
-abl
-abl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(41,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaq
-aax
-aaQ
-abe
-aaq
-aby
-aaa
-aaq
-acj
-acq
-acx
-aay
-aay
-aaq
-adx
-adu
-adu
-adu
-aeA
-aaq
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-abl
-abl
-abl
-abl
-abl
-abl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(42,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aar
-aay
-aay
-aay
-aaq
-aaq
-aaq
-aaq
-aaq
-aaq
-aaq
-acF
-acX
-aaq
-aaq
-adK
-adR
-aec
-aaq
-aaq
-aaq
-abm
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-abl
-abl
-abl
-abl
-abl
-abl
-abl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(43,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aar
-aaz
-aay
-aay
-aaq
-abz
-aay
-abU
-aay
-aay
-acy
-aay
-aay
-adi
-abU
-aay
-aay
-aay
-aay
-acy
-afG
-agd
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-agI
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-abl
-abl
-abl
-abl
-abl
-abl
-abl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(44,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aar
-aaA
-aaR
-aay
-abn
-aay
-aay
-aay
-aay
-aay
-acz
-aay
-aay
-aay
-aay
-aay
-aay
-aay
-aay
-afh
-afG
-age
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-agI
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-abl
-abl
-abl
-abl
-abl
-abl
-abl
-abl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(45,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aar
-aaB
-aay
-abf
-aaq
-abA
-abM
-abV
-abM
-abM
-acy
-aay
-aay
-aay
-aaS
-aay
-aay
-aay
-aay
-acy
-afG
-agf
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-abl
-abl
-abl
-abl
-abl
-abl
-abl
-abl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(46,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aar
-aaC
-aay
-aay
-aaq
-aaq
-aaq
-abW
-aaq
-aaq
-aaq
-acG
-acy
-aaq
-aaq
-aaq
-adS
-aed
-aaq
-aaq
-aaq
-abo
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-abl
-abl
-abl
-abl
-abl
-abl
-abl
-abl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(47,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaq
-aaC
-aaS
-abg
-aaq
-abo
-aaa
-aaa
-aaa
-aaq
-aay
-aay
-aay
-aaq
-ady
-aay
-aay
-aay
-aeB
-afi
-aaq
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-abl
-abl
-abl
-abl
-abl
-abl
-abl
-abl
-abl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(48,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aas
-aaq
-aaq
-aaq
-abo
-aaa
-aaa
-aaa
-aaa
-acr
-aay
-aay
-aay
-aaq
-adz
-aay
-aay
-aay
-aeC
-aaq
-aaq
-aaq
-agK
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-abl
-abl
-abl
-abl
-abl
-abl
-abl
-abl
-abl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(49,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-acs
-aay
-aaS
-aay
-aaq
-adA
-aay
-aay
-aay
-aay
-aay
-afH
-afG
-agd
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-abl
-abl
-abl
-abl
-abl
-abl
-abl
-abl
-abl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(50,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aas
-aaq
-aaq
-aaq
-aaq
-adB
-acp
-aay
-aay
-aay
-aay
-afI
-afG
-age
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-abl
-abl
-abl
-abl
-abl
-abl
-abl
-abl
-abl
-abL
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(51,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-acY
-aaq
-adC
-adL
-aay
-aee
-aeD
-aay
-afJ
-afG
-agf
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-apm
-apm
-apo
-apm
-apm
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-abl
-abl
-abl
-abl
-abl
-abl
-abl
-abl
-abL
-abL
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(52,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aas
-aaq
-aaq
-aaq
-aaq
-abW
-aaq
-aaq
-aaq
-abo
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-apm
-aqF
-apL
-aqF
-apm
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-abl
-abl
-abl
-abl
-abl
-abl
-abl
-abL
-abL
-abL
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(53,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-apm
-apL
-apL
-apL
-apm
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-acg
-acg
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-abl
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-abl
-abl
-abl
-abl
-abl
-abl
-abL
-abL
-abL
-abL
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(54,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-apm
-apL
-apL
-apL
-apm
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-acg
-acg
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-abL
-acg
-acg
-acg
-acg
-acg
-acg
-abl
-abl
-abl
-abl
-abl
-abL
-abL
-abL
-abL
-abL
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(55,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-apm
-apL
-apL
-apL
-apm
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-acg
-acg
-acg
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-acg
-abl
-abl
-abl
-abl
-abL
-abL
-abL
-abL
-abL
-abL
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(56,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-apm
-apL
-apL
-apL
-apm
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-acg
-acg
-acg
-agc
-agc
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-agc
-agc
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abl
-abl
-abl
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(57,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-apm
-apL
-apL
-apL
-apm
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-acg
-acg
-acg
-agc
-agc
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-agc
-agc
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-abL
-abL
-abL
-abL
-acg
-abL
-abL
-acg
-acg
-acg
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(58,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-apm
-apL
-apL
-apL
-apm
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-acg
-acg
-acg
-agc
-agc
-agc
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-agc
-agc
-agc
-agc
-acg
-acg
-acg
-abL
-abL
-abL
-acg
-acg
-acg
-acg
-acg
-acg
-abL
-abL
-abL
-abL
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(59,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-apm
-apL
-apL
-aup
-apm
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-acg
-acg
-acg
-acg
-agc
-acg
-agc
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-agc
-agc
-agc
-agc
-acg
-acg
-agI
-abL
-abL
-abL
-abL
-acg
-acg
-acg
-acg
-abL
-abL
-abL
-abL
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-abl
-abl
-abl
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-cul
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(60,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-apm
-aqF
-apL
-aqF
-apm
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-acg
-acg
-acg
-acg
-acg
-acg
-agc
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-agc
-agc
-agc
-agc
-acg
-acg
-acg
-abL
-abL
-abL
-abL
-acg
-acg
-abL
-abL
-abL
-abL
-abL
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-abl
-abl
-abl
-abl
-abL
-abL
-abL
-abL
-abL
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(61,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-acf
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-apm
-apm
-apo
-apm
-apm
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-acg
-acg
-acg
-acg
-acg
-acg
-agc
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-agc
-agc
-agc
-agc
-acg
-acg
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-acg
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-ads
-ads
-ads
-ads
-ads
-abL
-abL
-abL
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(62,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-apm
-apL
-apm
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-acg
-acg
-acg
-acg
-acg
-agc
-agc
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-agc
-agc
-agc
-agc
-acg
-acg
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-acg
-acg
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-ads
-ads
-ads
-ads
-ads
-ads
-abL
-abL
-aaa
-aQH
-aQH
-aQI
-aQH
-aQH
-aQI
-aQH
-aQH
-aQH
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(63,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-amy
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-apm
-apm
-apo
-apm
-apm
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-acg
-acg
-acg
-acg
-acg
-agc
-agc
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-agc
-agc
-agc
-agc
-acg
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-acg
-acg
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-abL
-abL
-aaa
-aQI
-bEP
-bGc
-bHh
-aSg
-bJu
-bKy
-bLQ
-bNi
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(64,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-alR
-amz
-alR
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-apm
-apm
-aqF
-apL
-aqF
-apm
-apm
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-acg
-acg
-acg
-acg
-acg
-acg
-agc
-agc
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-agc
-agc
-agc
-agc
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-acg
-acg
-acg
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-ads
-ads
-ads
-buN
-bmg
-bmg
-bmg
-bmg
-ads
-abL
-aaa
-aQI
-bEQ
-bGd
-aQH
-bIt
-aSg
-aSg
-bLQ
-bNi
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(65,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-alR
-amA
-alR
-aaa
-aaa
-aaa
-apm
-apK
-aqi
-aqi
-aqi
-arC
-aaa
-apm
-aqF
-apL
-apL
-apL
-aqF
-apm
-aaa
-apK
-aqi
-aqi
-aqi
-arC
-apm
-aaa
-aaa
-aaa
-aaa
-aaa
-acg
-acg
-acg
-acg
-acg
-acg
-agc
-agc
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-agc
-agc
-agc
-abL
-abL
-abL
-abL
-abL
-abL
-acg
-abL
-abL
-abL
-acg
-acg
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-ads
-ads
-ads
-ads
-bmg
-bvT
-bxa
-bxV
-bmg
-ads
-abL
-aaa
-aQI
-bER
-bGe
-bHi
-bIu
-bJv
-aSg
-bLQ
-bNi
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(66,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-alR
-amB
-alR
-aaa
-aaa
-aaa
-apm
-apm
-aqj
-aqj
-aqj
-apm
-apm
-apm
-apL
-apL
-apL
-apL
-apL
-apm
-apm
-apm
-aqj
-aqj
-aqj
-apm
-apm
-aaa
-aaa
-aaa
-aaa
-aaa
-acg
-acg
-acg
-acg
-acg
-agc
-agc
-agc
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-agc
-agc
-abL
-abL
-abL
-abL
-abL
-abL
-acg
-acg
-acg
-acg
-acg
-acg
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-ads
-ads
-ads
-ads
-ads
-bmg
-bvU
-bxb
-bxW
-bmg
-ads
-abL
-aaa
-aQH
-aQH
-bGf
-aQH
-aQH
-aQH
-bKz
-aQH
-aQH
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(67,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-alS
-amC
-alS
-aaa
-aaa
-aaa
-aaa
-apm
-aqk
-aqE
-aqE
-aqk
-apm
-aqF
-apL
-apL
-apL
-apL
-apL
-aqF
-apm
-aqk
-aqE
-aqE
-aqk
-apm
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-acg
-acg
-acg
-acg
-acg
-agc
-agc
-agc
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-agc
-agc
-abL
-abL
-abL
-abL
-abL
-agc
-agc
-agc
-agc
-agc
-acg
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-bmg
-bvV
-bxb
-bxX
-bmg
-abL
-abL
-aaa
-aaa
-bES
-bGg
-bES
-aaa
-bES
-bGg
-bES
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(68,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-akt
-akt
-amD
-akt
-akt
-aaT
-aaT
-aaT
-aaT
-apm
-aqk
-aqE
-aqE
-apm
-apL
-apL
-apL
-apL
-apL
-apL
-avt
-apm
-aqE
-aqE
-aqk
-apm
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-acg
-acg
-acg
-acg
-agc
-agc
-agc
-agc
-ads
-ads
-ads
-ads
-ads
-aKF
-aKF
-aKF
-aKF
-aKF
-ads
-ads
-agc
-agc
-abL
-abL
-abL
-abL
-abL
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-bmg
-buO
-bxc
-buO
-bmg
-abL
-abL
-abL
-aaa
-bET
-bGh
-bET
-aaa
-bET
-bGh
-bET
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(69,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaT
-aaT
-aaT
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-akt
-alT
-ajg
-and
-anF
-aaT
-aoJ
-aaT
-aaT
-aaT
-apm
-apm
-arD
-apm
-apm
-apm
-ass
-atM
-ass
-apm
-apm
-apm
-arD
-apm
-apm
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-acg
-acg
-acg
-acg
-agc
-agc
-agc
-agc
-ads
-ads
-ads
-ads
-ads
-aKF
-aLC
-aLD
-aLE
-aKF
-ads
-ads
-agc
-abL
-abL
-abL
-abL
-abL
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-bmg
-bvW
-bvW
-bvW
-bmg
-bmg
-bmg
-bmg
-bmg
-bET
-bGi
-bET
-bmg
-bET
-bGi
-bET
-bmg
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(70,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaT
-aaT
-aaT
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-akt
-alU
-amD
-akP
-akt
-aaT
-aaT
-aaT
-aaT
-aaT
-apm
-apm
-apL
-apL
-apL
-apL
-apL
-apL
-apL
-apL
-apL
-apL
-apL
-apm
-apm
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-acg
-acg
-acg
-agc
-agc
-agc
-agc
-agc
-ads
-ads
-ads
-ads
-ads
-aKF
-aLD
-aLD
-aLD
-aKF
-ads
-ads
-agc
-abL
-abL
-abL
-abL
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-ads
-ads
-ads
-ads
-bmg
-bmg
-bmg
-bmg
-bmg
-bmg
-bmg
-bvX
-btQ
-btQ
-bzq
-btQ
-bBx
-bCB
-btQ
-bEU
-btQ
-bEU
-bIv
-bEU
-btQ
-bLR
-bmg
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(71,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-adT
-adT
-adT
-adT
-adT
-adU
-adT
-adT
-adT
-adT
-adT
-adT
-ajV
-adj
-adj
-akt
-aku
-aku
-akO
-akt
-aaT
-aaT
-aaT
-aaT
-apm
-apm
-aqF
-arE
-apL
-apL
-apL
-apL
-apL
-apL
-apL
-apL
-apL
-apL
-apm
-apm
-apm
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-acg
-acg
-acg
-acg
-agc
-agc
-agc
-agc
-agc
-ads
-ads
-ads
-ads
-ads
-aKF
-aLE
-aLD
-aLC
-aKF
-ads
-ads
-agc
-abL
-abL
-abL
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-ads
-ads
-ads
-ads
-ads
-bmg
-boY
-bqk
-bro
-bsK
-btN
-buO
-bvY
-bvW
-bvW
-bvW
-bvW
-bvW
-bvZ
-bvW
-bvW
-bvW
-bvW
-bvW
-bvW
-bvW
-bvW
-bmg
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(72,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-adT
-aef
-aeE
-afj
-afK
-agg
-agL
-ahm
-ahU
-ain
-aiR
-adT
-ajW
-adj
-adj
-akt
-alV
-amE
-aku
-akt
-adj
-adj
-aaT
-apm
-apm
-aqF
-apL
-apL
-apL
-apL
-apm
-apm
-apm
-apm
-apm
-apm
-apL
-apL
-apm
-apm
-apm
-apm
-aaa
-aaa
-aaa
-aaa
-aaa
-acg
-acg
-acg
-acg
-agc
-agc
-agc
-agc
-agc
-ads
-ads
-ads
-ads
-ads
-aKF
-aLD
-aLD
-aLD
-aKF
-ads
-ads
-abL
-abL
-abL
-abL
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-ads
-ads
-ads
-ads
-ads
-bmg
-bmg
-boZ
-bql
-brp
-bsL
-btO
-buO
-bvZ
-bxd
-buO
-buO
-buO
-buO
-bCC
-bDK
-bEV
-bGj
-bHj
-bIw
-bJw
-bKA
-bLS
-bmg
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(73,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaT
-aaT
-adT
-aeg
-aeF
-afk
-afL
-agh
-agM
-ahn
-ahV
-aio
-aiS
-adU
-ajW
-adj
-aaT
-akt
-alp
-amF
-aku
-akt
-aog
-akt
-apm
-apm
-apm
-apm
-apm
-apm
-aqF
-apL
-apm
-atk
-apL
-apL
-apL
-apo
-apL
-apL
-apo
-apL
-aqF
-apm
-aaa
-aaa
-aaa
-aaa
-aaa
-acg
-acg
-acg
-acg
-agc
-agc
-agc
-agc
-agc
-ads
-ads
-ads
-ads
-ads
-aKF
-aLC
-aLD
-aLE
-aKF
-ads
-ads
-abL
-abL
-abL
-abL
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-ads
-ads
-ads
-ads
-ads
-ads
-bmg
-bnF
-bnF
-bnF
-brq
-bsL
-btP
-buO
-bvZ
-bxe
-bxY
-bzr
-bAo
-bmg
-bCD
-bmg
-bmg
-bmg
-bmg
-bmg
-bmg
-bmg
-bmg
-bmg
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(74,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-acf
-aaa
-aaa
-aaa
-aaa
-aaa
-aaT
-aaT
-adU
-aef
-aeG
-afl
-afM
-agi
-agN
-afj
-afj
-afj
-afj
-adT
-ajW
-adj
-aaT
-akt
-alp
-amG
-aku
-anG
-aoh
-anG
-apn
-apL
-apL
-aqG
-aqG
-aqF
-apm
-apL
-apm
-atl
-apL
-auq
-auS
-apm
-apL
-apL
-apm
-apL
-ayd
-apm
-apm
-aaa
-aaa
-aaa
-aaa
-acg
-acg
-acg
-acg
-agc
-agc
-agc
-agc
-agc
-ads
-ads
-ads
-ads
-ads
-aKF
-aLD
-aLD
-aLD
-aKF
-ads
-abL
-abL
-abL
-abL
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-ads
-aOU
-aOU
-aOU
-aOU
-aOU
-ads
-ads
-bmg
-bnG
-bpa
-bqm
-brq
-bsM
-btQ
-buP
-bwa
-bxf
-bxZ
-bzs
-bzs
-bBy
-abL
-abL
-abL
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(75,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaT
-aaT
-adT
-aeh
-aeH
-afm
-afN
-agj
-agO
-aho
-ahV
-aip
-aiS
-adU
-ajW
-adj
-aaT
-akt
-alp
-amH
-ane
-akP
-aog
-akt
-apm
-apL
-apL
-apL
-apL
-arF
-apm
-apL
-apo
-apL
-apL
-apL
-auT
-apm
-apL
-apL
-apm
-apL
-apL
-aqF
-apm
-aaa
-aaa
-aaa
-aaa
-acg
-acg
-acg
-acg
-agc
-agc
-agc
-agc
-agc
-ads
-ads
-ads
-ads
-ads
-aKF
-aLE
-aLD
-aLC
-aKF
-ads
-abL
-abL
-abL
-abL
-agc
-agc
-agc
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-aOU
-aUF
-aVm
-aVZ
-aOU
-ads
-ads
-bmg
-bnF
-bnF
-bnF
-brq
-bsL
-btR
-buO
-bvZ
-bxg
-bya
-bzt
-bAp
-bmg
-abL
-abL
-abL
-abL
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(76,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-adT
-aef
-aeE
-afj
-afO
-agk
-agP
-ahm
-ahW
-aiq
-aiR
-adT
-ajX
-aks
-aaT
-akt
-alp
-aku
-amG
-aku
-aoi
-aog
-apm
-apM
-apL
-apL
-apL
-apL
-apm
-apL
-apm
-apm
-apm
-apm
-apm
-apm
-apL
-arE
-ass
-axA
-apL
-apL
-apm
-aaa
-aaa
-aaa
-aaa
-acg
-acg
-acg
-acg
-agc
-agc
-agc
-agc
-agc
-ads
-ads
-ads
-ads
-ads
-aKF
-aLD
-aLD
-aLD
-aKF
-ads
-abL
-abL
-abL
-agc
-agc
-agc
-agc
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-aOU
-aUG
-aUG
-aVZ
-aOU
-ads
-ads
-bmg
-bmg
-bpb
-bqn
-brr
-bsL
-btS
-buO
-bwb
-bxg
-byb
-buO
-buO
-bmg
-abL
-abL
-abL
-abL
-abL
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(77,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-adT
-adT
-aeI
-afj
-afP
-agl
-agQ
-ahp
-ahX
-ahX
-aiT
-ajB
-ajY
-akt
-akt
-akt
-alW
-aku
-amG
-aku
-aoj
-aog
-apm
-apN
-apL
-apL
-apL
-apL
-apo
-apL
-apL
-apL
-apL
-apL
-apL
-apL
-apL
-apL
-ass
-apL
-apL
-ayL
-apm
-aaa
-aaa
-aaa
-aaa
-acg
-acg
-acg
-acg
-agc
-agc
-agc
-agc
-agc
-ads
-ads
-ads
-ads
-ads
-aKF
-aLC
-aLD
-aLE
-aKF
-ads
-abL
-abL
-abL
-agc
-agc
-agc
-aOU
-aOU
-aOU
-aOU
-aXq
-aOU
-aOU
-aOU
-aOU
-aOU
-bds
-aOU
-aUH
-bgE
-aWa
-aOU
-ads
-ads
-ads
-bmg
-bpc
-bqk
-brs
-bsN
-btT
-buO
-bvZ
-bxh
-byc
-bzr
-bAo
-bmg
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(78,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-adV
-adT
-aeJ
-afn
-afQ
-agm
-agR
-ahq
-afj
-air
-aiU
-ajC
-ajZ
-akt
-akM
-aku
-alp
-aku
-amG
-aku
-amd
-aog
-apm
-apL
-apL
-apL
-apL
-apL
-apm
-aqF
-apL
-apL
-apL
-apL
-apL
-apL
-apL
-awq
-ass
-apL
-apL
-apL
-apm
-aaa
-aaa
-aaa
-aaa
-acg
-acg
-acg
-acg
-agc
-agc
-agc
-agc
-agc
-ads
-ads
-ads
-ads
-ads
-aKF
-aLD
-aLD
-aLD
-aKF
-ads
-abL
-abL
-abL
-agc
-agc
-aTE
-aUC
-aVj
-aOV
-aOU
-aOV
-aOV
-aYY
-aOV
-aOV
-aQm
-aOV
-aOU
-aVZ
-bgF
-aVZ
-aOU
-ads
-ads
-ads
-bmg
-bmg
-bmg
-bmg
-bmg
-bmg
-bmg
-bwc
-bxf
-byd
-bzs
-bzs
-bBy
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(79,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaT
-aaT
-aaT
-aaT
-aaT
-aaT
-aaT
-aaT
-aaT
-aaT
-aaT
-aaT
-aaT
-aaT
-adj
-adU
-aeK
-afo
-afR
-agn
-agS
-ahr
-afj
-ais
-aiV
-ajD
-aka
-akt
-aku
-aku
-alp
-aku
-amG
-aku
-aok
-aog
-apm
-apL
-apL
-apL
-apL
-aqF
-apm
-apm
-apm
-ass
-atM
-ass
-apm
-apm
-apm
-apm
-apm
-apL
-apL
-apL
-apm
-aaa
-aaa
-aaa
-aaa
-acg
-acg
-acg
-acg
-agc
-agc
-agc
-agc
-agc
-ads
-ads
-ads
-ads
-ads
-aKF
-aLD
-aLD
-aLD
-aKF
-ads
-abL
-abL
-abL
-agc
-aOU
-aTF
-aUD
-aVk
-aOV
-aOU
-aOV
-aOV
-aOV
-aOV
-aOV
-aOU
-aOV
-aOU
-aOU
-bgG
-aOU
-aOU
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-bsO
-btU
-bmg
-bvZ
-bxg
-bye
-bzt
-bAp
-bmg
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-bKB
-bKB
-bKB
-bKB
-bKB
-bKB
-bKB
-bKB
-bKB
-ads
-ads
-abL
-abL
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(80,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaT
-aaT
-aaT
-aaT
-aaT
-aaT
-aaT
-aaT
-aaT
-aaT
-aaT
-aaT
-aaT
-aaT
-adj
-adT
-aeL
-afp
-afS
-ago
-agT
-ahs
-ahY
-ait
-aiW
-ajE
-akb
-akt
-akN
-aku
-alp
-aku
-amG
-akP
-aog
-akt
-apm
-apL
-apL
-apL
-aqF
-apm
-aqF
-apL
-apL
-apL
-apL
-apL
-apL
-atm
-atm
-atm
-apm
-apL
-apL
-aqF
-apm
-aaa
-aaa
-aaa
-aaa
-acg
-acg
-acg
-agc
-agc
-agc
-agc
-agc
-agc
-ads
-ads
-ads
-ads
-ads
-aKF
-aKF
-aMR
-aKF
-aKF
-abL
-abL
-abL
-agc
-agc
-aOU
-aTG
-aTG
-aTG
-aOV
-aQm
-aXr
-aYh
-aYh
-aZX
-baO
-bcd
-aSl
-aSl
-aSl
-bgH
-bhF
-biO
-bjR
-bjR
-bjR
-bjR
-bjR
-bjR
-bjR
-bjR
-btV
-buQ
-bwd
-bxi
-byb
-buO
-buO
-bmg
-bCE
-bCE
-bCE
-bCE
-bCE
-bCE
-bCE
-bCE
-bCE
-bCE
-bCE
-bCE
-bCE
-bCE
-bCE
-bCE
-bTX
-ads
-ads
-abL
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(81,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaT
-aaT
-aaT
-aaT
-aaT
-aaT
-aaT
-aaT
-aaT
-aaT
-aaT
-aaT
-aaT
-aaT
-adj
-adU
-aeM
-afq
-afT
-agp
-agU
-aht
-afj
-aiu
-aiX
-ajF
-akc
-akt
-akN
-aku
-alp
-aku
-amG
-anG
-aoh
-anG
-apo
-apL
-aql
-apL
-apm
-aqF
-apL
-apL
-apL
-apL
-apL
-apL
-apL
-apL
-apL
-apL
-aqF
-aqF
-arG
-apm
-aaa
-aaa
-aaa
-aaa
-aaa
-acg
-acg
-acg
-agc
-agc
-agc
-agc
-agc
-agc
-ads
-ads
-ads
-ads
-ads
-aKF
-aLD
-aLD
-aLD
-aKF
-abL
-abL
-abL
-ads
-ads
-aOU
-aOU
-aOU
-aOU
-aOU
-aOU
-aXs
-aOU
-aOU
-aOU
-aOU
-aOU
-aOU
-aOU
-aOU
-aOU
-aOU
-aOU
-aOU
-aOU
-aOU
-aOU
-aOU
-aOU
-aOU
-aOU
-aRF
-bmg
-bwe
-bxg
-byb
-bzu
-bzu
-bmg
-bCF
-bDL
-bDL
-bDL
-bDL
-bDL
-bDL
-bDL
-bDL
-bDL
-bDL
-bDL
-bDL
-bDL
-bDL
-bTj
-bTX
-ads
-ads
-abL
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(82,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aab
-aac
-aac
-aac
-aac
-abp
-abB
-abN
-abB
-abB
-abN
-abB
-acH
-aac
-adj
-adj
-adj
-adj
-adT
-aeN
-afr
-afU
-agq
-agV
-ahu
-afj
-aiv
-aiY
-ajG
-akd
-akt
-akO
-aku
-alp
-aku
-anf
-akP
-aog
-akt
-apm
-apm
-apm
-aqH
-apm
-arG
-arU
-apL
-apL
-apL
-apL
-apL
-apL
-apL
-apL
-awr
-arG
-apm
-apm
-apm
-aaa
-aaa
-acf
-aaa
-aaa
-acg
-acg
-acg
-agc
-agc
-agc
-agc
-agc
-agc
-ads
-ads
-ads
-ads
-ads
-ads
-abL
-aMS
-abL
-abL
-abL
-abL
-abL
-ads
-ads
-aTb
-aOV
-aOV
-aOV
-aOV
-aOV
-aRF
-aOU
-aYZ
-aZY
-baP
-bce
-bdt
-aZd
-aYZ
-aZY
-baP
-bce
-bdt
-aZd
-aYZ
-aZY
-baP
-bce
-bdt
-aZd
-btW
-bmg
-bvZ
-bxg
-byf
-bxb
-bAq
-bmg
-bCG
-bDM
-bEW
-bEW
-bEW
-bIx
-bEW
-bEW
-bEW
-bEW
-bEW
-bEW
-bEW
-bEW
-bSr
-bDL
-bTX
-ads
-ads
-abL
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(83,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aab
-aac
-aaD
-aaU
-abh
-abq
-abs
-abO
-abs
-ack
-act
-abX
-acI
-aac
-adj
-adj
-adj
-acW
-adT
-adT
-adT
-afV
-agr
-afj
-afj
-afj
-afj
-adU
-afj
-adT
-akt
-akP
-aku
-alp
-aku
-amG
-anH
-anH
-akt
-aaT
-aaT
-apm
-aqI
-apm
-arG
-arU
-apL
-apL
-atm
-atN
-atm
-apL
-apL
-apL
-apL
-aqF
-apm
-apm
-aaa
-aaa
-aaa
-aaa
-aaa
-acg
-acg
-acg
-acg
-agc
-agc
-agc
-agc
-agc
-agc
-ads
-ads
-ads
-ads
-ads
-ads
-abL
-aMS
-abL
-abL
-abL
-abL
-ads
-ads
-ads
-aTb
-aOV
-aUE
-aVl
-aVY
-aWD
-aRF
-aOU
-aZa
-aZZ
-aZZ
-aZZ
-bdu
-beB
-bfF
-aZZ
-aZZ
-aZZ
-bdu
-beB
-bmh
-aZf
-aZf
-aZf
-brt
-aZd
-aRF
-bmg
-bwf
-bxj
-byg
-bzv
-bAr
-bmg
-bCG
-bDN
-bEX
-bEX
-bEX
-bIy
-bEX
-bEX
-bEX
-bEX
-bEX
-bEX
-bEX
-bEX
-bSs
-bDL
-bTX
-ads
-ads
-abL
-abL
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-acf
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(84,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aab
-aac
-aaE
-aaV
-aaj
-abr
-abr
-aaj
-abr
-abr
-aaj
-abr
-acJ
-aac
-aaT
-aaT
-aaT
-acW
-adf
-aeO
-afs
-afW
-ags
-agW
-ahv
-afj
-aiw
-aiZ
-ajH
-adT
-aku
-aku
-aku
-alp
-aku
-amG
-anI
-anI
-aog
-adj
-aaT
-apm
-aqJ
-apm
-aqF
-arV
-apL
-apL
-atn
-atO
-atm
-apL
-apL
-apL
-aqF
-apm
-apm
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-acg
-acg
-acg
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-ads
-ads
-ads
-ads
-ads
-abL
-abL
-aMS
-abL
-abL
-abL
-ads
-ads
-ads
-ads
-aTb
-aOU
-aOU
-aOU
-aOU
-aOU
-aXt
-aYi
-aZb
-baa
-baQ
-baQ
-bdv
-beC
-bfG
-bgI
-bhG
-baQ
-bdv
-beC
-bmi
-bnH
-baQ
-baQ
-bru
-aZd
-aRF
-bmg
-bvZ
-bxg
-byb
-buO
-buO
-bmg
-bCG
-bDN
-bEX
-bGk
-bGk
-bIz
-bGk
-bGk
-bGk
-bGk
-bGk
-bGk
-bGk
-bEX
-bSs
-bDL
-bTX
-ads
-ads
-abL
-abL
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(85,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aab
-aab
-aab
-aab
-aac
-aaF
-aaj
-aaj
-abs
-abC
-abr
-abX
-abs
-abr
-acA
-acK
-aac
-aaT
-aaT
-aaT
-acW
-aei
-aeP
-aft
-afX
-agt
-agX
-ahw
-ahZ
-aix
-aja
-ajI
-ake
-akv
-akv
-akv
-alX
-akv
-ang
-anJ
-aol
-aog
-adj
-aaT
-aaT
-aaT
-apm
-apm
-apm
-ass
-ass
-ass
-ass
-ass
-ass
-ass
-apm
-apm
-apm
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-acg
-acg
-acg
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-aLF
-agH
-aNZ
-ads
-ads
-ads
-ads
-ads
-ads
-aTb
-aOU
-aUF
-aVm
-aVZ
-aOU
-aXu
-aOU
-aZc
-aZf
-aZf
-bcf
-bdw
-aZd
-aZc
-aZf
-aZf
-bcf
-bdw
-aZd
-bmj
-bnI
-aZf
-bcf
-bdw
-aZd
-aRF
-bmg
-bwb
-bxg
-byh
-bzw
-bzw
-bmg
-bCG
-bDN
-bEX
-bGk
-bHk
-bIA
-bJx
-bKC
-bLT
-bNj
-bOx
-bPI
-bGk
-bEX
-bSs
-bDL
-bTX
-ads
-ads
-abL
-abL
-aaa
-aaa
-aaa
-aaa
-acf
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(86,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aac
-aac
-aac
-aac
-aac
-aaG
-aaW
-aaW
-abt
-abD
-abD
-abD
-acl
-abD
-acB
-acL
-aac
-aac
-aac
-aac
-aac
-aej
-aeQ
-afu
-afY
-agu
-agY
-ahx
-aia
-aiy
-ajb
-ajJ
-akf
-aku
-aku
-aku
-alp
-aku
-amG
-anK
-anK
-aog
-aaT
-adj
-aaT
-aaT
-aaT
-aaT
-aaT
-aaT
-aaT
-aaT
-aaT
-aaT
-aaT
-aaT
-aaT
-aaT
-aaT
-aaT
-aaT
-aaT
-aaT
-aaa
-aaa
-aaa
-acg
-acg
-agc
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ahk
-aMT
-ahk
-ads
-ads
-ads
-aOU
-aOU
-aOU
-aTb
-aOU
-aUG
-aUG
-aWa
-aOU
-aXv
-aOU
-aZd
-aZd
-baR
-aZd
-bdx
-aZd
-aZd
-aZd
-bhH
-aZd
-bdx
-aZd
-bmk
-bnJ
-bpd
-aZd
-bdx
-aZd
-aRF
-bmg
-bvZ
-bxg
-byi
-bvW
-bAs
-bmg
-bCG
-bDN
-bEX
-bGk
-bHl
-bHl
-bHl
-bHl
-bHl
-bHl
-bHl
-bPJ
-bGk
-bEX
-bSs
-bDL
-bTX
-ads
-ads
-abL
-abL
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(87,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aac
-aad
-aai
-aal
-aat
-aaH
-aaj
-aaj
-aaj
-aaj
-abP
-aaj
-abP
-abP
-aaj
-acM
-aat
-aal
-aai
-adM
-aac
-aek
-aeR
-acW
-acW
-acW
-acW
-acW
-acW
-acW
-acW
-acW
-acW
-acW
-acW
-aln
-alp
-aku
-amG
-anH
-anH
-akt
-aaT
-adj
-adj
-adj
-adj
-adj
-adj
-adj
-adj
-adj
-adj
-adj
-adj
-adj
-adj
-adj
-adj
-adj
-adj
-adj
-adj
-aab
-aab
-aab
-acg
-acg
-agc
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ahk
-aik
-ahk
-ads
-ads
-ads
-aOU
-aRD
-aOU
-aOV
-aOU
-aUH
-aVn
-aWb
-aWE
-aXw
-aOU
-aZe
-bab
-baS
-baS
-baS
-beD
-bfH
-bgJ
-baS
-baS
-bjS
-baS
-bml
-bnK
-baS
-baS
-baS
-bsP
-btX
-bmg
-bwg
-bxi
-byj
-bvW
-bAs
-bmg
-bCG
-bDN
-bEX
-bGk
-bHm
-bIB
-bJy
-bKD
-bIB
-bIB
-bIB
-bPK
-bGk
-bEX
-bSs
-bDL
-bTX
-ads
-ads
-abL
-abL
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(88,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aac
-aae
-aaj
-aaj
-aau
-aaI
-aaj
-aaj
-aaj
-abE
-aaj
-abY
-aaj
-aaj
-aaj
-acN
-acZ
-aaj
-aaj
-adN
-aag
-ael
-aeS
-afv
-aeo
-agv
-agZ
-ahy
-aeo
-aiz
-adq
-ajK
-akg
-akg
-acW
-aku
-alp
-aku
-amG
-akP
-aom
-aom
-app
-app
-app
-aqK
-aqK
-aqK
-aqK
-app
-app
-aqK
-aqK
-aqK
-aqK
-app
-app
-aqK
-aqK
-aqK
-aqK
-app
-app
-app
-app
-app
-akr
-akr
-akr
-ahk
-ahk
-aEe
-akF
-akF
-akF
-akF
-akF
-akF
-akF
-akF
-akF
-akF
-ahk
-aMT
-ahk
-aOU
-aOU
-aOU
-aOU
-aOU
-aOU
-aOV
-aOU
-aOU
-aOU
-aOU
-aOU
-aXv
-aOU
-aZf
-aZf
-aZf
-bcg
-bdy
-beE
-aZf
-aZf
-aZf
-aZf
-bjT
-aZf
-bmm
-bnI
-aZf
-aZf
-aZf
-aZd
-aRF
-bmg
-bwh
-bxg
-byk
-bzx
-bAt
-bmg
-bCG
-bDN
-bEX
-bGk
-bHn
-bIB
-bIB
-bKE
-bIB
-bNk
-bIB
-bPL
-bGk
-bEX
-bSs
-bDL
-bTX
-ads
-ads
-abL
-abL
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(89,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aac
-aaf
-aak
-aam
-aav
-aaJ
-aaX
-aak
-aak
-abF
-aak
-abZ
-aak
-aak
-aaX
-acO
-aav
-adk
-aak
-adO
-aag
-aem
-aeT
-afw
-aeo
-agw
-aha
-ahz
-aeo
-aiz
-adq
-adq
-adq
-adq
-acW
-aku
-alp
-amI
-ang
-anL
-aom
-aoK
-apq
-apq
-aqm
-apq
-apq
-apq
-arW
-apq
-asM
-apq
-apq
-apq
-apq
-apq
-apq
-apq
-apq
-apq
-apq
-apr
-apr
-azK
-apr
-app
-aBa
-aBf
-aCm
-aiL
-ahk
-arq
-aik
-aik
-aik
-ajo
-ajp
-ajm
-ajm
-ajm
-aik
-aik
-aik
-aik
-aik
-aOV
-aOV
-aQm
-aOV
-aRE
-aSl
-aSl
-aSl
-aSl
-aSl
-aSl
-aSl
-aXx
-aOU
-aYj
-aYj
-aYj
-aYj
-bdz
-aYj
-aYj
-aYj
-bhI
-biP
-bjU
-blc
-bmn
-bnL
-blc
-blc
-blc
-blc
-aRH
-bmg
-bvZ
-bxg
-byl
-bzy
-bAu
-bmg
-bCG
-bDN
-bEX
-bGk
-bHo
-bIB
-bIB
-bKF
-bLU
-bNl
-bIB
-bPL
-bGk
-bEX
-bSs
-bDL
-bTX
-ads
-ads
-abL
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(90,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aac
-aag
-aag
-aag
-aag
-aaK
-aaY
-abi
-abi
-abG
-abQ
-aaY
-abi
-abi
-aaY
-acP
-aag
-aag
-aag
-aag
-aag
-aen
-aeU
-afx
-aeo
-agx
-ahb
-ahA
-aeo
-aeo
-ajc
-aeo
-akg
-akg
-acW
-aku
-alq
-amE
-amG
-anL
-aon
-aoL
-apr
-apr
-apr
-apr
-apr
-apr
-arX
-apr
-apr
-apr
-apr
-apr
-apr
-apr
-apr
-apr
-apr
-apr
-apr
-apr
-apr
-apr
-apr
-app
-aBb
-aBf
-aBf
-aBg
-ahk
-aik
-aik
-aEi
-aEi
-aEi
-aEi
-aEi
-aEi
-aIZ
-aIZ
-aIZ
-aIZ
-aMU
-aIZ
-aIZ
-aIZ
-aIZ
-aQN
-aRF
-aOV
-aTc
-aTc
-aTc
-aTc
-aTc
-aTc
-aXy
-aYj
-aZg
-bac
-aYj
-bch
-bdA
-beF
-bfI
-bgK
-bhJ
-biQ
-bjV
-blc
-bmo
-bnM
-bpe
-bqo
-brv
-blc
-aRH
-bmg
-bvY
-bxg
-bym
-bvW
-bAv
-bmg
-bCG
-bDN
-bEX
-bGk
-bHp
-bIC
-bJz
-bKG
-bLV
-bIB
-bIB
-bPM
-bGk
-bEX
-bSs
-bDL
-bTX
-ads
-ads
-abL
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-cha
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-amy
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(91,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aac
-aad
-aai
-aan
-aat
-aaL
-aaZ
-aag
-abu
-abH
-aag
-aca
-abu
-aag
-aaZ
-acQ
-aat
-aal
-aai
-adM
-aag
-aeo
-aeV
-aeo
-aeo
-agy
-ahc
-ahB
-aib
-aiA
-adq
-aeo
-aeo
-aeo
-acW
-aku
-alp
-aku
-amG
-anL
-aom
-aoL
-aps
-apO
-aqn
-aps
-aps
-aps
-arY
-aps
-aps
-aps
-aps
-aps
-aps
-aps
-avU
-apO
-aps
-aps
-aps
-apr
-apr
-apr
-apr
-app
-aBc
-aBJ
-aCn
-aBd
-ahk
-aik
-aik
-aEi
-aGg
-aGN
-aHv
-aGg
-aGg
-aIZ
-aJJ
-aKG
-aJJ
-aJK
-aOa
-aKG
-aJJ
-aIZ
-aQO
-aRG
-aSm
-aTc
-aTH
-aUI
-aVo
-aTH
-aTH
-aXz
-aYj
-aZh
-bad
-aYj
-bci
-bdB
-bdA
-bdA
-bdA
-bhK
-biQ
-bjW
-bld
-bmp
-bnN
-bpf
-bpf
-brw
-bsQ
-aRH
-bmg
-bvZ
-bxg
-byn
-bzz
-bAw
-bmg
-bCH
-bDO
-bEX
-bGk
-bGk
-bIz
-bJA
-bKH
-bLW
-bNm
-bOy
-bGk
-bGk
-bEX
-bSs
-bDL
-bTX
-ads
-abL
-abL
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-cgi
-chb
-cgi
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-coR
-cpi
-coR
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(92,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aac
-aae
-aaj
-aaj
-aaw
-aaj
-aaZ
-aag
-aaj
-abI
-abR
-acb
-aaj
-aag
-aaZ
-acR
-ada
-aaj
-aaj
-adN
-aag
-adQ
-aeW
-adQ
-aeo
-agz
-ahd
-ahC
-aic
-aiB
-adq
-ajL
-akh
-akw
-akQ
-alo
-alY
-amJ
-anh
-amJ
-amJ
-aoM
-aoM
-aoM
-aqo
-aoM
-aoM
-aoM
-arZ
-aoM
-aoM
-aoM
-aoM
-aoM
-aoM
-aoM
-aoM
-aoM
-aoM
-aoM
-aoM
-aoM
-azb
-azL
-azL
-app
-aBd
-aBK
-aCo
-aik
-ahk
-aik
-aik
-aEi
-aGh
-aGO
-aHw
-aGO
-aGO
-aIZ
-aJK
-aJK
-aJK
-aJK
-aJK
-aJK
-aJK
-aIZ
-aQP
-aRH
-aSn
-aTc
-aTI
-aUJ
-aVp
-aWc
-aUJ
-aXA
-aYj
-aZi
-bad
-aYj
-bcj
-bdA
-bdA
-bfJ
-bgL
-bhL
-biR
-bjX
-ble
-bmq
-bnO
-bpf
-bqp
-brx
-blc
-aRH
-bmg
-bwi
-bxf
-byo
-bzA
-buO
-bmg
-bCI
-bDP
-bDP
-bDP
-bHq
-bID
-bJB
-bKI
-bLX
-bNn
-bOz
-bPN
-bDP
-bEX
-bSs
-bDL
-bTX
-ads
-abL
-abL
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-cgi
-chc
-cgi
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-coR
-cpj
-coR
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(93,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aac
-aah
-aak
-aao
-aav
-aaM
-aba
-aag
-abv
-aaI
-aaj
-aaZ
-acm
-aag
-acC
-acS
-aav
-adl
-aak
-adO
-aag
-aep
-aeX
-afy
-aeo
-agA
-ahc
-ahD
-aib
-aiC
-adq
-ajM
-aki
-akx
-akR
-alp
-alZ
-amK
-ani
-anM
-aoo
-aoN
-apt
-apt
-aqp
-aqL
-ark
-arH
-asa
-apt
-asN
-ato
-ato
-ato
-ato
-ato
-aoN
-apt
-apt
-apt
-aye
-aoM
-apr
-apr
-apr
-app
-aik
-aBf
-aik
-ahk
-ahk
-ahk
-ail
-aEi
-aGi
-aGP
-aHx
-aHx
-aIA
-aJa
-aJL
-aKH
-aLG
-aJJ
-aJK
-aOW
-aJK
-aIZ
-aQQ
-aRH
-aSo
-aTc
-aTJ
-aUK
-aUK
-aUK
-aUK
-aXB
-aYj
-aZj
-bad
-baT
-bck
-bdC
-beG
-bfK
-bgM
-aYj
-biQ
-bjY
-blf
-bmr
-bnP
-bpg
-bqq
-bry
-blc
-aRH
-bmg
-bvW
-bxg
-byp
-bvZ
-bAx
-bvW
-bCJ
-bDQ
-bDQ
-bGl
-bHr
-bHr
-bJC
-bKJ
-bLY
-bHr
-bOA
-bHr
-bDP
-bEX
-bSs
-bDL
-bTX
-ads
-abL
-abL
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-cgi
-chd
-cgi
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-coR
-cpk
-coR
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-acf
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(94,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aac
-aac
-aac
-aac
-aac
-aaN
-abb
-aag
-aag
-abJ
-aag
-acc
-aag
-aag
-aaN
-acT
-aag
-aag
-aag
-aag
-aag
-adQ
-aeY
-adQ
-aeo
-agB
-ahe
-ahE
-aeo
-aiD
-ajd
-ajN
-akj
-aky
-akS
-alq
-ama
-amL
-anj
-anN
-aop
-aoO
-anj
-anj
-aqq
-anj
-anj
-anj
-anj
-anj
-anj
-anj
-anj
-anj
-anj
-anj
-avV
-anj
-anj
-axB
-ayf
-aoM
-azc
-apr
-aAe
-app
-aik
-aBf
-aBf
-ahk
-aik
-aik
-aik
-aFB
-aGj
-aGQ
-aHy
-aGj
-aHY
-aJb
-aJK
-aJK
-aJK
-aJK
-aJK
-aJK
-aJK
-aIZ
-aQR
-aRI
-aOU
-aTc
-aTK
-aQT
-aQT
-aQT
-aWF
-aXC
-aYk
-aZk
-aZk
-baU
-bcl
-aZk
-aZk
-bfL
-bgN
-bgN
-biS
-bjZ
-blg
-bms
-bnQ
-blg
-blg
-blg
-blg
-aRH
-bmg
-bwj
-bxk
-byq
-bzB
-bAy
-bBz
-bCK
-bDR
-bEY
-bGm
-bHs
-bIE
-bJD
-bKK
-bLZ
-bHr
-bHr
-bPO
-bDP
-bEX
-bSt
-bTk
-bCE
-bCE
-abL
-abL
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-cgj
-che
-cgj
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-coS
-cpl
-coS
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(95,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aab
-aab
-aab
-aab
-aac
-aaO
-abc
-abj
-abw
-abK
-abS
-acd
-acn
-acu
-acD
-acU
-adb
-adm
-adD
-adD
-adW
-adD
-aeZ
-adD
-afZ
-aeZ
-ahf
-aeZ
-aid
-aiE
-aje
-ajO
-akk
-akk
-akT
-alr
-amb
-aiI
-aiI
-anO
-aoq
-aiI
-aiI
-aiI
-aiI
-aiI
-aiI
-aiI
-aiI
-aiI
-aiI
-aiI
-aiI
-aiI
-aiI
-aiI
-aiI
-aiI
-asS
-auW
-ayg
-aoM
-azd
-apr
-aAe
-app
-aik
-aBL
-aCp
-akr
-aik
-ajm
-ajm
-aEi
-aGk
-aGR
-aHz
-aHW
-aIB
-aJc
-aJM
-aKI
-aJM
-aMV
-aJM
-aKI
-aPF
-aQn
-aQS
-aRJ
-aSp
-aTd
-aTL
-aQT
-aVq
-aVq
-aWG
-aXD
-aYl
-aZl
-bae
-baV
-bcm
-bdD
-beH
-bfM
-bgO
-bhM
-biT
-bka
-blh
-bmt
-bnR
-bph
-bqr
-brz
-blk
-aRH
-bmg
-bwk
-bxl
-buQ
-buQ
-buQ
-bBA
-bCL
-bDS
-bDS
-bDS
-bHt
-bIF
-bJE
-bKL
-bMa
-bNo
-bHr
-bPP
-bDP
-bCE
-bCE
-bTl
-bTk
-bCE
-abL
-aaT
-aaT
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaT
-aaT
-bTn
-bTn
-chf
-bTn
-bTn
-aaT
-aaT
-aaT
-aaT
-aaT
-aaT
-aaT
-bTn
-bTn
-cpm
-bTn
-bTn
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(96,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aab
-aac
-aaP
-abd
-abk
-abx
-abx
-abT
-ace
-aco
-acv
-acE
-acV
-adc
-adn
-adE
-adP
-adX
-adP
-afa
-afz
-aga
-agC
-ahg
-ahF
-aie
-aga
-ahg
-ajP
-akl
-akz
-akU
-als
-amc
-aiI
-ank
-anP
-aor
-aoP
-amN
-apP
-aji
-aji
-amN
-apP
-aji
-aji
-amN
-apP
-aji
-aji
-aiI
-avu
-avW
-aiI
-axc
-auW
-ayg
-aoM
-aze
-apr
-aAe
-app
-aik
-aik
-aCq
-akr
-aik
-aEf
-aEf
-aEi
-aGl
-aGR
-aHA
-aHX
-aGj
-aJb
-aJK
-aJK
-aJK
-aJK
-aJK
-aJK
-aPG
-aIZ
-aQT
-aRK
-aQT
-aTc
-aTM
-aQT
-aVr
-aVs
-aQT
-aXE
-aYm
-aZm
-baf
-baW
-bcn
-bcn
-beI
-bfN
-bgP
-bhN
-biU
-bkb
-bli
-bmu
-bnS
-bpi
-bqs
-brA
-blk
-btY
-buR
-bwl
-bxm
-bxm
-bxm
-bxm
-bBB
-bCM
-bDT
-bEZ
-bDP
-bHu
-bHr
-bJC
-bKM
-bMb
-bNp
-bOB
-bPQ
-bDP
-bRu
-bCE
-bCE
-bTY
-bCE
-bTn
-aaT
-aaT
-bXO
-bYI
-bZk
-bZk
-bZk
-bZk
-ccp
-bXO
-aaT
-aaT
-cft
-cgk
-chg
-chV
-bTn
-aaT
-aaT
-aaT
-aaT
-aaT
-aaT
-aaT
-bTn
-cgk
-chg
-cpI
-cft
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(97,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aab
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aag
-aag
-adF
-adq
-adY
-adq
-adq
-afA
-adq
-adq
-adq
-ahG
-acW
-acW
-acW
-acW
-acW
-acW
-akV
-alt
-amd
-aiI
-anl
-anQ
-aos
-aoQ
-amN
-apQ
-aqr
-aji
-amN
-apQ
-asb
-aji
-amN
-apQ
-aqr
-aji
-aiI
-avv
-avX
-aws
-axd
-auW
-ayg
-aoM
-azc
-apr
-aAe
-app
-aik
-aBf
-aCr
-ahk
-aik
-aEg
-aEK
-aEi
-aGm
-aGR
-aGj
-aHY
-aGj
-aIZ
-aJN
-aKJ
-aLH
-aJJ
-aJK
-aOW
-aPG
-aIZ
-aQT
-aRK
-aSq
-aTc
-aTN
-aUL
-aVs
-aQT
-aWH
-aXF
-aYn
-aZn
-bag
-baX
-bco
-bdE
-beJ
-bfO
-bgQ
-bhO
-biV
-bkc
-blj
-bmv
-bnT
-bpj
-bqt
-brB
-blk
-btZ
-aRH
-bwm
-bwm
-bwm
-bwm
-bwm
-bBC
-bwm
-bwm
-bFa
-bGn
-bHv
-bIG
-bJF
-bKN
-bMc
-bNq
-bOC
-bNq
-bDP
-bJO
-bJO
-bTm
-bTZ
-bUD
-bTn
-aaT
-aaT
-bXO
-bYJ
-bYJ
-bYJ
-bYJ
-bYJ
-bYJ
-bXO
-aaT
-aaT
-bTn
-bTn
-chf
-chW
-bTn
-aaT
-aaT
-aaT
-aaT
-aaT
-aaT
-aaT
-bTn
-chW
-cpm
-bTn
-bTn
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(98,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-acW
-add
-ado
-adG
-adG
-adZ
-aeq
-afb
-adG
-adG
-adG
-adG
-adG
-acW
-aiF
-ajf
-ajQ
-akm
-akA
-akP
-alt
-ame
-aiI
-amg
-anQ
-aor
-aoR
-amN
-apQ
-aji
-aji
-amN
-apQ
-aji
-aji
-amN
-apQ
-aji
-akp
-aiI
-avv
-avX
-aws
-axd
-auW
-ayg
-aoM
-azc
-apr
-aAe
-app
-aik
-aBf
-ahk
-ahk
-ail
-ahk
-aEL
-aEi
-aGn
-aGR
-aHB
-aHZ
-aIC
-aJd
-aJO
-aJK
-aJK
-aJK
-aOb
-aJK
-aPG
-aIZ
-aQU
-aRK
-aSr
-aTc
-aTO
-aUM
-aQT
-aWd
-aWI
-aXE
-aYo
-aZo
-bah
-baY
-bcp
-baY
-beK
-bfN
-bgP
-bhP
-biW
-bkb
-bli
-bmu
-bnS
-bpk
-bqs
-brC
-blk
-bua
-buS
-bwm
-bxn
-byr
-bzC
-bxn
-bBD
-bCN
-bDU
-bFb
-bDY
-bHw
-bIH
-bJG
-bKO
-bMd
-bNr
-bOD
-bPR
-bQI
-bRv
-bJO
-bTm
-bTZ
-bUE
-bVB
-bVB
-bVB
-bXO
-bYK
-bYK
-bYK
-bYK
-bYK
-bYK
-bXO
-bVB
-bVB
-bVB
-bUF
-bUF
-bUF
-bTn
-aaT
-aaT
-aaT
-ckU
-aaT
-aaT
-aaT
-bTn
-bUF
-bUF
-bUF
-bTn
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(99,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aab
-acW
-ade
-adp
-adH
-adQ
-aea
-aer
-afc
-afB
-agb
-agD
-adQ
-ahH
-acW
-aiG
-ajg
-ajR
-akn
-akB
-akW
-alu
-aku
-aiI
-amg
-anQ
-aot
-aoQ
-amN
-apR
-aqs
-aqM
-amN
-arI
-asc
-ast
-amN
-atp
-atP
-aur
-aiI
-avw
-avY
-aiI
-axe
-axC
-ayh
-axh
-azf
-apr
-aAe
-app
-aBe
-aBf
-aCs
-aiL
-aik
-aDb
-aEM
-aEi
-aGo
-aGR
-aGj
-aHY
-aID
-aIZ
-aJP
-aKK
-aJK
-aMW
-aOc
-aOX
-aPH
-aIZ
-aQT
-aRL
-aSs
-aTc
-aTP
-aUN
-aVt
-aWe
-aWJ
-aXG
-aYp
-aZp
-bai
-baZ
-bcq
-bdF
-beL
-bfP
-bgR
-bhQ
-bhQ
-bkd
-bli
-bmw
-bnU
-bpl
-bqu
-brD
-blk
-bub
-buS
-bwn
-bxn
-bys
-bzD
-bAz
-bBE
-bCO
-bDV
-bFc
-bDY
-bHx
-bII
-bJH
-bKP
-bMe
-bNs
-bOE
-bOE
-bQJ
-bRw
-bSu
-bTm
-bTZ
-bUF
-bVC
-bWi
-bVC
-bXP
-bYK
-bZl
-bZl
-bZl
-bZl
-bYK
-cdc
-bVC
-bWi
-bVC
-bUF
-bUF
-bUF
-bTn
-aaT
-aaT
-ckU
-clO
-ckU
-aaT
-aaT
-bTn
-cgl
-bUF
-bUF
-cqm
-cqm
-cqm
-cqm
-cqm
-cqm
-cqm
-cqm
-cqm
-cqm
-bVB
-bVB
-bVB
-bVB
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-czr
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(100,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aab
-acW
-adf
-adq
-adq
-adq
-aeb
-aes
-afd
-afd
-afd
-agE
-adQ
-ahI
-acW
-aiH
-ajh
-ajS
-ako
-akC
-akt
-aiI
-amf
-aiI
-amg
-anR
-aou
-aoS
-apu
-apS
-aqt
-aqN
-arl
-apS
-aqt
-asu
-arl
-apS
-aqt
-aus
-aiI
-avx
-avZ
-aiI
-axe
-auW
-ayg
-aoM
-azc
-apr
-aAe
-app
-aik
-aBf
-aCt
-aDb
-aDc
-aDc
-aEN
-aEi
-aGp
-aGR
-aGj
-aHY
-aGj
-aIZ
-aJQ
-aIZ
-aLI
-aIZ
-aIZ
-aIZ
-aIZ
-aQo
-aQV
-aRM
-aRM
-aRM
-aRM
-aRM
-aRM
-aWf
-aWK
-aXH
-aYq
-aYq
-aYq
-bba
-bcr
-bdG
-beM
-bfQ
-bfQ
-bhR
-biX
-bke
-blk
-bmx
-bnV
-bpm
-bqv
-bqv
-bpm
-bpm
-aRH
-bwm
-bxo
-byt
-byt
-byt
-bBF
-bCP
-bDW
-bFc
-bGo
-bHy
-bII
-bJH
-bKQ
-bMf
-bNt
-bOF
-bOF
-bQK
-bRx
-bJO
-bTm
-bTZ
-bUF
-bVB
-bVB
-bVB
-bXO
-bYL
-bYK
-bYK
-bYK
-bYK
-ccq
-bXO
-bVB
-bVB
-bVB
-cgl
-bUF
-bUH
-bTn
-aaT
-aaT
-ckV
-ckY
-cmU
-aaT
-aaT
-bTn
-coT
-bUF
-bUF
-cqm
-cqQ
-crt
-crt
-crt
-crt
-crt
-crt
-crt
-cwe
-bVB
-cnE
-cnE
-bVB
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(101,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aab
-acW
-adg
-adq
-adq
-adq
-adQ
-aes
-afd
-afd
-afd
-agE
-ahh
-aeo
-acW
-aiI
-aiI
-aiI
-aiI
-aiI
-aiI
-alv
-amg
-amg
-amg
-anQ
-amg
-amg
-apv
-amg
-amg
-apU
-arm
-amg
-amg
-apU
-asO
-amg
-amg
-apU
-amg
-amg
-awa
-aws
-axe
-auW
-ayg
-aoM
-azc
-apr
-aAe
-app
-ail
-ahk
-aCu
-aDc
-aDb
-aDb
-aEO
-aEi
-aGq
-aGQ
-aHx
-aIa
-aHx
-aJe
-aJR
-aKL
-aLJ
-aMX
-aOd
-akG
-akI
-akG
-aQW
-aRM
-aSt
-aTe
-aTQ
-aUO
-aVu
-aWf
-aWL
-aXI
-aYr
-aZq
-aWf
-bbb
-bcs
-aXM
-beN
-bfR
-aXM
-aXM
-beN
-bkf
-bll
-bmy
-bnW
-bpn
-bqw
-brE
-bsR
-bpm
-aRH
-bwm
-bxp
-byu
-byu
-byu
-bBG
-bCQ
-bDW
-bFd
-bDY
-bHy
-bII
-bJH
-bKR
-bMg
-bNu
-bNu
-bPS
-bKX
-bMm
-bJO
-bTn
-bUa
-bUF
-bVB
-adj
-aaT
-bXQ
-bYM
-bZl
-bZl
-bZl
-bZl
-bYK
-bXQ
-aaT
-adj
-bVB
-bUF
-bUF
-bUF
-bTn
-aaT
-aaT
-ckd
-clP
-ckd
-aaT
-aaT
-bTn
-bUF
-bUF
-bUF
-cqm
-cqR
-cru
-cru
-cru
-cru
-cru
-cru
-cru
-cwf
-bTn
-bUF
-bUF
-bTn
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(102,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aab
-acW
-adh
-adr
-adI
-adI
-adI
-aet
-afe
-afC
-afC
-agF
-adQ
-aeo
-aif
-aiI
-aji
-aji
-aji
-aiI
-akX
-alw
-amh
-amM
-amM
-anS
-aov
-amM
-apw
-apT
-amM
-aqO
-amM
-arJ
-amM
-aqO
-amM
-arJ
-amM
-aml
-amg
-amg
-awa
-awt
-axf
-auW
-ayg
-aoM
-azc
-apr
-aAf
-app
-aBf
-aBf
-aik
-aDc
-aDc
-aDc
-aEP
-aEi
-aGr
-aGR
-aHC
-aHY
-aGj
-aEi
-aJS
-aKM
-aLK
-aMY
-aOd
-akG
-akI
-akI
-aAw
-aRM
-aSu
-aTf
-aTR
-aTR
-aVv
-aWg
-aWM
-aXJ
-aYs
-aZr
-baj
-bbc
-bct
-bdH
-beO
-bfS
-bfS
-bfS
-beO
-bkg
-bfS
-bmz
-bnX
-bpo
-bqx
-brF
-bsS
-bpm
-aRH
-bwm
-bxq
-byv
-byv
-bxq
-bBH
-bCR
-bDV
-bFe
-bDY
-bHz
-bIJ
-bJI
-bKS
-bMh
-bNv
-bIH
-bPT
-bQL
-bRy
-bJO
-bTm
-bTZ
-bUG
-bVB
-adj
-aaT
-bXQ
-bYN
-bYK
-bYK
-caw
-bYK
-bYK
-bXQ
-aaT
-adj
-bVB
-bUF
-bUF
-bUF
-bTn
-aaT
-ckd
-ckd
-clQ
-ckd
-ckd
-aaT
-bTn
-bUF
-bUF
-bUF
-cqm
-cqR
-cru
-cru
-cru
-cru
-cru
-cru
-cru
-cwf
-cqm
-cgl
-bUF
-bTn
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(103,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aab
-acW
-acW
-acW
-acW
-acW
-acW
-acW
-acW
-acW
-acW
-acW
-ahi
-aeo
-aig
-aiI
-ajj
-aji
-aji
-akD
-akY
-alx
-ami
-amN
-anm
-anT
-amg
-amg
-apx
-apU
-amg
-amg
-arn
-apU
-amg
-amg
-asP
-apU
-amg
-amg
-auU
-avy
-awb
-aws
-axg
-auW
-ayg
-aoM
-azc
-apr
-aAe
-app
-aBg
-aBM
-aCv
-aik
-aAY
-aEh
-aEQ
-aEi
-aEi
-aGS
-aEi
-aIb
-aEi
-aEi
-aJT
-aKN
-aKN
-aKN
-aKN
-aKN
-aKN
-aQp
-aQX
-aRM
-aSv
-aTg
-aTS
-aUP
-aVw
-aWh
-aWN
-aXK
-aYt
-aZs
-aWh
-bbd
-bcu
-bdI
-beP
-bfT
-bgS
-bhS
-biY
-bkh
-blm
-bmA
-bnY
-bpm
-bqy
-brG
-bsT
-bpm
-aRH
-bwm
-bxq
-byw
-bzE
-bxq
-bBI
-bCS
-bDX
-bFf
-bDY
-bHA
-bII
-bII
-bKT
-bMi
-bNw
-bIH
-bPU
-bKZ
-bMe
-bSu
-bTm
-bTZ
-bUF
-bVB
-adj
-aaT
-bXQ
-bYO
-bZl
-bZl
-bZl
-bZl
-bYK
-bXQ
-aaT
-adj
-bVB
-bUF
-bUF
-bUF
-bVB
-aaT
-cke
-ckW
-ckY
-cmV
-cke
-aaT
-bVB
-bUF
-bUF
-bUF
-cqm
-cqR
-cru
-cru
-cru
-ctA
-cru
-cru
-cru
-cwf
-cqm
-coT
-bUF
-bTn
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(104,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-abL
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-acW
-adQ
-aeo
-aeo
-aiI
-aji
-aji
-akp
-aji
-akZ
-aly
-ami
-amN
-ann
-anU
-aow
-aoT
-apu
-apV
-aqu
-aqP
-arl
-arK
-aqu
-aqP
-arl
-atq
-aqu
-aqP
-aiI
-aiI
-aiI
-aiI
-aoM
-auW
-ayi
-aoN
-azg
-azM
-aAg
-app
-aBh
-ahk
-ahk
-aik
-ahk
-ahk
-aEL
-aEi
-aGs
-aGT
-aHD
-aIc
-aIE
-aHD
-aJU
-aKN
-aLL
-aMZ
-aOe
-aNc
-aKN
-akG
-aAw
-aRM
-aSw
-aTg
-aTT
-aUQ
-aVx
-aWf
-aWO
-aXL
-aYu
-aZt
-aWf
-bbe
-bcv
-bdJ
-beQ
-bfU
-bfW
-bfV
-biZ
-bfV
-bfV
-bmB
-bnZ
-bpp
-bqz
-brH
-bsU
-bpm
-aRH
-bwm
-bxr
-bxr
-bwm
-bAA
-bBJ
-bCT
-bDY
-bFg
-bDY
-bHB
-bII
-bII
-bKU
-bMj
-bII
-bOG
-bPV
-bQM
-bRz
-bJO
-bTm
-bTZ
-bUF
-bVB
-adj
-aaT
-bXQ
-bYP
-bYK
-bYK
-bYK
-bYK
-bYK
-bXQ
-aaT
-adj
-bVB
-bUE
-bUF
-bUF
-bVB
-aaT
-ckd
-ckX
-ckY
-cmW
-ckd
-aaT
-bVB
-bUF
-bUF
-bUF
-cqm
-cqR
-cru
-cru
-csM
-ctB
-cum
-cru
-cru
-cwf
-cqm
-bUF
-bUF
-bVB
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(105,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-abL
-abL
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-acW
-ahj
-ahJ
-aih
-aiJ
-aji
-aji
-aji
-aji
-ala
-alz
-amj
-amN
-ano
-amg
-amg
-aoU
-amN
-apW
-aqv
-aqQ
-amN
-arL
-asd
-asv
-amN
-atr
-atQ
-aut
-aiI
-avz
-awc
-awu
-aoM
-auW
-ayg
-aoM
-azc
-apr
-aAe
-app
-aik
-aBN
-ahk
-aik
-ail
-aik
-aER
-aEi
-aGt
-aGU
-aHE
-aId
-aHE
-aJf
-aJV
-aKO
-aLM
-aNa
-aOf
-aNc
-aNd
-akI
-aAw
-aRM
-aSx
-aTg
-aTg
-aTg
-aVy
-aWf
-aWP
-aWP
-aWP
-aWP
-bak
-bbf
-bcv
-bdJ
-beR
-bfV
-bgT
-bhT
-bja
-bki
-bfV
-bmC
-boa
-bpq
-bqA
-brI
-bsV
-bpm
-buT
-bwo
-bxs
-byx
-bzF
-bAB
-bBK
-bCU
-bDZ
-bFh
-bDY
-bHC
-bII
-bII
-bKT
-bMk
-bII
-bOH
-bPV
-bKX
-bMm
-bJO
-bTn
-bUa
-bUF
-bVB
-bVB
-bVB
-bXO
-bYL
-bZl
-bZl
-bZl
-bZl
-ccq
-bXO
-bVB
-bVB
-bVB
-bUF
-bUF
-bUF
-bVB
-aaT
-ckd
-ckY
-ckY
-ckY
-ckd
-aaT
-bVB
-bUF
-bUF
-bUF
-cqm
-cqR
-cru
-cru
-cru
-ctC
-cru
-cru
-cru
-cwf
-cqm
-bUF
-bUF
-bVB
-aaa
-cui
-cui
-cui
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(106,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-abL
-abL
-abL
-ads
-ads
-ads
-ads
-ads
-ads
-acW
-acW
-acW
-acW
-aiI
-ajk
-aji
-aji
-akE
-alb
-alA
-ami
-amN
-anp
-amg
-aox
-aoV
-amN
-aji
-aji
-apQ
-amN
-aji
-aji
-apQ
-amN
-aji
-aji
-apQ
-aiI
-atR
-atR
-atR
-aoM
-auW
-ayg
-aoM
-azd
-apr
-aAe
-app
-aik
-aik
-ahk
-ahk
-ahk
-aik
-aES
-aEi
-aGu
-aGV
-aHF
-aIe
-aIF
-aJg
-aJW
-aKP
-aLN
-aLN
-aOg
-aOY
-aKN
-akI
-aAw
-aRM
-aSy
-aTh
-aTU
-aUR
-aVz
-aWi
-aWQ
-aXM
-aXM
-aXM
-aXM
-bbg
-bcv
-bdJ
-beS
-bfW
-bgU
-bhU
-bjb
-bkj
-bln
-bmD
-bob
-bpm
-bpq
-bpq
-bpq
-bpm
-buU
-boh
-bxt
-byy
-bzG
-bAC
-bBL
-bCV
-bEa
-bEa
-bGp
-bHD
-bII
-bJJ
-bKV
-bMj
-bII
-bIH
-bPT
-bQL
-bRA
-bJO
-bTm
-bTZ
-bUF
-bVC
-bWi
-bVC
-bXP
-bYK
-bYK
-bYK
-bYK
-bYK
-bYK
-bXP
-bVC
-bWi
-bVC
-bUF
-bUF
-bUF
-bVB
-aaT
-ckf
-ckY
-clR
-ckY
-cnD
-aaT
-bVB
-bUE
-bUF
-bUF
-cqm
-cqR
-cru
-cru
-cru
-cru
-cru
-cru
-cru
-cwf
-cqm
-bUF
-bUE
-bVB
-aaa
-cui
-cui
-cui
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(107,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-abL
-abL
-abL
-abL
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-aiI
-ajj
-aji
-aji
-akD
-alc
-alB
-amk
-amN
-anq
-amg
-amg
-aoW
-amN
-aji
-aqr
-apQ
-amN
-aji
-asb
-apQ
-amN
-aji
-aqr
-apQ
-aiI
-atR
-atR
-atR
-aoM
-auW
-ayg
-aoM
-azh
-aoL
-aAh
-app
-aBi
-aBO
-ahk
-aDd
-aik
-aik
-aET
-aEi
-aGv
-aGW
-aHG
-aIf
-aHG
-aGv
-aJX
-aKQ
-aLO
-aNb
-aOh
-aOZ
-aNd
-akI
-aAw
-aRM
-aSz
-aSz
-aSz
-aSz
-aSz
-aWj
-aWR
-aXN
-aXN
-aZu
-aXN
-aXN
-bcw
-bdK
-beT
-bfV
-bgV
-bhV
-bhX
-bkk
-bfW
-bmE
-boc
-bpr
-bqB
-brJ
-bsW
-buc
-buV
-boh
-bxt
-byz
-bzH
-bAD
-bBM
-bCW
-bEb
-bFi
-bDY
-bHE
-bIK
-bJK
-bKW
-bMl
-bNx
-bIH
-bPW
-bKZ
-bMe
-bSu
-bTm
-bTZ
-bUF
-bVB
-bVB
-bVB
-bXO
-bYK
-bYK
-bZQ
-bYK
-bYK
-bYK
-bXO
-bVB
-bVB
-bVB
-bUF
-bUF
-bUF
-bVB
-aaT
-ckd
-ckY
-ckY
-ckY
-ckd
-aaT
-bVB
-bUF
-bUF
-bUF
-cqm
-cqR
-cru
-cru
-cru
-cru
-cru
-cru
-cru
-cwf
-cqm
-bUF
-bUF
-cxB
-aaa
-aab
-cui
-aab
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(108,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-abL
-abL
-abL
-abL
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-aiI
-aji
-aji
-aji
-aiI
-akX
-alC
-aml
-amN
-anr
-amg
-amg
-aoX
-amN
-aji
-aji
-aqR
-amN
-aji
-aji
-aqR
-amN
-aji
-aji
-aqR
-aiI
-atR
-ats
-atR
-aoM
-aqo
-ayj
-amJ
-aom
-aon
-aom
-aom
-ahk
-ahk
-ahk
-aDe
-aik
-aEi
-aEU
-aEi
-aGw
-aGX
-aHH
-aIf
-aHH
-aJh
-aJY
-aKN
-aLP
-aNc
-aNc
-aPa
-aKN
-akG
-aAw
-aRM
-aSA
-aSA
-aSA
-aSA
-aSA
-aWj
-aWS
-aXO
-aWS
-aZv
-bal
-bal
-aZv
-bdL
-aZv
-aZv
-bgW
-bhW
-bhX
-bkl
-bfW
-bmF
-bod
-bps
-bqC
-brK
-boe
-boe
-buW
-boh
-bxt
-byA
-bzI
-bAE
-bBN
-bCX
-bEc
-bEc
-bEc
-bHF
-bIL
-bJL
-bKX
-bMm
-bJO
-bOI
-bPV
-bQM
-bRB
-bJO
-bTm
-bTZ
-bUF
-bVB
-adj
-aaT
-bXO
-bYQ
-bZm
-bYQ
-bYQ
-bZm
-bXO
-bXO
-aaT
-adj
-bVB
-bUF
-bUF
-bUG
-bVB
-aaT
-ckd
-ckX
-ckY
-cmW
-ckd
-aaT
-bVB
-bUF
-bUF
-bUF
-cqm
-cqS
-crv
-crv
-crv
-ctD
-crv
-crv
-crv
-cwg
-cqm
-bUF
-bUF
-bVB
-aaa
-aab
-cui
-aab
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(109,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-acf
-aaa
-aaa
-aaa
-abL
-abL
-abL
-abL
-abL
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-aiI
-aiI
-aiI
-aiI
-aiI
-aiI
-aiI
-aiI
-aiI
-aiI
-aiI
-aiI
-aiI
-aiI
-aiI
-aiI
-aiI
-aiI
-aiI
-aiI
-aiI
-aiI
-aiI
-aiI
-aiI
-aiI
-atR
-aoM
-aoM
-aoM
-axD
-ayh
-axh
-azi
-apr
-aAi
-app
-aBj
-aBP
-aCw
-aik
-aik
-aEi
-aEV
-aFC
-aGx
-aGY
-aHG
-aIf
-aHG
-aGx
-aJZ
-aKN
-aLQ
-aNd
-aNd
-aKN
-aKN
-akG
-aAw
-aRM
-aSB
-aTi
-aTi
-aTi
-aVA
-aRN
-aWT
-aTj
-aYv
-aZv
-bam
-bbh
-bcx
-bdM
-beU
-aZv
-bgX
-bhX
-bhX
-bkm
-blo
-bmF
-boe
-boe
-bqD
-brL
-bsX
-bud
-buX
-boh
-bxt
-byA
-bzJ
-bAF
-bBO
-bCY
-bEd
-bFj
-bEc
-bHG
-bIH
-bJL
-bKY
-bMn
-bJL
-bOH
-bPV
-bKX
-bMm
-bJO
-bTn
-bUa
-bUF
-bVB
-adj
-aaT
-bXO
-bXO
-bZn
-bZn
-cax
-bZn
-bXO
-bXO
-aaT
-adj
-bVB
-bUF
-bUF
-bUF
-bVB
-aaT
-cke
-ckW
-ckY
-cmV
-cke
-aaT
-bVB
-bUF
-bUF
-bUG
-cqm
-cqm
-cqm
-cqm
-csN
-ctE
-csj
-csj
-csj
-csj
-cqm
-cgm
-bUF
-bVB
-aaa
-aab
-cui
-aab
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(110,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-abL
-abL
-abL
-abL
-asQ
-abL
-atR
-auu
-atR
-atR
-atT
-awv
-atT
-auW
-ayk
-ayM
-azj
-azN
-apr
-aAA
-aik
-aik
-aik
-aik
-aik
-aEi
-aEW
-aEi
-aGu
-aGZ
-aHH
-aIf
-aHH
-aJi
-aKa
-aEi
-aLR
-akG
-akG
-akG
-akG
-akG
-aAy
-aRM
-aSz
-aRM
-aTV
-aRM
-aSz
-aRN
-aWU
-aSD
-aYw
-aZv
-ban
-bbi
-bcy
-bdN
-beV
-aZv
-bgY
-bhX
-bjc
-bkm
-bfW
-bmF
-boe
-boe
-boe
-brM
-bps
-bue
-buY
-boh
-bxt
-byA
-bzJ
-bAG
-bBP
-bCZ
-bAF
-bFk
-bEc
-bHH
-bIM
-bJM
-bKZ
-bMo
-bNy
-bIH
-bPT
-bQL
-bRC
-bJO
-bTm
-bTZ
-bUF
-bVB
-adj
-aaT
-aaT
-bXO
-bXO
-bZR
-cay
-bXO
-bXO
-aaT
-aaT
-adj
-bVB
-bUF
-bUF
-bUF
-bVB
-aaT
-ckd
-cke
-clS
-cke
-ckd
-aaT
-bVB
-bUF
-bUF
-bUF
-bTn
-aaT
-adj
-cqm
-csO
-ctF
-cun
-cuS
-cuS
-cwh
-cwD
-cwT
-cxg
-bVB
-aaa
-aab
-cui
-aab
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(111,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-abL
-abL
-abL
-abL
-abL
-atS
-aoM
-aoM
-aoM
-aoM
-aoM
-aoM
-axE
-avC
-aoN
-azk
-azO
-aAj
-app
-ajs
-aBQ
-aik
-aik
-aik
-aEi
-aEX
-aFD
-aGv
-aGW
-aHG
-aIf
-aHG
-aGv
-aKb
-aEi
-aLR
-akI
-akI
-akI
-akG
-akG
-aAw
-aRN
-aSC
-aTj
-aTj
-aTj
-aTj
-aWk
-aWV
-aWx
-aYx
-aZv
-bao
-bbj
-bcz
-bdO
-beW
-aZv
-bgZ
-bhY
-bhW
-bkm
-blp
-bmG
-bof
-boe
-boe
-brN
-boe
-bsY
-buZ
-boh
-bxt
-byB
-bzI
-bAH
-bBQ
-bDa
-bEe
-bAF
-bEc
-bHI
-bIH
-bJN
-bKZ
-bMp
-bNz
-bIM
-bPX
-bKZ
-bMe
-bSu
-bTm
-bTZ
-bUF
-bVB
-adj
-aaT
-aaT
-aaT
-bXO
-bXQ
-bXQ
-bXO
-aaT
-aaT
-aaT
-adj
-bVB
-bUF
-bUF
-chX
-bTn
-aaT
-ckg
-ckZ
-clT
-bVB
-ckg
-aaT
-bTn
-bUF
-bUF
-bUF
-bVB
-aaT
-adj
-csj
-csP
-ctG
-ctG
-ctG
-cvz
-cwi
-cwE
-cwU
-caA
-bTn
-aaa
-aab
-cui
-aab
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(112,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-abL
-abL
-abL
-abL
-abL
-atR
-aoM
-auV
-avA
-avA
-aww
-axh
-axF
-ayl
-amJ
-aom
-azP
-aom
-aom
-ahk
-ahk
-ahk
-ahk
-ail
-aEi
-aEU
-aEi
-aGw
-aGX
-aHH
-aIf
-aHH
-aJh
-aJY
-aKR
-aDP
-akI
-akI
-akI
-akI
-akG
-aAw
-aRN
-aSD
-aSD
-aSD
-aSD
-aSD
-aSD
-aSD
-aSD
-aSD
-aZv
-bap
-bbk
-bcA
-bdO
-beX
-aZv
-bha
-bhZ
-bjd
-bkn
-blq
-bmH
-bog
-bpt
-bqE
-brO
-bsY
-buf
-buf
-boh
-bxt
-byB
-bzJ
-bAI
-bBR
-bDb
-bEf
-bFl
-bEc
-bHJ
-bIH
-bJL
-bLa
-bMq
-bJL
-bOJ
-bPV
-bQM
-bRD
-bJO
-bTm
-bTZ
-bUG
-bVB
-adj
-aaT
-aaT
-aaT
-aaT
-aaT
-aaT
-aaT
-aaT
-aaT
-aaT
-adj
-bVB
-bUF
-bUF
-bUH
-bTn
-bTn
-bVB
-bVB
-bWi
-bVB
-bVB
-bTn
-bTn
-coT
-bUF
-cpJ
-bTn
-aaT
-adj
-cqm
-csQ
-ctH
-cuo
-cuT
-cvA
-cwj
-cqm
-cwV
-caA
-bTn
-aaa
-aab
-cui
-aab
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(113,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-atR
-aoM
-auW
-avB
-apt
-awx
-aoN
-axG
-aym
-aoM
-aoL
-azQ
-aAk
-app
-aBk
-aBR
-aik
-ajm
-aik
-aik
-aEY
-aEi
-aGx
-aGU
-aHI
-aIf
-aIG
-aJj
-aKc
-aKR
-aDP
-akG
-akG
-aHU
-akI
-akG
-aAw
-aRN
-aSE
-aSD
-aSD
-aSD
-aVB
-aSD
-aSD
-aSD
-aYy
-aZv
-bal
-bbl
-bcB
-bdP
-aZv
-aZv
-bfW
-bia
-bfW
-bfW
-bfU
-bmI
-boh
-boh
-bqF
-brP
-bsZ
-bqF
-bva
-boh
-bxu
-byC
-bzI
-bAJ
-bBS
-bDc
-bzI
-bzI
-bEc
-bHK
-bIN
-bJO
-bLb
-bMr
-bNA
-bOK
-bPY
-bQN
-bRE
-bJO
-bTm
-bTZ
-bUH
-bTn
-bVB
-bVB
-bVB
-bVB
-bVB
-bVB
-bVB
-bVB
-bVB
-bVB
-bVB
-bVB
-bVB
-cgm
-bUF
-bUF
-bTn
-bUF
-bUF
-bVB
-clT
-bVB
-cnE
-bUF
-bTn
-cgm
-bUF
-bUF
-bTn
-bTn
-bTn
-cqm
-cqm
-cqm
-cqm
-cqm
-cqm
-cqm
-cqm
-ccs
-caA
-bTn
-aaa
-aab
-cui
-aab
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(114,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-atR
-aoM
-auW
-avC
-awd
-asS
-axi
-asS
-asS
-aoM
-apr
-azR
-apr
-app
-aik
-aik
-aik
-ajm
-aik
-aik
-aEZ
-aEi
-aGu
-aHa
-aHJ
-aIg
-aHJ
-aJk
-aKd
-aKS
-aLS
-aNe
-aNe
-aPb
-aPb
-aPb
-aQY
-aRO
-aSF
-aSF
-aSF
-aSF
-aVC
-aVL
-aSF
-aSF
-aYz
-aZw
-baq
-bbm
-bcC
-bdQ
-bcC
-bfX
-bcC
-bib
-bcC
-bko
-bcC
-bmJ
-boi
-bfX
-bcC
-bib
-bcC
-bcC
-bvb
-bwp
-bwp
-byD
-bzK
-bAK
-bBT
-bDd
-bEg
-bEg
-bGq
-bHL
-bEg
-bGq
-bLc
-bDd
-bEg
-bOL
-bEg
-bQO
-bRF
-bSv
-bTo
-bUb
-bUI
-bVD
-bUI
-bUI
-bUI
-bUI
-bUI
-bZS
-bUI
-cbm
-bSv
-bUI
-bUI
-bUI
-bUI
-cgn
-bUI
-bUI
-ciK
-bUI
-bUI
-bUI
-bUI
-bUI
-bUI
-bUI
-cox
-cgn
-bUI
-bUI
-ciK
-bUI
-bUI
-bUI
-bUI
-bUI
-bUI
-bUI
-bUI
-bUI
-cox
-cwW
-caA
-bVB
-aaa
-aab
-cui
-aab
-aaa
-aaa
-aaa
-aaa
-aaa
-acf
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(115,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-abL
-abL
-abL
-abL
-abL
-acg
-acg
-acg
-acg
-abL
-abL
-abL
-abL
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-ats
-atR
-aoM
-auW
-avC
-awd
-awy
-aoM
-asS
-asS
-aoM
-apr
-azR
-apr
-app
-aik
-aik
-aik
-aik
-aik
-aik
-aFa
-aEi
-aGy
-aHb
-aHK
-aIf
-aHG
-aJl
-aKb
-aKR
-aLT
-aNf
-aOi
-aPc
-aOi
-aNf
-axl
-aRP
-aSG
-aSG
-aSG
-aSG
-aSG
-aWl
-aWW
-aSG
-aSG
-aZx
-bar
-bbn
-bcD
-bcD
-bcD
-bfY
-bcD
-bic
-bcD
-bkp
-bcD
-bmK
-bcD
-bcD
-bcD
-brQ
-bcD
-bcD
-bvc
-bcD
-bcD
-byE
-bzL
-bAL
-bBU
-bzL
-bzL
-bFm
-bGr
-bHM
-bzL
-bJP
-bLd
-bzL
-bzL
-bOM
-bzL
-bQP
-bRG
-bSw
-bTp
-bUc
-bUJ
-bUJ
-bWj
-bUJ
-bUJ
-bUJ
-bUJ
-bZT
-caz
-cbn
-ccr
-cdd
-bRH
-bRH
-bRH
-cgo
-bRH
-bRH
-ciL
-bRH
-bRH
-bRH
-bRH
-bRH
-bRH
-bRH
-bRH
-cgo
-bRH
-bRH
-ciL
-bRH
-bRH
-bRH
-bRH
-bRH
-bRH
-bRH
-bRH
-bRH
-bRH
-cgo
-cxh
-bVB
-aaa
-aab
-cui
-aab
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(116,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-abL
-abL
-abL
-abL
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-abL
-abL
-abL
-abL
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-asR
-aoM
-atT
-aoM
-auW
-avC
-awe
-awz
-aoM
-asS
-asS
-aoM
-azl
-azR
-aAl
-app
-ajo
-aBS
-aCx
-aik
-aik
-aik
-aEN
-aEi
-aGz
-aHc
-aEi
-aIh
-aEi
-aJm
-aKe
-aKT
-aLU
-aNg
-aNg
-aPd
-aPd
-aPd
-aQZ
-aRQ
-aSH
-aSH
-aSH
-aUS
-aSH
-aVN
-aWX
-aSH
-aSH
-aZy
-aSH
-bbo
-bcE
-bcE
-bcE
-bfZ
-bcE
-bfZ
-bcE
-bcE
-bcE
-bmL
-bcE
-bcE
-bcE
-bfZ
-bcE
-bcE
-bvd
-bwq
-bwq
-bwq
-bwq
-bAM
-bBV
-bAM
-bAM
-bFn
-bGs
-bHN
-bIO
-bAM
-bLe
-bAM
-bNB
-bLe
-bAM
-bQQ
-bRH
-bSx
-bTq
-bUd
-bUF
-bUF
-bWk
-bUF
-bUF
-bUF
-bUF
-bZU
-caA
-cbo
-ccs
-cde
-bUF
-bUF
-bUF
-cgp
-bUF
-bUF
-bZU
-cjC
-bUF
-bUF
-bUF
-bUF
-bUF
-bUF
-bUF
-cgp
-bUF
-bUF
-bZU
-bUF
-bUF
-bUF
-bUF
-bUF
-bUF
-bUF
-bUF
-bUF
-bUF
-cgp
-bUF
-bVB
-aaa
-aab
-cui
-aab
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-acf
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(117,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-abL
-abL
-abL
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-abL
-abL
-abL
-abL
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-aoM
-atU
-aoM
-auW
-avC
-awe
-awz
-aoM
-axH
-asS
-aoM
-azm
-azS
-arX
-app
-ahk
-ahk
-ahk
-ahk
-ahk
-ahk
-aFb
-aEi
-aEi
-aEi
-aEi
-aIi
-aEi
-aGS
-aJT
-aKU
-aLV
-akI
-akI
-akG
-akG
-akG
-aAw
-aRN
-aSI
-aSI
-aSI
-aRN
-aSf
-aWm
-aWY
-aXP
-aYA
-aZz
-aYA
-bbp
-bbq
-bbq
-bbq
-bbq
-bbq
-bbq
-bbq
-bbq
-blr
-bmM
-boj
-bbq
-bbq
-bbq
-bbr
-bbq
-bbp
-bbq
-bxv
-byF
-byF
-byF
-bBW
-byF
-bEh
-bFo
-bGt
-bHO
-bIP
-bFy
-bFy
-bMs
-bNC
-bON
-bMs
-bMs
-bRI
-bSy
-bTr
-bTn
-bRI
-bVE
-bVE
-bVE
-bXR
-bXR
-bXR
-bZV
-caB
-cbp
-cct
-cdf
-cdg
-cdg
-cdg
-cdg
-cdg
-cdg
-cdg
-cjD
-ckh
-cla
-cla
-cmX
-cmX
-bYV
-bYV
-bYV
-bYV
-bYV
-bYV
-cqT
-bUF
-bUF
-csR
-csR
-csR
-bUF
-bUF
-bYV
-bVB
-bVB
-bVB
-bVB
-aab
-aab
-cui
-aab
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(118,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-abL
-abL
-abL
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-abL
-abL
-abL
-abL
-abL
-ads
-abL
-abL
-ads
-ads
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-aoM
-aoM
-aoM
-atT
-aoM
-auW
-avD
-awf
-awA
-axj
-awf
-awf
-axj
-azn
-azT
-aAm
-aAB
-aBl
-aBT
-aBl
-aBl
-aDE
-aBl
-aFc
-aFE
-aGA
-aHd
-aHd
-aIj
-aIH
-aJn
-aKf
-aKV
-aLW
-aNh
-aNh
-aNh
-aNh
-aNh
-aNh
-aKV
-amT
-amT
-amT
-aUT
-aVD
-aWn
-aWZ
-aXQ
-aSD
-aZA
-aSD
-bbq
-bcF
-bcG
-bcG
-bcF
-bcF
-bcF
-bcF
-bbq
-bls
-bmN
-boj
-bcF
-bcG
-bcG
-bcG
-bcF
-bcF
-bcG
-bbp
-byG
-bzM
-bAN
-bBX
-bDe
-bEh
-bFp
-bGu
-bHP
-bIQ
-bJQ
-bFy
-bMt
-bND
-bOO
-bPZ
-bMs
-bRI
-bSz
-bTs
-bUe
-bUK
-bVF
-bWl
-bXd
-bXS
-bYR
-bZo
-bZW
-caC
-cbq
-ccu
-cdg
-cdR
-cdR
-cdR
-cdR
-chh
-chY
-ciM
-cjE
-cki
-cki
-cki
-cki
-cki
-cki
-adj
-adj
-adj
-adj
-bYV
-bUF
-crw
-csk
-csS
-csS
-csS
-bUF
-cvB
-bYV
-cgV
-cgV
-cgV
-cgV
-cui
-cui
-cui
-aab
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(119,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-abL
-abL
-abl
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-aoM
-asS
-att
-asS
-aoM
-auX
-avA
-avA
-awB
-axh
-axI
-ayn
-axh
-azo
-azU
-aAn
-aAC
-aBm
-aBm
-aBm
-aBm
-aBm
-aBm
-aBm
-aFF
-aGB
-aHe
-aHe
-aIk
-aII
-aJo
-aKg
-aKW
-aLX
-aNi
-aNi
-aNi
-aNi
-aNi
-aNi
-aRR
-aNi
-aNi
-aNi
-aNi
-aNi
-aNi
-aNi
-aXR
-aYB
-aZB
-aSD
-bbq
-bcF
-bdR
-bcG
-bga
-bcG
-bcF
-bcG
-bbq
-blr
-bmO
-boj
-bcF
-bqG
-bcF
-bta
-bcG
-bqG
-bcF
-bbq
-byH
-bzN
-bAO
-bBY
-bDf
-bEi
-bFq
-bGv
-bHQ
-bIR
-bJR
-bLf
-bMu
-bNE
-bOP
-bQa
-bQR
-bRI
-bSA
-bTt
-bUf
-bRI
-bVE
-bWm
-bWm
-bWm
-bWm
-bWm
-bZX
-caD
-cbr
-ccv
-cdh
-cdS
-ceN
-cfu
-cfu
-chi
-chZ
-ciN
-cjE
-ckj
-clb
-clU
-cmY
-cnF
-cki
-adj
-aaT
-aaT
-adj
-cqn
-cqn
-cqn
-csl
-csl
-csl
-csl
-csm
-cvC
-csl
-adj
-adj
-adj
-adj
-aab
-aab
-aab
-aab
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(120,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-abl
-abl
-abl
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-ads
-ads
-abL
-abL
-abL
-abL
-abL
-abL
-agc
-agc
-agc
-agc
-agc
-ads
-aoM
-asT
-asT
-ahk
-ahk
-ail
-ahk
-ahk
-ahk
-ahk
-ahk
-ahk
-ahk
-ahk
-azV
-azV
-azV
-azV
-azV
-azV
-azV
-azV
-azV
-azV
-azV
-azV
-azV
-azV
-aIl
-aIJ
-aoD
-aKh
-aKX
-aLY
-aLY
-aKm
-aPe
-aKm
-aKk
-aRa
-aKk
-aKm
-aKk
-aKk
-aKm
-ajT
-akG
-akG
-akq
-aSD
-aZA
-aSD
-bbr
-bcF
-bcF
-bcF
-bcF
-bcG
-bcF
-bcG
-bbq
-blt
-bmP
-boj
-bcF
-bqH
-bcF
-btb
-bcF
-bcG
-bcG
-bhc
-byI
-byH
-bAP
-bBZ
-bDg
-bEh
-bFr
-bGw
-bHR
-bIS
-bJS
-bFy
-bMv
-bNF
-bOQ
-bQb
-bQS
-bRI
-bSB
-bTu
-bUg
-bRI
-bVE
-bWm
-bWm
-bWm
-bWm
-bWm
-bZX
-caC
-cbs
-ccw
-cdi
-cdT
-cdT
-cdT
-cgq
-chj
-chZ
-ciO
-cjE
-ckk
-clc
-clV
-cmZ
-cnG
-cki
-adj
-aaT
-aaT
-adj
-cqn
-cqU
-crx
-csm
-csT
-ctI
-cup
-cuU
-cvD
-csl
-adj
-aaT
-aaT
-aaT
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(121,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-abl
-abl
-abl
-abl
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-ads
-abL
-ads
-ads
-ads
-ads
-abL
-abL
-abL
-abL
-aeu
-abL
-agc
-agc
-agc
-agc
-agc
-ads
-aoM
-asS
-asS
-ahk
-auv
-aik
-aik
-aik
-aiL
-aik
-aik
-aik
-aik
-aik
-azW
-aAo
-aAD
-aAo
-aAo
-aCy
-azV
-aDF
-aAO
-aFd
-aAO
-aGC
-aAO
-aHf
-aIm
-aIJ
-aoD
-aKi
-aKY
-aLZ
-aNj
-aOj
-aPf
-aOj
-aOj
-aOj
-aOj
-aSJ
-aOm
-aTW
-aKm
-aQp
-akG
-akG
-akq
-aYC
-aZA
-aSD
-bbq
-bcG
-bcG
-beY
-bcF
-bhb
-bcF
-bcF
-bbq
-blt
-bmP
-bij
-bcG
-bgb
-bcF
-bgb
-bcF
-bgb
-bcF
-bbp
-byJ
-bzO
-bAQ
-bCa
-bDh
-bEh
-bFs
-bGx
-bHS
-bIT
-bJT
-bFy
-bMw
-bNG
-bOR
-bQc
-bMs
-bRI
-bSC
-bTv
-bUh
-bUL
-bVG
-bWn
-bXe
-bXT
-bYS
-bZp
-bVE
-caC
-cbq
-ccx
-cdg
-cdR
-ceO
-cdR
-cdR
-chk
-chZ
-ciP
-cjE
-ckl
-cld
-clW
-cna
-cnH
-cki
-adj
-aaT
-aaT
-adj
-cqn
-cqV
-cry
-csn
-csU
-ctJ
-cuq
-ctJ
-cuq
-csl
-adj
-aaT
-aaT
-aaT
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(122,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-abl
-abl
-abl
-abl
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-abL
-abL
-ads
-ads
-ads
-abL
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-abL
-abL
-ads
-ads
-ads
-ads
-agc
-agc
-agc
-agc
-agc
-ads
-aoM
-ahk
-atu
-ahk
-ahk
-ahk
-avE
-avE
-awC
-aoa
-aik
-ajm
-ahk
-ahk
-azV
-aAo
-aAE
-aBn
-aBU
-aCz
-aDf
-aDG
-aEj
-aFe
-aFG
-aGD
-aEj
-aHL
-aIn
-aIK
-aJp
-aKj
-aKZ
-aMa
-aNk
-aOk
-aPg
-aPI
-aQq
-aRb
-aOj
-aSK
-aTk
-aSK
-aKk
-asg
-akG
-aWo
-aHU
-aSD
-aZA
-aSD
-bbq
-bcG
-bcG
-bdR
-bcF
-bgb
-bcF
-bgb
-bbq
-blt
-bmQ
-bij
-bpu
-bqI
-bqI
-bqI
-bpu
-bqI
-bwr
-bwr
-bwr
-bwr
-bwr
-bCb
-bwr
-bwr
-bFt
-bGy
-bHT
-bIU
-bJU
-bLg
-bMx
-bNH
-bMx
-bMx
-bMx
-bRJ
-bSD
-bTw
-bUi
-bUM
-bVE
-bVE
-bVE
-bXR
-bXR
-bXR
-bVE
-caC
-cbq
-ccx
-cdg
-cdg
-cdg
-cdg
-cdg
-cdg
-cdg
-cdg
-cjE
-ckm
-cle
-clX
-cnb
-ckm
-cki
-cdk
-cdk
-cdk
-cdk
-cqn
-cqW
-crz
-cso
-csV
-ctK
-cur
-ctK
-cvE
-csl
-adj
-adj
-adj
-adj
-aab
-aab
-aab
-aab
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(123,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-abl
-abl
-abl
-abl
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-abL
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-agc
-aqw
-akF
-akF
-akF
-akF
-asw
-aik
-aik
-aik
-auw
-ahk
-ajp
-aik
-awD
-aob
-aik
-aik
-aik
-azp
-azV
-aAo
-aAF
-aBo
-aBV
-aAo
-azV
-aDH
-aEk
-aFd
-aAM
-aGC
-aAO
-aHf
-aIm
-aIJ
-akI
-aKk
-aLa
-aMb
-aNl
-aOj
-aPh
-aPJ
-aOj
-aOj
-aOj
-aOm
-aOm
-aOm
-aKk
-aJq
-akG
-aVE
-akG
-aSD
-aZA
-aSD
-bbq
-bcF
-bcG
-bcG
-bgb
-bgb
-bid
-bje
-bje
-blu
-bmN
-bij
-bpv
-bqJ
-brR
-btc
-bug
-bve
-bwr
-bxw
-byK
-bzP
-bAR
-bCc
-bDi
-bEj
-bFu
-bGz
-bHU
-bIU
-bJV
-bLg
-bMy
-bNI
-bOS
-bMy
-bMx
-bRK
-bSD
-bTn
-bTn
-bTn
-bTn
-adj
-adj
-adj
-adj
-adj
-bYV
-caC
-cbq
-ccx
-cdj
-cdU
-ceP
-ceP
-ceP
-ceP
-ceP
-ciQ
-cjF
-cjJ
-clf
-clY
-cnc
-cnI
-cod
-coy
-coy
-cpn
-cpK
-cqo
-cqX
-crA
-csm
-csW
-ctL
-cus
-ctL
-cus
-csl
-cqn
-cqn
-cqn
-cqn
-cqn
-cqn
-cqn
-aab
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(124,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-abl
-abl
-abl
-abl
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-abL
-abL
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-agc
-aqx
-aik
-aro
-aik
-ase
-aik
-aik
-aik
-aik
-aux
-ahk
-ajp
-aik
-ajs
-axk
-aik
-aik
-ayN
-azq
-azV
-aAp
-aAG
-aBp
-aBV
-aAo
-aDg
-aBX
-aEl
-aBX
-aAM
-aAO
-aAO
-aHf
-aIm
-aIJ
-akI
-aKk
-aLa
-aMc
-aNm
-aOj
-aPi
-aPJ
-aOj
-aRc
-aRS
-aOj
-aOj
-aTX
-aUU
-akG
-akI
-akG
-akG
-aSD
-aZA
-aSD
-bbq
-bcF
-bcG
-bcG
-bcF
-bhc
-bie
-bjf
-bkq
-blv
-bmR
-bok
-bpw
-bqK
-brS
-btd
-buh
-bvf
-bws
-bxx
-byL
-bzQ
-bAS
-bCd
-bDj
-bwr
-bFv
-bGA
-bHV
-bIU
-bJW
-bLh
-bMy
-bNJ
-bOT
-bMy
-bMx
-bRL
-bSD
-bTn
-adj
-adj
-adj
-adj
-adj
-adj
-adj
-adj
-bYV
-caD
-cbt
-ccx
-cdk
-cdV
-ceQ
-ceQ
-cgr
-ceQ
-ceQ
-ciR
-cjG
-ckn
-clg
-clZ
-cnd
-ckn
-coe
-ceQ
-ceQ
-ceQ
-cpL
-cqp
-cqY
-crB
-csm
-csX
-ctM
-cup
-csU
-cvD
-csp
-cwF
-cwX
-cdU
-cxi
-cxP
-cxR
-cqn
-aab
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(125,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-abl
-abl
-abl
-abl
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-abL
-abL
-abL
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-aqy
-aik
-arp
-arM
-arM
-arM
-asU
-aik
-aik
-auy
-ahk
-aik
-aik
-aik
-aik
-aik
-aik
-aik
-azr
-azV
-aAq
-aAH
-aBq
-aBW
-aAo
-aDg
-aBX
-aEl
-aBX
-aFH
-azV
-aHf
-azV
-aIo
-aIJ
-aJq
-aKk
-aLa
-aMd
-aNn
-aOl
-aPj
-aPK
-aLZ
-aRd
-aRT
-aOj
-aTl
-aTY
-aKk
-aJq
-akG
-aXa
-akG
-aSD
-aZA
-aSD
-bbq
-bcF
-bcG
-bcF
-bgb
-bgb
-bif
-bjg
-bje
-blt
-bmP
-bij
-bpx
-bqL
-brT
-brT
-bui
-bpy
-bwt
-bxy
-byM
-bzR
-bzR
-bCe
-bDk
-bEk
-bFw
-bGB
-bHW
-bIV
-bJX
-bLi
-bMz
-bNK
-bOU
-bMy
-bMx
-bRM
-bSD
-bTn
-adj
-bUN
-bUN
-bUN
-bUN
-bUN
-bUN
-adj
-bYV
-caC
-cbq
-ccx
-cdk
-cdk
-ceR
-ceR
-ceR
-ceR
-ceR
-ciS
-ciS
-cko
-clh
-cma
-cne
-cnJ
-cof
-coz
-coz
-coz
-coz
-coz
-cqZ
-crC
-csp
-csp
-csp
-csp
-cuV
-csm
-csp
-cdU
-cdU
-cxi
-cxj
-cdk
-cxS
-cqn
-cyi
-cyl
-cyl
-cyl
-cyl
-cyl
-cyl
-cyl
-cyl
-cyl
-cyl
-cyl
-cyl
-cyl
-cyl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(126,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-abl
-abl
-abl
-abl
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-abL
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-ahR
-aik
-aik
-aik
-aik
-aik
-aik
-atv
-aik
-auz
-ahk
-auv
-aik
-aik
-aik
-aik
-aik
-aik
-aik
-azV
-aAo
-aAI
-aBr
-aBX
-aCA
-azV
-aDI
-aEl
-aBX
-aAN
-aGE
-aHg
-aHM
-aIp
-aIJ
-aJr
-aKk
-aLa
-aMc
-aNm
-aOm
-aPk
-aPL
-aOj
-aRe
-aOj
-aOj
-aTl
-aTY
-aKk
-aVE
-akG
-akI
-akG
-aSD
-aZA
-aSD
-bbq
-bcF
-bcG
-bcF
-bcF
-bgb
-big
-bjh
-bkr
-blt
-bmP
-bol
-bpy
-bpy
-bpy
-bpy
-bpy
-bpy
-bwr
-bxz
-byN
-bzS
-bAT
-bCf
-bDl
-bwr
-bFx
-bGC
-bHX
-bIW
-bJY
-bLg
-bMy
-bMy
-bOV
-bMy
-bMx
-bRN
-bSD
-bTn
-adj
-bUN
-bVH
-bWo
-bXf
-bXU
-bUN
-adj
-bYV
-caC
-cbu
-ccy
-cdl
-cdW
-cdW
-cdW
-cdW
-cdW
-cdW
-ciT
-ciS
-ckp
-cli
-cmb
-cnf
-cnK
-ciX
-adj
-adj
-adj
-adj
-adj
-cdt
-crC
-cdk
-csY
-ctN
-cut
-cuW
-cvF
-cwk
-cwG
-cwY
-cxj
-cxC
-cdk
-cxT
-cqn
-cye
-cye
-cye
-cye
-cye
-cye
-cye
-cye
-cye
-cye
-cye
-cye
-cye
-cye
-cye
-cyl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(127,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-abl
-abl
-abl
-abl
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-abL
-abL
-agG
-ahk
-ahk
-ahk
-ahk
-ahk
-ahk
-ahk
-akF
-ahk
-akF
-akF
-amO
-ahk
-akF
-akF
-aoY
-apy
-ahk
-aqz
-aqS
-aik
-aqS
-asf
-asx
-asV
-aik
-aik
-aik
-ahk
-ajm
-ajn
-ajm
-ajm
-aik
-ayo
-aik
-aik
-azV
-aAo
-aAJ
-aAo
-aBY
-aCB
-aDh
-aDJ
-aEm
-aFf
-aFf
-aGF
-aHh
-aHh
-aHh
-aIL
-aJs
-aKl
-aLb
-aMe
-aNo
-aOn
-aPl
-aPM
-aOj
-aOj
-aRU
-aOj
-aOj
-aTZ
-aUU
-aQp
-aWo
-akG
-akG
-aSD
-aZA
-aSD
-bbq
-bcF
-bcF
-bcF
-bgb
-bgb
-bih
-bji
-bje
-blw
-bmS
-bij
-bpz
-bpy
-brU
-bte
-bpB
-bvg
-bwr
-bwr
-bwr
-bwr
-bwr
-bwr
-bwr
-bwr
-bFy
-bFy
-bHY
-bFy
-bJZ
-bLg
-bMx
-bNL
-bMx
-bMx
-bMx
-bOX
-bSE
-bTx
-bNO
-bUO
-bVI
-bWp
-bXg
-bXV
-bYT
-bZq
-bYV
-caC
-cbv
-ccx
-cdk
-aaT
-aaT
-aaT
-aaT
-aaT
-aaT
-ciU
-ciS
-ckq
-clj
-cmc
-cng
-cnL
-ciX
-adj
-aaT
-aaT
-aaT
-adj
-cqn
-crD
-cdk
-csZ
-css
-ctP
-css
-css
-css
-css
-cwZ
-cdU
-cxC
-cdk
-cxU
-cye
-cxZ
-cyo
-cyx
-cyH
-cyH
-cyH
-cyH
-cyH
-cyH
-cyW
-cyX
-cza
-cyk
-cye
-cye
-cyl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(128,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-abl
-abl
-abl
-abl
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-abL
-abL
-agH
-ahl
-ahK
-ahl
-aiK
-aiL
-aik
-aik
-aik
-ail
-aik
-aik
-amP
-ahk
-aik
-aik
-aik
-aik
-ahk
-ahk
-ahk
-ahk
-ahk
-ahk
-ahk
-ahk
-ahk
-atV
-ahk
-ahk
-aik
-awg
-aik
-ajm
-aik
-ayo
-aik
-azs
-azV
-aAr
-aAJ
-aBs
-aBZ
-aCC
-azV
-aDK
-aEl
-aBX
-aFI
-aGG
-aHi
-aHN
-aIq
-aIJ
-akI
-aKm
-aKm
-aMf
-aKh
-aKm
-aPe
-aPN
-aQr
-aRf
-aRT
-aOj
-aTm
-aTY
-aKk
-akG
-akG
-aHU
-akq
-aSD
-aZA
-aSD
-bbq
-bcF
-bcF
-bcF
-bcF
-bhc
-bii
-bjj
-bks
-blx
-bmT
-bom
-bpA
-bqM
-brV
-btf
-bpB
-bvh
-bwu
-bpC
-bpC
-bpC
-bpC
-bpC
-bpC
-bpC
-bpC
-bpC
-bHZ
-bIX
-bpC
-bLj
-bon
-bNM
-bNM
-bNM
-bQT
-bNM
-bSF
-bNQ
-adj
-bUN
-bVJ
-bWq
-bXg
-bXW
-bYU
-bZr
-bZY
-caE
-cbw
-ccx
-cdm
-cdX
-ceS
-cfv
-ceS
-ceS
-cia
-ciV
-cjH
-ckr
-clk
-cmd
-clg
-cnM
-ciX
-adj
-aaT
-aaT
-aaT
-adj
-cqn
-crE
-csq
-cta
-css
-ctP
-css
-css
-css
-css
-cwZ
-cdU
-cxD
-cdk
-cxV
-cyf
-cyj
-cyk
-cyy
-cyk
-cyk
-cyk
-cyk
-cyk
-cyk
-cyk
-cyy
-cyk
-cyk
-cyk
-cye
-cyl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(129,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-abl
-abl
-abl
-abl
-abl
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-abL
-abL
-abL
-agH
-ahk
-ahk
-ahk
-ahk
-ajl
-aik
-ajm
-aik
-ahk
-alD
-aik
-amQ
-ahk
-aik
-ahk
-ail
-ahk
-ahk
-aik
-aik
-aik
-aik
-aik
-aik
-amv
-ahk
-aik
-aik
-ahk
-aqS
-awh
-awE
-ajm
-aik
-ayo
-aik
-azt
-azV
-azV
-aAK
-azV
-azV
-aCD
-azV
-aDL
-aEn
-aBX
-aFJ
-azV
-aHf
-aHO
-aIr
-aIM
-akI
-aKm
-aLc
-aMg
-aNp
-aOo
-aPe
-aPO
-aQs
-aRg
-aRT
-aOj
-aTl
-aTY
-aKk
-aJr
-akG
-akq
-akq
-aYD
-aZz
-aYA
-bbp
-bbp
-bbp
-bbp
-bbp
-bbp
-bid
-bid
-bje
-blt
-bmU
-bij
-bpB
-bpB
-bpB
-bpB
-bpB
-bvi
-bwv
-bww
-byO
-bxB
-bxB
-bxB
-bxB
-bxB
-bxB
-bxB
-bIa
-bIY
-bIY
-bLk
-bMA
-bNN
-bOW
-bQd
-bQU
-bRO
-bSG
-bNN
-bNP
-bUP
-bVK
-bWr
-bXh
-bXX
-bYT
-bZq
-bYV
-caC
-cbx
-ccz
-cdn
-cdY
-ceT
-cfw
-cgs
-chl
-cib
-ciU
-ciS
-ciS
-ciS
-cme
-cnh
-ciS
-ciX
-adj
-aaT
-aaT
-aaT
-adj
-cqn
-crF
-csr
-csr
-ctO
-cuu
-cuX
-cvG
-cwl
-cwH
-cwZ
-cdU
-cdk
-cdk
-cxW
-cxW
-cxW
-cxW
-cyz
-cxW
-cxW
-cxW
-cxW
-cxW
-cxW
-cxW
-cyz
-cxW
-cxW
-cxW
-cye
-cyl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(130,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-abl
-abl
-abl
-abl
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-abL
-abL
-agc
-agc
-agc
-ahk
-aii
-aik
-aik
-aik
-ajm
-aik
-ahk
-ahk
-ahk
-ahk
-ahk
-aik
-ahk
-aik
-aik
-aik
-aik
-aik
-arq
-ajm
-aik
-aik
-ahk
-ahk
-atW
-atW
-ahk
-ahk
-ahk
-ahk
-ahk
-aik
-ayo
-aik
-azu
-azV
-aAs
-aAL
-aBt
-aCa
-aCE
-azV
-aAO
-aEl
-aBX
-aFK
-aGH
-aHj
-aHf
-aIs
-aIJ
-akI
-aKm
-aLd
-aMh
-aNq
-aOp
-aPm
-aPP
-aQs
-aRh
-aRT
-aOj
-aOj
-aTX
-aKm
-aVF
-aNh
-aNh
-aXS
-aSD
-aZA
-aSD
-bbs
-bcH
-bcH
-bcH
-bcH
-bcH
-bcH
-bcH
-bbs
-blt
-bmV
-bon
-bpC
-bpC
-bpC
-bpC
-bon
-bvj
-bww
-bxA
-bxB
-bxB
-bxB
-bxB
-bxB
-bxB
-bxB
-bxB
-bxB
-bIZ
-bIY
-bLl
-bMB
-adj
-bOX
-bQe
-bQV
-bRP
-bSH
-bNQ
-adj
-bUN
-bVL
-bWs
-bXi
-bXY
-bUN
-adj
-bYV
-caC
-cbv
-ccx
-cdo
-cdZ
-cdZ
-cfx
-cdZ
-chm
-cib
-ciW
-cdW
-cks
-ciX
-cmf
-cni
-ciX
-adj
-adj
-adj
-adj
-adj
-adj
-cqn
-crG
-css
-css
-ctP
-cuv
-css
-css
-cwm
-css
-cwZ
-cxk
-cxE
-cdt
-cxX
-cxW
-cyi
-cyi
-cyz
-cyi
-cyi
-cyk
-cxW
-cyk
-cyi
-cyi
-cyz
-cyi
-cyi
-cxW
-cye
-cyl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(131,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-abl
-abl
-abl
-abl
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-abL
-abL
-agc
-agc
-agc
-ahk
-aij
-aik
-ajm
-ajm
-ajm
-aik
-ail
-aik
-aik
-aik
-aik
-aik
-ahk
-ajp
-apz
-ajs
-aqA
-ajm
-ajm
-ajm
-aik
-aik
-aik
-aik
-aik
-aik
-aik
-aik
-aik
-aik
-ail
-aik
-ayo
-aik
-azv
-azV
-aAt
-aAM
-aBu
-aCb
-aCF
-aDi
-aDM
-aEo
-aFg
-aFL
-aCb
-aCb
-aHP
-aIt
-aIN
-aJq
-aKm
-aLe
-aMi
-aNr
-aOj
-aPn
-aPQ
-aQs
-aRg
-aRT
-aOj
-aOj
-aOj
-aRa
-amT
-amT
-amT
-amT
-aSD
-aZA
-aSD
-bbt
-bbt
-bbt
-bbt
-bbt
-bbt
-bij
-bij
-bij
-bij
-bmW
-bij
-bij
-bqN
-brW
-brW
-bqN
-brW
-brW
-bxB
-bxB
-bxB
-bAU
-bxB
-bDm
-bxB
-bAU
-bxB
-bxB
-bxB
-bKa
-bLl
-bMB
-adj
-bOX
-bNQ
-bNQ
-bNQ
-bOX
-bOX
-adj
-bUN
-bUN
-bUN
-bUN
-bUN
-bUN
-adj
-bYV
-caC
-cby
-ccA
-cdp
-cea
-ceU
-cfy
-cgt
-cdZ
-cic
-aaT
-aaT
-ciU
-ceR
-cmf
-cni
-ceR
-adj
-aaT
-aaT
-aaT
-aaT
-adj
-cqn
-crH
-css
-ctb
-ctP
-css
-css
-css
-css
-css
-cwZ
-cxl
-cxE
-cdt
-cxW
-cxW
-cyi
-cyp
-cyA
-cyI
-cyM
-cyM
-cyI
-cyM
-cyM
-cyI
-cyA
-czb
-cyi
-cxW
-cye
-cyl
-cyl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(132,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-abl
-abl
-abl
-abl
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-abL
-abL
-agc
-agc
-agc
-ahk
-aik
-aik
-ajm
-ajT
-ajT
-ajT
-ajT
-ajT
-ajT
-ajT
-ajT
-ajT
-ajT
-ajT
-ajT
-ajT
-ajT
-ajT
-ajT
-ajT
-ajT
-ajT
-ajT
-ajT
-ajT
-ajT
-ajT
-ajT
-ajT
-ajT
-ajT
-axJ
-ahk
-ahk
-ahk
-azV
-aAu
-aAN
-aBv
-aCc
-aCG
-azV
-aAO
-aAO
-aAO
-aAO
-aAO
-aAO
-aHf
-aIm
-aIO
-akG
-aKm
-aLf
-aMj
-aNs
-aOq
-aPe
-aPR
-aQt
-aRi
-aRT
-aOj
-aOj
-aUa
-aKm
-aVG
-aHN
-aHN
-aXT
-aSD
-aZA
-aSD
-bbu
-bcI
-bdS
-beZ
-bgc
-bhd
-bik
-bjk
-bkt
-bly
-bmX
-boo
-bpD
-bqN
-bqN
-bqN
-bqN
-bqN
-bqN
-bxB
-bxB
-byQ
-byQ
-byQ
-bzW
-byQ
-byQ
-byQ
-bxB
-bxB
-bxB
-bLl
-bMB
-adj
-adj
-adj
-adj
-adj
-adj
-adj
-adj
-adj
-adj
-adj
-adj
-adj
-adj
-adj
-bYV
-caC
-cbv
-ccu
-cdo
-cdZ
-cdZ
-cdZ
-cgu
-chn
-cid
-aaT
-aaT
-ciU
-ceR
-cmf
-cni
-ceR
-adj
-aaT
-aaT
-aaT
-aaT
-adj
-cqn
-crI
-ceY
-ctc
-ctQ
-cuw
-cuY
-cvH
-cwn
-cwI
-cxa
-cxm
-cxE
-cdt
-cxW
-cxW
-cyk
-cyq
-cyB
-cyi
-cyi
-cyk
-cyk
-cyB
-cyi
-cyi
-cyB
-cyq
-cyk
-cxW
-cye
-cye
-cyl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(133,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-abl
-abl
-abl
-abl
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-abL
-abL
-agc
-agc
-agc
-ahL
-aik
-aik
-ajm
-ajT
-akq
-akq
-akq
-akq
-akq
-akq
-akq
-akq
-akq
-akq
-akq
-akq
-akq
-akq
-akq
-akq
-akq
-akq
-akq
-akq
-akq
-akq
-akq
-akq
-akq
-akq
-akq
-amT
-akG
-akG
-akG
-azV
-aAv
-aAO
-aBw
-aAO
-aCH
-azV
-aDN
-aEp
-aFh
-aFM
-aGI
-aHk
-aHf
-aIu
-aIP
-aJt
-aKm
-aKm
-aMf
-aKh
-aKm
-aPe
-aPS
-aQu
-aRj
-aPV
-aPV
-aPV
-aUb
-aKo
-aRp
-aRp
-aRp
-aKo
-aSD
-aZC
-bas
-bbu
-bcJ
-bdT
-bfa
-bgd
-bhe
-bil
-bjl
-bku
-blz
-bmY
-bop
-bpE
-bqO
-brX
-btg
-buj
-btg
-bwx
-bxC
-byP
-bzT
-bAV
-bAV
-bDn
-bAV
-bFz
-bGD
-byP
-bxC
-bxC
-bLm
-bMC
-bNO
-bOY
-bOY
-bOY
-bOY
-bSI
-bOY
-bOY
-bOY
-bOY
-bWt
-adj
-adj
-adj
-adj
-bYV
-caC
-cbv
-ccB
-cdo
-ceb
-ceV
-cfz
-cgv
-cho
-cie
-aaT
-aaT
-ciW
-cll
-cmg
-cnj
-cll
-cog
-cdW
-cdW
-cdW
-cdW
-cks
-cqn
-crJ
-cdt
-ctd
-ctR
-cux
-cdk
-cdk
-cdk
-cwJ
-cdk
-cdk
-cxF
-cdt
-cxX
-cxW
-cyi
-cyq
-cyi
-cyl
-cyl
-cyl
-cyi
-cyl
-cyl
-cyl
-cyi
-cyr
-cyi
-cxW
-cyk
-cye
-cyl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(134,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-abl
-abl
-abl
-abl
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-abL
-abL
-abL
-agc
-agc
-ahM
-aik
-aik
-ajm
-ajT
-akq
-akq
-akq
-akq
-akq
-akq
-akq
-akq
-akq
-akq
-akq
-akq
-akq
-akq
-akq
-akq
-akq
-akq
-akq
-akq
-akH
-akq
-akq
-akq
-akq
-akq
-akG
-amT
-akG
-akG
-akG
-azV
-azV
-aAP
-azV
-aAP
-azV
-azV
-aDO
-azV
-azV
-azV
-azV
-azV
-azV
-aIl
-aIQ
-aJu
-aJu
-aLg
-aMk
-aNt
-aOr
-aPo
-aPT
-aPV
-aRk
-aRV
-aPV
-aTn
-aPq
-aUV
-aUX
-aWp
-aUX
-aXU
-aYE
-aZD
-bat
-bbv
-bcK
-bdU
-bfb
-bge
-bhf
-bim
-bjm
-bkv
-blA
-bmZ
-boq
-bpF
-bqN
-brY
-bth
-buk
-bvk
-bwy
-bxD
-byQ
-bzU
-bAW
-bAW
-bDo
-bAW
-bzU
-byQ
-bIb
-bxB
-bxB
-bLl
-bMB
-adj
-bOZ
-bQf
-bQf
-bQf
-bSJ
-bTy
-bUj
-bUQ
-bVM
-bWu
-bOY
-bOY
-bNO
-bNO
-bZZ
-caF
-cbz
-ccC
-cdq
-cdq
-cdq
-cfA
-cdq
-cdq
-cif
-ciX
-ciX
-ciX
-ciX
-cmh
-cnk
-ciX
-coh
-ceR
-ceR
-ceR
-ceR
-cqq
-cra
-crK
-cst
-cte
-ctS
-cuy
-cdk
-cvI
-cwo
-cwK
-cwK
-cwK
-cxG
-cdt
-cxW
-cxW
-cyi
-cyr
-cyi
-cyl
-cyl
-cyl
-cyi
-cyl
-cyl
-cyl
-cyi
-cyq
-cyi
-cxW
-cyk
-cye
-cyl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(135,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-abl
-abl
-abl
-abl
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-abL
-abL
-abL
-agc
-agc
-ahN
-aik
-aik
-ajn
-ajT
-akq
-akq
-akq
-akq
-akq
-akq
-akq
-akq
-akq
-akH
-akq
-akq
-akG
-akG
-akG
-akG
-akI
-akI
-akG
-akG
-akG
-akG
-akI
-akI
-akI
-akI
-akI
-axK
-akG
-asg
-akG
-ava
-akG
-akI
-akI
-akI
-akI
-akG
-aDP
-akI
-akI
-akI
-ava
-akG
-akG
-aIm
-aIO
-akG
-aKn
-aKo
-aMl
-aNu
-aOs
-aPp
-aPU
-aPU
-aRl
-aRW
-aPU
-aPU
-aUc
-aPU
-aVH
-aWq
-aUf
-aKo
-aSD
-aZE
-bau
-bbt
-bcL
-bdV
-bfc
-bgc
-bhg
-bim
-bjn
-bkw
-blA
-bna
-bor
-bpG
-bqN
-brZ
-bti
-bti
-bvk
-btl
-bxB
-byR
-bzU
-bAX
-bxB
-bxB
-bEl
-bFA
-byQ
-byQ
-bxB
-bxB
-bLl
-bMB
-adj
-bPa
-bQf
-bQW
-bQX
-bQY
-bQf
-bUk
-bUR
-bVN
-bWv
-bXj
-bPa
-bYV
-bYV
-bYV
-caD
-cbA
-ccv
-cdr
-cec
-ceW
-cfB
-cfB
-cfB
-cig
-ceP
-ciQ
-ceP
-clm
-cmi
-cnl
-clm
-coi
-ceP
-ceP
-ceP
-cjF
-cqr
-cqn
-crL
-csu
-ctf
-ctT
-cuz
-cdk
-cvJ
-cwp
-cwL
-cvI
-cxn
-cxH
-cdt
-cxW
-cxW
-cyk
-cyq
-cyB
-cyl
-cyl
-cyk
-cyk
-cyk
-cyl
-cyl
-cyk
-cyq
-cyl
-cxW
-cyk
-cye
-cyl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(136,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-abl
-abl
-abl
-abl
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-abL
-abL
-agc
-agc
-ahO
-ahk
-ail
-ahk
-ajT
-akq
-akq
-akq
-akq
-akq
-akq
-akq
-akq
-akq
-akG
-akG
-akI
-akI
-akG
-akI
-akG
-akI
-akG
-akG
-akG
-akG
-akG
-akG
-akG
-akG
-awF
-axl
-axl
-axl
-axl
-axl
-axl
-axl
-axl
-axl
-axl
-axl
-axl
-aDQ
-aEq
-axl
-axl
-axl
-aEq
-axl
-aIv
-aIO
-akI
-alh
-aKo
-aMm
-aNv
-aOt
-aPq
-aPV
-aQv
-aRm
-aRV
-aPV
-aPV
-aPq
-aPV
-aPV
-aPV
-aXb
-aXV
-aSD
-aZF
-bav
-bbw
-bcJ
-bdW
-bfd
-bgc
-bhh
-bim
-bjo
-bkx
-blB
-bnb
-bos
-bpH
-bqP
-bsa
-btj
-bul
-bvl
-bwz
-bxE
-byS
-bzV
-bAY
-bxB
-bDp
-bzW
-bFB
-bGE
-bzW
-bxB
-bxB
-bLn
-bMB
-adj
-bPa
-bQg
-bQX
-bQf
-bSK
-bQf
-bUl
-bUR
-bVN
-bWw
-bQf
-bXZ
-bYW
-bZs
-bZs
-caC
-cbB
-ccz
-cds
-ced
-ceX
-cfC
-cfC
-cfC
-cfC
-cfC
-cfC
-cfC
-cln
-cmj
-cnm
-cnN
-coj
-coA
-coA
-coA
-cpM
-cqs
-crb
-crM
-csv
-ctg
-ctU
-cuA
-cuZ
-cvK
-cwq
-cwM
-cxb
-cxo
-cxI
-cxQ
-cxY
-cxY
-cxY
-cys
-cyk
-cyi
-cyi
-cyk
-cyS
-cyk
-cyi
-cyi
-cyk
-cyr
-cxW
-cxW
-cyk
-cye
-cyl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(137,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-abl
-abl
-abl
-abl
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-abL
-abL
-agc
-agc
-ahP
-aik
-aik
-ajm
-ajT
-akq
-akq
-akq
-akq
-akq
-akq
-akG
-akG
-akG
-akI
-akI
-akI
-akG
-akI
-akG
-akG
-asg
-akG
-asW
-akI
-akI
-akI
-akI
-akI
-akG
-awG
-anY
-akI
-akI
-akG
-aoF
-akG
-aAw
-akG
-akI
-akI
-akI
-arr
-akI
-aDP
-akG
-akG
-akG
-aDP
-akG
-aIw
-aIO
-akI
-aKo
-aKo
-aMn
-aNw
-aOu
-aPr
-aPW
-aPW
-aRn
-aRX
-aPW
-aTo
-aUd
-aUW
-aPV
-aPV
-aPV
-aKo
-aYC
-aZG
-baw
-bbt
-bcM
-bdV
-bfe
-bgc
-bhi
-bim
-bjp
-bky
-blA
-bnc
-bot
-bpI
-bqN
-bsb
-bti
-bti
-bvk
-bwA
-bxB
-byQ
-bzW
-bAZ
-bxB
-bxB
-bEm
-bzW
-byQ
-byQ
-bxB
-bxB
-bLo
-bMB
-adj
-bPa
-bQf
-bQY
-bQX
-bQW
-bQf
-bUk
-bUR
-bVN
-bWx
-bXk
-bPa
-bYV
-bYV
-bYV
-caC
-cbC
-ccx
-cdt
-cdV
-ceY
-cfD
-cfD
-cfD
-cfD
-cfD
-cfD
-cfD
-clo
-cmk
-cnn
-clo
-cok
-cfD
-cfD
-cfD
-cpN
-cqt
-cqn
-crN
-csw
-cth
-ctP
-cuB
-cdk
-cvI
-cvI
-cvI
-cvI
-cxp
-cxJ
-cdt
-cxW
-cxW
-cyl
-cyq
-cyk
-cyl
-cyl
-cyk
-cyk
-cyk
-cyl
-cyl
-cyB
-cyq
-cyl
-cxW
-cyk
-cye
-cyl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(138,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-abl
-abl
-abl
-abl
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-abL
-abL
-agc
-agc
-ahQ
-aik
-aik
-ajm
-ajT
-akq
-akq
-akq
-akq
-akq
-akq
-akI
-akG
-akI
-akI
-akG
-akG
-akI
-akG
-akG
-akG
-akG
-asy
-asy
-asy
-asy
-asy
-asy
-asy
-asy
-awG
-axm
-axm
-ayp
-ayp
-axm
-axm
-aAx
-aAQ
-aAQ
-aAR
-aAR
-aAR
-aAR
-aEr
-aAR
-aAQ
-aAR
-aEr
-aHQ
-aIw
-aIO
-aJr
-aKp
-aLh
-aMo
-aNx
-aKo
-aPs
-aPX
-aQw
-aRo
-aRY
-aSL
-aPX
-aUe
-aUX
-aPV
-aPV
-aPV
-aKo
-aYF
-aZH
-bax
-bbx
-bcN
-bdX
-bff
-bgf
-bhj
-bim
-bjq
-bkz
-blA
-bnd
-bou
-bpJ
-bqN
-brY
-btk
-bum
-bvk
-bwB
-bxD
-byQ
-bzW
-bAW
-bAW
-bDq
-bAW
-bzW
-byQ
-bIb
-bxB
-bxB
-bLo
-bMB
-adj
-bPb
-bQf
-bQf
-bQf
-bSL
-bTz
-bUm
-bUS
-bVO
-bWy
-bPc
-bPc
-bNP
-bNP
-caa
-caG
-cbD
-ccD
-cdk
-cdk
-cdt
-ceR
-ceR
-ceR
-ceR
-ciX
-ciX
-ciX
-ciX
-cml
-cni
-ciX
-coh
-ceR
-ceR
-ceR
-ceR
-ciX
-cqn
-crO
-csx
-cte
-ctV
-cuC
-cdk
-cvI
-cwr
-cvI
-cvI
-cvI
-cxK
-cdt
-cxW
-cxW
-cyi
-cyr
-cyi
-cyl
-cyl
-cyl
-cyi
-cyl
-cyl
-cyl
-cyi
-cyq
-cyi
-cxW
-cyk
-cye
-cyl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(139,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-abl
-abl
-abl
-abl
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-abL
-abL
-agc
-agc
-ahR
-aik
-aik
-ajm
-ajT
-akq
-akq
-akq
-akq
-akq
-ajT
-akG
-anV
-anV
-anV
-anV
-anV
-anV
-anV
-anV
-akG
-ans
-asy
-asX
-atw
-atw
-auA
-auY
-avF
-asy
-awG
-axm
-axL
-ayq
-ayO
-azw
-axm
-aAw
-aAQ
-aBx
-aBz
-aBz
-aBz
-aBz
-aEs
-aFi
-aFN
-aFi
-aHl
-aAQ
-aIx
-aIR
-aJv
-aKq
-aKq
-aMp
-aNy
-aOv
-aPt
-aPY
-aKo
-aRp
-aKo
-aKo
-aTp
-aUf
-aUf
-aPV
-aPV
-aPV
-aKo
-aSD
-aZI
-bay
-bbu
-bcJ
-bdY
-bfg
-bgg
-bhk
-bin
-bjr
-bkA
-blC
-bne
-bov
-bpK
-bqN
-bsc
-btl
-bun
-bvm
-bwC
-bxF
-byT
-bzX
-bzX
-bzX
-bDr
-bzX
-bzX
-bGF
-byT
-bxF
-bxF
-bLp
-bMA
-bNP
-bPc
-bPc
-bPc
-bPc
-bSM
-bPc
-bPc
-bPc
-bPc
-bWz
-adj
-adj
-adj
-adj
-bYV
-caC
-cbC
-ccu
-bYV
-adj
-adj
-adj
-adj
-adj
-adj
-adj
-adj
-adj
-ciX
-cmm
-cni
-ciX
-ciU
-adj
-adj
-adj
-adj
-adj
-cqn
-crP
-cdt
-ctd
-ctR
-cux
-cdk
-cdk
-cdk
-cwJ
-cdk
-cdk
-cxF
-cdt
-cxX
-cxW
-cyi
-cyq
-cyi
-cyl
-cyl
-cyl
-cyi
-cyl
-cyl
-cyl
-cyi
-cyr
-cyi
-cxW
-cyk
-cye
-cyl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(140,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-abl
-abl
-abl
-abl
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-abL
-abL
-agc
-agc
-ahR
-aik
-aik
-ajm
-ajT
-akq
-akq
-akq
-akq
-akG
-akI
-ans
-anV
-aoy
-aoZ
-aoZ
-apX
-aqB
-aqT
-anV
-akG
-akG
-asz
-asY
-atw
-atX
-asy
-auZ
-avG
-asy
-awG
-axn
-axM
-ayr
-ayP
-azx
-axm
-aAw
-aAR
-aBy
-aCd
-aCI
-aDj
-aCd
-aEt
-aBy
-aFO
-aBy
-aBz
-aAR
-aIm
-aIO
-akG
-akG
-aLi
-aMq
-aNz
-aOw
-aPu
-aPZ
-aQx
-aPZ
-aPZ
-aSM
-aPV
-aPV
-aPV
-aPV
-aWr
-aXc
-aKo
-aSD
-aZA
-aSD
-bbu
-bcO
-bdZ
-bfh
-bgh
-bhl
-bio
-bjs
-bkB
-blD
-bnf
-bow
-bpL
-bqN
-bsd
-bqN
-bqN
-bqN
-bqN
-bxB
-bxB
-byQ
-byQ
-byQ
-bzW
-byQ
-byQ
-byQ
-bxB
-bxB
-bxB
-bww
-bMB
-adj
-adj
-adj
-adj
-adj
-adj
-adj
-adj
-adj
-adj
-adj
-adj
-adj
-bOX
-bOX
-bOX
-caH
-cbC
-ccx
-cab
-cab
-cdu
-cfE
-cgw
-chp
-cdu
-aaT
-aaT
-adj
-ceR
-cmn
-cni
-ceR
-ciU
-aaT
-cnO
-cnO
-cnO
-cnO
-cqn
-crQ
-csy
-cti
-ctW
-cuD
-cva
-cvL
-cws
-cwN
-cxc
-cxq
-cxE
-cdt
-cxW
-cxW
-cyk
-cyq
-cyB
-cyi
-cyi
-cyB
-cyk
-cyk
-cyi
-cyi
-cyB
-cyq
-cyk
-cxW
-cye
-cye
-cyl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(141,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-abl
-abl
-abl
-abl
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-abL
-abL
-agc
-agc
-ahR
-aik
-aik
-ajm
-ajT
-akq
-akq
-akq
-akq
-akG
-akI
-akG
-anW
-aoz
-aoZ
-apA
-anV
-aqC
-aqU
-anV
-akG
-akI
-asz
-asZ
-atw
-atY
-asy
-asy
-asy
-asy
-awG
-axm
-axN
-ays
-ayQ
-azy
-axm
-aAw
-aAR
-aBy
-aCe
-aCJ
-aDk
-aDR
-aEu
-aCM
-aFP
-aCN
-aCd
-aAQ
-aIm
-aIS
-alE
-alE
-aLj
-aMr
-aNA
-aOx
-aPv
-aQa
-aQa
-aQa
-aQa
-aSN
-aTq
-aTq
-aTq
-aTq
-aWs
-aXd
-aXW
-aYG
-aZB
-aSD
-bbt
-bbt
-bbt
-bbt
-bbt
-bbt
-bij
-bij
-bij
-bij
-bng
-bij
-bij
-bqN
-bse
-brW
-bqN
-brW
-brW
-bxB
-bxB
-bxB
-bAU
-bxB
-bDm
-bxB
-bAU
-bxB
-bxB
-bxB
-bKb
-bww
-bMB
-adj
-adj
-adj
-adj
-adj
-adj
-adj
-adj
-adj
-adj
-adj
-adj
-adj
-bOX
-bPd
-bZt
-caC
-cbC
-ccx
-bZs
-cee
-cdu
-cfF
-cgx
-chq
-cdu
-aaT
-aaT
-adj
-ceR
-cmo
-cni
-ceR
-ciU
-aaT
-coU
-cpo
-cpO
-cqu
-cqn
-crR
-css
-ctj
-ctP
-css
-css
-css
-css
-css
-cwZ
-cxr
-cxE
-cdt
-cxW
-cxW
-cyi
-cyt
-cyA
-cyI
-cyM
-cyM
-cyI
-cyM
-cyM
-cyI
-cyA
-czc
-cyi
-cxW
-cye
-cyl
-cyl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(142,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-abl
-abl
-abl
-abl
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-abL
-abL
-agc
-agc
-ahR
-aik
-aik
-ajo
-ajT
-akq
-akq
-akH
-akI
-akI
-akI
-akG
-anW
-aoA
-aoZ
-apB
-anV
-anV
-anV
-anV
-akG
-alh
-asy
-ata
-atw
-atZ
-auB
-atw
-avH
-asy
-awG
-axm
-axO
-ayt
-axm
-azy
-axm
-aAy
-aAR
-aBy
-aBy
-aBy
-aDl
-aBy
-aEv
-aBy
-aBy
-aGJ
-aHm
-aAQ
-aIm
-aIO
-akG
-akG
-aLi
-aMs
-aNB
-aOy
-aPw
-aPZ
-aPZ
-aPZ
-aPZ
-aSM
-aTr
-aPV
-aPV
-aPV
-aWr
-aUX
-aKo
-aSD
-aZA
-aSD
-bbs
-bcH
-bcH
-bcH
-bcH
-bcH
-bcH
-bcH
-bbs
-blt
-bnh
-bon
-bpC
-bpC
-bsf
-bpC
-bon
-bvn
-bww
-bxA
-bxB
-bxB
-bxB
-bxB
-bxB
-bxB
-bxB
-bxB
-bxB
-bIY
-bIY
-bww
-bMB
-adj
-bOX
-bOX
-bQZ
-bQZ
-bQZ
-bQZ
-bQZ
-bQZ
-bQZ
-bQZ
-bQZ
-bQZ
-bQZ
-bPd
-cab
-caC
-cbC
-ccx
-bZs
-cee
-cdu
-cfG
-cel
-cfe
-cdu
-aaT
-aaT
-adj
-ceR
-cmp
-cno
-ceR
-ciU
-aaT
-coU
-cpp
-cpP
-cqv
-crc
-crS
-csz
-ctk
-ctX
-cuv
-cvb
-cvM
-cwt
-css
-cwZ
-cxs
-cxE
-cdt
-cxX
-cxW
-cyi
-cyi
-cyz
-cyi
-cyi
-cyk
-cxW
-cyk
-cyi
-cyi
-cyz
-cyi
-cyi
-cxW
-cye
-cyl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(143,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-abl
-abl
-abl
-abl
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-abL
-agc
-agc
-ahR
-aik
-aik
-ajp
-ajT
-akq
-akq
-akG
-akI
-akG
-akI
-alh
-anV
-aoB
-aoZ
-apC
-apY
-aoZ
-aqV
-anV
-akI
-ash
-asy
-atb
-atx
-aua
-asy
-asy
-asy
-asy
-awG
-axm
-axP
-ayu
-axm
-azz
-axm
-aAw
-aAR
-aBz
-aBy
-aCK
-aDm
-aDS
-aEw
-aFj
-aFQ
-aBy
-aCe
-aAR
-aIm
-aIO
-akG
-akI
-aLi
-aMt
-aNC
-aOz
-aPw
-aQb
-aQy
-aRq
-aRZ
-aLi
-aLi
-aRp
-aRp
-aRp
-aRp
-aRp
-aKo
-aYD
-aZz
-aYA
-bby
-bby
-bby
-bby
-bby
-bby
-bid
-bid
-bje
-blt
-bni
-bij
-bpM
-bpM
-bsg
-bpM
-bpM
-bvo
-bww
-bww
-byU
-bxB
-bxB
-bxB
-bxB
-bxB
-bxB
-bxB
-bIa
-bIY
-bIY
-bww
-bMB
-bNQ
-bOX
-bPd
-bRa
-bRQ
-bRQ
-bTA
-bTA
-bUT
-bVP
-bTA
-bRQ
-bRQ
-bRa
-bPd
-cab
-caD
-cbE
-ccx
-cdu
-cdu
-cdu
-cdu
-cgy
-cdu
-cdu
-cdu
-aaT
-adj
-ceR
-cmo
-cni
-ceR
-ciU
-aaT
-coU
-cpq
-cpQ
-cqw
-crd
-crT
-csr
-csr
-ctY
-csr
-cvc
-css
-css
-css
-cwZ
-cdU
-cdk
-cdk
-cxW
-cxW
-cxW
-cxW
-cyz
-cxW
-cxW
-cxW
-cxW
-cxW
-cxW
-cxW
-cyz
-cxW
-cxW
-cxW
-cye
-cyl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(144,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-abl
-abl
-abl
-abl
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-abL
-agc
-agc
-ahR
-ahk
-ahk
-ahk
-ajT
-akq
-akG
-akG
-akI
-akI
-akI
-ant
-anV
-aoC
-apa
-apD
-anV
-anV
-anV
-anV
-akG
-alf
-akG
-amo
-amT
-anx
-akG
-ava
-akI
-akI
-awG
-axm
-axQ
-ayv
-axm
-azA
-axm
-aAw
-aAQ
-aBA
-aCf
-aBy
-aDn
-aDT
-aEx
-aFk
-aBy
-aBy
-aHn
-aAQ
-aIm
-aIO
-akG
-akG
-aLi
-aMu
-aNC
-aOA
-aPx
-aQc
-aPZ
-aPZ
-aPZ
-aPZ
-aLi
-aUg
-aUY
-aVI
-aUY
-aXe
-akq
-aSD
-aZA
-aSD
-bbz
-bcP
-bcP
-bcP
-bcP
-bhm
-bii
-bjt
-bkC
-blE
-bnj
-bij
-bpN
-bqQ
-bsh
-btm
-bpM
-bvp
-bpC
-bpC
-bpC
-bpC
-bwu
-bpC
-bpC
-bpC
-bpC
-bpC
-bpC
-bpC
-bKc
-bpC
-bon
-bNR
-bPd
-bPd
-bRa
-bRR
-bSN
-bTB
-bTA
-bUU
-bTA
-bWA
-bXl
-bYa
-bRa
-bPd
-cab
-caC
-cbC
-ccx
-cdu
-cef
-ceZ
-cfH
-cfM
-chr
-cih
-cdu
-aaT
-adj
-ceR
-cmo
-cni
-ceR
-ciU
-aaT
-coU
-cpr
-cpR
-cqx
-cqn
-crU
-ceY
-ceY
-ctZ
-cuE
-cvd
-cvN
-cwu
-cwO
-cxd
-cdU
-cxL
-cdk
-cxZ
-cyf
-cym
-cyk
-cyC
-cyk
-cyk
-cyk
-cyk
-cyk
-cyk
-cyk
-cyC
-cyk
-cyk
-cyk
-cye
-cyl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(145,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-abl
-abl
-abl
-abl
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-abL
-agc
-agc
-ahR
-ahk
-aiL
-ajq
-ajT
-akq
-akH
-akG
-akI
-akG
-akG
-anu
-akI
-aoD
-amT
-anx
-akG
-akG
-akI
-akG
-akG
-alf
-akG
-amo
-amT
-anx
-akI
-akI
-akI
-akG
-awH
-axm
-axm
-ayt
-axm
-azB
-axm
-aAw
-aAQ
-aAQ
-aAR
-aCL
-aDo
-aAQ
-aEr
-aFl
-aFR
-aFR
-aAQ
-aAQ
-aIm
-aIO
-akI
-akG
-aLi
-aMv
-aND
-aOB
-aPy
-aQd
-aQz
-aRr
-aPZ
-aPZ
-aPY
-akG
-akG
-akG
-akG
-akG
-aJr
-aYH
-aZA
-aSD
-bbz
-bcP
-bcQ
-bcQ
-bgi
-bgi
-bip
-bju
-bje
-blw
-bnk
-bij
-bpO
-bqR
-bsi
-btn
-buo
-buo
-buo
-buo
-buo
-bzY
-bBa
-bCg
-bCg
-bCg
-bCg
-bCg
-bIc
-bIc
-bIc
-bIc
-bIc
-bNS
-bPd
-bPd
-bRa
-bRS
-bSO
-bTC
-bUn
-bUV
-bRQ
-bWB
-bXm
-bYb
-bRa
-bPd
-cab
-caI
-cbC
-ccx
-cdu
-ceg
-cen
-cfI
-cen
-cen
-cii
-cdu
-aaT
-adj
-ceR
-cmo
-cni
-ceR
-ciU
-aaT
-cnO
-cnO
-cpR
-cnO
-cqn
-cqn
-csA
-csA
-cqn
-cqn
-cqn
-cqn
-cqn
-cwP
-cxe
-cxt
-cdU
-cdk
-cxU
-cqn
-cxV
-cyu
-cyD
-cyH
-cyH
-cyH
-cyH
-cyH
-cyH
-cyW
-cyY
-czd
-cyk
-cye
-cye
-cyl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(146,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-abl
-abl
-abl
-abl
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-abL
-abL
-agc
-agc
-ahR
-ail
-aik
-ajr
-ajT
-ajT
-ajT
-ald
-akI
-amm
-amR
-anv
-amR
-aoE
-apb
-apE
-amR
-amR
-amR
-amR
-amR
-anv
-amR
-aoE
-aty
-apE
-amR
-avb
-avI
-awi
-awI
-amR
-amR
-ayw
-amR
-azC
-amR
-amR
-amR
-aBB
-aCg
-aBy
-aDl
-aAQ
-aEy
-aFm
-aFS
-aFS
-aHo
-aHR
-aIm
-aIO
-akG
-akI
-aLi
-aMw
-aNE
-aOC
-aLi
-aQe
-aPZ
-aRs
-aPZ
-aSO
-aLi
-aUh
-aUZ
-aUY
-aWt
-akG
-akG
-aSD
-aZA
-aSD
-bbz
-bcP
-bcP
-bea
-bcP
-bgi
-big
-bjh
-bkr
-blt
-bnl
-box
-bpP
-bqS
-bsj
-bto
-bup
-bvq
-bwD
-bxG
-byV
-bzY
-bBb
-bCh
-bDs
-bEn
-bFC
-bGG
-bIc
-bJa
-bKd
-bLq
-bIc
-bNS
-bPd
-bPd
-bRa
-bRT
-bSP
-bSP
-bUo
-bUW
-bRQ
-bRQ
-bRQ
-bYc
-bRa
-bPd
-cab
-caC
-cbC
-ccx
-cdu
-ceh
-cen
-cfJ
-cgz
-chs
-cij
-cdu
-aaT
-adj
-ceR
-cmo
-cni
-ceR
-ciU
-aaT
-aaT
-coU
-cpR
-cqy
-cqn
-crV
-csB
-csB
-cua
-cuF
-cve
-cvO
-cqn
-cqn
-cqn
-cxu
-cdU
-cdk
-cxT
-cqn
-cye
-cye
-cye
-cye
-cye
-cye
-cye
-cye
-cye
-cye
-cye
-cye
-cye
-cye
-cye
-cyl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(147,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-abl
-abl
-abl
-abl
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-abL
-agc
-agc
-agc
-ahR
-ahk
-aik
-ajs
-ajT
-akq
-akG
-ale
-alE
-amn
-amS
-anw
-anX
-anX
-anX
-apF
-apZ
-anX
-anX
-anX
-anX
-asi
-anX
-anX
-atz
-aub
-anX
-avc
-anX
-awj
-awJ
-anX
-apZ
-ayx
-ayR
-azD
-anX
-anX
-aAS
-aBC
-aCh
-aCM
-aDp
-aDU
-aEz
-aFn
-aFT
-aFS
-aFS
-aCL
-amT
-aIT
-aJw
-aKr
-aLk
-aMx
-aNF
-aOD
-aPz
-aQf
-aQA
-aPZ
-aSa
-aLi
-aLi
-aQp
-akG
-akG
-akG
-akG
-aXX
-aSD
-aZA
-aSD
-bbz
-bcP
-bcP
-bcQ
-bgi
-bgi
-biq
-bjv
-bje
-blt
-bnm
-bij
-bpQ
-bqT
-bsk
-btp
-buo
-bvr
-bwE
-bxG
-byW
-bzY
-bBc
-bCi
-bDt
-bEo
-bFD
-bGH
-bIc
-bJb
-bKe
-bLr
-bIc
-bNS
-bPd
-bPd
-bRa
-bRU
-bSQ
-bTD
-bUp
-bUX
-bRQ
-bWC
-bXn
-bYd
-bRa
-bPd
-cab
-caD
-cbF
-ccE
-cdv
-cei
-cfa
-cfK
-cgA
-cen
-cik
-cdu
-aaT
-adj
-ceR
-cmq
-cni
-ceR
-ciU
-aaT
-aaT
-coU
-cpR
-cqy
-cqn
-crW
-csB
-csB
-csB
-cuG
-cuG
-cvO
-cqn
-aab
-cqn
-cxv
-cxM
-cdk
-cxU
-cqn
-cyi
-cyl
-cyl
-cyl
-cyl
-cyl
-cyl
-cyl
-cyl
-cyl
-cyl
-cyl
-cyl
-cyl
-cyl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(148,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-abl
-abl
-abl
-abl
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-abL
-abL
-agc
-agc
-agc
-ahR
-ahk
-ahk
-ahk
-ajT
-akq
-akG
-alf
-akG
-amo
-amT
-anx
-anY
-aoF
-akG
-akG
-aqa
-akI
-akI
-akI
-akG
-akI
-akI
-akG
-amo
-aqa
-akG
-avd
-akI
-awk
-awK
-awk
-axR
-ayy
-awk
-awk
-awk
-awk
-aAT
-aBD
-aBy
-aCN
-aDq
-aAR
-aEA
-aFm
-aFU
-aFS
-aHp
-aAQ
-aIm
-aIO
-akI
-aKs
-aLi
-aMy
-aNG
-aOC
-aLi
-aQg
-aNC
-aPZ
-aSb
-aSP
-aTs
-akG
-akG
-akG
-akG
-aXf
-aXY
-aSD
-aZA
-aSD
-bbz
-bcP
-bea
-bcQ
-bcP
-bhm
-bie
-bjw
-bkD
-blF
-bnn
-bom
-bpR
-bqU
-bsl
-btq
-buq
-bvs
-bwF
-bxG
-byX
-bzY
-bBd
-bCj
-bDu
-bEp
-bFD
-bGI
-bIc
-bJc
-bKf
-bLs
-bIc
-bNS
-bPd
-bPd
-bRa
-bRV
-bSR
-bTA
-bTA
-bUY
-bTA
-bTA
-bXo
-bYe
-bRa
-bPd
-cab
-caC
-cbC
-ccx
-cdu
-cej
-cen
-cfI
-cgB
-cen
-cen
-cdu
-aaT
-adj
-ciX
-cmr
-cnp
-ciX
-ciU
-aaT
-aaT
-coU
-cpR
-cqy
-cqn
-crX
-csB
-csB
-csB
-csB
-csB
-cvO
-cqn
-aab
-cqn
-cxw
-cxN
-cxP
-cya
-cqn
-aab
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(149,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-abl
-abl
-abl
-abl
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-abL
-abL
-agc
-agc
-agc
-ahR
-aik
-aik
-aik
-ajT
-akq
-akI
-alg
-alF
-amp
-amU
-any
-alF
-alF
-alF
-alF
-aqa
-akI
-akG
-akI
-akI
-akG
-all
-all
-atA
-auc
-auC
-ave
-all
-awk
-awL
-axo
-axS
-ayy
-ayS
-azE
-axr
-awk
-aAU
-aBD
-aBy
-aCN
-aDq
-aAR
-aEB
-aFm
-aFV
-aFS
-aHq
-aAR
-aIm
-aIO
-akG
-akI
-aLi
-aMz
-aNH
-aOC
-aLi
-aQh
-aQB
-aRt
-aSc
-aSP
-akG
-akG
-aVa
-aUY
-aWu
-akG
-akG
-aSD
-aZA
-aSD
-bbz
-bcP
-bcQ
-bcP
-bgi
-bgi
-bid
-bje
-bkE
-blu
-bno
-bij
-bpS
-bqV
-bsm
-btr
-buo
-bvt
-bwG
-bxH
-byY
-bzY
-bBe
-bCk
-bDv
-bEq
-bFD
-bGJ
-bIc
-bJd
-bKg
-bLt
-bIc
-bNS
-bPd
-bPd
-bRa
-bRQ
-bRQ
-bTA
-bUq
-bUZ
-bVQ
-bTA
-bRQ
-bRQ
-bRa
-bPd
-cab
-caC
-cbG
-ccA
-cdw
-cek
-cfb
-cfL
-cgC
-cht
-cen
-cdu
-ceR
-ceR
-ciX
-cms
-cni
-ciX
-ciU
-aaT
-aaT
-coU
-cpR
-cqy
-cqn
-crY
-csB
-ctl
-ctl
-csB
-csB
-cvO
-cqn
-aab
-cqn
-cxx
-cqn
-cqn
-cqn
-cqn
-aab
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(150,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-abl
-abl
-abl
-abl
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-abL
-abL
-agc
-agc
-agc
-ahk
-ahk
-ahk
-ail
-ajT
-akq
-akq
-akG
-alF
-amq
-amV
-anz
-amV
-amV
-apc
-alF
-aqa
-akq
-akq
-akG
-akI
-akG
-asA
-atc
-atB
-aud
-alN
-avf
-avJ
-awk
-awM
-axp
-axS
-ayy
-awk
-awk
-axr
-awk
-aAT
-aBD
-aBy
-aBy
-aDr
-aAR
-aEC
-aFo
-aFW
-aFS
-aHr
-aHS
-aIy
-aIU
-akI
-akG
-aLi
-aMA
-aNI
-aOE
-aLi
-aQi
-aNC
-aPZ
-aSd
-aSP
-aTt
-akG
-akG
-akG
-akG
-akG
-aHU
-aSD
-aZA
-aSD
-bbz
-bcQ
-bcQ
-bcQ
-bcQ
-bgi
-bcP
-bgi
-bkF
-blt
-bnp
-bij
-bpM
-bpM
-bpM
-bts
-buo
-buo
-buo
-buo
-buo
-bzY
-bBf
-bCl
-bCl
-bEr
-bFE
-bGK
-bIc
-bJe
-bKh
-bLu
-bIc
-bNS
-bPe
-bQh
-bRb
-bRW
-bSS
-bSS
-bUr
-bVa
-bVR
-bWD
-bWD
-bYf
-bVf
-bPd
-cab
-caC
-cbC
-ccx
-cdu
-cel
-cfc
-cfI
-cen
-chu
-cen
-cdu
-cjI
-ceP
-ceP
-cmt
-cnk
-ciX
-ciU
-aaT
-aaT
-coU
-cpR
-cnO
-cqn
-cqn
-csC
-ctl
-cub
-cuH
-csB
-cvP
-cqn
-aab
-cqn
-cxy
-cqn
-aab
-aab
-aab
-aab
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(151,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-abl
-abl
-abl
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-abL
-abL
-agc
-agc
-agc
-ahk
-aim
-aik
-aik
-ajT
-akq
-akq
-akG
-alF
-amr
-amW
-amV
-amV
-aoG
-amV
-alF
-aqa
-akH
-akq
-akG
-akI
-akG
-asA
-atd
-atC
-aud
-auD
-avg
-avJ
-awk
-awN
-axq
-axT
-ayz
-ayT
-axr
-axr
-awk
-aAT
-aBE
-aCg
-aBy
-aBy
-aAQ
-aED
-aFm
-aFS
-aFS
-aHs
-aAQ
-aIm
-aIO
-akG
-akI
-aLi
-aMB
-aNJ
-aOE
-aPA
-aPZ
-aNC
-aRu
-aSe
-aSP
-aTu
-akG
-aUY
-aVJ
-aUY
-akG
-akq
-aYC
-aZA
-aSD
-bbz
-bcQ
-bcQ
-bcP
-bcQ
-bcQ
-bcP
-bcP
-bkF
-blt
-bnm
-bij
-bcP
-bgi
-bcP
-btt
-bcP
-bgi
-bcP
-bgi
-byZ
-bzZ
-bBg
-bCm
-bDw
-bEs
-bFF
-bGL
-bId
-bJf
-bKi
-bLv
-bIc
-bNT
-bPf
-bQi
-bRb
-bRX
-bST
-bTE
-bUs
-bVb
-bVS
-bWE
-bXp
-bYg
-bVf
-bPd
-cab
-caC
-cbH
-ccF
-cdx
-cem
-cfd
-cfM
-cen
-chv
-cen
-ciY
-cjJ
-ckt
-ckt
-cmu
-cni
-ciX
-ciU
-aaT
-aaT
-coU
-cpR
-cnO
-adj
-cqn
-cqn
-cqn
-cqn
-cqn
-cqn
-cqn
-cqn
-aab
-cqn
-cxz
-cqn
-aab
-aab
-aab
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(152,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-abl
-abl
-abl
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-abL
-abL
-agc
-agc
-agc
-ahk
-aim
-aik
-aik
-ajT
-akq
-akq
-akG
-alG
-ams
-amV
-anA
-alF
-alF
-alF
-alF
-aqa
-akG
-akG
-akG
-akI
-akG
-asA
-ate
-atC
-aue
-auE
-avf
-avK
-awk
-awK
-awl
-awk
-ayy
-awk
-awk
-axU
-awk
-aAT
-aBE
-aCi
-aCO
-aDs
-aDV
-aEE
-aFp
-aFX
-aAR
-aAR
-aAQ
-aIm
-aIO
-aHU
-akI
-aLi
-aMC
-aNK
-aOF
-aLi
-aQj
-aQC
-aLi
-aLi
-aLi
-ajT
-aUi
-akG
-akG
-akG
-akq
-akq
-aSD
-aZA
-aSD
-bbA
-bcP
-bcQ
-bfi
-bcP
-bcQ
-bcQ
-bcP
-bkF
-blt
-bnm
-boj
-bcP
-bqW
-bcQ
-btu
-bcP
-bcP
-bcP
-bcP
-byZ
-bAa
-bBh
-bCn
-bDx
-bEt
-bFG
-bGM
-bIc
-bIc
-bIc
-bIc
-bIc
-bNS
-bPd
-bPd
-bRb
-bRY
-bSU
-bTF
-bUt
-bVc
-bVT
-bWF
-bXq
-bYh
-bVf
-bPd
-cab
-caC
-cbC
-ccx
-cdu
-cen
-cfe
-cfN
-cen
-cfe
-cen
-cdu
-cjK
-cku
-cfD
-cmv
-cni
-ciX
-ciU
-aaT
-aaT
-coU
-cpR
-coU
-adj
-adj
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-cui
-cxA
-cvZ
-cvZ
-cyb
-aab
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-acf
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(153,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-abl
-abl
-abl
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-abL
-agc
-agc
-agc
-ahk
-aik
-aik
-ajt
-ajT
-akq
-akq
-akG
-alG
-amt
-amV
-anB
-alF
-aoH
-apd
-alF
-aqa
-akI
-akI
-arr
-aoF
-akG
-asA
-atf
-atC
-auf
-auF
-avh
-all
-awk
-awO
-axr
-axr
-ayy
-ayU
-azF
-axr
-awk
-aAT
-aBF
-amR
-amR
-aDt
-amR
-amR
-aFq
-aFY
-amR
-amR
-aHT
-aIz
-aIV
-amR
-amR
-aLl
-aMD
-aFq
-avb
-amR
-amR
-aQD
-aFY
-amR
-amR
-amR
-aUj
-aNh
-aNh
-aNh
-aNh
-aXZ
-aSD
-aZA
-aSD
-bbz
-bcP
-bcQ
-bcP
-bcP
-bcP
-bcQ
-bcP
-bkF
-blr
-bnq
-boj
-bcP
-bqX
-bcP
-btv
-bcQ
-bvu
-bcQ
-bcQ
-byZ
-bAb
-bBg
-bCo
-bDy
-bEu
-bFH
-bGN
-bIe
-bJg
-bKj
-bLw
-byZ
-bNS
-bPd
-bPd
-bRb
-bRZ
-bSV
-bTG
-bUu
-bVd
-bVU
-bWG
-bXr
-bYi
-bVf
-bPd
-cab
-caC
-cbC
-ccu
-cdu
-cdu
-cdu
-cdu
-cdu
-cdu
-cdu
-cdu
-ceR
-ceR
-ciX
-cmw
-cni
-cnO
-col
-cnO
-cnO
-cnO
-cpR
-cnO
-cnO
-cnO
-cnO
-aaa
-aaa
-aaa
-aab
-aaa
-aaa
-aaa
-aab
-aaa
-aaa
-aab
-cvj
-aab
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(154,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-abl
-abl
-abl
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-abL
-agc
-agc
-agc
-ahk
-aik
-aik
-ajs
-ajT
-akq
-akH
-akG
-alF
-amu
-amV
-amV
-anZ
-aoI
-ape
-alF
-aqa
-all
-all
-all
-all
-all
-all
-all
-atC
-aug
-auG
-avf
-alN
-awl
-awP
-axs
-axU
-ayy
-awk
-awk
-axr
-awk
-aAV
-aBG
-aCj
-aBG
-aDu
-aDW
-aBG
-aFr
-aFZ
-aBG
-aHt
-aHt
-aHt
-aIW
-aJx
-aKt
-aLm
-aME
-aNL
-aOG
-aPB
-aPB
-aQE
-aRv
-aPB
-aSQ
-aTv
-aBD
-aVb
-aVD
-aWv
-aXg
-aYa
-aSD
-aZA
-aSD
-bbz
-bcP
-bcP
-bcP
-bcQ
-bcQ
-bcQ
-bcP
-bkF
-bls
-bno
-boj
-bcP
-bcP
-bcP
-btw
-bcP
-bcP
-bcQ
-bcP
-byZ
-bAc
-bBi
-bCp
-bDz
-bEv
-bFI
-bGO
-bIf
-bJh
-bJg
-bLx
-byZ
-bNU
-bby
-bby
-bRb
-bRb
-bSW
-bTH
-bUv
-bVe
-bVV
-bWH
-bXs
-bYj
-bVf
-bPd
-cab
-caC
-cbC
-ccG
-cdy
-ceo
-ceo
-ceo
-ceo
-ceo
-ceo
-ciZ
-cjL
-cjL
-clp
-cmx
-cnq
-clp
-com
-cjL
-cjL
-cjL
-cpS
-cqz
-cre
-crZ
-cnO
-aaa
-aaa
-aaa
-aab
-aaa
-aaa
-aaa
-aab
-aaa
-aaa
-aab
-cvj
-aab
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(155,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-abl
-abl
-abl
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-abL
-agc
-agc
-agc
-ahS
-aik
-aik
-aju
-ajT
-akq
-akq
-alh
-alF
-alF
-alF
-alF
-alF
-alF
-alF
-alF
-aqa
-all
-aqW
-ars
-all
-asj
-aqW
-all
-atD
-auh
-auH
-avi
-avL
-awk
-awQ
-axt
-axt
-ayy
-ayU
-azG
-axr
-awk
-aqc
-ahk
-aCk
-aCk
-aDv
-aCk
-aCk
-aFs
-aCk
-aCk
-abl
-akI
-akI
-akG
-aIw
-aKu
-aLn
-aMF
-aBD
-aOH
-akI
-akG
-akG
-ajT
-ajT
-aSR
-aTw
-aUk
-ajT
-aVK
-aWw
-aXh
-aRN
-aYI
-aZz
-aYA
-bbB
-bbz
-bbz
-bbz
-bbz
-bbz
-bbz
-bbz
-bkG
-blG
-bnr
-boj
-bbz
-bbz
-bbz
-btx
-bbz
-bby
-bbz
-bbz
-byZ
-bAd
-bBj
-bAd
-byZ
-bEw
-bFJ
-bGP
-byZ
-bAd
-bAd
-bAd
-byZ
-bNV
-bPg
-bQj
-bRc
-bRb
-bRb
-bRb
-bRb
-bVf
-bVf
-bWI
-bXt
-bVf
-bVf
-bZt
-cac
-caJ
-cbI
-ccH
-bZK
-bZK
-bZK
-bZK
-bZK
-bZK
-bZK
-cja
-bZK
-bZK
-clq
-cmy
-cnr
-clq
-clq
-clq
-clq
-cps
-cpT
-cqA
-crf
-csa
-cnO
-aaa
-aaa
-aaa
-aab
-aaa
-aaa
-aaa
-aab
-aaa
-aaa
-aab
-cvj
-aab
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(156,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-abl
-abl
-abl
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-abL
-agc
-agc
-agc
-ahR
-aik
-aik
-ajm
-ajT
-akq
-akq
-akG
-akG
-akG
-akG
-akG
-akG
-akG
-apf
-apG
-aqb
-all
-aqX
-art
-all
-ask
-asB
-all
-atE
-aui
-auI
-avf
-avM
-avQ
-awR
-avQ
-avQ
-ayA
-avQ
-avQ
-avQ
-avQ
-aqd
-aBH
-aCk
-aCP
-aDw
-aDX
-aEF
-aFt
-aGa
-aCk
-abl
-abl
-akI
-akG
-aJy
-aKv
-aLo
-aHN
-aNM
-aOH
-akI
-akI
-akG
-akI
-aSf
-aSS
-aTx
-aUl
-aVc
-aVL
-aVC
-aXi
-aYb
-aSF
-aZJ
-aSF
-bbC
-bcR
-beb
-bcR
-bcR
-bcR
-bcR
-bcR
-bcR
-blH
-bns
-bcR
-bcR
-beb
-bcR
-bty
-bcR
-bvv
-bcR
-bxI
-bza
-bAe
-bBk
-bAe
-bAe
-bEx
-bFK
-bGQ
-bIg
-bIg
-bIg
-bIg
-bMD
-bNW
-bPh
-bPh
-bRd
-bSa
-bSa
-bSa
-bSa
-bSa
-bSa
-bWJ
-bXu
-bSa
-bYX
-bZu
-bZu
-caK
-cbJ
-ccI
-cdz
-cep
-cff
-cfO
-cgD
-cgD
-cil
-cjb
-cjM
-ckv
-clr
-cmz
-cns
-cnP
-con
-coB
-coV
-cpt
-cpU
-cqB
-crg
-csa
-cnO
-aaa
-aaa
-aaa
-aab
-aaa
-aaa
-aaa
-aab
-aaa
-aaa
-aab
-cvj
-aab
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(157,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-abl
-abl
-abl
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-abL
-agc
-agc
-agc
-ahR
-aik
-aik
-ajm
-ajT
-akq
-akq
-akq
-akq
-akH
-akq
-akq
-akq
-akq
-akq
-ajT
-aqc
-all
-aqY
-aru
-all
-aru
-asC
-all
-atF
-auj
-auJ
-avj
-avN
-avQ
-awS
-axu
-axV
-ayB
-ayV
-azH
-azX
-avQ
-aqd
-apg
-aCk
-aCQ
-aDw
-aDy
-aDy
-aFt
-aGb
-aCk
-abl
-abl
-akG
-aIX
-aJz
-aKw
-aLp
-aMG
-aNN
-aOI
-aIX
-akI
-akI
-akG
-aSf
-aSS
-aSD
-aUm
-aSD
-aVM
-aWx
-aSS
-aYc
-aYJ
-aZK
-baz
-bbD
-bcS
-bec
-bfj
-bfj
-bfj
-bfj
-bfj
-bfj
-blI
-bnt
-boy
-bfj
-bqY
-bfj
-btz
-bur
-bvw
-bfj
-bxJ
-bzb
-bfj
-bBl
-bCq
-bCq
-bEy
-bFL
-bGR
-bCq
-bCq
-bCq
-bCq
-bCq
-bNX
-bCq
-bCq
-bCq
-bCq
-bCq
-bCq
-bCq
-bCq
-bCq
-bEy
-bGR
-bCq
-bYY
-bZv
-bZv
-caL
-cbK
-ccJ
-bZG
-bZG
-cae
-bZG
-cae
-cae
-cim
-cjc
-cbe
-ckw
-cls
-cmA
-cnt
-ckn
-ckn
-coC
-coW
-cps
-cpV
-cqC
-cpO
-csa
-cnO
-aaa
-aaa
-aaa
-aab
-aaa
-aaa
-aaa
-aab
-aaa
-aaa
-aab
-cvj
-aab
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-acf
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(158,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-abl
-abl
-abl
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-abL
-abL
-agc
-agc
-agc
-ahR
-aik
-aik
-ajm
-ajT
-akq
-akq
-akq
-akq
-akq
-akq
-akq
-akq
-akq
-akq
-ajT
-aqd
-all
-aqZ
-arv
-all
-asl
-aqZ
-atg
-atC
-alN
-auK
-avk
-avO
-avQ
-awT
-axv
-awW
-ayC
-awW
-awW
-awW
-avQ
-aqd
-apg
-aCk
-aCR
-aDx
-aDY
-aDy
-aFu
-aGc
-aCk
-abl
-aHU
-akG
-aIY
-aJA
-aKx
-aLq
-aMH
-aNO
-aOJ
-aPC
-akG
-akI
-akG
-aSf
-aST
-aTy
-aUn
-aSH
-aVN
-aSH
-aUn
-aSH
-aYK
-aZL
-baA
-bbE
-bcT
-bed
-bfk
-bgj
-bfk
-bfk
-bfk
-bfk
-bfk
-bnu
-bcT
-bpT
-bqZ
-bfk
-btA
-bus
-bvx
-bwH
-bxK
-bzc
-bAf
-bBm
-bAf
-bwH
-bEz
-bFM
-bGS
-bIh
-bxL
-bxL
-bxL
-bME
-bNY
-bxL
-bxL
-bxL
-bxL
-bxL
-bTI
-bAf
-bVg
-bVW
-bWK
-bXv
-bAf
-bYZ
-bZw
-cad
-caM
-cbL
-ccK
-cdA
-ceq
-cfg
-cfP
-cgE
-chw
-cin
-cjd
-cjN
-ckx
-clq
-cmB
-cnu
-ckn
-ckn
-coC
-coX
-cps
-cpW
-cqD
-cpO
-csb
-cnO
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-cvj
-aab
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(159,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-abl
-abl
-abl
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-abL
-abL
-abL
-agc
-agc
-agc
-ahR
-aik
-aik
-ajm
-ahk
-ahk
-ahk
-ahk
-ahk
-ahk
-ahk
-ahk
-ahk
-ahk
-ahk
-ahk
-aqc
-all
-ara
-arw
-arN
-asm
-asD
-arN
-atG
-arN
-auL
-avk
-alN
-awm
-awU
-axw
-axW
-ayD
-ayW
-awW
-azY
-avQ
-aqd
-aik
-aCk
-aCS
-aDy
-aDZ
-aDy
-aDy
-aGd
-aCk
-abl
-abl
-abl
-aIY
-aJB
-aKy
-aLr
-aKA
-aNP
-aOJ
-aPC
-akG
-akI
-alh
-aRN
-aSD
-aTz
-aUo
-aVd
-aVO
-aVd
-aVd
-aVd
-aYL
-aTz
-baB
-bbF
-bcU
-bee
-bfl
-bgk
-bfl
-bbF
-bfl
-bfl
-bfl
-bbF
-boz
-bpU
-bra
-bsn
-bby
-but
-bby
-bwI
-bxL
-bzd
-bvy
-bBn
-bwJ
-bDA
-bEA
-bFN
-bGT
-bDG
-bDG
-bDG
-bDG
-bMF
-bMF
-bPi
-bQk
-bRe
-bMF
-bMF
-bMF
-bUw
-bUw
-bVX
-bWL
-bXw
-bYk
-bUw
-bZx
-cae
-caN
-cbM
-caR
-ccf
-cer
-cfh
-cfh
-cgF
-chx
-cgF
-cje
-cjO
-cfl
-clq
-cmC
-ckn
-cnQ
-cnQ
-coC
-coX
-cps
-cpX
-cqD
-cpO
-csb
-aaa
-aaa
-aaa
-aaa
-aab
-aaa
-aaa
-aaa
-aab
-aaa
-aaa
-aab
-cvj
-aab
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(160,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-abl
-abl
-abl
-abl
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-abL
-abL
-abL
-agc
-agc
-agc
-ahT
-ahk
-aiM
-aik
-aik
-ail
-akJ
-ali
-ali
-ali
-ali
-ali
-ali
-ali
-ali
-apH
-aqe
-aqD
-arb
-arx
-arO
-arx
-asE
-ath
-atH
-auk
-arx
-avl
-avP
-awn
-awV
-axx
-axX
-ayE
-ayX
-awW
-azZ
-avQ
-aqd
-aik
-aCk
-aCT
-aDz
-aEa
-aEG
-aFv
-aGe
-aCk
-abl
-abl
-abl
-aIY
-aJC
-aKz
-aLs
-aMI
-aNP
-aOK
-aIY
-akI
-akI
-aHU
-aRN
-aSD
-aTA
-aUp
-aUp
-aVP
-aUp
-aUp
-aUp
-aYM
-aTz
-baC
-bbF
-bcV
-bee
-bfm
-bgl
-bfm
-bir
-bjx
-bkH
-blJ
-bfl
-boA
-bpV
-brb
-bso
-bbF
-buu
-bvy
-bwJ
-bxM
-bwJ
-bvy
-bBo
-bCr
-bDB
-bEB
-bFO
-bGU
-byZ
-bJi
-bKk
-bLy
-bMG
-bNZ
-bPj
-bQl
-bRf
-bSb
-bSX
-bTJ
-bUx
-bVh
-bVY
-bWM
-bXx
-bYl
-bUw
-bZx
-cae
-caO
-cbN
-ccL
-ccf
-cer
-cfh
-cfQ
-cfQ
-cgI
-cio
-cjf
-cjP
-cky
-clq
-cmD
-ckn
-cnR
-cnR
-coD
-coY
-cpu
-cpY
-cqE
-crh
-csb
-aaa
-aaa
-aaa
-aaa
-aab
-aaa
-aaa
-aaa
-aab
-aaa
-aaa
-aab
-cvj
-aab
-aaa
-aaa
-aaa
-aaa
-acf
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(161,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-abl
-abl
-abl
-abl
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-abL
-abL
-abL
-agc
-agc
-agc
-ads
-ahk
-aiN
-ajv
-aiN
-ahk
-aik
-alj
-alH
-alH
-alH
-anC
-aoa
-aik
-aik
-ahk
-aqf
-all
-aqZ
-ary
-all
-asn
-aqZ
-all
-aqZ
-aul
-atA
-avm
-aqZ
-avQ
-awW
-awW
-axY
-ayF
-ayY
-awW
-aAa
-avQ
-aqd
-aik
-aCk
-aCU
-aCk
-aCk
-aCk
-aFw
-aCk
-aCk
-abl
-abl
-abl
-aIY
-aJD
-aKA
-aLt
-aMJ
-aNP
-aOL
-aIY
-akI
-abl
-abl
-aRN
-aSD
-aTB
-aUq
-aVe
-aVQ
-aVe
-aVe
-aVe
-aYN
-aTB
-baC
-bbF
-bcW
-bef
-bfm
-bgm
-bhn
-bfm
-bfm
-bkI
-blK
-bfl
-boB
-bpW
-brc
-bsp
-bbF
-buu
-bvy
-bwK
-bxN
-bze
-bAg
-bBp
-bCs
-bDC
-bEC
-bFP
-bGV
-bIi
-bJj
-bKl
-bLz
-bMH
-bOa
-bPk
-bQm
-bRg
-bRg
-bRg
-bTK
-bUy
-bVi
-bVZ
-bWN
-bXy
-bYm
-bZa
-bZx
-cae
-caP
-cbO
-ccM
-ccf
-cer
-cfh
-cfR
-cgG
-cgI
-cip
-cgI
-ciq
-chz
-clq
-cmE
-ckn
-ckn
-ckn
-coE
-coZ
-cpv
-cpX
-cqD
-cri
-csb
-aaa
-aaa
-aaa
-aaa
-aab
-aaa
-aaa
-aaa
-aab
-aaa
-aaa
-aab
-cvj
-aab
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(162,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-abl
-abl
-abl
-abl
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-abL
-abL
-abL
-agc
-agc
-agc
-ads
-ahk
-aiO
-aik
-ajU
-ahk
-aik
-alk
-alI
-amv
-ajs
-anD
-aob
-aik
-apg
-ahk
-alN
-all
-arc
-aru
-all
-aru
-arc
-all
-arc
-asB
-atA
-avn
-arc
-avQ
-awX
-awW
-awW
-ayG
-awW
-awW
-awW
-avQ
-aAW
-aBI
-aBI
-aCV
-aCV
-aEb
-atj
-aFx
-ahk
-abl
-abl
-abl
-abl
-aIY
-aJE
-aKA
-aLu
-aMK
-aNP
-aOM
-aIY
-abl
-abl
-abl
-aRN
-aSU
-aTC
-aUr
-aUr
-aVR
-aWy
-aXj
-aYd
-aYO
-aTB
-baC
-bbF
-bcW
-beg
-bfm
-bgm
-bfm
-bfm
-bfm
-bfm
-blL
-bbF
-boC
-bfm
-brc
-bsq
-bbF
-buu
-bvy
-bwL
-bxO
-bzf
-bAh
-bBq
-bCt
-bDD
-bED
-bFQ
-bGW
-bIj
-bDw
-bJg
-bDw
-bMI
-bOb
-bPl
-bQn
-bRh
-bSc
-bSY
-bTL
-bUy
-bVj
-bWa
-bWO
-bXz
-bYm
-bZa
-bZx
-caf
-caO
-cbP
-ccN
-ccf
-cer
-cfh
-cfS
-cgH
-chy
-ciq
-cgI
-ciq
-chz
-clt
-cmF
-cnv
-cnv
-coo
-coF
-cpa
-cfh
-cfh
-cqF
-cjO
-cfl
-cfh
-cfh
-cfh
-aaa
-aab
-aaa
-aaa
-aaa
-aab
-aaa
-aaa
-aab
-cvj
-aab
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(163,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-abl
-abl
-abl
-abl
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-abL
-abL
-abL
-agc
-agc
-agc
-ads
-ahk
-ahk
-ajv
-ahk
-ahk
-aik
-alk
-alJ
-aik
-amX
-aik
-aik
-aik
-aph
-ahk
-alN
-all
-aqX
-arz
-all
-aso
-asB
-all
-aqX
-aum
-auM
-avo
-asB
-avQ
-awY
-awW
-awW
-ayH
-awW
-awW
-awW
-avQ
-aAX
-amX
-aCl
-aCW
-aDA
-aDA
-aEH
-aFy
-ahk
-abl
-abl
-abl
-abl
-aIY
-aJD
-aKA
-aLs
-aKA
-aNP
-aOM
-aIY
-abl
-abl
-abl
-aRN
-aRN
-aTB
-aUs
-aUr
-aVS
-aUr
-aUr
-aYe
-aYP
-aTB
-baD
-bbF
-bcX
-beh
-bfn
-bgn
-bho
-bis
-bhn
-bfm
-blM
-bnv
-boD
-bpX
-brc
-bsr
-bbF
-buu
-bvy
-bwM
-bxN
-bzg
-bAi
-bBr
-bCu
-bDE
-bEE
-bFR
-bGX
-bIk
-bJk
-bKm
-bDw
-bMI
-bOc
-bPm
-bQn
-bRh
-bSc
-bSZ
-bTM
-bUy
-bVk
-bWb
-bWN
-bXA
-bYn
-bZa
-bZx
-bZG
-caP
-cbQ
-ccM
-ccf
-ces
-cfh
-cfT
-cgI
-chz
-cir
-cgI
-ciq
-ckz
-clq
-cmG
-cmG
-cnS
-clq
-coG
-cpb
-cfh
-cpZ
-cqG
-crj
-csc
-csD
-ctm
-cfh
-aaa
-aab
-aaa
-aaa
-aaa
-aab
-aaa
-aaa
-aab
-cvj
-aab
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(164,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-abl
-abl
-abl
-abl
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-abL
-abL
-abL
-agc
-agc
-agc
-ads
-aaT
-aiP
-ajw
-aiP
-akr
-aik
-alk
-alK
-aik
-aik
-anE
-aob
-aik
-ajs
-ahk
-alN
-all
-ard
-arA
-all
-asp
-asF
-all
-ard
-aun
-all
-avp
-ard
-avQ
-awZ
-axy
-axZ
-ayI
-ayZ
-azI
-aAb
-avQ
-aAY
-aik
-aCl
-aCX
-abL
-abL
-aEI
-aFy
-ahk
-abl
-abl
-abl
-abl
-aIY
-aJD
-aKA
-aLv
-aML
-aNQ
-aOM
-aIY
-aQk
-aQk
-abl
-abl
-abl
-aTB
-aUt
-aUr
-aVT
-aWz
-aXk
-aUr
-aYQ
-aTB
-aZO
-bbF
-bcY
-bei
-bfo
-bgm
-bhp
-bit
-bfm
-bfm
-blN
-bbF
-boE
-bfm
-brc
-bss
-bbF
-buu
-bvy
-bwN
-bxP
-bzh
-bzh
-bBs
-bCv
-bDB
-bEF
-bFG
-bGY
-bIl
-bIn
-bKn
-bIn
-bIl
-bIl
-bPn
-bQo
-bRi
-bSd
-bMG
-bMG
-bUy
-bUy
-bUy
-bWP
-bXB
-bYo
-bUw
-bZy
-bZG
-caO
-cbR
-ccN
-ccf
-cer
-cfh
-cfU
-cgJ
-chA
-cis
-cjg
-ciq
-chz
-cfh
-cfh
-cnw
-cfh
-cfh
-cfh
-cfh
-cfh
-cqa
-cfV
-crk
-csd
-csE
-ctn
-cfh
-aaa
-aab
-aaa
-aaa
-aaa
-aab
-aaa
-aaa
-aab
-cvj
-aab
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-cql
-cql
-cql
-cql
-cql
-cql
-cql
-cql
-cql
-cql
-cql
-cql
-cql
-cql
-cql
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(165,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-abl
-abl
-abl
-abl
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-abL
-abL
-agc
-agc
-agc
-aaT
-aaT
-aiQ
-ajx
-aiQ
-akr
-aik
-all
-all
-all
-all
-all
-all
-all
-all
-all
-aqg
-all
-all
-all
-all
-all
-all
-all
-all
-all
-all
-avq
-avQ
-avQ
-axa
-axa
-aya
-axa
-aya
-axa
-axa
-avQ
-avQ
-aik
-aCl
-aCX
-abL
-abL
-aEI
-aFy
-ahk
-abl
-abl
-abl
-abl
-aIY
-aJF
-aKA
-aLw
-aMM
-aNR
-aOJ
-aPD
-aQk
-aQk
-aRw
-abl
-abl
-aTB
-aUu
-aUr
-aVU
-aWA
-aXl
-aYf
-aTB
-aTB
-baE
-bbF
-bcW
-bej
-bfp
-bgo
-bbF
-bbF
-bfm
-bfm
-bfm
-bfl
-boF
-bfm
-brd
-bst
-bbF
-buu
-bvy
-bwO
-bxQ
-bxQ
-bAj
-bBt
-bCw
-bDB
-bEG
-bFS
-bGZ
-bIm
-bJl
-bKo
-bLA
-bMJ
-bIl
-bPo
-bQp
-bRj
-bQq
-bTa
-bTN
-bUz
-bVl
-bUy
-bWQ
-bXC
-bYp
-bUw
-bZx
-bZG
-caP
-cbS
-ccM
-ccf
-cer
-cfh
-cfh
-cfZ
-chB
-cit
-cfZ
-cjO
-ckA
-cfh
-cfV
-cfV
-cfV
-cfh
-coH
-cpc
-cpw
-cpw
-cqH
-crl
-cse
-cgI
-cgI
-cfh
-aaa
-aab
-aaa
-aaa
-aaa
-aab
-aaa
-aaa
-aab
-cvj
-aab
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aab
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aab
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(166,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-abl
-abl
-abl
-abl
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-abL
-abL
-agc
-agc
-agc
-aaT
-aaT
-aiQ
-ajy
-aiQ
-akr
-aik
-all
-alL
-all
-amY
-all
-aoc
-all
-api
-all
-alN
-all
-are
-all
-arP
-all
-asG
-all
-atI
-all
-auN
-avq
-avR
-avR
-avR
-avR
-avR
-avR
-avR
-avR
-avR
-avR
-avQ
-aiM
-aCl
-aCX
-abL
-abL
-aEI
-aFy
-ahk
-abl
-abl
-abl
-abl
-aIY
-aJG
-aKB
-aLx
-aJD
-aNS
-aON
-aIY
-aQl
-aQk
-aRw
-abl
-abl
-aTB
-aUv
-aVf
-aVV
-aWB
-aXm
-aUr
-aYR
-aZM
-aZP
-bbF
-bcZ
-bek
-bfq
-bgp
-bhq
-biu
-bfm
-bfm
-bfm
-bfl
-boG
-bpY
-bre
-bsu
-bbF
-buu
-bvy
-bwP
-bxR
-bzi
-bAk
-bBu
-bCx
-bDB
-bEH
-bFT
-bGY
-bIn
-bJm
-bKp
-bLB
-bMK
-bIl
-bPp
-bQq
-bRk
-bQq
-bQq
-bTO
-bQq
-bVm
-bUy
-bWR
-bXC
-bYq
-bUw
-bZz
-bZG
-caQ
-cbS
-ccN
-ccf
-cer
-cfh
-cfV
-cfV
-chC
-ciu
-cfV
-cjQ
-ckB
-clu
-cfV
-cgI
-cfV
-cop
-coI
-cpd
-cfV
-cfV
-cfV
-cgP
-cgI
-cgI
-cgI
-cfh
-adj
-cgU
-cgU
-cgU
-cgU
-cgU
-aab
-aab
-aab
-cvj
-aab
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-coP
-aaa
-czf
-czh
-czn
-aaa
-czf
-czh
-czn
-aaa
-czf
-czh
-czn
-aaa
-coP
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(167,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-abl
-abl
-abl
-abl
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-abL
-abL
-agc
-agc
-agc
-aaT
-aaT
-aiQ
-ajz
-aiQ
-akr
-aik
-all
-alM
-all
-amZ
-all
-aod
-all
-apj
-all
-alN
-all
-arf
-all
-arQ
-all
-asH
-all
-atJ
-all
-auO
-avq
-avR
-avR
-avR
-avR
-avR
-avR
-avR
-avR
-avR
-avR
-avQ
-aik
-aCl
-aCX
-abL
-aEc
-aEI
-aFz
-ahk
-abl
-abl
-abl
-abl
-aIY
-aIY
-aIY
-aLy
-aIY
-aNT
-aIY
-aIY
-aQk
-aQk
-aRw
-abl
-abl
-aTB
-aUw
-aVg
-aVg
-aVg
-aVg
-aVg
-aVg
-aZN
-aGK
-bbG
-bda
-bel
-bda
-bgq
-bda
-biv
-bbF
-bkJ
-bbF
-bbF
-boH
-bpZ
-boS
-bsv
-bbF
-buu
-bvy
-bwQ
-bvy
-bvy
-bvy
-bvy
-bvy
-bvy
-bEI
-bFG
-bGY
-bIn
-bJn
-bKq
-bLC
-bML
-bIl
-bPq
-bQr
-bRl
-bSe
-bTb
-bTP
-bQq
-bVn
-bUy
-bWS
-bXD
-bYr
-bUw
-bZA
-cag
-caR
-cbM
-caR
-cdB
-cet
-cfi
-cfW
-cgK
-chD
-civ
-cjh
-cjR
-ckC
-clv
-clv
-cnx
-cnT
-cnT
-coJ
-cpe
-cpx
-cqb
-cgI
-cgI
-ciB
-csF
-cto
-cuc
-cuI
-cvf
-cvQ
-cwv
-cwv
-cgU
-aaa
-aaa
-aab
-cvj
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-cyZ
-aab
-czf
-czi
-czn
-aaa
-czf
-czi
-czn
-aaa
-czf
-czi
-czn
-aab
-coP
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(168,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-abl
-abl
-abl
-abl
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-abL
-abL
-abL
-agc
-agc
-agc
-aaT
-aaT
-aaT
-ajA
-aaT
-akr
-aik
-all
-alN
-amw
-alN
-alN
-alN
-amw
-alN
-apI
-alN
-amw
-alN
-alN
-alN
-amw
-alN
-alN
-alN
-amw
-alN
-avq
-avR
-avR
-avR
-avR
-avR
-avR
-avR
-avR
-avR
-avR
-avQ
-aik
-aCl
-aCX
-abL
-abL
-aEI
-aFy
-ahk
-abl
-abl
-abl
-abl
-aIY
-aJH
-aKC
-aLz
-aMN
-aNU
-aOO
-aIY
-abl
-abl
-abl
-abl
-abl
-abl
-abl
-aeu
-aeu
-aeu
-aeu
-aGK
-aYS
-aZO
-baF
-bbH
-bdb
-bem
-bfr
-bgr
-bhr
-biw
-bjy
-bkK
-blO
-bfl
-boI
-bqa
-brf
-bsw
-bbF
-buv
-bvz
-bvz
-bvz
-bzj
-buL
-buL
-bxS
-bDF
-bEF
-bFG
-bGY
-bIl
-bIn
-bKr
-bIn
-bIn
-bIl
-bPr
-bPi
-bRm
-bPi
-bMG
-bMG
-bMG
-bMG
-bUy
-bUy
-bXE
-bYs
-bUw
-bZx
-cah
-caS
-cbT
-ccO
-cdC
-ceu
-cfj
-cfX
-cgL
-chE
-ciw
-cji
-cgf
-ckD
-cgI
-cmH
-cny
-cnU
-coq
-cnU
-cny
-cpy
-cqc
-cpx
-cpx
-csf
-cjn
-ctp
-cfZ
-adj
-ciG
-cvR
-cww
-cwQ
-cgU
-aaa
-aaa
-aab
-cvj
-aab
-aaa
-aab
-aaa
-aaa
-aaa
-aab
-aaa
-aaa
-aaa
-aaa
-aab
-aaa
-czf
-czi
-czn
-aab
-czf
-czi
-czn
-aab
-czf
-czi
-czn
-aaa
-coP
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(169,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-abl
-abl
-abl
-abl
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-abL
-abL
-acg
-abL
-agc
-agc
-agc
-ads
-aaT
-aaT
-aaT
-aaT
-ahk
-ail
-all
-alO
-all
-ana
-all
-aoe
-all
-apk
-all
-alN
-all
-arg
-all
-arR
-all
-asI
-all
-atK
-all
-auP
-avq
-avR
-avR
-avR
-avR
-avR
-avR
-avR
-avR
-avR
-avR
-avQ
-aik
-aCl
-aCX
-abL
-abL
-aEI
-aFy
-ahk
-abl
-abl
-abl
-abl
-aIY
-aJI
-aKD
-aLA
-aMO
-aNV
-aOP
-aIY
-abl
-abl
-abl
-abl
-abl
-abl
-abl
-aeu
-aVW
-aeu
-aeu
-aGK
-aYT
-aZO
-baF
-bbI
-bdc
-ben
-bfs
-bgs
-bhs
-bix
-bjz
-bkL
-blP
-bbF
-boF
-bfm
-bfm
-bsx
-btB
-btB
-btB
-btB
-btB
-bzk
-bAl
-bBv
-bCy
-bDG
-bEF
-bFU
-bHa
-bIo
-bJo
-bKs
-bJo
-bMM
-bOd
-bPs
-bJo
-bRn
-bSf
-bJo
-bJo
-bUA
-bVo
-bWc
-bMM
-bXF
-bYt
-bZb
-bZB
-cai
-caT
-cbU
-cbe
-cdD
-cev
-cfk
-cfY
-cgM
-chF
-cix
-cji
-cgI
-ckE
-cgI
-cmI
-cny
-cny
-cor
-cny
-cny
-cpz
-cji
-cqf
-crm
-crm
-csG
-ctq
-cud
-cuJ
-cvf
-cvS
-cwv
-cwv
-cgU
-aab
-aab
-aab
-cvj
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-czf
-czi
-czn
-aaa
-czf
-czi
-czn
-aaa
-czf
-czi
-czn
-aab
-aab
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(170,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-abl
-abl
-abl
-abl
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-abL
-abL
-acg
-abL
-agc
-agc
-agc
-ads
-aaT
-aaT
-aaT
-aaT
-ahk
-akK
-all
-alP
-all
-anb
-all
-aof
-all
-apl
-all
-alN
-all
-arh
-all
-arS
-all
-asJ
-all
-atL
-all
-auQ
-avq
-avR
-avR
-avR
-avR
-avR
-avR
-avR
-avR
-avR
-avR
-avQ
-aik
-aCl
-aCX
-abL
-abL
-aEI
-aFy
-ahk
-abl
-abl
-abl
-abl
-aIY
-aJI
-aKD
-aLB
-aMP
-aIY
-aOQ
-aIY
-abl
-abl
-abl
-abl
-abl
-abl
-aeu
-aeu
-aeu
-aeu
-aeu
-aGK
-aYU
-aZO
-baF
-bbJ
-bdd
-beo
-bft
-bgt
-bht
-biy
-bjA
-bkM
-blQ
-bnw
-boJ
-bqb
-brg
-bsy
-btC
-buw
-bvA
-bwR
-btB
-bzk
-baJ
-aEI
-bCy
-bDG
-bEJ
-bFV
-bHb
-bIp
-bHb
-bHb
-bHb
-bMN
-bOe
-bPt
-bHb
-bIp
-bSg
-bHb
-bHb
-bPt
-bVp
-bHb
-bMN
-bXG
-bYu
-bZc
-bZC
-caj
-caU
-cbV
-cbV
-cdE
-cew
-cfl
-cfZ
-cgN
-chG
-cfZ
-cjj
-cfZ
-ckE
-clw
-cmJ
-cny
-cnV
-cnV
-cnV
-cny
-cpA
-cqd
-cqI
-crn
-cpB
-csH
-ctr
-cue
-cuK
-cgU
-cgU
-cgU
-cgU
-cgU
-aaa
-aaa
-aab
-cvj
-aab
-aaa
-cyg
-cyg
-cyg
-cyg
-cyQ
-aaa
-aaa
-aaa
-aaa
-aab
-aaa
-czf
-czi
-czn
-aaa
-czf
-czi
-czn
-aaa
-czf
-czi
-czn
-aaa
-aab
-coP
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(171,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-abl
-abl
-abl
-abl
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-abL
-abL
-acg
-abL
-agc
-agc
-agc
-ads
-ads
-ads
-ads
-ads
-ads
-akK
-all
-all
-all
-all
-all
-all
-all
-all
-all
-aqh
-all
-all
-all
-all
-all
-all
-all
-all
-all
-all
-avq
-avQ
-avQ
-avQ
-avQ
-aya
-axa
-axa
-avQ
-avQ
-avQ
-avQ
-aik
-aCl
-aCY
-aDB
-aDB
-aEJ
-aFy
-ahk
-aGK
-aGK
-aGK
-aGK
-aGK
-aGK
-aKE
-aGK
-aGK
-aGK
-aOR
-aGK
-aGK
-aGK
-aGK
-aGK
-aGK
-aGK
-aGK
-aGK
-aGK
-aGK
-aGK
-aGK
-aQF
-aZO
-baF
-bbK
-bde
-bep
-bft
-bgu
-bfl
-biz
-bjB
-bkN
-blR
-bbF
-boK
-bgm
-bfm
-bsx
-btD
-bux
-bvB
-bwS
-btB
-bzl
-baJ
-aEI
-bCy
-bDH
-bEK
-bEK
-bEK
-bEK
-bEK
-bDH
-bKw
-bMO
-bOf
-bPu
-bPu
-bKw
-bPH
-bPH
-bPH
-bKw
-bVq
-bWd
-bWT
-bWd
-bYv
-bVz
-bZx
-cak
-bZG
-cbW
-bZG
-cdF
-cex
-cfm
-cga
-cgO
-chH
-ciy
-cjk
-cjS
-ckF
-clx
-cmK
-cnz
-cmM
-cos
-coK
-cpf
-cpB
-cqe
-cqJ
-cgI
-csg
-csI
-cts
-cuf
-cuI
-cvf
-cvT
-cwx
-cwx
-cgU
-aaa
-aaa
-aab
-cvj
-cyg
-cyg
-cyg
-cyE
-cyJ
-cyN
-cyQ
-cyQ
-cyQ
-aaa
-aaa
-aab
-aaa
-aaa
-czj
-aaa
-aaa
-aaa
-czj
-aaa
-aaa
-aaa
-czp
-aaa
-aaa
-aaa
-aab
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(172,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-abl
-abl
-abl
-abl
-abl
-abl
-abl
-acg
-acg
-acg
-acg
-abL
-abL
-abL
-abL
-agc
-agc
-agc
-ads
-ads
-ads
-ads
-ads
-ads
-akK
-ajm
-ajm
-amx
-anc
-ajn
-ajm
-ajm
-ajm
-apJ
-aik
-ahk
-ari
-aik
-aik
-aik
-aik
-aik
-aik
-aik
-aik
-avr
-avS
-awo
-axb
-axz
-ayb
-ayJ
-aza
-axz
-aAc
-aAz
-aAZ
-avS
-aAZ
-aCZ
-aCZ
-aCZ
-aCZ
-aFA
-aGf
-aGL
-aGL
-aGL
-aGL
-aGL
-aGL
-aGL
-aGL
-aGL
-aGL
-aGL
-aGL
-aGL
-aGL
-aGL
-aGL
-aSV
-aGL
-aGL
-aGL
-aGL
-aGL
-aGL
-aGL
-aGL
-aZP
-baF
-bbL
-bdf
-beq
-bfu
-bgv
-bhu
-bhu
-bjC
-bkO
-bhv
-bhu
-boL
-bqc
-bfm
-bsz
-btB
-buy
-bvC
-bwT
-btB
-bzk
-baJ
-aEI
-bCy
-bDH
-bEL
-bFW
-bHc
-bIq
-bJp
-bDH
-bLD
-bMP
-bOg
-bPv
-bQs
-bKw
-bSh
-bSh
-bSh
-bKw
-bVr
-bWe
-bWU
-bXH
-bXH
-bVz
-bZx
-cak
-caV
-caV
-caV
-cdG
-cev
-cfn
-cgb
-cgP
-chI
-ciz
-chJ
-cjT
-ckG
-cly
-cmL
-cnA
-cgI
-cgI
-cgI
-cgI
-cpC
-cqf
-cqK
-cgI
-cgI
-csJ
-ctt
-cfZ
-adj
-ciG
-cvU
-cwy
-cwR
-cgU
-aaa
-aaa
-aab
-cyc
-cyh
-cyn
-cyv
-cyF
-cyK
-cyO
-cyR
-cyT
-cyU
-cyV
-cyV
-cyV
-cze
-czg
-czg
-czg
-czg
-czg
-czg
-czg
-czo
-cyV
-czq
-cyV
-cyV
-cyV
-czs
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(173,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-abl
-abl
-abl
-abl
-abl
-abl
-acg
-acg
-acg
-acg
-abL
-abL
-abL
-acg
-agc
-agc
-agc
-ads
-ads
-ads
-ads
-ads
-ads
-akK
-aik
-aik
-aik
-aik
-aik
-aik
-aik
-aik
-aik
-aik
-ahk
-aik
-aik
-ahk
-asq
-asK
-ati
-ahk
-auo
-auR
-avs
-avT
-awp
-aik
-avQ
-ayc
-ayK
-ayK
-azJ
-aik
-aik
-ahk
-aik
-azJ
-aik
-aDC
-aEd
-ahk
-aik
-ahk
-aGM
-aHu
-aHV
-aHV
-aHV
-aHV
-aHV
-aHV
-aHV
-aHV
-aHV
-aHV
-aHV
-aQF
-aQF
-aQF
-aQF
-aQF
-aQF
-aQF
-aHV
-aHV
-aHV
-aHV
-aHV
-aQF
-baF
-bbL
-bdg
-bep
-bfv
-bgw
-bhu
-biA
-bjD
-bkP
-blS
-bhu
-boM
-bgm
-bfm
-bsA
-btB
-buz
-bvD
-bvD
-btB
-bzk
-baJ
-aEI
-bCz
-bDH
-bEL
-bFX
-bHd
-bIr
-bJq
-bKt
-bLE
-bMQ
-bOh
-bNa
-bQt
-bKw
-bSi
-bSi
-bSi
-bKw
-bVs
-bWf
-bWV
-bXI
-bYw
-bYv
-bZx
-cak
-caW
-cbX
-ccP
-cdF
-cey
-cfo
-cgc
-cgI
-chJ
-ciA
-cjl
-cjU
-ckH
-clz
-cmM
-cly
-cmK
-cmK
-coL
-cpg
-cpD
-cqg
-cqL
-crm
-cgR
-csG
-ctu
-cud
-cuJ
-cvf
-cvV
-cwx
-cwx
-cgU
-aaa
-aaa
-aab
-cvj
-cyg
-cyg
-cyw
-cyG
-cyL
-cyP
-cyQ
-cyQ
-cyQ
-aaa
-aaa
-aab
-aaa
-aaa
-czk
-aaa
-aaa
-aaa
-czk
-aaa
-aaa
-aaa
-czp
-aaa
-aaa
-aaa
-aab
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(174,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-abl
-abl
-abl
-abl
-abl
-abl
-acg
-acg
-acg
-abL
-abL
-abL
-abL
-acg
-agc
-agc
-agc
-ads
-ads
-ads
-ads
-ads
-ads
-akK
-aik
-aik
-aik
-aik
-aik
-aik
-aik
-aik
-aik
-aik
-ail
-aik
-aik
-ahk
-ahk
-ahk
-ahk
-ahk
-ahk
-ahk
-ahk
-ahk
-ahk
-ail
-avQ
-avQ
-avQ
-avQ
-avQ
-aiM
-aik
-ahk
-aik
-ahk
-aik
-aik
-aik
-azJ
-aik
-ahk
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-aGK
-aQG
-aQG
-aQG
-aQG
-aQG
-aQG
-aQG
-aGK
-ads
-ads
-ads
-ads
-aZQ
-baF
-bbL
-bdg
-bep
-bdd
-bgx
-bhv
-biB
-bjE
-bkQ
-blT
-bhv
-boN
-bgm
-bfm
-bsB
-btE
-buA
-bvE
-bwU
-btF
-bzm
-baJ
-aEI
-bCy
-bDH
-bEM
-bFY
-bHe
-bIs
-bJr
-bKu
-bLF
-bMR
-bOi
-bNa
-bQu
-bPH
-bSj
-bSj
-bSj
-bPH
-bVt
-bWg
-bWW
-bXJ
-bYx
-bYv
-bZx
-cak
-caX
-cbY
-ccQ
-cdF
-cex
-cfh
-cgd
-cgQ
-chK
-ciB
-cjm
-cjV
-chK
-cgI
-cgI
-cgI
-cnW
-cnW
-cnW
-cph
-cpE
-ckI
-cqM
-crm
-csh
-csK
-cgI
-cfZ
-adj
-cgU
-cgU
-cgU
-cgU
-cgU
-aaa
-aaa
-aab
-cvj
-aab
-aaa
-cyg
-cyg
-cyg
-cyg
-cyQ
-aaa
-aaa
-aaa
-aaa
-aab
-aaa
-czf
-czl
-czn
-aaa
-czf
-czl
-czn
-aaa
-czf
-czl
-czn
-aaa
-aab
-coP
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(175,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-abl
-abl
-abl
-abl
-abl
-abl
-acg
-acg
-acg
-abL
-acg
-abL
-abL
-acg
-agc
-agc
-agc
-ads
-ads
-ads
-ads
-ads
-ads
-akL
-alm
-alQ
-ahk
-ahk
-ahk
-ahk
-ahk
-ahk
-ahk
-ahk
-ahk
-arj
-arB
-arT
-asr
-asL
-atj
-atj
-atj
-atj
-atj
-atj
-atj
-atj
-atj
-atj
-atj
-atj
-atj
-aik
-aik
-azJ
-aik
-ahk
-aDa
-aDD
-ahk
-ahk
-ahk
-ahk
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-aaT
-aQH
-aQH
-aQI
-aQH
-aQI
-aQH
-aQH
-aaT
-aaT
-aaT
-ads
-ads
-aZQ
-baF
-bbM
-bdh
-beo
-bdd
-bgy
-bhv
-biC
-bjF
-bkR
-blT
-bhv
-boO
-bgn
-bis
-bsC
-btF
-buB
-bvF
-bwV
-btF
-bzk
-baJ
-aEI
-bCy
-bDH
-bEN
-bFZ
-bHf
-bHf
-bHf
-bKv
-bLG
-bMS
-bOj
-bPw
-bQv
-bKw
-bSk
-bTc
-bTQ
-bKw
-bVu
-bVz
-bWX
-bVz
-bYy
-bVz
-bZx
-cak
-caW
-cbZ
-ccR
-cdF
-cex
-cfh
-cge
-cgI
-chL
-ciC
-cjn
-cjW
-ckI
-clA
-clA
-clA
-cnX
-clA
-clA
-clA
-cnX
-cjl
-cgf
-crm
-crm
-csG
-ctv
-cug
-cuL
-cvg
-cvW
-cwz
-cwB
-cgU
-aab
-aab
-aab
-cvj
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-czf
-czl
-czn
-aaa
-czf
-czl
-czn
-aaa
-czf
-czl
-czn
-aab
-aab
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(176,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-abL
-abl
-abl
-abl
-abl
-abl
-acg
-acg
-acg
-abL
-abL
-abL
-abL
-abL
-abL
-agc
-agc
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ahk
-ahk
-ahk
-ahk
-ahk
-ahk
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-aaT
-aaT
-aQH
-aRx
-aSg
-aSg
-aSh
-aUx
-aQH
-aaT
-aaT
-aaT
-aaT
-ads
-aZQ
-baF
-bbN
-bdi
-ber
-bdd
-bgy
-bhv
-biD
-bjG
-bkS
-blU
-bhv
-boP
-bqd
-bho
-bsD
-btG
-buC
-bvG
-bwW
-btF
-bzn
-baJ
-aEI
-bCy
-bDH
-bEO
-bGa
-bEO
-bEO
-bEO
-bDH
-bLH
-bMP
-bOi
-bPx
-bQw
-bKw
-bSl
-bTd
-bSl
-bKw
-bVv
-bVz
-bWY
-bVz
-bYz
-bVz
-bZy
-cak
-caX
-cca
-ccQ
-cdH
-cew
-cfh
-cgf
-cgR
-chM
-ciD
-cjo
-cjX
-ckJ
-clB
-cmN
-clB
-ckJ
-clB
-coM
-clB
-ckJ
-clB
-cqN
-clB
-clB
-csL
-ctw
-cfZ
-adj
-ciG
-cvX
-cwA
-cwS
-cgU
-aaa
-aaa
-aab
-cvj
-aab
-aaa
-aab
-aaa
-aaa
-aaa
-aab
-aaa
-aaa
-aaa
-aaa
-aab
-aaa
-czf
-czl
-czn
-aab
-czf
-czl
-czn
-aab
-czf
-czl
-czn
-aaa
-coP
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(177,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-abL
-abL
-abl
-abl
-abl
-abl
-acg
-acg
-acg
-abL
-abL
-abL
-acg
-abL
-abL
-agc
-agc
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-aaT
-aaT
-aQI
-aRy
-aSh
-aSg
-aSh
-aUy
-aVh
-aaT
-aaT
-aaT
-aaT
-ads
-aZQ
-baF
-bbO
-bdj
-bes
-bdd
-bgz
-bhv
-biE
-bjH
-bkS
-blU
-bhv
-boQ
-bfm
-bfm
-bsE
-btF
-buD
-bvH
-bwX
-btF
-bxT
-baJ
-aEI
-bCy
-bDH
-bDH
-bDH
-bDH
-bDH
-bDH
-bDH
-bLI
-bMP
-bOk
-bPy
-bQx
-bKw
-bSm
-bTe
-bTR
-bKw
-bVw
-bVz
-bWX
-bVz
-bYA
-bVz
-bZD
-cak
-caW
-ccb
-ccR
-cdF
-cez
-cfh
-cgg
-cgS
-chN
-ciE
-cjp
-cjW
-ckK
-clC
-cmO
-cnB
-cnY
-cot
-coN
-cgI
-cpF
-cqh
-cqO
-cro
-crm
-crm
-ctx
-cuh
-cuL
-cvh
-cvY
-cwB
-cwB
-cgU
-aaa
-aaa
-aab
-cvj
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-czf
-czl
-czn
-aaa
-czf
-czl
-czn
-aaa
-czf
-czl
-czn
-aab
-coP
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(178,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-abL
-abL
-abL
-abL
-abl
-abl
-acg
-acg
-acg
-acg
-abL
-abL
-abL
-abL
-agc
-agc
-agc
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-aaT
-aaT
-aaT
-aQH
-aRz
-aSg
-aSg
-aSh
-aUz
-aQH
-aaT
-aaT
-aaT
-ads
-ads
-aZQ
-baF
-bbP
-bdk
-bet
-bfw
-bgA
-bhw
-biF
-bjI
-bkT
-blV
-bhw
-boR
-bqe
-bqe
-bsF
-btH
-buE
-bvI
-bwY
-btF
-bxT
-baJ
-aEI
-bCy
-buL
-buL
-bxS
-bxS
-bxS
-bxS
-bKw
-bLJ
-bMT
-bOl
-bPz
-bQy
-bKw
-bSl
-bTf
-bSl
-bKw
-bVw
-bVy
-bWY
-bXK
-bVy
-bVz
-bZx
-cak
-caX
-ccc
-ccQ
-cdF
-cex
-cfh
-cfh
-cgT
-chO
-ciF
-cjq
-cjY
-chO
-ciF
-cjq
-ciF
-chO
-ciF
-cjq
-ciF
-chO
-ciF
-cjq
-crp
-cfh
-cfh
-cty
-cfh
-adj
-cgU
-cgU
-cgU
-cgU
-cgU
-aab
-aab
-aab
-cvj
-aab
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-cyZ
-aaa
-czf
-czm
-czn
-aaa
-czf
-czm
-czn
-aaa
-czf
-czm
-czn
-aaa
-coP
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(179,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-abL
-abL
-abL
-abL
-abl
-acg
-acg
-acg
-abL
-abL
-abL
-abL
-acg
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-aaT
-aaT
-aQH
-aQH
-aQI
-aSW
-aQI
-aQH
-aQH
-aaT
-aaT
-aaT
-ads
-ads
-aZQ
-baF
-bbQ
-baF
-beu
-bfx
-baF
-bhu
-bhu
-bjC
-bhu
-bhv
-bhu
-boS
-bqf
-bbF
-bbF
-btF
-btE
-btE
-btF
-btF
-bxT
-baK
-bBw
-bCA
-bzp
-bzp
-bsJ
-bsJ
-bsJ
-bxS
-bKw
-bLK
-bMU
-bOm
-bPA
-bQu
-bRo
-bSn
-bTg
-bTS
-bKw
-bVx
-bVy
-bWZ
-bVy
-bVy
-bZd
-bZx
-cak
-caY
-ccd
-ccR
-cdF
-ceA
-bZK
-adj
-adj
-chP
-adj
-cjr
-adj
-chP
-adj
-cjr
-adj
-chP
-adj
-cjr
-adj
-chP
-adj
-cjr
-adj
-adj
-cfh
-ctz
-cfh
-adj
-aaa
-aaa
-aab
-aaa
-aab
-aaa
-aaa
-aab
-cvj
-aab
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aab
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aab
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(180,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-acg
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-abL
-abL
-acg
-acg
-acg
-ads
-ads
-ads
-ads
-aaT
-aaT
-aaT
-aaT
-aSi
-aSX
-aQJ
-aaT
-aaT
-aaT
-aaT
-ads
-aOS
-aOS
-aZR
-baF
-bbR
-bdl
-bev
-bfy
-bgB
-bhx
-biG
-bjJ
-bkU
-bkU
-bkU
-bkU
-bkU
-brh
-bsG
-btI
-bkU
-bvJ
-bwZ
-bxS
-bxS
-bAm
-bAm
-bxT
-bzp
-bzp
-bsJ
-bHg
-bsJ
-bxS
-bKw
-bLL
-bMV
-bOn
-bOj
-bQz
-bRp
-bSo
-bTh
-bTT
-bKw
-bVy
-bVy
-bXa
-bVy
-bVy
-bZd
-bZA
-cal
-caV
-caV
-caV
-cdI
-ceB
-bZK
-adj
-cgU
-chQ
-ciG
-chQ
-cgU
-chQ
-ciG
-chQ
-cgU
-chQ
-ciG
-chQ
-cgU
-chQ
-ciG
-chQ
-cgU
-adj
-cfh
-cty
-cfh
-adj
-aaa
-aaa
-aab
-aaa
-aab
-aaa
-aaa
-aab
-cvj
-aab
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-cql
-cql
-cql
-cql
-cql
-cql
-cql
-cql
-cql
-cql
-cql
-cql
-cql
-cql
-cql
-aaa
-aaa
-aaa
-aaa
-aaa
-acf
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(181,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-acg
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-acg
-acg
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-ads
-ads
-ads
-ads
-ads
-aOS
-aQJ
-aQJ
-aQJ
-aSY
-aQJ
-aUA
-aQJ
-aOS
-aOS
-aOS
-aOS
-aYV
-aZS
-baF
-bbS
-bdc
-bew
-bfz
-bgB
-bhy
-biH
-bjK
-bkV
-bjN
-bjN
-bjN
-bjN
-bjN
-bjN
-bjN
-buF
-bvK
-bgB
-bxS
-bxS
-bAn
-bAn
-bxT
-bzp
-bzp
-bsJ
-bsJ
-bsJ
-bxS
-bKw
-bLK
-bMW
-bOo
-bPB
-bQA
-bRo
-bSp
-bTi
-bSp
-bKw
-bVy
-bVy
-bXb
-bVy
-bVy
-bVz
-bZx
-cak
-caZ
-bZG
-bZG
-cdF
-cae
-bZK
-adj
-cgU
-chR
-ciH
-cjs
-cgU
-ckL
-clD
-cmP
-cgU
-cnZ
-cou
-coO
-cgU
-cpG
-cqi
-cqP
-cgU
-adj
-adj
-cgV
-adj
-adj
-aaa
-aaa
-aab
-aab
-aab
-aaa
-aaa
-aab
-cvj
-aab
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(182,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-abL
-abL
-abL
-abL
-abL
-abL
-acg
-acg
-acg
-acg
-aeu
-aeu
-abL
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-acg
-acg
-acg
-acg
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-aMQ
-aNW
-aOS
-aOS
-aOS
-aQK
-aRA
-aSj
-aSZ
-aSj
-aUB
-aVi
-aVX
-aVX
-aXn
-aYg
-aYW
-aZT
-baG
-bbT
-bdm
-bex
-bfA
-bgC
-bhz
-biI
-bjL
-bkW
-blW
-bnx
-bnx
-blW
-bnx
-bnx
-bnx
-buG
-bvL
-bgB
-bxS
-bzo
-bzo
-bzo
-bzo
-bDI
-bDI
-bzo
-bzo
-bzo
-bxS
-bKw
-bKw
-bKw
-bOp
-bOf
-bKw
-bKw
-bKw
-bKw
-bKw
-bKw
-bVz
-bVz
-bVz
-bVz
-bVz
-bVz
-bZE
-cam
-cba
-cce
-ccS
-cdJ
-ceC
-bZK
-adj
-cgU
-chS
-chT
-chT
-cgU
-ckM
-clE
-ckM
-cgU
-coa
-cov
-coa
-cgU
-cpH
-cqj
-cpH
-cgU
-adj
-adj
-cgV
-aab
-aab
-aaa
-aaa
-aab
-aab
-aab
-aaa
-aaa
-aab
-cvj
-aab
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(183,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-abL
-abL
-abL
-abl
-abl
-acg
-acg
-acg
-acg
-acg
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-acg
-acg
-acg
-acg
-abL
-abL
-acg
-acg
-agc
-agc
-acg
-abL
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-acg
-acg
-acg
-acg
-acg
-abL
-abL
-abL
-abL
-abL
-abL
-aNX
-aOT
-aPE
-aOT
-aQL
-aRB
-aRB
-aRB
-aRB
-aRB
-aRB
-aRB
-aRB
-aXo
-aOS
-aYX
-aZU
-baF
-bbU
-bdj
-bey
-bfB
-bgD
-bhA
-biJ
-bjM
-bkX
-blX
-blX
-blX
-blX
-blX
-blX
-blX
-buH
-bvK
-bgB
-bxT
-bzp
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-bzp
-bJs
-bxS
-bKw
-bMX
-bOq
-bPC
-bKw
-bRq
-bRq
-bxS
-bTU
-bUB
-bVA
-bWh
-bXc
-bXL
-bYB
-bsJ
-bZF
-cak
-bZG
-ccf
-bZG
-bZG
-ceD
-bZK
-adj
-cgU
-chT
-ciI
-chT
-cgU
-ckM
-clF
-ckM
-cgU
-cob
-cow
-coa
-cgU
-cpH
-cqk
-cpH
-cgU
-adj
-adj
-cgV
-aab
-aab
-aaa
-aaa
-aab
-aaa
-aab
-aaa
-aaa
-aab
-cvj
-aab
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(184,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-abL
-abL
-abl
-abl
-abl
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-acg
-acg
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-abL
-abL
-abL
-abL
-abL
-aNY
-aOS
-aOS
-aOS
-aQM
-aRC
-aSk
-aTa
-aTD
-aTa
-aSk
-aTa
-aWC
-aXp
-aOS
-aOS
-aZR
-baF
-bbV
-bdn
-bez
-bfC
-bgB
-bhB
-biK
-bjN
-bjN
-bjN
-bny
-boT
-bjN
-bjN
-bsH
-bjN
-buI
-bvK
-bgB
-bxT
-bzp
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-bzp
-bJs
-bxS
-bLM
-bMX
-bOq
-bPD
-bLM
-bxS
-bxS
-bxS
-bxS
-bxS
-bxS
-bxS
-bxS
-bxS
-bxS
-bZe
-bZG
-cak
-bZG
-ccf
-bZG
-bZG
-ceD
-bZK
-adj
-cgU
-cgU
-cgU
-cgU
-cgU
-cgU
-cgU
-cgU
-cgU
-cgU
-cgU
-cgU
-cgU
-cgU
-cgU
-cgU
-cgU
-adj
-adj
-cgV
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aaa
-aaa
-aab
-cyd
-aab
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(185,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-abL
-abL
-abl
-abl
-abl
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-abL
-abL
-ads
-ads
-ads
-ads
-ads
-aOS
-aOS
-aOS
-aOS
-aOS
-aOS
-aOS
-aOS
-aOS
-aOS
-aOS
-aOS
-ads
-aZQ
-baF
-bbW
-baF
-baF
-baF
-bgB
-bhC
-biL
-bjN
-bjN
-blY
-bjN
-bjN
-blY
-bjN
-bjN
-bjN
-buI
-bvM
-bgB
-bxT
-bzp
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-bzp
-bJt
-buL
-bKw
-bMY
-bOq
-bPD
-bKw
-bRr
-bSq
-buL
-bTV
-bUC
-buL
-buL
-buL
-buL
-bYC
-bsJ
-bZH
-cak
-bZG
-ccf
-bZG
-cdK
-ceE
-bZK
-adj
-adj
-adj
-adj
-adj
-adj
-adj
-adj
-adj
-adj
-adj
-adj
-adj
-adj
-adj
-adj
-adj
-adj
-adj
-adj
-cgV
-aab
-aaa
-aab
-aaa
-aab
-aaa
-aab
-aaa
-aaa
-aab
-cui
-aab
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(186,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-abL
-abl
-abl
-abl
-abl
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-abL
-abL
-abL
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-aZQ
-baH
-bbX
-bdo
-baH
-aQF
-bgB
-bhD
-biL
-bjN
-bjN
-blZ
-bjN
-bjN
-bjN
-bri
-bjN
-bjN
-buI
-bvN
-bgB
-bxT
-bzp
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-bzp
-bzp
-bzp
-bKw
-bKw
-bOr
-bOf
-bKw
-bKw
-bzp
-bzp
-bzp
-bzp
-bzp
-bzp
-bzp
-bzp
-bzp
-bsJ
-bZI
-cak
-bZG
-ccg
-bZG
-cae
-bZK
-bZK
-adj
-aaT
-aaT
-aaT
-aaT
-adj
-aaT
-aaT
-aaT
-aaT
-aaT
-adj
-adj
-aaT
-aaT
-aaT
-aaT
-adj
-aaT
-adj
-cgV
-aab
-aaa
-aab
-aaa
-aab
-aaa
-aab
-aab
-aab
-aab
-cui
-aab
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(187,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-abL
-abl
-abl
-abl
-abl
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-agI
-agI
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-aZV
-baI
-bbY
-bdp
-beA
-bfD
-bgB
-bhy
-biM
-bjN
-bjN
-bma
-bnz
-boU
-bqg
-bma
-bjN
-bjN
-buJ
-bvO
-bgB
-bxT
-bzp
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-bKw
-bMZ
-bOs
-bPE
-bQB
-bKw
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-bZI
-cak
-cbb
-ccf
-bZG
-cae
-bZK
-bZK
-bZK
-aaT
-aaT
-aaT
-aaT
-adj
-aaT
-aaT
-aaT
-aaT
-aaT
-cgV
-cgV
-cgV
-cgV
-cgV
-cgV
-cgV
-cgV
-cgV
-cgV
-cui
-cuM
-cvi
-cvZ
-cvZ
-cvZ
-cxf
-cui
-cui
-cui
-cui
-aab
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(188,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-abL
-abl
-abl
-abl
-abl
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-agI
-agI
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-aZV
-baJ
-abL
-abL
-aEI
-bfE
-bgB
-bhE
-biN
-bjO
-bkY
-bmb
-bkY
-boV
-bqh
-brj
-bsI
-btJ
-buK
-bvP
-bgB
-bxT
-bzp
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-bKx
-bKw
-bNa
-bOs
-bPF
-bQC
-bKw
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-bZI
-cak
-bZG
-ccf
-bZG
-cae
-ceF
-ccW
-ceF
-cgV
-cgV
-cgV
-cgV
-cgV
-cgV
-cgV
-cgV
-cgV
-cgV
-cgV
-coP
-coP
-coP
-coP
-coP
-coP
-coP
-coQ
-coP
-coP
-coP
-cvj
-coP
-coP
-coP
-coP
-aab
-aab
-aab
-aab
-aab
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-acf
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(189,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-abl
-abl
-abl
-abl
-abl
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-aZV
-baK
-bbZ
-aDB
-aEJ
-bfD
-bgB
-bgB
-bgB
-bgB
-bgB
-bmc
-bnA
-bgB
-bnA
-brk
-bgB
-bgB
-bgB
-bgB
-bgB
-bxT
-bzp
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-bKx
-bKw
-bNb
-bOt
-bPF
-bQD
-bKw
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-bZJ
-can
-cbc
-cch
-cbc
-cdL
-bZK
-bZK
-bZK
-bZK
-bZK
-bZK
-bZK
-bZK
-bZK
-bZK
-bZK
-bZK
-adj
-adj
-coP
-aaa
-aaa
-aaa
-aaa
-aab
-aaa
-aaa
-aab
-aab
-aab
-cvj
-aab
-aab
-aab
-aaa
-aaa
-aab
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(190,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-abl
-abl
-abl
-abl
-abl
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-aZW
-baL
-bca
-baL
-baL
-baH
-baH
-baH
-baH
-bjP
-aGK
-bmd
-bnB
-bgB
-bnB
-brl
-bsJ
-btK
-buL
-buL
-buL
-bxU
-bzp
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-bKx
-bKw
-bNc
-bOu
-bOf
-bQE
-bKw
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-bZI
-cao
-cbd
-cci
-ccT
-cdM
-ccT
-cfp
-cbd
-cgW
-chU
-ciJ
-cjt
-bZI
-ckN
-ckN
-cmQ
-bZK
-adj
-adj
-coP
-aaa
-aaa
-aaa
-aaa
-aab
-aab
-aab
-aab
-aab
-cuj
-cvk
-cuj
-aab
-aab
-aab
-aab
-aab
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(191,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-abl
-abl
-abl
-abl
-abl
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-agc
-agc
-agc
-agc
-agc
-agc
-abl
-abl
-abl
-abl
-abl
-abl
-aGK
-abl
-abl
-abl
-abl
-abl
-abl
-abl
-bgB
-bmd
-bnC
-bgB
-bqi
-brl
-bgB
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-bKx
-bKw
-bNd
-bOv
-bPG
-aaT
-bKw
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-bTX
-bZK
-cap
-bZG
-bZG
-bZG
-cae
-ceG
-ceG
-bZG
-bZG
-bZG
-bZG
-cju
-bZI
-ckN
-ckN
-cmQ
-bZK
-adj
-adj
-coQ
-aaa
-acf
-aaa
-aaa
-aab
-aaa
-aaa
-aab
-aab
-cuj
-cvl
-cuj
-aab
-aab
-aaa
-aaa
-aab
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(192,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-abl
-abl
-abl
-abl
-abl
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-agc
-agc
-agc
-agc
-agc
-agc
-abl
-abl
-abl
-abl
-abl
-abl
-aGK
-abl
-abl
-abl
-abl
-abl
-abL
-abL
-bkZ
-bme
-bnB
-bgB
-bnB
-brm
-bkZ
-abL
-abL
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-bKx
-bKw
-bNe
-bOw
-bPH
-aaT
-bKw
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-bZI
-caq
-bZG
-ccj
-bZG
-cae
-bZG
-bZG
-bZG
-ceG
-ceG
-bZG
-cju
-bZI
-ckN
-clG
-cmQ
-bZK
-adj
-adj
-coP
-aaa
-aaa
-aaa
-aaa
-aab
-aaa
-aaa
-aab
-cuj
-cuj
-cvm
-cuj
-cuj
-aab
-aaa
-aaa
-aab
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(193,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-abl
-abl
-abl
-abl
-abl
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-aAd
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-agc
-agc
-agc
-agc
-agc
-agc
-abl
-abl
-abl
-abl
-abl
-abl
-aGK
-abl
-abl
-abL
-abL
-aaa
-aaa
-aaa
-bkZ
-bmc
-bnD
-bgB
-bnD
-brk
-bkZ
-btL
-btL
-btL
-abL
-abL
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-bKx
-bKw
-bKw
-bKw
-bKw
-aaT
-bKw
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-bZI
-car
-bZG
-cck
-ccU
-cdN
-ceH
-ceH
-cbV
-cbV
-cbV
-cbV
-cjv
-cjZ
-ckO
-clH
-cmR
-bZK
-adj
-adj
-coP
-aaa
-aaa
-aaa
-aaa
-aab
-aaa
-aaa
-aab
-cuj
-cuN
-cvn
-cwa
-cuj
-aab
-aaa
-aaa
-aab
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(194,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-abl
-abl
-abl
-abl
-abl
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-agc
-agc
-agc
-agc
-agc
-agc
-abl
-abl
-abl
-abl
-abl
-abl
-aGK
-abl
-abl
-abL
-aaa
-aaa
-aaa
-bjQ
-bjQ
-bmf
-bnE
-bjQ
-bqj
-brn
-bjQ
-bjQ
-bjQ
-aaa
-aaa
-abL
-abL
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-buN
-aaT
-buN
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-bZI
-caq
-bZG
-ccl
-bZG
-bZG
-bZG
-bZG
-bZG
-cgX
-ceG
-bZG
-cju
-bZI
-ckN
-clI
-cmQ
-bZK
-adj
-adj
-coP
-aaa
-aaa
-aaa
-aaa
-aab
-aaa
-aaa
-aab
-cuj
-cuO
-cvo
-cwb
-cuj
-aab
-aaa
-aaa
-aab
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(195,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-abl
-abl
-abl
-abl
-abl
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-abl
-aGK
-abl
-abL
-abL
-aaa
-aaa
-aaa
-bjQ
-bla
-bla
-bla
-boW
-bla
-bla
-bla
-btM
-bjQ
-bvQ
-aaa
-abL
-abL
-abL
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-buN
-aaT
-buN
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-bZI
-cas
-cbe
-cbe
-cbe
-cbe
-ceI
-ceI
-cbe
-cgY
-cbe
-cbe
-cjw
-cka
-ckP
-clJ
-cmS
-bZK
-adj
-adj
-coP
-aaa
-aaa
-acf
-aaa
-aab
-aaa
-aaa
-aab
-cuj
-cuP
-cvp
-cwc
-cuj
-aab
-aaa
-aaa
-aab
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(196,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-abl
-abl
-abl
-abl
-abl
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-abl
-abl
-abl
-aGK
-bdq
-abL
-abL
-aaa
-aaa
-aaa
-bjQ
-bla
-bla
-bla
-bla
-bla
-bla
-bla
-bla
-buM
-bvR
-aaa
-aaa
-abL
-abL
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-buN
-aaT
-buN
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-abL
-bZI
-cat
-cbf
-cbf
-cbf
-cdO
-cbf
-cbf
-cgh
-cgZ
-cgZ
-cbf
-cjx
-bZI
-ckN
-ckN
-cmQ
-bZK
-adj
-adj
-coP
-aaa
-aaa
-aaa
-aaa
-aab
-aab
-aab
-aab
-cuk
-cuk
-cvq
-cuk
-cuk
-aab
-aab
-aab
-aab
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(197,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-abl
-abl
-abl
-abl
-abl
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-abl
-abL
-baM
-bcb
-bdq
-abL
-abL
-aaa
-aaa
-aaa
-bjQ
-blb
-bla
-bla
-bla
-bla
-bla
-bla
-bla
-buM
-bvR
-aaa
-aaa
-abL
-abL
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-buN
-aaT
-buN
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-abL
-bZK
-bZI
-bZI
-bZI
-ccV
-bZK
-ccV
-bZI
-bZI
-bZI
-bZI
-bZI
-ccV
-bZK
-ccV
-bZI
-bZI
-bZI
-adj
-adj
-coP
-aaa
-aaa
-aaa
-aaa
-aab
-aaa
-aaa
-aab
-aaa
-cuk
-cvl
-cuk
-aaa
-aab
-aaa
-aaa
-aab
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(198,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-abl
-abl
-abl
-abl
-abl
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-abl
-abL
-baN
-bcc
-bdr
-abL
-aaa
-aaa
-aaa
-aaa
-bjQ
-bla
-bla
-bla
-bla
-bla
-bla
-bla
-bla
-buM
-bvR
-aaa
-aaa
-abL
-abL
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-buN
-aaT
-buN
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-abL
-abL
-adj
-adj
-adj
-bZI
-ccW
-bZI
-ccW
-bZI
-adj
-adj
-adj
-bZI
-ccW
-bZI
-ccW
-bZI
-adj
-adj
-adj
-adj
-coP
-aaa
-aaa
-aab
-aab
-aab
-aaa
-aaa
-aab
-aaa
-cuk
-cvr
-cuk
-aaa
-aab
-aaa
-aaa
-aab
-aab
-aab
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(199,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-abl
-abl
-abl
-abl
-abl
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-abL
-abL
-abL
-aaa
-aaa
-aaa
-aaa
-aaa
-acf
-aaa
-aaa
-bjQ
-bla
-bla
-bla
-boX
-bla
-bla
-bla
-btM
-bjQ
-bvS
-aaa
-aaa
-abL
-abL
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-ads
-buN
-aaT
-buN
-ads
-ads
-ads
-ads
-abL
-abL
-abL
-abL
-abL
-aaa
-aaT
-aaT
-aaT
-bZI
-ccV
-bZI
-ccV
-bZI
-aaT
-aaT
-aaT
-bZI
-ccV
-bZI
-ccV
-bZI
-aaT
-aaT
-aaT
-adj
-coP
-aaa
-aaa
-aab
-aaa
-aab
-aaa
-aaa
-aab
-aaa
-aaa
-cvs
-aaa
-aaa
-aab
-aaa
-aaa
-aab
-aaa
-aab
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(200,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-abl
-abl
-abl
-abl
-abl
-abl
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-abL
-abL
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-bjQ
-bjQ
-bjQ
-bjQ
-bjQ
-bjQ
-bjQ
-bjQ
-bjQ
-bjQ
-aaa
-aaa
-aaa
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-ads
-ads
-ads
-ads
-ads
-buN
-buN
-aaT
-buN
-buN
-abL
-abL
-abL
-abL
-abL
-abL
-aaa
-aaa
-aaa
-aaa
-bXM
-bXM
-bXM
-ccX
-bXM
-ceJ
-bXM
-bXN
-bXN
-bXN
-bXM
-cjy
-bXM
-ccX
-bXM
-bXM
-bXM
-aaa
-aab
-coP
-aaa
-aaa
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-cvs
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(201,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-abl
-abl
-abl
-abl
-abl
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-agI
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-agc
-abL
-abL
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-aaa
-aaa
-aaa
-aab
-aab
-aaa
-aab
-aab
-abL
-abL
-abL
-aaa
-aaa
-aaa
-aaa
-bXM
-bXM
-bXM
-bXM
-cbg
-ccm
-cbh
-bXM
-ceK
-cda
-cda
-cda
-cda
-cda
-cjz
-bXM
-ckQ
-clK
-cmT
-bXM
-bXM
-aaa
-coP
-aaa
-aaa
-cql
-aaa
-crq
-crq
-crq
-crq
-crq
-aaa
-cvt
-aaa
-crq
-crq
-crq
-crq
-crq
-aaa
-cql
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-acf
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(202,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-abl
-abl
-abl
-abl
-abl
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-agc
-abL
-abL
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-abL
-abL
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aab
-aab
-aaa
-aab
-aab
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-bXM
-bYD
-bZf
-bZL
-bXM
-cbg
-cbh
-ccY
-bXM
-ceL
-bZh
-bZh
-bZh
-bZh
-bZh
-cjA
-bXM
-ckR
-ckQ
-cmT
-cnC
-coc
-aaa
-aab
-aaa
-aaa
-cql
-aab
-crr
-csi
-csi
-csi
-csi
-cuQ
-cvt
-cwd
-cwC
-cwC
-cwC
-cwC
-cxO
-aab
-cql
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(203,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-abl
-abl
-abl
-abl
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-agc
-abL
-abL
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aab
-aab
-aaa
-aab
-aab
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-bXN
-bYE
-bZg
-bZM
-bXM
-cbh
-cbh
-ccY
-bXM
-bZh
-cfq
-cfq
-cfq
-cfq
-cfq
-bZh
-ckb
-ckQ
-ckQ
-cmT
-cnC
-coc
-aaa
-aaa
-aaa
-aaa
-cql
-aaa
-crs
-crs
-crs
-crs
-crs
-aaa
-cvu
-aaa
-crs
-crs
-crs
-crs
-crs
-aaa
-cql
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(204,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-abl
-abl
-abl
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-abL
-abL
-abL
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aab
-aab
-aaa
-aab
-aab
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-bXN
-bYF
-bZh
-bZN
-bXM
-bXN
-ccn
-bXN
-cdP
-bZh
-cfr
-cfr
-cfr
-cfr
-cfr
-bZh
-bXM
-ckS
-clL
-cmT
-cnC
-coc
-aaa
-aaa
-aaa
-aaa
-cql
-aaa
-aaa
-aaa
-aab
-aaa
-aaa
-aaa
-cvv
-aaa
-aaa
-aaa
-aab
-aaa
-aaa
-aaa
-cql
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(205,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-abl
-abl
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-abL
-abL
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aab
-aab
-aaa
-aab
-aab
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-bXN
-bYG
-bZh
-bZO
-bXM
-cbi
-bZh
-ccZ
-cdQ
-bZh
-bZh
-bZh
-bZh
-bZh
-bZh
-cjB
-cav
-bXM
-bXM
-bXM
-cnC
-coc
-aaa
-aaa
-aaa
-aaa
-cql
-aaa
-crq
-crq
-crq
-crq
-crq
-aaa
-cvv
-aaa
-crq
-crq
-crq
-crq
-crq
-aaa
-cql
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(206,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-abl
-abl
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-abL
-abL
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aab
-aab
-aaa
-aab
-aab
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-bXN
-bYF
-bZh
-bZh
-cau
-bZh
-bZh
-cda
-cdb
-bZh
-cfq
-cfq
-cfq
-cfq
-cfq
-bZh
-bXN
-cbk
-clM
-cbk
-cnC
-coc
-aaa
-aaa
-aaa
-aaa
-cql
-aab
-crr
-csi
-csi
-csi
-csi
-cuQ
-cvv
-cwd
-cwC
-cwC
-cwC
-cwC
-cxO
-aab
-cql
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(207,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-abl
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-abL
-abL
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aab
-aab
-aaa
-aab
-aab
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-bXN
-bYH
-bZi
-bZi
-cav
-cbj
-bZh
-cdb
-cdb
-bZh
-cfr
-cfr
-cfr
-cfr
-cfr
-bZh
-ckc
-cbj
-cbj
-cbj
-cnC
-coc
-aaa
-aaa
-aaa
-aaa
-cql
-aaa
-crs
-crs
-crs
-crs
-crs
-aaa
-cvv
-aaa
-crs
-crs
-crs
-crs
-crs
-aaa
-cql
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(208,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-abL
-abL
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aab
-aab
-aaa
-aab
-aab
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-bXM
-bYD
-bZj
-bZP
-bXM
-cbk
-bZh
-bZh
-bZh
-bZh
-bZh
-bZh
-bZh
-bZh
-bZh
-bZh
-bXN
-cbj
-cbj
-cbj
-cnC
-coc
-aaa
-aaa
-aaa
-aaa
-cql
-aaa
-aaa
-aaa
-aab
-aaa
-aaa
-aaa
-cvv
-aaa
-aaa
-aaa
-aab
-aaa
-aaa
-aaa
-cql
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(209,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-abL
-abL
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aab
-aab
-aaa
-aab
-aab
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-bXM
-bXM
-bXM
-bXM
-cbl
-cco
-cbj
-cbj
-ceM
-cfs
-cfs
-cfs
-cfs
-cfs
-ceM
-bXN
-ckT
-clN
-ckT
-bXM
-bXM
-aaa
-aaa
-aaa
-aaa
-cql
-aaa
-crq
-crq
-crq
-crq
-crq
-aaa
-cvv
-aaa
-crq
-crq
-crq
-crq
-crq
-aaa
-cql
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(210,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-abL
-abL
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-bDJ
-bDJ
-aaT
-bDJ
-bDJ
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-bXM
-bXN
-bXM
-bXN
-bXM
-bXM
-bXM
-bXN
-bXN
-bXN
-bXM
-bXM
-bXM
-bXN
-bXM
-bXN
-bXM
-aaa
-aaa
-aaa
-aaa
-aaa
-cql
-aab
-crr
-csi
-csi
-csi
-csi
-cuQ
-cvv
-cwd
-cwC
-cwC
-cwC
-cwC
-cxO
-aab
-cql
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(211,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-agI
-agI
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-abL
-abL
-abL
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-bDJ
-bDJ
-bDJ
-aaT
-bDJ
-bDJ
-bDJ
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-cql
-aaa
-crs
-crs
-crs
-crs
-crs
-aaa
-cvv
-aaa
-crs
-crs
-crs
-crs
-crs
-aaa
-cql
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(212,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-agI
-agI
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-abL
-abL
-abL
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-bDJ
-bDJ
-bGb
-bLO
-aaT
-bRs
-bGb
-bDJ
-bDJ
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-cql
-aaa
-aaa
-aaa
-aab
-aaa
-aaa
-aaa
-cvv
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-cql
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(213,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-abL
-abL
-abL
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-bDJ
-bDJ
-bGb
-bGb
-bLO
-aaT
-bRs
-bGb
-bGb
-bDJ
-bDJ
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-cql
-aaa
-crq
-crq
-crq
-crq
-crq
-aaa
-cvv
-aaa
-crq
-crq
-crq
-crq
-crq
-aaa
-cql
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(214,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-abL
-abL
-abL
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-bDJ
-bDJ
-bGb
-bGb
-bGb
-bLO
-aaT
-bRs
-bGb
-bGb
-bGb
-bDJ
-bDJ
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-cql
-aab
-crr
-csi
-csi
-csi
-csi
-cuQ
-cvv
-cwd
-cwC
-cwC
-cwC
-cwC
-cxO
-aab
-cql
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(215,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-abl
-abl
-abl
-abl
-abl
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-abL
-abL
-abL
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-bDJ
-bDJ
-bGb
-bGb
-bGb
-bGb
-bLO
-aaT
-bRs
-bGb
-bGb
-bGb
-bGb
-bDJ
-bDJ
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-cql
-aaa
-crs
-crs
-crs
-crs
-crs
-aaa
-cvv
-aaa
-crs
-crs
-crs
-crs
-crs
-aaa
-cql
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(216,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-abl
-abl
-abl
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-agI
-agI
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-abL
-abL
-abL
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-bDJ
-bDJ
-bGb
-bGb
-bGb
-bGb
-bGb
-bLO
-aaT
-bRs
-bGb
-bGb
-bGb
-bGb
-bGb
-bDJ
-bDJ
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-acf
-aaa
-aaa
-cql
-aaa
-aaa
-aaa
-aab
-aaa
-aaa
-aaa
-cvv
-aaa
-aaa
-aaa
-aab
-aaa
-aaa
-aaa
-cql
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(217,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-abl
-abl
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-agI
-agI
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-abL
-abL
-abL
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-bDJ
-bDJ
-bGb
-bGb
-bGb
-bGb
-bGb
-bGb
-bLO
-bNg
-bRs
-bGb
-bGb
-bGb
-bGb
-bGb
-bGb
-bDJ
-bDJ
-aaa
-aaa
-acf
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-cql
-aaa
-crq
-crq
-crq
-crq
-crq
-aaa
-cvv
-aaa
-crq
-crq
-crq
-crq
-crq
-aaa
-cql
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(218,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-abl
-abl
-abl
-abl
-abl
-abl
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-abL
-abL
-abL
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-bDJ
-bDJ
-bGb
-bGb
-bGb
-bGb
-bGb
-bGb
-bGb
-bLO
-bNg
-bRs
-bGb
-bGb
-bGb
-bGb
-bGb
-bGb
-bGb
-bDJ
-bDJ
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-cql
-aab
-crr
-csi
-csi
-csi
-csi
-cuQ
-cvv
-cwd
-cwC
-cwC
-cwC
-cwC
-cxO
-aab
-cql
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(219,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-abl
-abl
-abl
-abl
-abl
-abl
-abl
-abl
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-abL
-abL
-abL
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-bDJ
-bDJ
-bGb
-bGb
-bGb
-bGb
-bGb
-bLN
-bNf
-bNf
-bLO
-bQF
-bRs
-bNf
-bNf
-bTW
-bGb
-bGb
-bGb
-bGb
-bGb
-bDJ
-bDJ
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-acf
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-cql
-aaa
-crs
-crs
-crs
-crs
-crs
-aaa
-cvv
-aaa
-crs
-crs
-crs
-crs
-crs
-aaa
-cql
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(220,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-abl
-abl
-abl
-abl
-abl
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-abL
-abL
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-bDJ
-bDJ
-bGb
-bGb
-bGb
-bGb
-bGb
-bLO
-bNg
-bNg
-bLO
-bQG
-bRs
-bNg
-bNg
-bRs
-bGb
-bGb
-bGb
-bGb
-bGb
-bDJ
-bDJ
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-cql
-aaa
-aaa
-aaa
-aab
-aaa
-aaa
-aaa
-cvv
-aaa
-aaa
-aaa
-aab
-aaa
-aaa
-aaa
-cql
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(221,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-abl
-abl
-abl
-abl
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-abL
-abL
-abL
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-bDJ
-bDJ
-bGb
-bGb
-bGb
-bGb
-bGb
-bLP
-bNh
-bNh
-bLO
-bQH
-bRs
-bNh
-bNh
-bRt
-bGb
-bGb
-bGb
-bGb
-bGb
-bDJ
-bDJ
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-cql
-aaa
-crq
-crq
-crq
-crq
-crq
-aaa
-cvv
-aaa
-crq
-crq
-crq
-crq
-crq
-aaa
-cql
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-acf
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(222,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-abl
-abl
-abl
-abl
-abl
-abl
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-agI
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-abL
-abL
-abL
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-bDJ
-bDJ
-bGb
-bGb
-bGb
-bGb
-bGb
-bGb
-bGb
-bLO
-bNg
-bRs
-bGb
-bGb
-bGb
-bGb
-bGb
-bGb
-bGb
-bDJ
-bDJ
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-cql
-aab
-crr
-csi
-csi
-csi
-csi
-cuR
-cvw
-cuR
-cwC
-cwC
-cwC
-cwC
-cxO
-aab
-cql
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(223,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-abl
-abl
-abl
-abl
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-abL
-abL
-abL
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-bDJ
-bDJ
-bGb
-bGb
-bGb
-bGb
-bGb
-bGb
-bLO
-bNg
-bRs
-bGb
-bGb
-bGb
-bGb
-bGb
-bGb
-bDJ
-bDJ
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-cql
-aaa
-crs
-crs
-crs
-crs
-crs
-aaa
-cvv
-aaa
-crs
-crs
-crs
-crs
-crs
-aaa
-cql
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(224,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-abl
-abl
-abl
-abl
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-agI
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-abL
-abL
-abL
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-bDJ
-bDJ
-bGb
-bGb
-bGb
-bGb
-bGb
-bLP
-bNh
-bRt
-bGb
-bGb
-bGb
-bGb
-bGb
-bDJ
-bDJ
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-cql
-aaa
-aaa
-aaa
-aaa
-aaa
-aab
-aaa
-cvx
-aaa
-aab
-aaa
-aaa
-aaa
-aaa
-aaa
-cql
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(225,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-abl
-abl
-abl
-abl
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-abL
-abL
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-bDJ
-bDJ
-bGb
-bGb
-bGb
-bGb
-bGb
-bGb
-bGb
-bGb
-bGb
-bGb
-bGb
-bDJ
-bDJ
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-cql
-cql
-cql
-cql
-cql
-cql
-cql
-aab
-cvv
-aab
-cql
-cql
-cql
-cql
-cql
-cql
-cql
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(226,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-abl
-abl
-abl
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-abL
-abL
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-bDJ
-bDJ
-bGb
-bGb
-bGb
-bGb
-bGb
-bGb
-bGb
-bGb
-bGb
-bDJ
-bDJ
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aab
-aaa
-cvy
-aaa
-aab
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(227,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-abl
-abl
-abl
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-abL
-abL
-abL
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-bDJ
-bDJ
-bGb
-bGb
-bGb
-bGb
-bGb
-bGb
-bGb
-bDJ
-bDJ
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-cql
-aaa
-aab
-aaa
-cql
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(228,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-abl
-abl
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-abL
-abL
-abL
-abL
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-bDJ
-bDJ
-bGb
-bGb
-bGb
-bGb
-bGb
-bDJ
-bDJ
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-cql
-cql
-cql
-cql
-cql
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(229,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-abl
-abl
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-abL
-abL
-abL
-abL
-abL
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-bDJ
-bDJ
-bGb
-bGb
-bGb
-bDJ
-bDJ
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(230,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-abL
-abL
-abL
-abL
-abL
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-bDJ
-bDJ
-bDJ
-bDJ
-bDJ
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(231,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-abl
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-abL
-abL
-abL
-abL
-abL
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-bDJ
-bDJ
-bDJ
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(232,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-abL
-abL
-abL
-abL
-abL
-abL
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(233,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-abl
-abl
-abl
-abl
-abl
-abL
-abL
-abL
-abL
-abL
-abL
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(234,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-abl
-abl
-abl
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-abl
-abl
-abl
-abl
-abL
-abL
-abL
-abL
-abL
-abL
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(235,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-abl
-abl
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-acg
-abl
-abl
-abl
-abl
-abl
-abl
-abl
-abl
-abl
-abl
-abl
-abl
-abl
-abl
-abl
-abl
-abl
-abl
-abl
-abl
-abl
-abl
-abL
-abL
-abL
-abL
-abL
-abL
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(236,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-abl
-abl
-abl
-abl
-abl
-abl
-abl
-abl
-abl
-abl
-abl
-abl
-abl
-abl
-abl
-abl
-abl
-abl
-abl
-abl
-abl
-abl
-abl
-abl
-abl
-abl
-abl
-abl
-abl
-abl
-abl
-abl
-abl
-abl
-abl
-abl
-abl
-abl
-abl
-abl
-abl
-abL
-abL
-abL
-abL
-abL
-abL
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(237,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-abl
-abl
-abl
-abl
-abl
-abl
-abl
-abl
-abl
-abl
-abl
-abl
-abl
-abl
-abl
-abl
-abl
-abl
-abl
-abl
-abl
-abl
-abl
-abl
-abl
-abl
-abl
-abl
-abl
-abl
-abl
-abl
-abl
-abl
-abl
-abl
-abl
-abl
-abl
-abl
-abL
-abL
-abL
-abL
-abL
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(238,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-abl
-abl
-abl
-abl
-abl
-abl
-abl
-abl
-abl
-abl
-abl
-abl
-abl
-abl
-abl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-abl
-abl
-abl
-abl
-abl
-abl
-abl
-abl
-abl
-abl
-abl
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(239,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-abl
-abl
-abl
-abl
-abl
-abl
-abl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-abl
-abl
-abl
-abl
-abl
-abl
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-abL
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(240,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(241,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(242,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(243,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(244,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(245,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(246,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-ach
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(247,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(248,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(249,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(250,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(251,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(252,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(253,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(254,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(255,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
diff --git a/_maps/map_files/Deltastation/DeltaStation2.dmm b/_maps/map_files/Deltastation/DeltaStation2.dmm
index 94d523a70b..70fa1445e6 100644
--- a/_maps/map_files/Deltastation/DeltaStation2.dmm
+++ b/_maps/map_files/Deltastation/DeltaStation2.dmm
@@ -176,7 +176,7 @@
/turf/open/floor/plasteel/neutral,
/area/shuttle/abandoned)
"aay" = (
-/obj/structure/sign/vacuum,
+/obj/structure/sign/warning/vacuum,
/turf/closed/wall/mineral/titanium/nodiagonal,
/area/shuttle/abandoned)
"aaz" = (
@@ -616,7 +616,8 @@
/obj/docking_port/mobile/pod{
id = "pod1";
name = "escape pod 1";
- port_direction = 2
+ port_direction = 2;
+ timid = 0
},
/obj/effect/turf_decal/stripes/end,
/turf/open/floor/plasteel/white,
@@ -632,7 +633,8 @@
/obj/docking_port/mobile/pod{
id = "pod2";
name = "escape pod 2";
- port_direction = 2
+ port_direction = 2;
+ timid = 0
},
/obj/effect/turf_decal/stripes/end,
/turf/open/floor/plasteel/white,
@@ -903,7 +905,7 @@
dir = 8
},
/obj/structure/closet/emcloset/anchored,
-/obj/structure/sign/vacuum{
+/obj/structure/sign/warning/vacuum{
pixel_x = -32
},
/obj/effect/turf_decal/bot,
@@ -975,7 +977,7 @@
/turf/open/floor/plasteel,
/area/hallway/secondary/entry)
"aca" = (
-/obj/structure/sign/pods{
+/obj/structure/sign/warning/pods{
pixel_x = -32
},
/obj/effect/turf_decal/stripes/line{
@@ -1048,12 +1050,8 @@
/turf/open/floor/plasteel/neutral,
/area/shuttle/abandoned)
"aci" = (
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/turf/open/floor/plasteel/neutral,
-/area/shuttle/abandoned)
+/turf/open/space/basic,
+/area/space)
"acj" = (
/obj/effect/decal/cleanable/dirt{
desc = "A thin layer of dust coating the floor.";
@@ -1123,7 +1121,7 @@
},
/area/construction/mining/aux_base)
"acs" = (
-/obj/structure/sign/electricshock,
+/obj/structure/sign/warning/electricshock,
/turf/closed/wall/r_wall,
/area/maintenance/solars/starboard/fore)
"act" = (
@@ -1256,23 +1254,17 @@
/turf/open/floor/plating/airless,
/area/shuttle/arrival)
"acF" = (
-/obj/docking_port/mobile/arrivals{
- dir = 2;
- dwidth = 4;
- height = 17;
- name = "delta arrivals shuttle";
- width = 9
- },
/obj/docking_port/stationary{
dir = 2;
dwidth = 4;
height = 17;
id = "arrivals_stationary";
name = "delta arrivals";
- width = 9
+ width = 9;
+ roundstart_template = /datum/map_template/shuttle/arrival/delta
},
-/turf/closed/wall/mineral/plastitanium,
-/area/shuttle/arrival)
+/turf/open/space/basic,
+/area/space)
"acG" = (
/obj/structure/table/reinforced,
/obj/item/storage/belt/utility,
@@ -1699,7 +1691,7 @@
/area/hallway/secondary/entry)
"ads" = (
/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/sign/vacuum,
+/obj/structure/sign/warning/vacuum,
/turf/open/floor/plating,
/area/hallway/secondary/entry)
"adt" = (
@@ -1710,8 +1702,8 @@
/turf/open/floor/plasteel,
/area/hallway/secondary/entry)
"adu" = (
-/turf/closed/wall/mineral/titanium/nodiagonal,
-/area/shuttle/arrival)
+/turf/open/space/basic,
+/area/space)
"adv" = (
/turf/closed/wall/mineral/titanium,
/area/shuttle/arrival)
@@ -1823,7 +1815,7 @@
},
/area/shuttle/abandoned)
"adH" = (
-/obj/structure/sign/vacuum,
+/obj/structure/sign/warning/vacuum,
/turf/closed/wall/mineral/titanium,
/area/shuttle/abandoned)
"adI" = (
@@ -2244,8 +2236,8 @@
/turf/open/floor/plating/airless,
/area/shuttle/transport)
"aeu" = (
-/turf/open/floor/pod/light,
-/area/shuttle/transport)
+/turf/open/space/basic,
+/area/space)
"aev" = (
/obj/structure/shuttle/engine/heater{
dir = 1
@@ -2394,7 +2386,7 @@
/turf/open/floor/plasteel/whiteblue/side,
/area/shuttle/abandoned)
"aeL" = (
-/obj/structure/sign/bluecross_2,
+/obj/structure/sign/departments/medbay/alt,
/turf/closed/wall/mineral/titanium,
/area/shuttle/abandoned)
"aeM" = (
@@ -2407,7 +2399,7 @@
},
/area/shuttle/abandoned)
"aeN" = (
-/obj/structure/sign/engineering,
+/obj/structure/sign/departments/engineering,
/turf/closed/wall/mineral/titanium,
/area/shuttle/abandoned)
"aeO" = (
@@ -3089,7 +3081,6 @@
/obj/structure/cable/white{
icon_state = "2-8"
},
-/obj/effect/landmark/lightsout,
/obj/machinery/holopad,
/obj/structure/cable/white{
icon_state = "1-2"
@@ -3134,7 +3125,8 @@
dir = 2;
dwidth = 4;
height = 9;
- width = 9
+ width = 9;
+ timid = 0
},
/obj/machinery/bluespace_beacon,
/obj/docking_port/mobile/auxillary_base,
@@ -3180,7 +3172,7 @@
/turf/open/floor/plasteel/whitepurple/corner,
/area/shuttle/abandoned)
"agx" = (
-/obj/structure/sign/science,
+/obj/structure/sign/departments/science,
/turf/closed/wall/mineral/titanium,
/area/shuttle/abandoned)
"agy" = (
@@ -3360,27 +3352,6 @@
/turf/open/floor/plating,
/area/shuttle/abandoned)
"agS" = (
-/obj/machinery/door/airlock/titanium{
- cyclelinkeddir = 8;
- name = "External Airlock"
- },
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/obj/docking_port/mobile{
- dheight = 0;
- dir = 8;
- dwidth = 11;
- height = 15;
- id = "whiteship";
- launch_status = 0;
- name = "White-Ship";
- port_direction = 8;
- preferred_direction = 8;
- roundstart_move = "whiteship_away";
- width = 32
- },
/obj/docking_port/stationary{
dir = 8;
dwidth = 11;
@@ -3389,8 +3360,8 @@
name = "SS13: Auxiliary Dock, Station-Fore";
width = 32
},
-/turf/open/floor/plasteel/neutral,
-/area/shuttle/abandoned)
+/turf/open/space/basic,
+/area/space)
"agT" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/effect/turf_decal/stripes/line{
@@ -3992,17 +3963,6 @@
},
/area/shuttle/abandoned)
"aid" = (
-/obj/docking_port/mobile{
- dir = 1;
- dwidth = 2;
- height = 13;
- id = "ferry";
- name = "ferry shuttle";
- port_direction = 1;
- preferred_direction = 4;
- roundstart_move = "ferry_away";
- width = 5
- },
/obj/docking_port/stationary{
dir = 1;
dwidth = 2;
@@ -4012,9 +3972,8 @@
turf_type = /turf/open/space;
width = 5
},
-/obj/machinery/door/airlock/titanium,
-/turf/open/floor/pod/dark,
-/area/shuttle/transport)
+/turf/open/space/basic,
+/area/space)
"aie" = (
/obj/structure/frame/computer{
dir = 1
@@ -4458,7 +4417,7 @@
/turf/open/floor/plasteel,
/area/hallway/secondary/entry)
"ajh" = (
-/obj/structure/sign/pods,
+/obj/structure/sign/warning/pods,
/turf/closed/wall,
/area/hallway/secondary/entry)
"aji" = (
@@ -4737,7 +4696,7 @@
/turf/open/floor/plasteel,
/area/maintenance/starboard/fore)
"ajP" = (
-/obj/structure/sign/nosmoking_2,
+/obj/structure/sign/warning/nosmoking,
/turf/closed/wall,
/area/maintenance/starboard/fore)
"ajQ" = (
@@ -4866,13 +4825,6 @@
},
/turf/open/floor/plasteel/neutral,
/area/hallway/secondary/entry)
-"akh" = (
-/obj/effect/landmark/lightsout,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/neutral,
-/area/hallway/secondary/entry)
"aki" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 1
@@ -7050,7 +7002,7 @@
/obj/structure/disposalpipe/segment{
dir = 10
},
-/obj/structure/sign/vacuum{
+/obj/structure/sign/warning/vacuum{
pixel_y = 32
},
/obj/effect/turf_decal/stripes/line{
@@ -7329,7 +7281,7 @@
"aqi" = (
/obj/structure/table/wood,
/obj/item/device/flashlight/lamp,
-/obj/structure/sign/nosmoking_2{
+/obj/structure/sign/warning/nosmoking{
pixel_x = 32
},
/turf/open/floor/wood,
@@ -7885,7 +7837,7 @@
/turf/open/floor/circuit/green,
/area/engine/atmospherics_engine)
"arl" = (
-/obj/structure/sign/electricshock,
+/obj/structure/sign/warning/electricshock,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 6
},
@@ -7934,7 +7886,7 @@
/turf/open/floor/plasteel,
/area/engine/atmospherics_engine)
"arp" = (
-/obj/structure/sign/electricshock,
+/obj/structure/sign/warning/electricshock,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -9867,7 +9819,7 @@
/turf/open/floor/plasteel,
/area/engine/atmospherics_engine)
"ava" = (
-/obj/structure/sign/electricshock{
+/obj/structure/sign/warning/electricshock{
pixel_y = -32
},
/obj/machinery/atmospherics/pipe/simple/cyan/visible{
@@ -9892,7 +9844,7 @@
},
/area/engine/atmospherics_engine)
"avd" = (
-/obj/structure/sign/nosmoking_2{
+/obj/structure/sign/warning/nosmoking{
pixel_y = -32
},
/obj/effect/turf_decal/stripes/line{
@@ -10604,7 +10556,7 @@
/area/janitor)
"awG" = (
/obj/structure/reagent_dispensers/watertank,
-/obj/structure/sign/nosmoking_2{
+/obj/structure/sign/warning/nosmoking{
pixel_x = 32
},
/obj/item/reagent_containers/glass/bucket,
@@ -11016,7 +10968,7 @@
/area/engine/atmospherics_engine)
"axG" = (
/obj/item/twohanded/required/kirbyplants/random,
-/obj/structure/sign/nosmoking_2{
+/obj/structure/sign/warning/nosmoking{
pixel_x = 32
},
/obj/structure/cable{
@@ -11078,7 +11030,7 @@
/area/maintenance/port/fore)
"axQ" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/sign/nosmoking_2{
+/obj/structure/sign/warning/nosmoking{
pixel_y = -32
},
/turf/open/floor/plating,
@@ -11556,7 +11508,7 @@
/area/engine/atmospherics_engine)
"ayP" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/sign/securearea{
+/obj/structure/sign/warning/securearea{
pixel_x = 32
},
/obj/machinery/camera{
@@ -11579,7 +11531,7 @@
},
/area/engine/atmospherics_engine)
"ayR" = (
-/obj/structure/sign/radiation,
+/obj/structure/sign/warning/radiation,
/turf/closed/wall/r_wall,
/area/engine/atmospherics_engine)
"ayS" = (
@@ -11644,7 +11596,7 @@
pixel_y = -3
},
/obj/item/lipstick/random,
-/obj/structure/sign/nosmoking_2{
+/obj/structure/sign/warning/nosmoking{
pixel_y = -32
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -11993,7 +11945,7 @@
/turf/open/space,
/area/space/nearstation)
"azO" = (
-/obj/structure/sign/securearea{
+/obj/structure/sign/warning/securearea{
pixel_x = -32
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -12412,7 +12364,7 @@
icon_state = "0-8"
},
/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/sign/vacuum,
+/obj/structure/sign/warning/vacuum,
/turf/open/floor/plating,
/area/quartermaster/storage)
"aAK" = (
@@ -12433,9 +12385,8 @@
/turf/open/floor/plasteel,
/area/shuttle/supply)
"aAM" = (
-/obj/effect/turf_decal/bot,
-/turf/open/floor/plasteel,
-/area/shuttle/supply)
+/turf/open/space/basic,
+/area/space)
"aAN" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/bot,
@@ -12596,7 +12547,7 @@
/turf/open/floor/plasteel/caution,
/area/engine/atmospherics_engine)
"aBf" = (
-/obj/structure/sign/securearea,
+/obj/structure/sign/warning/securearea,
/turf/closed/wall/r_wall,
/area/engine/atmospherics_engine)
"aBg" = (
@@ -13118,7 +13069,7 @@
/turf/open/floor/plasteel,
/area/engine/atmospherics_engine)
"aCl" = (
-/obj/structure/sign/radiation,
+/obj/structure/sign/warning/radiation,
/turf/closed/wall/r_wall,
/area/engine/supermatter)
"aCm" = (
@@ -13605,13 +13556,16 @@
/turf/open/floor/plasteel,
/area/quartermaster/storage)
"aDi" = (
-/obj/machinery/door/airlock/shuttle{
- name = "Supply Shuttle Airlock";
- req_access_txt = "31"
+/obj/docking_port/stationary{
+ dir = 4;
+ dwidth = 4;
+ height = 7;
+ id = "supply_home";
+ name = "Cargo Bay";
+ width = 12
},
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/shuttle/supply)
+/turf/open/space/basic,
+/area/space)
"aDj" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
@@ -13710,7 +13664,7 @@
pixel_x = -12;
pixel_y = 2
},
-/obj/structure/sign/nosmoking_2{
+/obj/structure/sign/warning/nosmoking{
pixel_x = -32
},
/obj/effect/turf_decal/bot,
@@ -13729,7 +13683,7 @@
dir = 4;
pixel_x = 11
},
-/obj/structure/sign/botany{
+/obj/structure/sign/departments/botany{
pixel_x = 32
},
/obj/effect/turf_decal/bot,
@@ -14064,7 +14018,7 @@
/obj/structure/cable{
icon_state = "4-8"
},
-/obj/structure/sign/fire{
+/obj/structure/sign/warning/fire{
pixel_x = 32;
pixel_y = 32
},
@@ -14552,22 +14506,6 @@
},
/turf/open/floor/plasteel,
/area/quartermaster/storage)
-"aFl" = (
-/obj/docking_port/mobile/supply{
- dwidth = 5;
- roundstart_move = "supply_away";
- width = 12
- },
-/obj/docking_port/stationary{
- dir = 8;
- dwidth = 5;
- height = 7;
- id = "supply_home";
- name = "Cargo Bay";
- width = 12
- },
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/supply)
"aFm" = (
/turf/closed/wall/r_wall,
/area/security/prison)
@@ -14604,7 +14542,7 @@
/obj/structure/extinguisher_cabinet{
pixel_x = -26
},
-/obj/structure/sign/nosmoking_2{
+/obj/structure/sign/warning/nosmoking{
pixel_y = -32
},
/obj/effect/turf_decal/bot,
@@ -15321,7 +15259,7 @@
dir = 8
},
/obj/item/seeds/carrot,
-/obj/structure/sign/electricshock{
+/obj/structure/sign/warning/electricshock{
pixel_y = 32
},
/turf/open/floor/plasteel/red/corner{
@@ -15381,7 +15319,7 @@
pixel_x = 3;
pixel_y = 3
},
-/obj/structure/sign/electricshock{
+/obj/structure/sign/warning/electricshock{
pixel_y = 32
},
/obj/effect/decal/cleanable/cobweb/cobweb2,
@@ -15432,7 +15370,7 @@
/area/maintenance/solars/port/fore)
"aGP" = (
/obj/machinery/disposal/bin,
-/obj/structure/sign/deathsposal{
+/obj/structure/sign/warning/deathsposal{
pixel_y = 32
},
/obj/structure/disposalpipe/trunk{
@@ -15449,7 +15387,7 @@
/area/maintenance/disposal/incinerator)
"aGR" = (
/obj/machinery/atmospherics/components/unary/tank/toxins,
-/obj/structure/sign/nosmoking_2{
+/obj/structure/sign/warning/nosmoking{
pixel_y = 32
},
/obj/effect/decal/cleanable/dirt,
@@ -15498,7 +15436,7 @@
/obj/machinery/power/smes{
charge = 1e+006
},
-/obj/structure/sign/electricshock{
+/obj/structure/sign/warning/electricshock{
pixel_y = 32
},
/obj/structure/cable/white{
@@ -15620,7 +15558,7 @@
/obj/structure/cable/white{
icon_state = "4-8"
},
-/obj/structure/sign/electricshock{
+/obj/structure/sign/warning/electricshock{
pixel_y = -32
},
/obj/machinery/light,
@@ -15657,7 +15595,7 @@
/turf/open/floor/plasteel,
/area/engine/atmospherics_engine)
"aHk" = (
-/obj/structure/sign/fire,
+/obj/structure/sign/warning/fire,
/turf/closed/wall/r_wall,
/area/engine/atmospherics_engine)
"aHl" = (
@@ -16342,7 +16280,7 @@
/turf/open/floor/plasteel,
/area/engine/atmospherics_engine)
"aIA" = (
-/obj/structure/sign/biohazard,
+/obj/structure/sign/warning/biohazard,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/closed/wall/r_wall,
/area/engine/atmospherics_engine)
@@ -16366,7 +16304,7 @@
/turf/open/floor/plasteel,
/area/engine/atmospherics_engine)
"aIC" = (
-/obj/structure/sign/radiation,
+/obj/structure/sign/warning/radiation,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/closed/wall/r_wall,
/area/engine/atmospherics_engine)
@@ -16508,10 +16446,6 @@
icon_state = "wood-broken6"
},
/area/hallway/secondary/service)
-"aIR" = (
-/obj/structure/closet/secure_closet/personal/cabinet,
-/turf/open/floor/wood,
-/area/hallway/secondary/service)
"aIS" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 8
@@ -16615,7 +16549,6 @@
},
/area/hallway/primary/fore)
"aJe" = (
-/obj/effect/landmark/lightsout,
/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
dir = 8
},
@@ -16848,7 +16781,7 @@
/turf/open/floor/plating,
/area/maintenance/solars/port/fore)
"aJH" = (
-/obj/structure/sign/electricshock,
+/obj/structure/sign/warning/electricshock,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/closed/wall/r_wall,
/area/maintenance/solars/port/fore)
@@ -17300,7 +17233,6 @@
},
/area/quartermaster/sorting)
"aKG" = (
-/obj/effect/landmark/lightsout,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -17579,7 +17511,7 @@
/turf/open/floor/plasteel,
/area/maintenance/disposal/incinerator)
"aLn" = (
-/obj/structure/sign/vacuum{
+/obj/structure/sign/warning/vacuum{
pixel_x = -32
},
/obj/machinery/light/small{
@@ -17701,7 +17633,7 @@
/turf/open/floor/circuit/green,
/area/engine/atmospherics_engine)
"aLx" = (
-/obj/structure/sign/nosmoking_2{
+/obj/structure/sign/warning/nosmoking{
pixel_x = 32
},
/obj/machinery/power/smes{
@@ -17775,13 +17707,6 @@
},
/turf/open/floor/wood,
/area/hallway/secondary/service)
-"aLG" = (
-/obj/item/twohanded/required/kirbyplants/random,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/wood,
-/area/hallway/secondary/service)
"aLH" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 4
@@ -17978,7 +17903,7 @@
/obj/structure/table,
/obj/item/storage/crayons,
/obj/item/storage/crayons,
-/obj/structure/sign/electricshock{
+/obj/structure/sign/warning/electricshock{
pixel_y = 32
},
/obj/effect/decal/cleanable/cobweb,
@@ -18084,7 +18009,7 @@
icon_state = "4-8"
},
/obj/item/toy/figure/syndie,
-/obj/structure/sign/electricshock{
+/obj/structure/sign/warning/electricshock{
pixel_y = 32
},
/turf/open/floor/plasteel/red/corner{
@@ -18128,7 +18053,7 @@
/obj/machinery/light/small{
dir = 8
},
-/obj/structure/sign/vacuum{
+/obj/structure/sign/warning/vacuum{
pixel_x = -32
},
/turf/open/floor/plasteel/vault{
@@ -18155,7 +18080,7 @@
},
/area/security/execution/education)
"aMt" = (
-/obj/structure/sign/fire,
+/obj/structure/sign/warning/fire,
/turf/closed/wall/r_wall,
/area/maintenance/disposal/incinerator)
"aMu" = (
@@ -18280,7 +18205,7 @@
/turf/open/floor/plasteel,
/area/engine/atmos)
"aMI" = (
-/obj/structure/sign/radiation,
+/obj/structure/sign/warning/radiation,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/closed/wall/r_wall,
/area/engine/atmos)
@@ -18303,12 +18228,12 @@
/turf/open/floor/plasteel,
/area/engine/atmos)
"aMK" = (
-/obj/structure/sign/fire,
+/obj/structure/sign/warning/fire,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/closed/wall/r_wall,
/area/engine/atmos)
"aML" = (
-/obj/structure/sign/electricshock,
+/obj/structure/sign/warning/electricshock,
/turf/closed/wall/r_wall,
/area/engine/atmos)
"aMM" = (
@@ -18389,7 +18314,7 @@
/turf/closed/wall,
/area/crew_quarters/theatre)
"aMY" = (
-/obj/structure/sign/nosmoking_2{
+/obj/structure/sign/warning/nosmoking{
pixel_x = -32
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -18755,7 +18680,7 @@
dir = 8;
luminosity = 2
},
-/obj/structure/sign/vacuum{
+/obj/structure/sign/warning/vacuum{
pixel_y = -32
},
/obj/structure/cable{
@@ -19488,7 +19413,7 @@
/turf/open/floor/engine/vacuum,
/area/maintenance/disposal/incinerator)
"aPy" = (
-/obj/structure/sign/fire,
+/obj/structure/sign/warning/fire,
/obj/machinery/atmospherics/pipe/simple/general/visible{
dir = 4
},
@@ -20373,7 +20298,7 @@
id = "justicechamber";
name = "Justice Chamber Blast door"
},
-/obj/structure/sign/electricshock{
+/obj/structure/sign/warning/electricshock{
pixel_x = 32
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -20819,10 +20744,6 @@
/obj/machinery/holopad,
/turf/open/floor/carpet,
/area/crew_quarters/bar/atrium)
-"aSb" = (
-/obj/effect/landmark/lightsout,
-/turf/open/floor/plasteel/redyellow,
-/area/crew_quarters/bar/atrium)
"aSc" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/public/glass{
@@ -21385,7 +21306,6 @@
/obj/machinery/atmospherics/pipe/simple/yellow/visible{
dir = 4
},
-/obj/effect/landmark/lightsout,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/neutral,
/area/engine/atmos)
@@ -22484,7 +22404,7 @@
pixel_y = -3
},
/obj/item/lipstick/random,
-/obj/structure/sign/nosmoking_2{
+/obj/structure/sign/warning/nosmoking{
pixel_y = -32
},
/turf/open/floor/plasteel/cafeteria,
@@ -23148,7 +23068,7 @@
},
/area/security/execution/education)
"aWs" = (
-/obj/structure/sign/securearea{
+/obj/structure/sign/warning/securearea{
pixel_x = 32
},
/obj/effect/decal/cleanable/dirt,
@@ -23286,7 +23206,7 @@
/turf/open/floor/plasteel,
/area/engine/atmos)
"aWJ" = (
-/obj/structure/sign/nosmoking_2,
+/obj/structure/sign/warning/nosmoking,
/turf/closed/wall,
/area/engine/atmos)
"aWK" = (
@@ -23778,7 +23698,7 @@
icon_state = "0-2"
},
/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/sign/bluecross_2,
+/obj/structure/sign/departments/medbay/alt,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating,
/area/security/prison)
@@ -24044,7 +23964,7 @@
dir = 10
},
/obj/effect/decal/cleanable/dirt,
-/obj/structure/sign/securearea{
+/obj/structure/sign/warning/securearea{
pixel_x = 32
},
/obj/machinery/light/small{
@@ -24196,7 +24116,6 @@
/obj/structure/cable/white{
icon_state = "2-8"
},
-/obj/effect/landmark/lightsout,
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 4
},
@@ -25479,18 +25398,6 @@
dir = 1
},
/area/security/prison)
-"bbj" = (
-/obj/structure/cable/white{
- icon_state = "1-2"
- },
-/obj/effect/landmark/lightsout,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/red/corner{
- dir = 1
- },
-/area/security/prison)
"bbk" = (
/obj/structure/cable/white,
/obj/machinery/power/apc/highcap/five_k{
@@ -25529,7 +25436,7 @@
/area/security/prison)
"bbn" = (
/obj/item/twohanded/required/kirbyplants/random,
-/obj/structure/sign/pods{
+/obj/structure/sign/warning/pods{
dir = 8;
pixel_y = -32
},
@@ -25550,7 +25457,7 @@
/area/security/prison)
"bbp" = (
/obj/machinery/light/small,
-/obj/structure/sign/securearea{
+/obj/structure/sign/warning/securearea{
pixel_y = -32
},
/obj/effect/decal/cleanable/dirt,
@@ -25615,7 +25522,8 @@
id = "pod3";
name = "escape pod 3";
port_direction = 2;
- preferred_direction = 4
+ preferred_direction = 4;
+ timid = 0
},
/obj/effect/turf_decal/stripes/end{
dir = 8
@@ -25676,7 +25584,7 @@
/area/space/nearstation)
"bbA" = (
/obj/machinery/atmospherics/pipe/simple/cyan/visible,
-/obj/structure/sign/securearea{
+/obj/structure/sign/warning/securearea{
pixel_x = -32
},
/obj/machinery/light/small{
@@ -26921,7 +26829,7 @@
icon_state = "0-8"
},
/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/sign/vacuum,
+/obj/structure/sign/warning/vacuum,
/turf/open/floor/plating,
/area/quartermaster/miningoffice)
"bel" = (
@@ -26977,7 +26885,7 @@
icon_state = "1-2"
},
/obj/effect/decal/cleanable/dirt,
-/obj/structure/sign/pods{
+/obj/structure/sign/warning/pods{
pixel_x = -32
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -27108,7 +27016,7 @@
/turf/open/floor/plasteel,
/area/engine/atmos)
"beE" = (
-/obj/structure/sign/atmosplaque,
+/obj/structure/sign/plaques/atmos,
/turf/closed/wall,
/area/engine/atmos)
"beF" = (
@@ -27145,7 +27053,7 @@
},
/area/engine/atmos)
"beJ" = (
-/obj/structure/sign/securearea{
+/obj/structure/sign/warning/securearea{
pixel_x = 32
},
/obj/machinery/light/small{
@@ -27497,7 +27405,7 @@
/area/quartermaster/miningoffice)
"bfG" = (
/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/sign/pods{
+/obj/structure/sign/warning/pods{
name = "MINING POD"
},
/turf/open/floor/plating,
@@ -27546,7 +27454,7 @@
/obj/structure/cable/white{
icon_state = "2-4"
},
-/obj/structure/sign/securearea{
+/obj/structure/sign/warning/securearea{
pixel_x = -32
},
/obj/machinery/light/small{
@@ -27795,7 +27703,7 @@
/turf/open/floor/plasteel,
/area/maintenance/port/fore)
"bgk" = (
-/obj/structure/sign/botany,
+/obj/structure/sign/departments/botany,
/turf/closed/wall,
/area/hydroponics)
"bgl" = (
@@ -28011,7 +27919,6 @@
/area/quartermaster/miningoffice)
"bgJ" = (
/obj/machinery/holopad,
-/obj/effect/landmark/lightsout,
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
@@ -28115,18 +28022,17 @@
/turf/open/floor/plasteel,
/area/quartermaster/miningoffice)
"bgU" = (
-/obj/machinery/door/airlock/shuttle{
- name = "Mining Shuttle Airlock";
- req_access_txt = "0"
+/obj/docking_port/stationary{
+ dir = 4;
+ dwidth = 3;
+ height = 5;
+ id = "mining_home";
+ name = "mining shuttle bay";
+ width = 7;
+ roundstart_template = /datum/map_template/shuttle/mining/delta
},
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/shuttle/mining)
+/turf/open/space/basic,
+/area/space)
"bgV" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/stripes/line{
@@ -28135,44 +28041,14 @@
/turf/open/floor/plasteel,
/area/shuttle/mining)
"bgW" = (
-/turf/open/floor/plasteel/neutral,
-/area/shuttle/mining)
+/turf/open/space/basic,
+/area/space)
"bgX" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
},
/turf/open/floor/plasteel,
/area/shuttle/mining)
-"bgY" = (
-/obj/docking_port/mobile{
- dir = 8;
- dwidth = 3;
- height = 5;
- id = "mining";
- name = "mining shuttle";
- port_direction = 4;
- width = 7
- },
-/obj/docking_port/stationary{
- dir = 8;
- dwidth = 3;
- height = 5;
- id = "mining_home";
- name = "mining shuttle bay";
- width = 7
- },
-/obj/machinery/door/airlock/shuttle{
- name = "Mining Shuttle Airlock";
- req_access_txt = "0"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/shuttle/mining)
"bgZ" = (
/turf/closed/wall/r_wall,
/area/security/brig)
@@ -28234,7 +28110,7 @@
"bhf" = (
/obj/machinery/atmospherics/pipe/simple/cyan/visible,
/obj/effect/decal/cleanable/dirt,
-/obj/structure/sign/securearea{
+/obj/structure/sign/warning/securearea{
pixel_x = -32
},
/obj/machinery/light/small{
@@ -30702,7 +30578,7 @@
"bmg" = (
/obj/structure/cable/white,
/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/sign/bluecross_2,
+/obj/structure/sign/departments/medbay/alt,
/turf/open/floor/plating,
/area/security/brig)
"bmh" = (
@@ -31821,7 +31697,7 @@
/area/engine/atmos)
"boy" = (
/obj/machinery/hydroponics/constructable,
-/obj/structure/sign/botany{
+/obj/structure/sign/departments/botany{
pixel_x = -32
},
/obj/effect/turf_decal/delivery,
@@ -32181,7 +32057,6 @@
/obj/structure/cable/white{
icon_state = "1-2"
},
-/obj/effect/landmark/lightsout,
/turf/open/floor/plasteel/neutral,
/area/security/brig)
"bpl" = (
@@ -33027,7 +32902,6 @@
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"bqP" = (
-/obj/effect/landmark/lightsout,
/obj/structure/cable/white{
icon_state = "4-8"
},
@@ -33169,7 +33043,7 @@
/obj/machinery/light{
dir = 8
},
-/obj/structure/sign/electricshock{
+/obj/structure/sign/warning/electricshock{
pixel_x = -32
},
/obj/effect/turf_decal/stripes/line{
@@ -33779,7 +33653,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/sign/nosmoking_2,
+/obj/structure/sign/warning/nosmoking,
/turf/closed/wall/r_wall,
/area/engine/atmos)
"bsp" = (
@@ -34188,7 +34062,7 @@
icon_state = "4-8"
},
/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/sign/vacuum,
+/obj/structure/sign/warning/vacuum,
/turf/open/floor/plating,
/area/security/execution/transfer)
"btc" = (
@@ -35260,7 +35134,7 @@
/obj/structure/extinguisher_cabinet{
pixel_x = -26
},
-/obj/structure/sign/nosmoking_2{
+/obj/structure/sign/warning/nosmoking{
pixel_y = -32
},
/turf/open/floor/plasteel/arrival,
@@ -35450,7 +35324,7 @@
},
/area/hallway/primary/port)
"bvv" = (
-/obj/structure/sign/electricshock,
+/obj/structure/sign/warning/electricshock,
/turf/closed/wall/r_wall,
/area/storage/tech)
"bvw" = (
@@ -35735,7 +35609,7 @@
/turf/open/floor/plasteel,
/area/security/main)
"bwh" = (
-/obj/structure/sign/goldenplaque{
+/obj/structure/sign/plaques/golden{
pixel_y = -32
},
/turf/open/floor/plasteel/red/corner,
@@ -35812,7 +35686,7 @@
/obj/structure/cable/white{
icon_state = "0-8"
},
-/obj/structure/sign/electricshock{
+/obj/structure/sign/warning/electricshock{
pixel_y = 32
},
/obj/machinery/camera/motion{
@@ -35828,7 +35702,7 @@
icon_state = "2-8"
},
/obj/item/twohanded/required/kirbyplants/random,
-/obj/structure/sign/nosmoking_2{
+/obj/structure/sign/warning/nosmoking{
pixel_y = 32
},
/obj/effect/turf_decal/stripes/line,
@@ -35917,7 +35791,7 @@
/turf/closed/wall/r_wall,
/area/engine/atmos)
"bwz" = (
-/obj/structure/sign/securearea,
+/obj/structure/sign/warning/securearea,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/closed/wall/r_wall,
/area/engine/atmos)
@@ -36923,10 +36797,10 @@
/obj/structure/cable/white{
icon_state = "4-8"
},
-/obj/structure/sign/electricshock{
+/obj/structure/sign/warning/electricshock{
pixel_y = -32
},
-/obj/structure/sign/securearea{
+/obj/structure/sign/warning/securearea{
pixel_y = 32
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -37284,7 +37158,7 @@
},
/obj/item/crowbar/red,
/obj/item/wrench,
-/obj/structure/sign/nosmoking_2{
+/obj/structure/sign/warning/nosmoking{
pixel_y = 32
},
/obj/effect/turf_decal/bot,
@@ -37370,7 +37244,7 @@
/turf/open/floor/plasteel/redyellow,
/area/engine/break_room)
"bzq" = (
-/obj/structure/sign/nosmoking_2,
+/obj/structure/sign/warning/nosmoking,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/closed/wall/r_wall,
/area/engine/break_room)
@@ -37393,7 +37267,7 @@
/turf/open/floor/plasteel,
/area/engine/break_room)
"bzs" = (
-/obj/structure/sign/securearea,
+/obj/structure/sign/warning/securearea,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/closed/wall/r_wall,
/area/engine/break_room)
@@ -37843,12 +37717,8 @@
/turf/open/floor/plasteel,
/area/shuttle/labor)
"bAa" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/stripes/end{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/shuttle/labor)
+/turf/open/space/basic,
+/area/space)
"bAb" = (
/obj/effect/turf_decal/stripes/line{
dir = 2
@@ -37856,35 +37726,17 @@
/turf/open/floor/plasteel,
/area/shuttle/labor)
"bAc" = (
-/obj/machinery/door/airlock/shuttle{
- id_tag = "prisonshuttle";
- name = "Labor Shuttle Airlock"
- },
-/obj/docking_port/mobile{
- dir = 8;
- dwidth = 2;
- height = 5;
- id = "laborcamp";
- name = "labor camp shuttle";
- port_direction = 4;
- width = 9
- },
/obj/docking_port/stationary{
dir = 8;
dwidth = 2;
height = 5;
id = "laborcamp_home";
name = "fore bay 1";
- width = 9
+ width = 9;
+ roundstart_template = /datum/map_template/shuttle/labour/delta
},
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/shuttle/labor)
+/turf/open/space/basic,
+/area/space)
"bAd" = (
/obj/machinery/door/airlock/external{
cyclelinkeddir = 4;
@@ -37899,11 +37751,6 @@
},
/turf/open/floor/plasteel,
/area/security/execution/transfer)
-"bAe" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plasteel,
-/area/security/execution/transfer)
"bAf" = (
/obj/machinery/door/airlock/external{
cyclelinkeddir = 8;
@@ -38200,7 +38047,7 @@
icon_state = "0-2"
},
/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/sign/electricshock{
+/obj/structure/sign/warning/electricshock{
pixel_y = 32
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -39138,7 +38985,7 @@
/turf/open/floor/plasteel,
/area/engine/gravity_generator)
"bCF" = (
-/obj/structure/sign/radiation,
+/obj/structure/sign/warning/radiation,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -39664,7 +39511,6 @@
/obj/structure/cable/white{
icon_state = "1-2"
},
-/obj/effect/landmark/lightsout,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -40187,7 +40033,7 @@
pixel_x = 4;
req_access_txt = "16"
},
-/obj/effect/landmark/tripai,
+/obj/effect/landmark/start/ai/secondary,
/turf/open/floor/circuit/green,
/area/ai_monitored/turret_protected/ai)
"bEg" = (
@@ -40301,14 +40147,14 @@
pixel_x = -3;
req_access_txt = "16"
},
-/obj/effect/landmark/tripai,
+/obj/effect/landmark/start/ai/secondary,
/turf/open/floor/circuit/green,
/area/ai_monitored/turret_protected/ai)
"bEn" = (
/obj/machinery/light{
dir = 8
},
-/obj/structure/sign/radiation{
+/obj/structure/sign/warning/radiation{
pixel_x = -32
},
/turf/open/floor/plasteel/vault{
@@ -41087,7 +40933,7 @@
},
/obj/effect/spawner/structure/window/reinforced,
/obj/structure/disposalpipe/segment,
-/obj/structure/sign/electricshock{
+/obj/structure/sign/warning/electricshock{
pixel_x = -32
},
/turf/open/floor/plating,
@@ -41303,7 +41149,7 @@
/turf/open/floor/plasteel,
/area/engine/gravity_generator)
"bGc" = (
-/obj/structure/sign/radiation,
+/obj/structure/sign/warning/radiation,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -42129,7 +41975,7 @@
"bHO" = (
/obj/structure/cable/white,
/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/sign/electricshock{
+/obj/structure/sign/warning/electricshock{
pixel_y = -32
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -42337,13 +42183,6 @@
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
/area/engine/break_room)
-"bIj" = (
-/obj/structure/cable/white{
- icon_state = "4-8"
- },
-/obj/effect/landmark/lightsout,
-/turf/open/floor/plasteel/neutral,
-/area/engine/break_room)
"bIk" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -42521,10 +42360,6 @@
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
/area/storage/primary)
-"bIy" = (
-/obj/effect/landmark/lightsout,
-/turf/open/floor/plasteel/neutral,
-/area/storage/primary)
"bIz" = (
/obj/structure/table/reinforced,
/obj/item/stack/packageWrap,
@@ -43363,7 +43198,7 @@
},
/area/engine/break_room)
"bKh" = (
-/obj/structure/sign/securearea,
+/obj/structure/sign/warning/securearea,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -44323,7 +44158,7 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
-/obj/structure/sign/electricshock,
+/obj/structure/sign/warning/electricshock,
/turf/closed/wall/r_wall,
/area/security/checkpoint/engineering)
"bMf" = (
@@ -44836,10 +44671,7 @@
},
/area/hallway/primary/starboard)
"bNi" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'HIGH VOLTAGE'";
- icon_state = "shock";
- name = "HIGH VOLTAGE";
+/obj/structure/sign/warning/electricshock{
pixel_x = 32
},
/obj/machinery/light{
@@ -45835,10 +45667,6 @@
dir = 5
},
/area/security/detectives_office)
-"bPn" = (
-/obj/effect/landmark/lightsout,
-/turf/open/floor/plasteel/neutral,
-/area/hallway/primary/starboard)
"bPo" = (
/obj/structure/closet/secure_closet/brig{
id = "brig2";
@@ -46023,7 +45851,7 @@
/turf/closed/wall/r_wall,
/area/ai_monitored/turret_protected/aisat_interior)
"bPH" = (
-/obj/structure/sign/kiddieplaque,
+/obj/structure/sign/plaques/kiddie,
/turf/closed/wall/r_wall,
/area/ai_monitored/turret_protected/aisat_interior)
"bPI" = (
@@ -46059,7 +45887,7 @@
/area/space/nearstation)
"bPL" = (
/obj/machinery/light/small,
-/obj/structure/sign/vacuum{
+/obj/structure/sign/warning/vacuum{
pixel_x = -32
},
/turf/open/floor/plasteel/vault{
@@ -46174,7 +46002,7 @@
},
/area/crew_quarters/heads/chief)
"bPW" = (
-/obj/structure/sign/electricshock,
+/obj/structure/sign/warning/electricshock,
/turf/closed/wall/r_wall,
/area/crew_quarters/heads/chief)
"bPX" = (
@@ -46182,7 +46010,7 @@
/turf/closed/wall/r_wall,
/area/crew_quarters/heads/chief)
"bPY" = (
-/obj/structure/sign/nosmoking_2,
+/obj/structure/sign/warning/nosmoking,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/closed/wall,
/area/engine/break_room)
@@ -46205,7 +46033,7 @@
/turf/open/floor/plasteel,
/area/engine/break_room)
"bQa" = (
-/obj/structure/sign/securearea,
+/obj/structure/sign/warning/securearea,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/closed/wall,
/area/engine/break_room)
@@ -46569,7 +46397,7 @@
/turf/open/floor/wood,
/area/crew_quarters/heads/captain)
"bQW" = (
-/obj/structure/sign/goldenplaque/captain{
+/obj/structure/sign/plaques/golden/captain{
pixel_x = 32
},
/turf/open/floor/wood,
@@ -46916,7 +46744,7 @@
/obj/structure/cable/yellow{
icon_state = "0-2"
},
-/obj/structure/sign/electricshock{
+/obj/structure/sign/warning/electricshock{
pixel_y = 32
},
/obj/effect/turf_decal/stripes/line{
@@ -47015,7 +46843,7 @@
/turf/open/space,
/area/space/nearstation)
"bRP" = (
-/obj/structure/sign/vacuum,
+/obj/structure/sign/warning/vacuum,
/turf/closed/wall,
/area/space/nearstation)
"bRQ" = (
@@ -47951,7 +47779,7 @@
icon_state = "control_standby";
name = "Antechamber Turret Control";
pixel_x = -32;
- req_access_txt = "65"
+ req_access = list(65)
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -48930,10 +48758,7 @@
/turf/open/floor/plasteel/neutral,
/area/hallway/primary/starboard)
"bVj" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'HIGH VOLTAGE'";
- icon_state = "shock";
- name = "HIGH VOLTAGE";
+/obj/structure/sign/warning/electricshock{
pixel_x = 32
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -49959,7 +49784,6 @@
/obj/structure/cable/white{
icon_state = "1-2"
},
-/obj/effect/landmark/lightsout,
/obj/structure/cable/white{
icon_state = "1-4"
},
@@ -50415,7 +50239,7 @@
},
/area/aisat)
"bXU" = (
-/obj/structure/sign/nosmoking_2,
+/obj/structure/sign/warning/nosmoking,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -50606,7 +50430,7 @@
icon_state = "curved0";
dir = 4
},
-/obj/structure/sign/securearea{
+/obj/structure/sign/warning/securearea{
pixel_y = -32
},
/turf/open/floor/plasteel/vault{
@@ -51733,7 +51557,7 @@
/turf/open/floor/plasteel,
/area/engine/engineering)
"caw" = (
-/obj/structure/sign/securearea,
+/obj/structure/sign/warning/securearea,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/closed/wall,
/area/engine/engineering)
@@ -51756,7 +51580,7 @@
/turf/open/floor/plasteel,
/area/engine/engineering)
"cay" = (
-/obj/structure/sign/radiation,
+/obj/structure/sign/warning/radiation,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/closed/wall,
/area/engine/engineering)
@@ -52012,8 +51836,6 @@
/area/crew_quarters/heads/captain/private)
"cbf" = (
/obj/structure/closet/secure_closet/captains,
-/obj/item/clothing/suit/armor/vest/capcarapace,
-/obj/item/clothing/head/caphat,
/obj/effect/turf_decal/stripes/line{
dir = 6
},
@@ -52426,7 +52248,7 @@
/turf/open/floor/plasteel,
/area/engine/engineering)
"cbV" = (
-/obj/structure/sign/vacuum,
+/obj/structure/sign/warning/vacuum,
/turf/closed/wall,
/area/engine/engineering)
"cbW" = (
@@ -52723,11 +52545,6 @@
},
/turf/open/floor/plasteel/neutral,
/area/hallway/primary/central)
-"ccy" = (
-/obj/effect/landmark/lightsout,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/blue/corner,
-/area/hallway/primary/central)
"ccz" = (
/obj/machinery/status_display,
/turf/closed/wall/r_wall,
@@ -52889,7 +52706,6 @@
/obj/structure/window/reinforced{
dir = 8
},
-/obj/item/card/id/captains_spare,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -53696,7 +53512,7 @@
},
/area/tcommsat/server)
"cex" = (
-/obj/machinery/message_server,
+/obj/machinery/telecomms/message_server,
/obj/structure/cable/white{
icon_state = "4-8"
},
@@ -54096,7 +53912,6 @@
/obj/structure/cable/white{
icon_state = "2-4"
},
-/obj/effect/landmark/lightsout,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -54286,7 +54101,7 @@
pixel_x = -3;
pixel_y = -3
},
-/obj/structure/sign/electricshock{
+/obj/structure/sign/warning/electricshock{
pixel_x = 32
},
/turf/open/floor/plasteel/vault{
@@ -54306,7 +54121,7 @@
/turf/open/floor/plating/airless,
/area/engine/engineering)
"cfC" = (
-/obj/structure/sign/vacuum,
+/obj/structure/sign/warning/vacuum,
/turf/closed/wall/r_wall,
/area/engine/engineering)
"cfD" = (
@@ -54454,7 +54269,7 @@
/turf/open/floor/plasteel,
/area/engine/engineering)
"cfQ" = (
-/obj/structure/sign/electricshock{
+/obj/structure/sign/warning/electricshock{
pixel_x = 32
},
/obj/item/device/radio/intercom{
@@ -54504,7 +54319,7 @@
dir = 8
},
/obj/item/twohanded/required/kirbyplants/random,
-/obj/structure/sign/kiddieplaque/library{
+/obj/structure/sign/plaques/kiddie/library{
pixel_x = -32
},
/turf/open/floor/wood,
@@ -54529,7 +54344,7 @@
/turf/open/floor/wood,
/area/library)
"cfZ" = (
-/obj/structure/sign/nosmoking_2,
+/obj/structure/sign/warning/nosmoking,
/turf/closed/wall,
/area/library)
"cga" = (
@@ -54542,7 +54357,7 @@
},
/area/library)
"cgb" = (
-/obj/structure/sign/kiddieplaque/library{
+/obj/structure/sign/plaques/kiddie/library{
pixel_x = -32
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -54551,7 +54366,7 @@
},
/area/hallway/primary/central)
"cgc" = (
-/obj/structure/sign/electricshock,
+/obj/structure/sign/warning/electricshock,
/turf/closed/wall/r_wall,
/area/crew_quarters/heads/hop)
"cgd" = (
@@ -55382,7 +55197,7 @@
/obj/machinery/computer/atmos_alert{
dir = 1
},
-/obj/structure/sign/nosmoking_1{
+/obj/structure/sign/warning/nosmoking/circle{
pixel_x = 28;
pixel_y = -28
},
@@ -56401,12 +56216,6 @@
dir = 5
},
/area/security/courtroom)
-"cjW" = (
-/obj/effect/landmark/lightsout,
-/turf/open/floor/plasteel/vault{
- dir = 5
- },
-/area/security/courtroom)
"cjX" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/public/glass{
@@ -56828,13 +56637,6 @@
},
/turf/open/floor/plasteel/grimy,
/area/library)
-"ckS" = (
-/obj/effect/landmark/lightsout,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/grimy,
-/area/library)
"ckT" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 1
@@ -56887,7 +56689,7 @@
},
/area/tcommsat/server)
"cla" = (
-/obj/structure/sign/electricshock{
+/obj/structure/sign/warning/electricshock{
pixel_y = -32
},
/turf/open/floor/plasteel/vault/telecomms{
@@ -56929,7 +56731,7 @@
/obj/machinery/light{
dir = 8
},
-/obj/structure/sign/securearea{
+/obj/structure/sign/warning/securearea{
pixel_x = -32
},
/turf/open/floor/plasteel/neutral/corner{
@@ -57189,7 +56991,7 @@
/turf/open/floor/plating,
/area/security/range)
"clG" = (
-/obj/structure/sign/securearea{
+/obj/structure/sign/warning/securearea{
pixel_y = 32
},
/obj/machinery/light{
@@ -58112,7 +57914,7 @@
/area/ai_monitored/turret_protected/ai_upload)
"cnv" = (
/obj/machinery/porta_turret/ai,
-/obj/structure/sign/electricshock{
+/obj/structure/sign/warning/electricshock{
pixel_y = -32
},
/turf/open/floor/plasteel/vault{
@@ -58190,7 +57992,7 @@
/turf/open/floor/plating/airless,
/area/space/nearstation)
"cnC" = (
-/obj/structure/sign/radiation,
+/obj/structure/sign/warning/radiation,
/turf/closed/wall/r_wall,
/area/engine/engineering)
"cnD" = (
@@ -58803,7 +58605,7 @@
/turf/open/floor/plating,
/area/security/range)
"coS" = (
-/obj/structure/sign/securearea{
+/obj/structure/sign/warning/securearea{
pixel_y = -32
},
/obj/machinery/light,
@@ -58932,7 +58734,7 @@
/turf/open/floor/plasteel,
/area/engine/engineering)
"cph" = (
-/obj/structure/sign/securearea,
+/obj/structure/sign/warning/securearea,
/turf/closed/wall/r_wall,
/area/engine/engineering)
"cpi" = (
@@ -58960,7 +58762,7 @@
/obj/machinery/shieldgen,
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/obj/structure/sign/nosmoking_2{
+/obj/structure/sign/warning/nosmoking{
pixel_y = 32
},
/obj/effect/turf_decal/bot,
@@ -59614,7 +59416,7 @@
/turf/open/floor/plasteel,
/area/maintenance/port)
"cqK" = (
-/obj/structure/sign/securearea,
+/obj/structure/sign/warning/securearea,
/turf/closed/wall/r_wall,
/area/maintenance/port)
"cqL" = (
@@ -59715,7 +59517,7 @@
/turf/open/floor/plating,
/area/hallway/secondary/command)
"cra" = (
-/obj/structure/sign/securearea,
+/obj/structure/sign/warning/securearea,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/closed/wall/r_wall,
/area/hallway/secondary/command)
@@ -59965,7 +59767,7 @@
/turf/open/floor/plasteel,
/area/maintenance/starboard)
"crD" = (
-/obj/structure/sign/electricshock{
+/obj/structure/sign/warning/electricshock{
pixel_x = -32;
pixel_y = 32
},
@@ -60169,7 +59971,7 @@
/obj/machinery/light/small{
dir = 4
},
-/obj/structure/sign/fire{
+/obj/structure/sign/warning/fire{
pixel_x = 32
},
/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
@@ -60365,7 +60167,7 @@
},
/area/hallway/secondary/command)
"cst" = (
-/obj/structure/sign/electricshock{
+/obj/structure/sign/warning/electricshock{
pixel_y = 32
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -60468,7 +60270,7 @@
},
/area/hallway/secondary/command)
"csC" = (
-/obj/structure/sign/electricshock{
+/obj/structure/sign/warning/electricshock{
pixel_y = 32
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -61235,7 +61037,7 @@
/obj/structure/cable/white{
icon_state = "4-8"
},
-/obj/structure/sign/electricshock{
+/obj/structure/sign/warning/electricshock{
pixel_x = -32;
pixel_y = -32
},
@@ -61321,7 +61123,7 @@
/obj/structure/cable/white{
icon_state = "4-8"
},
-/obj/structure/sign/electricshock{
+/obj/structure/sign/warning/electricshock{
pixel_x = 32;
pixel_y = -32
},
@@ -61904,7 +61706,6 @@
icon_state = "1-2"
},
/obj/machinery/holopad,
-/obj/effect/landmark/lightsout,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
/area/hallway/secondary/command)
@@ -62682,10 +62483,6 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/neutral,
/area/hallway/primary/central)
-"cxe" = (
-/obj/effect/landmark/lightsout,
-/turf/open/floor/plasteel/neutral,
-/area/hallway/primary/central)
"cxf" = (
/obj/machinery/door/firedoor,
/obj/effect/turf_decal/stripes/line{
@@ -62889,17 +62686,6 @@
},
/turf/open/floor/plating/airless,
/area/space/nearstation)
-"cxC" = (
-/obj/machinery/power/rad_collector/anchored,
-/obj/machinery/power/rad_collector/anchored,
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/engine/engineering)
"cxD" = (
/obj/structure/rack,
/obj/item/crowbar,
@@ -62953,7 +62739,7 @@
"cxI" = (
/obj/item/twohanded/required/kirbyplants/random,
/obj/effect/decal/cleanable/dirt,
-/obj/structure/sign/electricshock{
+/obj/structure/sign/warning/electricshock{
pixel_y = 32
},
/obj/effect/turf_decal/bot,
@@ -63556,16 +63342,6 @@
},
/turf/open/floor/plasteel/neutral,
/area/crew_quarters/locker)
-"cyT" = (
-/obj/effect/landmark/lightsout,
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel/neutral,
-/area/crew_quarters/locker)
"cyU" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 9
@@ -63853,7 +63629,7 @@
dir = 8
},
/obj/machinery/disposal/bin,
-/obj/structure/sign/kiddieplaque/library{
+/obj/structure/sign/plaques/kiddie/library{
pixel_x = -32
},
/obj/structure/disposalpipe/trunk{
@@ -64518,7 +64294,7 @@
},
/obj/item/clothing/mask/breath,
/obj/item/clothing/mask/breath,
-/obj/structure/sign/nosmoking_2{
+/obj/structure/sign/warning/nosmoking{
pixel_y = 32
},
/obj/effect/decal/cleanable/dirt,
@@ -65317,7 +65093,7 @@
/area/engine/storage)
"cCB" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/sign/nosmoking_2{
+/obj/structure/sign/warning/nosmoking{
pixel_x = 32
},
/obj/structure/tank_dispenser,
@@ -66031,7 +65807,6 @@
/turf/open/floor/plasteel,
/area/engine/engineering)
"cEb" = (
-/obj/effect/landmark/lightsout,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -67328,13 +67103,6 @@
},
/turf/open/floor/plasteel,
/area/gateway)
-"cGG" = (
-/obj/structure/cable/white{
- icon_state = "1-2"
- },
-/obj/effect/landmark/lightsout,
-/turf/open/floor/plasteel/neutral,
-/area/hallway/primary/central)
"cGH" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/mirror{
@@ -67660,7 +67428,7 @@
"cHq" = (
/obj/item/twohanded/required/kirbyplants/random,
/obj/effect/decal/cleanable/dirt,
-/obj/structure/sign/electricshock{
+/obj/structure/sign/warning/electricshock{
pixel_y = -32
},
/obj/effect/turf_decal/bot,
@@ -67881,7 +67649,7 @@
/turf/open/floor/plating,
/area/bridge/showroom/corporate)
"cHN" = (
-/obj/structure/sign/electricshock,
+/obj/structure/sign/warning/electricshock,
/turf/closed/wall/r_wall,
/area/bridge/showroom/corporate)
"cHO" = (
@@ -68233,16 +68001,6 @@
},
/turf/closed/wall,
/area/maintenance/port)
-"cIz" = (
-/obj/effect/landmark/lightsout,
-/obj/structure/cable/white{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/neutral,
-/area/hallway/primary/central)
"cIA" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
/turf/open/floor/plasteel/neutral/corner{
@@ -69736,7 +69494,6 @@
/turf/open/floor/plasteel/neutral,
/area/crew_quarters/dorms)
"cLd" = (
-/obj/effect/landmark/lightsout,
/turf/open/floor/plasteel/neutral,
/area/crew_quarters/dorms)
"cLe" = (
@@ -69755,9 +69512,6 @@
},
/turf/open/floor/plasteel/neutral,
/area/crew_quarters/dorms)
-"cLh" = (
-/turf/open/floor/plasteel/neutral,
-/area/crew_quarters/dorms)
"cLi" = (
/obj/item/twohanded/required/kirbyplants/random,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -69798,7 +69552,7 @@
},
/area/crew_quarters/fitness/recreation)
"cLn" = (
-/obj/structure/sign/nosmoking_2,
+/obj/structure/sign/warning/nosmoking,
/turf/closed/wall,
/area/crew_quarters/fitness/recreation)
"cLo" = (
@@ -70465,7 +70219,6 @@
/obj/structure/cable/white{
icon_state = "1-2"
},
-/obj/effect/landmark/lightsout,
/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,
/obj/structure/disposalpipe/junction/flip{
dir = 1
@@ -70530,7 +70283,7 @@
/turf/closed/wall,
/area/maintenance/department/electrical)
"cMP" = (
-/obj/structure/sign/securearea,
+/obj/structure/sign/warning/securearea,
/turf/closed/wall,
/area/maintenance/department/electrical)
"cMQ" = (
@@ -70552,7 +70305,7 @@
/turf/closed/wall,
/area/maintenance/department/electrical)
"cMS" = (
-/obj/structure/sign/electricshock,
+/obj/structure/sign/warning/electricshock,
/turf/closed/wall,
/area/maintenance/department/electrical)
"cMT" = (
@@ -70728,7 +70481,7 @@
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"cNo" = (
-/obj/structure/sign/science,
+/obj/structure/sign/departments/science,
/turf/closed/wall,
/area/hallway/primary/central)
"cNp" = (
@@ -70864,7 +70617,7 @@
/turf/open/floor/plasteel,
/area/medical/medbay/central)
"cND" = (
-/obj/structure/sign/bluecross_2,
+/obj/structure/sign/departments/medbay/alt,
/turf/closed/wall,
/area/medical/medbay/central)
"cNE" = (
@@ -71542,7 +71295,7 @@
},
/area/science/research)
"cPi" = (
-/obj/structure/sign/science,
+/obj/structure/sign/departments/science,
/turf/closed/wall,
/area/science/research)
"cPj" = (
@@ -72996,13 +72749,6 @@
},
/turf/open/floor/plasteel/whitepurple/corner,
/area/science/research)
-"cSt" = (
-/obj/effect/landmark/lightsout,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/whitepurple/corner,
-/area/science/research)
"cSu" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -73541,7 +73287,7 @@
/turf/open/floor/circuit/green,
/area/science/xenobiology)
"cTA" = (
-/obj/structure/sign/electricshock,
+/obj/structure/sign/warning/electricshock,
/turf/closed/wall/r_wall,
/area/science/xenobiology)
"cTB" = (
@@ -73590,7 +73336,7 @@
/turf/open/floor/plasteel,
/area/science/xenobiology)
"cTG" = (
-/obj/structure/sign/xenobio,
+/obj/structure/sign/departments/xenobio,
/turf/closed/wall,
/area/science/xenobiology)
"cTH" = (
@@ -73630,7 +73376,7 @@
/turf/open/floor/plasteel,
/area/science/xenobiology)
"cTK" = (
-/obj/structure/sign/electricshock,
+/obj/structure/sign/warning/electricshock,
/turf/closed/wall,
/area/science/xenobiology)
"cTL" = (
@@ -73687,7 +73433,7 @@
/turf/open/floor/plasteel,
/area/science/xenobiology)
"cTP" = (
-/obj/structure/sign/biohazard,
+/obj/structure/sign/warning/biohazard,
/turf/closed/wall,
/area/science/xenobiology)
"cTQ" = (
@@ -73928,7 +73674,6 @@
},
/area/hallway/primary/aft)
"cUp" = (
-/obj/effect/landmark/lightsout,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -74013,13 +73758,6 @@
},
/turf/open/floor/plasteel/cmo,
/area/medical/medbay/central)
-"cUy" = (
-/obj/effect/landmark/lightsout,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/cmo,
-/area/medical/medbay/central)
"cUz" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -75109,7 +74847,7 @@
/obj/machinery/atmospherics/components/binary/valve{
dir = 1
},
-/obj/structure/sign/nosmoking_2{
+/obj/structure/sign/warning/nosmoking{
pixel_x = -32
},
/obj/effect/turf_decal/stripes/line{
@@ -75187,7 +74925,7 @@
/turf/open/floor/plasteel,
/area/maintenance/department/electrical)
"cWT" = (
-/obj/structure/sign/nosmoking_2{
+/obj/structure/sign/warning/nosmoking{
pixel_x = 32
},
/obj/effect/turf_decal/delivery,
@@ -75326,7 +75064,6 @@
/obj/structure/cable/white{
icon_state = "4-8"
},
-/obj/effect/landmark/lightsout,
/obj/effect/turf_decal/stripes/line{
dir = 2
},
@@ -75645,7 +75382,7 @@
/area/medical/medbay/central)
"cXM" = (
/obj/structure/bed/roller,
-/obj/structure/sign/chemistry{
+/obj/structure/sign/departments/chemistry{
pixel_y = -32
},
/obj/machinery/light,
@@ -75724,7 +75461,7 @@
},
/area/medical/medbay/central)
"cXX" = (
-/obj/structure/sign/bluecross_2{
+/obj/structure/sign/departments/medbay/alt{
pixel_x = 32
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -76301,7 +76038,7 @@
/turf/open/floor/plasteel,
/area/science/research)
"cZi" = (
-/obj/structure/sign/science,
+/obj/structure/sign/departments/science,
/turf/closed/wall/r_wall,
/area/science/research)
"cZj" = (
@@ -76322,11 +76059,11 @@
/turf/open/floor/plasteel,
/area/science/research)
"cZk" = (
-/obj/structure/sign/securearea,
+/obj/structure/sign/warning/securearea,
/turf/closed/wall/r_wall,
/area/science/research)
"cZl" = (
-/obj/structure/sign/science,
+/obj/structure/sign/departments/science,
/turf/closed/wall,
/area/science/lab)
"cZm" = (
@@ -76868,7 +76605,7 @@
},
/area/maintenance/port)
"dao" = (
-/obj/structure/sign/securearea,
+/obj/structure/sign/warning/securearea,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/closed/wall,
/area/maintenance/department/electrical)
@@ -77130,7 +76867,7 @@
/turf/open/floor/plasteel,
/area/science/research)
"daP" = (
-/obj/structure/sign/nosmoking_2,
+/obj/structure/sign/warning/nosmoking,
/turf/closed/wall/r_wall,
/area/science/lab)
"daQ" = (
@@ -78317,7 +78054,7 @@
/obj/item/stack/medical/gauze,
/obj/item/stack/medical/bruise_pack,
/obj/item/stack/medical/ointment,
-/obj/structure/sign/nosmoking_2{
+/obj/structure/sign/warning/nosmoking{
pixel_y = 32
},
/obj/machinery/light/small{
@@ -78923,7 +78660,7 @@
/turf/open/floor/plating,
/area/maintenance/starboard/aft)
"deN" = (
-/obj/structure/sign/examroom{
+/obj/structure/sign/departments/examroom{
pixel_x = -32
},
/obj/item/twohanded/required/kirbyplants/random,
@@ -78952,7 +78689,7 @@
/turf/open/floor/plating,
/area/medical/abandoned)
"deT" = (
-/obj/structure/sign/bluecross_2,
+/obj/structure/sign/departments/medbay/alt,
/turf/closed/wall,
/area/medical/abandoned)
"deU" = (
@@ -79046,7 +78783,7 @@
/turf/open/floor/plating,
/area/maintenance/port)
"dfc" = (
-/obj/structure/sign/xenobio,
+/obj/structure/sign/departments/xenobio,
/turf/closed/wall/r_wall,
/area/science/xenobiology)
"dfd" = (
@@ -79186,7 +78923,7 @@
/turf/open/floor/plasteel,
/area/science/research)
"dfp" = (
-/obj/structure/sign/securearea,
+/obj/structure/sign/warning/securearea,
/turf/closed/wall,
/area/science/research)
"dfq" = (
@@ -79253,7 +78990,7 @@
/turf/open/floor/plasteel/whitepurple/corner,
/area/science/lab)
"dfv" = (
-/obj/structure/sign/chemistry,
+/obj/structure/sign/departments/chemistry,
/turf/closed/wall,
/area/medical/chemistry)
"dfw" = (
@@ -79391,7 +79128,7 @@
/turf/open/floor/plasteel,
/area/medical/medbay/central)
"dfH" = (
-/obj/structure/sign/examroom,
+/obj/structure/sign/departments/examroom,
/turf/closed/wall,
/area/medical/medbay/central)
"dfI" = (
@@ -80678,7 +80415,6 @@
icon_state = "4-8"
},
/obj/item/device/radio/beacon,
-/obj/effect/landmark/lightsout,
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/whiteblue,
/area/medical/medbay/central)
@@ -81122,7 +80858,7 @@
/obj/machinery/light{
dir = 1
},
-/obj/structure/sign/nosmoking_2{
+/obj/structure/sign/warning/nosmoking{
pixel_y = 32
},
/obj/effect/turf_decal/stripes/line,
@@ -81406,7 +81142,7 @@
/obj/structure/extinguisher_cabinet{
pixel_y = -32
},
-/obj/structure/sign/nosmoking_2{
+/obj/structure/sign/warning/nosmoking{
pixel_x = -32;
pixel_y = -32
},
@@ -81601,7 +81337,7 @@
/turf/open/floor/plasteel/neutral,
/area/medical/medbay/central)
"dkA" = (
-/obj/structure/sign/bluecross_2{
+/obj/structure/sign/departments/medbay/alt{
pixel_x = 32;
pixel_y = -32
},
@@ -81913,13 +81649,6 @@
"dlj" = (
/turf/open/floor/plasteel,
/area/science/circuit)
-"dlk" = (
-/obj/structure/table,
-/obj/item/paper_bin,
-/obj/item/pen,
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plasteel,
-/area/science/research/abandoned)
"dll" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 5
@@ -82042,7 +81771,7 @@
/turf/open/floor/plating,
/area/science/research)
"dlz" = (
-/obj/structure/sign/nosmoking_2,
+/obj/structure/sign/warning/nosmoking,
/turf/closed/wall,
/area/science/research)
"dlA" = (
@@ -82099,7 +81828,7 @@
/turf/open/floor/plating,
/area/crew_quarters/heads/hor)
"dlG" = (
-/obj/structure/sign/securearea,
+/obj/structure/sign/warning/securearea,
/turf/closed/wall/r_wall,
/area/crew_quarters/heads/hor)
"dlH" = (
@@ -82246,7 +81975,7 @@
/turf/open/floor/plating,
/area/medical/genetics/cloning)
"dlX" = (
-/obj/structure/sign/bluecross_2,
+/obj/structure/sign/departments/medbay/alt,
/turf/closed/wall,
/area/medical/genetics/cloning)
"dlY" = (
@@ -82400,7 +82129,7 @@
/obj/item/stack/sheet/metal/fifty,
/obj/item/stock_parts/cell/super,
/obj/item/stock_parts/cell/super,
-/obj/structure/sign/science{
+/obj/structure/sign/departments/science{
pixel_x = -32
},
/turf/open/floor/plasteel/white/side{
@@ -82442,7 +82171,6 @@
/area/science/circuit)
"dmw" = (
/obj/structure/disposalpipe/segment,
-/obj/effect/landmark/lightsout,
/turf/open/floor/plasteel/white/side{
dir = 10
},
@@ -82460,13 +82188,6 @@
},
/turf/open/floor/plasteel,
/area/science/research/abandoned)
-"dmz" = (
-/obj/structure/rack,
-/obj/item/storage/toolbox/electrical,
-/obj/item/device/multitool,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/science/research/abandoned)
"dmA" = (
/obj/effect/landmark/blobstart,
/obj/effect/turf_decal/bot,
@@ -82785,7 +82506,7 @@
/obj/machinery/light{
dir = 4
},
-/obj/structure/sign/nosmoking_2{
+/obj/structure/sign/warning/nosmoking{
pixel_x = 32
},
/obj/effect/turf_decal/bot,
@@ -82853,7 +82574,7 @@
/obj/machinery/light{
dir = 1
},
-/obj/structure/sign/nosmoking_2{
+/obj/structure/sign/warning/nosmoking{
pixel_y = 32
},
/turf/open/floor/plasteel/whitepurple/corner{
@@ -83001,7 +82722,7 @@
/turf/open/floor/plasteel/vault,
/area/medical/surgery)
"dnF" = (
-/obj/structure/sign/bluecross_2,
+/obj/structure/sign/departments/medbay/alt,
/turf/closed/wall,
/area/medical/surgery)
"dnG" = (
@@ -83502,7 +83223,6 @@
/area/science/research)
"doF" = (
/obj/machinery/holopad,
-/obj/effect/landmark/lightsout,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -84124,16 +83844,6 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/wood,
/area/crew_quarters/abandoned_gambling_den)
-"dpW" = (
-/obj/structure/table/reinforced,
-/obj/item/folder/white,
-/obj/item/stock_parts/cell/high,
-/obj/item/stack/sheet/glass,
-/obj/item/stack/sheet/glass,
-/obj/item/stack/sheet/glass,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/science/research/abandoned)
"dpX" = (
/obj/structure/chair/office/light{
dir = 8
@@ -84371,7 +84081,7 @@
/turf/open/floor/plasteel,
/area/science/explab)
"dqs" = (
-/obj/structure/sign/securearea,
+/obj/structure/sign/warning/securearea,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -85029,7 +84739,7 @@
},
/area/science/explab)
"drK" = (
-/obj/structure/sign/securearea,
+/obj/structure/sign/warning/securearea,
/turf/closed/wall/r_wall,
/area/science/explab)
"drL" = (
@@ -85055,7 +84765,7 @@
/turf/closed/wall/r_wall,
/area/science/mixing)
"drQ" = (
-/obj/structure/sign/fire,
+/obj/structure/sign/warning/fire,
/turf/closed/wall/r_wall,
/area/science/mixing)
"drR" = (
@@ -85086,7 +84796,7 @@
/turf/open/floor/plasteel,
/area/science/mixing)
"drT" = (
-/obj/structure/sign/biohazard,
+/obj/structure/sign/warning/biohazard,
/turf/closed/wall/r_wall,
/area/science/mixing)
"drU" = (
@@ -85421,7 +85131,7 @@
/turf/open/floor/plasteel/whiteblue/corner,
/area/medical/medbay/central)
"dsI" = (
-/obj/structure/sign/nosmoking_2,
+/obj/structure/sign/warning/nosmoking,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -85579,25 +85289,6 @@
/obj/item/book/manual/wiki/engineering_hacking,
/turf/open/floor/plating,
/area/crew_quarters/abandoned_gambling_den)
-"dtb" = (
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/science/research/abandoned)
-"dtc" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/door/airlock/maintenance_hatch{
- name = "Maintenance Hatch";
- req_access_txt = "12"
- },
-/obj/structure/barricade/wooden,
-/obj/effect/turf_decal/stripes/line{
- dir = 2
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/science/research/abandoned)
"dtd" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/closed/wall,
@@ -85880,7 +85571,7 @@
/turf/open/floor/plasteel/whiteblue/corner,
/area/medical/medbay/central)
"dtJ" = (
-/obj/structure/sign/bluecross_2,
+/obj/structure/sign/departments/medbay/alt,
/turf/closed/wall/r_wall,
/area/crew_quarters/heads/cmo)
"dtK" = (
@@ -86292,7 +85983,7 @@
/obj/machinery/light{
dir = 8
},
-/obj/structure/sign/securearea{
+/obj/structure/sign/warning/securearea{
pixel_x = -32
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -87276,12 +86967,6 @@
dir = 8
},
/area/hallway/primary/aft)
-"dwE" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/neutral,
-/area/hallway/primary/aft)
"dwF" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -87628,7 +87313,6 @@
/obj/structure/cable/white{
icon_state = "2-8"
},
-/obj/effect/landmark/lightsout,
/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
dir = 4
},
@@ -87872,7 +87556,7 @@
/obj/machinery/light{
dir = 8
},
-/obj/structure/sign/nosmoking_2{
+/obj/structure/sign/warning/nosmoking{
pixel_x = -32
},
/obj/machinery/atmospherics/components/unary/portables_connector/visible{
@@ -88017,7 +87701,7 @@
/turf/open/floor/plating,
/area/science/robotics/lab)
"dye" = (
-/obj/structure/sign/science,
+/obj/structure/sign/departments/science,
/turf/closed/wall,
/area/science/robotics/lab)
"dyf" = (
@@ -88728,7 +88412,7 @@
/obj/machinery/atmospherics/components/unary/portables_connector/visible{
dir = 8
},
-/obj/structure/sign/fire{
+/obj/structure/sign/warning/fire{
pixel_x = 32
},
/obj/effect/turf_decal/stripes/line{
@@ -88871,7 +88555,7 @@
/turf/open/floor/plasteel,
/area/science/robotics/lab)
"dzL" = (
-/obj/structure/sign/science{
+/obj/structure/sign/departments/science{
pixel_x = -32;
pixel_y = 32
},
@@ -88882,7 +88566,7 @@
},
/area/hallway/primary/aft)
"dzM" = (
-/obj/structure/sign/science{
+/obj/structure/sign/departments/science{
pixel_x = 32;
pixel_y = 32
},
@@ -89490,7 +89174,7 @@
dir = 1
},
/obj/machinery/light,
-/obj/structure/sign/nosmoking_2{
+/obj/structure/sign/warning/nosmoking{
pixel_y = -32
},
/obj/effect/turf_decal/stripes/end{
@@ -89555,7 +89239,7 @@
id = "geneticslab";
name = "Genetics Lab Shutters"
},
-/obj/structure/sign/electricshock{
+/obj/structure/sign/warning/electricshock{
pixel_y = -32
},
/turf/open/floor/plating,
@@ -90297,7 +89981,7 @@
/turf/open/floor/plasteel,
/area/medical/morgue)
"dCA" = (
-/obj/structure/sign/nosmoking_2,
+/obj/structure/sign/warning/nosmoking,
/turf/closed/wall,
/area/medical/morgue)
"dCB" = (
@@ -90532,7 +90216,7 @@
/turf/open/floor/plating,
/area/maintenance/starboard/aft)
"dDb" = (
-/obj/structure/sign/electricshock,
+/obj/structure/sign/warning/electricshock,
/turf/closed/wall/r_wall,
/area/maintenance/solars/starboard/aft)
"dDc" = (
@@ -90706,7 +90390,7 @@
/turf/open/floor/plasteel,
/area/science/mixing)
"dDs" = (
-/obj/structure/sign/fire,
+/obj/structure/sign/warning/fire,
/turf/closed/wall/r_wall,
/area/science/misc_lab/range)
"dDt" = (
@@ -91310,7 +90994,7 @@
},
/area/science/server)
"dEE" = (
-/obj/structure/sign/securearea,
+/obj/structure/sign/warning/securearea,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -91378,14 +91062,13 @@
/obj/machinery/computer/rdconsole/robotics{
dir = 8
},
-/obj/structure/sign/bluecross_2{
+/obj/structure/sign/departments/medbay/alt{
pixel_x = 32
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
/area/science/robotics/lab)
"dEP" = (
-/obj/effect/landmark/lightsout,
/obj/machinery/atmospherics/components/unary/vent_pump/on{
dir = 4
},
@@ -93351,7 +93034,7 @@
/obj/item/device/mmi,
/obj/item/device/mmi,
/obj/item/device/mmi,
-/obj/structure/sign/bluecross_2{
+/obj/structure/sign/departments/medbay/alt{
pixel_y = -32
},
/obj/effect/turf_decal/bot,
@@ -93382,7 +93065,7 @@
pixel_y = 16
},
/obj/item/circular_saw,
-/obj/structure/sign/nosmoking_2{
+/obj/structure/sign/warning/nosmoking{
pixel_y = -32
},
/obj/structure/mirror{
@@ -93918,7 +93601,7 @@
/turf/open/floor/plasteel,
/area/science/mixing)
"dJY" = (
-/obj/structure/sign/securearea,
+/obj/structure/sign/warning/securearea,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -94186,11 +93869,11 @@
/turf/open/floor/plating/airless,
/area/science/test_area)
"dKA" = (
-/obj/structure/sign/vacuum,
+/obj/structure/sign/warning/vacuum,
/turf/closed/wall,
/area/science/mixing)
"dKB" = (
-/obj/structure/sign/securearea,
+/obj/structure/sign/warning/securearea,
/turf/closed/wall,
/area/science/mixing)
"dKC" = (
@@ -95322,7 +95005,6 @@
/obj/structure/cable/white{
icon_state = "1-2"
},
-/obj/effect/landmark/lightsout,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -96463,7 +96145,7 @@
/turf/open/floor/plasteel,
/area/medical/medbay/central)
"dPp" = (
-/obj/structure/sign/biohazard,
+/obj/structure/sign/warning/biohazard,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/closed/wall/r_wall,
/area/medical/medbay/central)
@@ -96834,7 +96516,7 @@
icon_state = "0-2"
},
/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/sign/vacuum,
+/obj/structure/sign/warning/vacuum,
/turf/open/floor/plating,
/area/medical/virology)
"dQi" = (
@@ -97751,7 +97433,7 @@
/area/shuttle/escape)
"dRZ" = (
/obj/structure/closet/l3closet/virology,
-/obj/structure/sign/biohazard{
+/obj/structure/sign/warning/biohazard{
pixel_y = -32
},
/obj/effect/turf_decal/bot,
@@ -97768,7 +97450,7 @@
/area/medical/virology)
"dSb" = (
/obj/structure/closet/emcloset,
-/obj/structure/sign/securearea{
+/obj/structure/sign/warning/securearea{
pixel_y = -32
},
/obj/effect/turf_decal/bot,
@@ -98667,7 +98349,7 @@
/turf/open/floor/plasteel/vault,
/area/medical/virology)
"dTY" = (
-/obj/structure/sign/nosmoking_2,
+/obj/structure/sign/warning/nosmoking,
/turf/closed/wall,
/area/medical/virology)
"dTZ" = (
@@ -98777,7 +98459,7 @@
/obj/machinery/light{
dir = 1
},
-/obj/structure/sign/kiddieplaque/badger{
+/obj/structure/sign/plaques/kiddie/badger{
pixel_y = 32
},
/turf/open/floor/plasteel/vault{
@@ -98918,8 +98600,8 @@
},
/area/shuttle/escape)
"dUD" = (
-/turf/open/floor/plasteel/neutral,
-/area/shuttle/escape)
+/turf/open/space/basic,
+/area/space)
"dUE" = (
/obj/machinery/light{
dir = 4
@@ -99353,13 +99035,6 @@
dir = 8
},
/area/medical/virology)
-"dVB" = (
-/obj/structure/cable/white{
- icon_state = "1-2"
- },
-/obj/effect/landmark/lightsout,
-/turf/open/floor/plasteel/green,
-/area/medical/virology)
"dVC" = (
/obj/item/device/radio/intercom{
name = "Station Intercom";
@@ -100121,7 +99796,7 @@
/turf/open/floor/plasteel/whitegreen/corner,
/area/medical/virology)
"dXl" = (
-/obj/structure/sign/biohazard,
+/obj/structure/sign/warning/biohazard,
/turf/closed/wall,
/area/medical/virology)
"dXm" = (
@@ -100255,7 +99930,7 @@
/obj/structure/table,
/obj/item/stack/packageWrap,
/obj/item/hand_labeler,
-/obj/structure/sign/nosmoking_2{
+/obj/structure/sign/warning/nosmoking{
pixel_x = -32
},
/turf/open/floor/plasteel/vault{
@@ -100765,7 +100440,7 @@
/turf/open/floor/plasteel/white,
/area/shuttle/escape)
"dYL" = (
-/obj/structure/sign/bluecross_2,
+/obj/structure/sign/departments/medbay/alt,
/turf/closed/wall/mineral/titanium,
/area/shuttle/escape)
"dYM" = (
@@ -100800,7 +100475,7 @@
/area/medical/virology)
"dYQ" = (
/obj/structure/table/glass,
-/obj/structure/sign/deathsposal{
+/obj/structure/sign/warning/deathsposal{
pixel_y = -32
},
/obj/item/paper_bin,
@@ -101085,7 +100760,7 @@
/area/hallway/secondary/exit/departure_lounge)
"dZr" = (
/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/sign/vacuum,
+/obj/structure/sign/warning/vacuum,
/turf/open/floor/plating,
/area/hallway/secondary/exit/departure_lounge)
"dZs" = (
@@ -101413,18 +101088,6 @@
/turf/open/floor/plasteel/neutral,
/area/hallway/secondary/exit/departure_lounge)
"eab" = (
-/obj/machinery/door/airlock/shuttle{
- name = "Emergency Shuttle Airlock"
- },
-/obj/docking_port/mobile/emergency{
- dheight = 0;
- dwidth = 11;
- height = 18;
- name = "Delta emergency shuttle";
- width = 30;
- preferred_direction = 2;
- port_direction = 4
- },
/obj/docking_port/stationary{
dheight = 0;
dir = 4;
@@ -101435,14 +101098,8 @@
turf_type = /turf/open/space;
width = 30
},
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/shuttle/escape)
+/turf/open/space/basic,
+/area/space)
"eac" = (
/obj/structure/flora/ausbushes/grassybush,
/obj/structure/flora/ausbushes/lavendergrass,
@@ -101703,10 +101360,6 @@
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
/area/hallway/secondary/exit/departure_lounge)
-"eaF" = (
-/obj/effect/landmark/lightsout,
-/turf/open/floor/plasteel/neutral,
-/area/hallway/secondary/exit/departure_lounge)
"eaG" = (
/obj/structure/reagent_dispensers/fueltank,
/obj/item/device/radio/intercom{
@@ -101762,7 +101415,7 @@
/turf/open/floor/plating,
/area/medical/virology)
"eaL" = (
-/obj/structure/sign/vacuum,
+/obj/structure/sign/warning/vacuum,
/turf/closed/wall/r_wall,
/area/medical/virology)
"eaM" = (
@@ -101862,7 +101515,7 @@
},
/area/maintenance/port/aft)
"eaW" = (
-/obj/structure/sign/electricshock,
+/obj/structure/sign/warning/electricshock,
/turf/closed/wall/r_wall,
/area/maintenance/port/aft)
"eaX" = (
@@ -102387,7 +102040,7 @@
/obj/machinery/light{
dir = 4
},
-/obj/structure/sign/nosmoking_2{
+/obj/structure/sign/warning/nosmoking{
pixel_x = 32
},
/turf/open/floor/plasteel{
@@ -102510,7 +102163,7 @@
/turf/open/floor/plating,
/area/maintenance/solars/port/aft)
"ecn" = (
-/obj/structure/sign/electricshock,
+/obj/structure/sign/warning/electricshock,
/turf/closed/wall/r_wall,
/area/maintenance/solars/port/aft)
"eco" = (
@@ -103382,7 +103035,7 @@
/area/chapel/office)
"edW" = (
/obj/item/twohanded/required/kirbyplants/random,
-/obj/structure/sign/nosmoking_2{
+/obj/structure/sign/warning/nosmoking{
pixel_x = 32
},
/turf/open/floor/plasteel/grimy,
@@ -103517,7 +103170,7 @@
icon_state = "0-8"
},
/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/sign/vacuum,
+/obj/structure/sign/warning/vacuum,
/turf/open/floor/plating,
/area/security/checkpoint/escape)
"eek" = (
@@ -104947,10 +104600,6 @@
},
/turf/closed/wall,
/area/quartermaster/office)
-"ehu" = (
-/obj/machinery/rnd/protolathe/department/security,
-/turf/open/floor/plasteel/neutral,
-/area/security/main)
"ehv" = (
/turf/open/floor/plasteel/caution,
/area/engine/engineering)
@@ -104961,13 +104610,6 @@
},
/turf/open/floor/plasteel/caution,
/area/engine/engineering)
-"ehx" = (
-/obj/structure/cable/white{
- icon_state = "4-8"
- },
-/obj/machinery/rnd/protolathe/department/engineering,
-/turf/open/floor/plasteel/neutral,
-/area/engine/engineering)
"ehy" = (
/obj/effect/turf_decal/stripes/line{
dir = 2
@@ -104978,76 +104620,6 @@
/obj/effect/turf_decal/caution/stand_clear,
/turf/open/floor/plasteel,
/area/hallway/secondary/entry)
-"ehz" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 2
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/effect/turf_decal/caution/stand_clear,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"ehA" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 2
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/effect/turf_decal/caution/stand_clear,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"ehB" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 2
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/effect/turf_decal/caution/stand_clear,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"ehC" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 2
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/effect/turf_decal/caution/stand_clear,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"ehD" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 2
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/effect/turf_decal/caution/stand_clear,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"ehE" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 2
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/effect/turf_decal/caution/stand_clear,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"ehF" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 2
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/effect/turf_decal/caution/stand_clear,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
"ehG" = (
/obj/item/device/radio/intercom{
name = "Station Intercom";
@@ -105115,40 +104687,12 @@
/obj/effect/turf_decal/caution/stand_clear,
/turf/open/floor/plasteel,
/area/hallway/secondary/exit/departure_lounge)
-"ehN" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 2
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/effect/turf_decal/caution/stand_clear,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit/departure_lounge)
-"ehO" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 2
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/effect/turf_decal/caution/stand_clear,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit/departure_lounge)
"ehP" = (
/obj/machinery/computer/security/telescreen/entertainment{
pixel_y = -32
},
/turf/open/floor/plasteel/dark,
/area/library)
-"ehQ" = (
-/obj/structure/cable/white{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/effect/landmark/lightsout,
-/turf/open/floor/plasteel/grimy,
-/area/chapel/main)
"QNf" = (
/obj/machinery/autolathe,
/obj/machinery/door/window/southleft{
@@ -105160,7 +104704,9 @@
id = "rndlab1";
name = "Research and Development Shutter"
},
-/turf/open/floor/plating,
+/turf/open/floor/plasteel/whitepurple/side{
+ dir = 4
+ },
/area/science/lab)
"QNg" = (
/obj/effect/turf_decal/loading_area,
@@ -105180,12 +104726,6 @@
"QNi" = (
/turf/closed/wall,
/area/science/circuit)
-"QNj" = (
-/turf/closed/wall/r_wall,
-/area/science/circuit)
-"QNk" = (
-/turf/closed/wall/r_wall,
-/area/science/circuit)
"QNl" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/closed/wall/r_wall,
@@ -105194,9 +104734,6 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/closed/wall/r_wall,
/area/science/circuit)
-"QNn" = (
-/turf/closed/wall,
-/area/science/circuit)
"QNo" = (
/obj/structure/table/reinforced,
/obj/machinery/camera{
@@ -105228,13 +104765,6 @@
},
/turf/open/floor/plasteel,
/area/science/circuit)
-"QNr" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/closed/wall/r_wall,
-/area/science/circuit)
-"QNs" = (
-/turf/closed/wall,
-/area/science/circuit)
"QNt" = (
/obj/structure/chair/office/light{
dir = 8
@@ -105256,23 +104786,6 @@
dir = 9
},
/area/science/circuit)
-"QNw" = (
-/turf/open/floor/plasteel/white/side{
- dir = 5
- },
-/area/science/circuit)
-"QNx" = (
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel/white/side{
- dir = 9
- },
-/area/science/circuit)
-"QNy" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/science/circuit)
"QNz" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
@@ -105285,9 +104798,6 @@
},
/turf/open/floor/plasteel/whitepurple/side,
/area/science/misc_lab)
-"QNB" = (
-/turf/closed/wall,
-/area/science/circuit)
"QNC" = (
/obj/structure/table/reinforced,
/obj/item/device/integrated_electronics/analyzer,
@@ -105312,7 +104822,7 @@
name = "science camera";
network = list("SS13","RD")
},
-/obj/structure/sign/science{
+/obj/structure/sign/departments/science{
pixel_x = 32
},
/turf/open/floor/plasteel,
@@ -105342,9 +104852,6 @@
dir = 4
},
/area/science/misc_lab)
-"QNH" = (
-/turf/closed/wall,
-/area/science/circuit)
"QNI" = (
/obj/structure/table/reinforced,
/obj/item/device/integrated_electronics/analyzer,
@@ -105363,17 +104870,10 @@
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel,
/area/science/circuit)
-"QNL" = (
-/obj/effect/turf_decal/stripes/line,
-/turf/open/floor/plasteel,
-/area/science/circuit)
"QNM" = (
/obj/structure/sign/nanotrasen,
/turf/closed/wall/r_wall,
/area/science/circuit)
-"QNN" = (
-/turf/closed/wall,
-/area/science/circuit)
"QNO" = (
/turf/open/floor/plasteel/white/side{
dir = 6
@@ -105393,9 +104893,6 @@
dir = 6
},
/area/science/circuit)
-"QNR" = (
-/turf/closed/wall,
-/area/science/circuit)
"QNS" = (
/obj/structure/table/reinforced,
/obj/machinery/newscaster{
@@ -105439,15 +104936,9 @@
"QNX" = (
/turf/closed/wall/r_wall,
/area/science/misc_lab)
-"QNY" = (
-/turf/closed/wall,
-/area/science/circuit)
"QNZ" = (
/turf/closed/wall,
/area/science/misc_lab)
-"QOa" = (
-/turf/closed/wall/r_wall,
-/area/science/misc_lab)
"QOb" = (
/obj/machinery/power/apc{
areastring = "/area/science/research/abandoned";
@@ -130430,14 +129921,14 @@ cEo
ddO
cQt
dgl
-QNj
+dhR
djn
dle
dmr
dog
dle
drz
-QNj
+dhR
dul
dvZ
dxH
@@ -130687,14 +130178,14 @@ cRP
ddP
deW
cKk
-QNj
+dhR
QNo
QNt
QNC
QNI
dpX
QNS
-QNj
+dhR
djs
dlf
dxI
@@ -130944,14 +130435,14 @@ cMY
cMY
cCM
dgm
-QNj
+dhR
djp
QNu
dmt
doh
QNO
drA
-QNj
+dhR
dum
dli
dpZ
@@ -131208,7 +130699,7 @@ QND
QNJ
QNP
drB
-QNj
+dhR
QOb
QOc
QOh
@@ -131458,14 +130949,14 @@ dcb
cMY
deX
dgn
-QNj
+dhR
djr
QNu
dmv
doj
QNQ
QNT
-QNj
+dhR
dun
QOd
dxK
@@ -131715,14 +131206,14 @@ cNd
cMY
deX
dgo
-QNj
+dhR
QNp
-QNx
+dok
dmw
-QNx
+dok
dqa
drC
-QNj
+dhR
duo
dmu
QOi
@@ -131972,14 +131463,14 @@ cMY
cMY
deY
cKl
-QNj
+dhR
djt
-QNy
-QNy
+dmx
+dmx
dol
dqb
drD
-QNj
+dhR
dup
QOe
dxL
@@ -132229,14 +131720,14 @@ dcc
cMY
cOD
cKj
-QNj
+dhR
dju
dlj
dlj
QNK
dqc
QNU
-QNj
+dhR
duq
dlh
dxM
@@ -132486,14 +131977,14 @@ cRS
cMY
deZ
dgo
-QNj
+dhR
djv
dlj
dlj
QNK
dqb
drE
-QNj
+dhR
dur
QOf
dxN
@@ -132743,14 +132234,14 @@ dcd
cMY
deX
dgo
-QNj
+dhR
QNq
QNz
QNE
doo
dqd
drF
-QNj
+dhR
dus
dwa
dom
@@ -132953,7 +132444,7 @@ bBd
bDb
bEP
bGw
-bIj
+bIf
bKj
bMc
bOh
@@ -133003,11 +132494,11 @@ dgp
QNm
QNm
dll
-QNj
+dhR
QNM
dqe
-QNj
-QNj
+dhR
+dhR
dut
dwb
dxO
@@ -133384,28 +132875,28 @@ aaa
aaa
aaa
aaa
-aav
-aav
-aav
-aav
-aav
-aav
-aav
-aav
-aav
-aav
-aav
-acR
-acR
-aav
-aav
-aav
-aav
-acR
-acR
-acR
-aav
-aav
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -133640,29 +133131,29 @@ aaa
aaa
aaa
aaa
-aap
-aaw
-aaF
-aaT
-aav
-abw
-abI
-abU
-acg
-acw
-aav
-adk
-adz
-adS
-ael
-aeI
-aav
-afH
-aga
-agu
-agP
-ahd
-aav
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -133897,33 +133388,33 @@ aaa
aaa
aaa
aaa
-aap
-aaw
-aaG
-aaU
-aav
-abx
-abI
-aaL
-ach
-abo
-aav
-adl
-adA
-adT
-aem
-aeJ
-aav
-afI
-aen
-agv
-aen
-ahe
-aav
-aav
-aav
-acR
-acR
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -134155,33 +133646,33 @@ aab
aaa
aaa
aaa
-aav
-aav
-aaV
-aaq
-aaq
-abJ
-aaL
-aci
-acx
-aav
-adm
-adB
-adU
-aen
-aeK
-aav
-afJ
-aen
-agw
-agQ
-ahf
-aav
-ahI
-ahZ
-ait
-acR
-acR
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -134412,33 +133903,33 @@ aaa
aaa
aaa
aaa
-aav
-aaH
-aaW
-abk
-aaq
-aav
-aav
-acj
-aav
-aav
-aav
-aav
-acR
-aeo
-aeL
-aav
-acR
-agb
-agx
-aav
-aav
-aav
-ahJ
-aci
-ahh
-aiK
-acR
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -134669,33 +134160,33 @@ aaa
aaa
aaa
aaa
-aav
-aaI
-aaX
-abl
-aby
-abK
-abV
-ack
-acy
-acR
-adn
-adC
-adV
-aep
-aeM
-afl
-afK
-agc
-agy
-aaW
-aaW
-ahy
-aci
-aci
-aiu
-aiL
-acR
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -134925,34 +134416,34 @@ aaa
aaa
aaa
aaa
-aaq
-aaq
-aaq
-aaY
-abc
-aaW
-abL
-aaW
-acl
-aaW
-acS
-aaW
-abc
-adW
-aeq
-aaW
-afm
-afL
-agd
-agz
-agR
-abn
-aav
-ahK
-aia
-aci
-aiM
-acR
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -135182,34 +134673,34 @@ aaa
aaa
aaa
aaa
-aar
-aax
-aaJ
-aaZ
-aaW
-abz
-aaW
-abc
-aaW
-acz
-acT
-ado
-abc
-abc
-aaW
-aaW
-afn
-abc
-afn
-aaW
-aaW
-ahg
-aav
-ahL
-aib
-aiv
-aiN
-acR
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -135439,34 +134930,34 @@ aaa
aaa
aaa
aaa
-aaq
-aay
-aaq
-aba
-abm
-aaW
-aaW
-abW
-aaW
-aaW
-acS
-aaW
-aaW
-adX
-abc
-aaW
-afo
-afM
-age
-aaW
-aaW
-ahh
-aav
-aaY
-aci
-aci
-aiO
-acR
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -135697,33 +135188,33 @@ aaa
aaa
aaa
aaa
-aav
-aaK
-aaY
-abn
-abA
-abM
-abX
-acm
-acA
-acR
-adp
-adD
-aaW
-aer
-aaW
-afp
-afN
-agf
-agA
-aaW
-ahi
-ahy
-aci
-aci
-aiw
-aiP
-acR
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -135954,33 +135445,33 @@ aaa
aaa
aaa
aaa
-aav
-aaL
-aaW
-abo
-aaq
-aav
-aav
-abY
-aav
-aav
-aav
-aav
-adY
-aav
-aeN
-acR
-afO
-aav
-aav
-adY
-aav
-aav
-ahM
-aci
-aix
-aiy
-acR
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -136211,33 +135702,33 @@ aaa
aaa
aaa
aaa
-aav
-aav
-abb
-aaq
-aaq
-abN
-abY
-aci
-acB
-acB
-aav
-adE
-aci
-aav
-aeO
-afq
-aci
-agg
-aav
-aci
-ahj
-aav
-ahN
-aic
-aiy
-acR
-acR
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -136467,35 +135958,6 @@ aaa
aaa
aaa
aaa
-<<<<<<< HEAD
-aap
-aaw
-aaM
-abc
-aav
-aav
-aav
-aav
-acn
-acC
-acU
-aav
-adF
-aci
-aes
-aeP
-afr
-afP
-agh
-aes
-aci
-acU
-aav
-aav
-aav
-acR
-acR
-=======
aaa
aaa
aaa
@@ -136523,7 +135985,6 @@ aaa
aaa
aaa
aaa
->>>>>>> 2db9ecb... Morgue and Crematorium Repositions (#35113)
aaa
aaa
aaa
@@ -136754,29 +136215,29 @@ aaa
aaa
aaa
aaa
-aap
-aaz
-aaN
-abd
-aav
-abB
-abO
-abY
-aci
-acD
-acD
-aav
-adG
-aci
-aav
-aeQ
-afs
-afs
-agi
-aav
-aci
-ahk
-aav
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -137012,28 +136473,28 @@ aaa
aaa
aaa
aaa
-aav
-aav
-aav
-aav
-aav
-aav
-aav
-aav
-aav
-aav
-aav
-adH
-adZ
-aav
-aav
-acR
-acR
-aav
-aav
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
agS
-adH
-aav
+aaa
+aaa
aaa
aaa
aaa
@@ -137110,7 +136571,7 @@ cei
cfZ
chQ
cjt
-ckS
+ckR
cms
cnO
cpu
@@ -137866,7 +137327,7 @@ bBr
bDo
bEY
bGI
-bIy
+bGI
bGI
bGK
bOr
@@ -139597,15 +139058,15 @@ aaa
aaa
aaa
aaa
-aeT
-afQ
-aeT
-aeT
-agU
-aeT
-aeT
-ahQ
-aeT
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aad
adq
agk
@@ -139851,18 +139312,18 @@ aaa
aaa
aaa
aaa
-adI
-aet
-aeT
-aeT
-afR
-afR
-aeu
-aeu
-ahl
-afR
-afR
-afQ
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaO
aaO
aaO
@@ -139953,7 +139414,7 @@ bvM
bvM
bvM
bvM
-cIz
+bFE
cKu
bsO
cNm
@@ -140107,20 +139568,6 @@ aaa
aaa
aaa
aaa
-<<<<<<< HEAD
-adI
-aed
-aeu
-aeU
-afv
-aeu
-aeu
-aeu
-agV
-aeu
-aeu
-aeu
-=======
aaa
aaa
aaa
@@ -140133,7 +139580,6 @@ aaa
aaa
aaa
aaa
->>>>>>> 2db9ecb... Morgue and Crematorium Repositions (#35113)
aid
aiA
aeb
@@ -140204,7 +139650,7 @@ bUA
bWN
bYV
bYV
-ccy
+bYV
cem
bYV
bYV
@@ -140380,18 +139826,18 @@ aaa
aaa
aaa
aaa
-adI
-aev
-aeT
-aeT
-afS
-afS
-agD
-aeu
-aeu
-afS
-afS
-afQ
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaO
aaO
aaO
@@ -140531,7 +139977,7 @@ dKD
dUp
dVd
dVS
-ehQ
+dVd
dVd
dVd
dVd
@@ -140640,15 +140086,15 @@ aaa
aaa
aaa
aaa
-aeT
-afQ
-aeT
-aeT
-agU
-aeT
-aeT
-ahQ
-aeT
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aad
ads
agj
@@ -142287,7 +141733,7 @@ bsO
cNs
cPb
cQN
-cSt
+cSs
cUi
cQQ
cXw
@@ -142995,7 +142441,7 @@ aLL
aNh
aOK
aQt
-aSb
+aLL
aTI
aVs
aNh
@@ -143461,19 +142907,19 @@ aaa
aad
aaa
aaa
-acZ
-adu
-adv
-aef
-adv
-adw
-adw
-adw
-adw
-agG
-aef
-adv
-adv
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -143717,20 +143163,20 @@ abj
aaa
aad
aaa
-acE
-acZ
-adv
-adJ
-aeg
-aey
-aeY
-aeY
-aeY
-aeY
-agH
-aeg
-ahm
-adv
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -143877,7 +143323,7 @@ dXN
dYH
dZp
dZZ
-eaF
+dUx
ebm
dYH
ecH
@@ -143974,23 +143420,23 @@ abj
aaa
aad
aaa
-acE
-ada
-adw
-adK
-aeh
-aeh
-aeh
-aeh
-aeh
-aeh
-aeh
-aeh
-ahn
-adv
-adv
-adw
-adv
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaO
ajE
@@ -144231,23 +143677,23 @@ abj
aaa
aad
aaa
-acE
-ada
-adw
-adL
-aeh
-aeh
-aeZ
-aeZ
-aeZ
-aeZ
-agI
-aeh
-aho
-ahA
-ahT
-aie
-adw
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaO
ajw
@@ -144489,24 +143935,6 @@ aad
aad
aaa
acF
-<<<<<<< HEAD
-acZ
-adu
-adM
-aeh
-aez
-afa
-afy
-afU
-afy
-agJ
-agX
-ahp
-ahB
-ahU
-aif
-adw
-=======
aaa
aaa
aaa
@@ -144523,11 +143951,10 @@ aaa
aaa
aaa
aaa
->>>>>>> 2db9ecb... Morgue and Crematorium Repositions (#35113)
aaa
aaO
ajw
-akh
+akg
akL
aaO
amq
@@ -144638,7 +144065,7 @@ dqT
cPk
cXD
cPk
-dwE
+cUp
dlR
cPk
cPk
@@ -144764,23 +144191,23 @@ abj
aaa
aad
aaa
-acE
-ada
-adw
-adN
-aeh
-aeh
-aeY
-aeY
-aeY
-aeY
-agK
-aeh
-ahq
-ahC
-ahV
-aie
-adw
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaO
ajw
@@ -145021,23 +144448,23 @@ abj
aaa
aad
aaa
-acE
-ada
-adw
-adK
-aeh
-aeh
-aeh
-aeh
-aeh
-aeh
-aeh
-aeh
-ahr
-adv
-adv
-adw
-adv
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaO
ajw
@@ -145278,20 +144705,20 @@ abj
aaa
aad
aaa
-acE
-acZ
-adv
-adJ
-aei
-aeA
-aeZ
-aeZ
-aeZ
-aeZ
-agL
-aei
-ahs
-adv
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -145536,19 +144963,19 @@ aaa
aad
aaa
aaa
-acZ
-adu
-adv
-aef
-adv
-adw
-adw
-adw
-adw
-agG
-aef
-adv
-adv
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -146455,29 +145882,29 @@ aaa
aaa
aaa
aaa
-dQT
-dSV
-dSW
-dSW
-dSX
-dSX
-dSW
-dSW
-dYK
-dZs
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
eab
-dSW
-dSX
-dSX
-dSX
-dSW
-dYK
-dSW
-eeV
-dSW
-dSW
-dSW
-dSW
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -146711,30 +146138,30 @@ dNT
aaa
aaa
aaa
-dQS
-dRY
-dSW
-dTK
-dUC
-dVm
-dVm
-dWX
-dXP
-dWj
-dZt
-dWj
-dXP
-dVm
-dVm
-dVm
-dUC
-dWj
-dSW
-eeW
-efH
-egt
-egI
-dSW
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -146933,7 +146360,7 @@ cNB
cPr
cQW
cSF
-cUy
+cUx
cQT
cXL
cZt
@@ -146968,32 +146395,6 @@ dNS
aaa
aaa
aaa
-<<<<<<< HEAD
-dQS
-dRY
-dSX
-dTL
-dUD
-dUD
-dUD
-dUD
-dUD
-dUD
-dUD
-dUD
-dUD
-dUD
-dUD
-dUD
-dUD
-edE
-eel
-eeW
-eeW
-eeW
-egI
-dSX
-=======
aaa
aaa
aaa
@@ -147018,7 +146419,6 @@ aaa
aaa
aaa
aaa
->>>>>>> 2db9ecb... Morgue and Crematorium Repositions (#35113)
aaa
aaa
aaa
@@ -147252,30 +146652,30 @@ dNS
aaa
aaa
aaa
-dQS
-dRY
-dSX
-dTL
-dUD
-dVn
-dVn
-dVn
-dVn
-dVn
-dUD
-dVn
-dVn
-dVn
-dVn
-dVn
-dUD
-edE
-dSW
-eeX
-eeW
-eeW
-egJ
-dSW
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -147509,35 +146909,35 @@ dNT
aad
aaa
aaa
-dQT
-dQT
-dSW
-dTL
-dUD
-dVo
-dWh
-dWY
-dXQ
-dVo
-dUD
-eac
-dXQ
-ebn
-dWi
-eac
-dUD
-edE
-dSX
-eeX
-eeW
-egu
-egI
-dSW
-dSW
-dZs
-dSX
-dSW
-dSW
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aab
aaa
aaa
@@ -147766,35 +147166,35 @@ dNS
aaa
aaa
aaa
-dQS
-dRY
-dSW
-dTM
-dUD
-dVm
-dVm
-dVm
-dVm
-dVm
-dUD
-dVm
-dVm
-dVm
-dVm
-dVm
-dUD
-edE
-dSW
-eeY
-eeW
-egv
-egK
-dSW
-egR
-egW
-ehb
-ehi
-dSW
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -148023,35 +147423,35 @@ dNS
aaa
aaa
aaa
-dQS
-dRY
-dSX
-dTL
-dUD
-dUD
-dUD
-dUD
-dUD
-dUD
-dUD
-dUD
-dUD
-dUD
-dUD
-dUD
-dUD
-edF
-dSW
-dSW
-eel
-dSX
-dZs
-dSW
-egS
-egX
-ehc
-ehj
-dSX
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -148280,35 +147680,35 @@ dNT
aad
aaa
aaa
-dQT
-dQT
-dSW
-dTM
-dUD
-dVn
-dVn
-dVn
-dVn
-dVn
-dUD
-dVn
-dVn
-dVn
-dVn
-dVn
-dUD
-edE
-dSX
-eeZ
-efI
-egw
-egL
-dUF
-egT
-egT
-ehd
-ehk
-dSX
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -148537,35 +147937,35 @@ dNS
aaa
aaa
aaa
-dQS
-dRY
-dSX
-dTL
-dUD
-dVo
-dWi
-dWY
-dXQ
-dVo
-dUD
-eac
-dWh
-ebn
-ecd
-eac
-dUD
-edE
-eem
-dTL
-dUD
-dUD
-egM
-eem
-egT
-egT
-ehe
-ehl
-dSX
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -148794,35 +148194,35 @@ dNS
aaa
aaa
aaa
-dQS
-dRY
-dSX
-dTL
-dUD
-dVm
-dVm
-dVm
-dVm
-dVm
-dUD
-dVm
-dVm
-dVm
-dVm
-dVm
-dUD
-edE
-eem
-dTL
-dUD
-dUD
-egM
-eem
-egT
-egT
-ehf
-ehm
-dSX
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -149051,35 +148451,35 @@ dNT
aad
aaa
aaa
-dQT
-dQT
-dSW
-dTL
-dUD
-dUD
-dUD
-dUD
-dUD
-dUD
-dUD
-dUD
-dUD
-dUD
-dUD
-dUD
-dUD
-edE
-dSX
-efa
-efJ
-egx
-efM
-dUF
-egT
-egY
-ehd
-ehn
-dSX
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -149264,7 +148664,7 @@ bvM
bvM
bvM
bvM
-cGG
+bvM
bvM
bFE
cKE
@@ -149308,35 +148708,35 @@ dNS
aaa
aaa
aaa
-dQS
-dRY
-dSX
-dTK
-dUE
-dVn
-dWj
-dWj
-dVn
-dVn
-dZu
-dVn
-dVn
-dVn
-dWj
-dWj
-dUE
-dTK
-dSW
-dZs
-dSW
-dSW
-egN
-dSW
-egS
-egZ
-ehg
-eho
-dSX
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -149565,35 +148965,35 @@ dNS
aaa
aaa
aaa
-dQS
-dRY
-dSW
-dSW
-dUF
-dSX
-dWk
-dWk
-dSX
-dYL
-dSW
-dSW
-dSW
-dSW
-ece
-ece
-dSW
-dSW
-dSW
-efb
-efK
-egy
-egO
-dSW
-egU
-eha
-ehh
-ehp
-dSW
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -149822,35 +149222,35 @@ dNT
aad
aaa
aaa
-dQT
-dQT
-dSW
-dTN
-dUG
-dVp
-dWj
-dWj
-dXR
-dYM
-dSW
-ead
-eaG
-ebo
-dWj
-dWj
-edc
-edG
-dSW
-efc
-efL
-dSV
-dSW
-dSW
-dSW
-dZs
-dSX
-dSW
-dSW
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -150079,30 +149479,30 @@ dNS
aaa
aaa
aaa
-dQS
-dRY
-dSX
-dTO
-dUH
-dVq
-dUD
-dUD
-dXS
-dYN
-dZv
-dWj
-eaH
-ebp
-ebp
-ebp
-edd
-edH
-dSW
-efd
-efM
-egz
-egP
-dSW
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -150336,30 +149736,30 @@ dNS
aaa
aaa
aaa
-dQS
-dRY
-dSX
-dTP
-dUI
-dVr
-dUD
-dUD
-dXS
-dYN
-dZv
-dWj
-eaI
-ebq
-ebq
-ebq
-ede
-edH
-dSW
-efc
-efN
-dTL
-egP
-dSX
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -150593,30 +149993,30 @@ dNT
aaa
aaa
aaa
-dQS
-dRY
-dSW
-dTQ
-dUJ
-dVs
-dWl
-dWZ
-dXT
-dYO
-dYL
-eae
-eaJ
-ebr
-ecf
-ecf
-dTK
-edI
-dSW
-dTK
-efO
-egA
-egP
-dSW
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -150791,7 +150191,7 @@ ccX
ceO
cgC
cim
-cjW
+cjV
clk
cmS
cou
@@ -150851,29 +150251,29 @@ aaa
aaa
aaa
aaa
-dQT
-dSV
-dSW
-dSX
-dSX
-dSX
-dSX
-dSW
-dSW
-dZs
-dSW
-dSX
-dSX
-dSX
-dSX
-dSX
-dSW
-dSW
-dSX
-efP
-efP
-dSX
-dSW
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -151057,7 +150457,7 @@ crj
csM
cbk
cvM
-cxe
+cxa
bsE
cAm
cBL
@@ -152278,17 +151678,17 @@ atE
auM
aoE
aaa
-ayF
-ayF
-ayF
-aCe
+aaa
+aaa
+aaa
+aaa
aDi
-ayF
-aDi
-aGG
-ayF
-ayF
-ayF
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aad
@@ -152535,18 +151935,18 @@ atF
auN
aoE
aaa
-ayF
-azH
-aAL
-aAL
-aDj
-aEj
-aDj
-aDj
-aHY
-ayF
-ayF
-aLZ
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aad
aQQ
@@ -152792,20 +152192,6 @@ atG
auO
aoF
aaa
-<<<<<<< HEAD
-ayF
-azI
-aAM
-aCf
-aAM
-aAM
-aAM
-aAN
-aHZ
-aJw
-aKT
-aMa
-=======
aaa
aaa
aaa
@@ -152818,7 +152204,6 @@ aaa
aaa
aaa
aaa
->>>>>>> 2db9ecb... Morgue and Crematorium Repositions (#35113)
aaa
aad
aQR
@@ -152837,15 +152222,15 @@ bkf
aaa
aaa
aaa
-brc
-brc
-buu
-brc
-brc
-buu
-brc
-brc
-brc
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
bHr
bJj
@@ -153064,18 +152449,18 @@ aoE
aoF
aoF
aaa
-ayF
-azJ
-aAN
-aAN
-aAN
-aAM
-aAN
-aAM
-aIa
-aJw
-aKU
-aMa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aad
aQU
@@ -153085,24 +152470,24 @@ aVZ
aXG
aZi
aad
-bcH
-bcH
-bcI
+aaa
+aaa
+aaa
bgU
-bcI
-bcH
-bcH
aaa
aaa
-brd
-bsX
-buv
-bvU
-bxj
-byA
-bzZ
-brc
-bDU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
bHs
bJk
@@ -153321,18 +152706,18 @@ aad
aad
aaa
aaa
-ayF
-azK
-aAN
-aAM
-aAM
-aAM
-aAM
-aAM
-aIa
-aJx
-aKU
-aMa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aad
aQS
@@ -153342,26 +152727,6 @@ aWa
aXH
aQS
aad
-<<<<<<< HEAD
-bcH
-bem
-bfK
-bgV
-biv
-bkg
-bcH
-aaa
-aaa
-brd
-bsY
-buw
-bvV
-bxk
-byB
-bAa
-bBX
-bDU
-=======
aaa
aaa
aaa
@@ -153380,7 +152745,6 @@ aaa
aaa
aaa
aaa
->>>>>>> 2db9ecb... Morgue and Crematorium Repositions (#35113)
aaa
bHs
bJl
@@ -153599,18 +152963,18 @@ aac
aaa
aaa
aaa
-ayF
-azL
-aAO
-aCg
-aAO
-aEk
-aCg
-aAO
-aIb
-ayF
-ayF
-aMb
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aad
aQV
@@ -153620,31 +152984,24 @@ aQQ
aXI
aZj
aad
-<<<<<<< HEAD
-bcI
-ben
-bfL
-bgW
-biw
-bkh
-bmb
-=======
aaa
aaa
aaa
aaa
->>>>>>> 2db9ecb... Morgue and Crematorium Repositions (#35113)
aaa
aaa
-brd
-bsZ
-bux
-bvW
-bxl
-byC
-bAb
-brc
-bDU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
bHr
bJm
@@ -153863,17 +153220,17 @@ aaa
aaa
aaa
aaa
-ayF
-ayF
-ayF
-ayF
-ayF
-ayF
-aFl
-ayF
-ayF
-ayF
-ayF
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aad
@@ -153884,24 +153241,24 @@ aaa
aad
aad
aad
-bcH
-beo
-bfM
-bgX
-bix
-bki
-bcH
aaa
aaa
-brc
-brc
-buy
-brc
-brc
-brc
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
bAc
-brc
-brc
+aaa
+aaa
aaa
bHr
bHr
@@ -153982,7 +153339,7 @@ dSe
dSZ
dTS
dUP
-dVB
+dTS
dWv
dXj
dYc
@@ -154141,13 +153498,13 @@ aad
aad
aaa
aaa
-bcH
-bcH
-bcI
-bgY
-bcI
-bcH
-bcH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -154956,7 +154313,7 @@ csW
cux
cvX
cxo
-cyT
+cyR
cAt
cBY
cDz
@@ -155192,7 +154549,7 @@ bHu
bJq
bHu
bHu
-bPn
+bHu
bHu
bHu
bVi
@@ -158305,7 +157662,7 @@ cFB
cDI
cIj
cJr
-cLh
+cLd
cMC
cNV
cPV
@@ -158766,7 +158123,7 @@ aUy
aWg
aXM
aZu
-bbj
+bbd
bcP
bcM
aad
@@ -171261,4 +170618,3 @@ aaa
aaa
aaa
"}
-
diff --git a/_maps/map_files/MetaStation/MetaStation.dmm b/_maps/map_files/MetaStation/MetaStation.dmm
index 41af8f6816..7bcb98e417 100644
--- a/_maps/map_files/MetaStation/MetaStation.dmm
+++ b/_maps/map_files/MetaStation/MetaStation.dmm
@@ -478,7 +478,8 @@
/obj/docking_port/mobile/pod{
id = "pod2";
name = "escape pod 2";
- port_direction = 2
+ port_direction = 2;
+ timid = 0
},
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/pod_2)
@@ -788,11 +789,7 @@
/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";
+/obj/structure/sign/warning/vacuum/external{
pixel_y = 32
},
/obj/effect/turf_decal/stripes/line{
@@ -937,7 +934,6 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/door/poddoor/preopen{
id = "executionfireblast";
- layer = 2.9;
name = "blast door"
},
/obj/machinery/door/firedoor,
@@ -949,7 +945,6 @@
/obj/effect/spawner/structure/window/reinforced,
/obj/machinery/door/poddoor/preopen{
id = "executionfireblast";
- layer = 2.9;
name = "blast door"
},
/obj/machinery/door/firedoor,
@@ -984,7 +979,6 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/poddoor/preopen{
id = "executionfireblast";
- layer = 2.9;
name = "blast door"
},
/turf/open/floor/plasteel/darkred{
@@ -1548,7 +1542,8 @@
id = "pod3";
name = "escape pod 3";
port_direction = 2;
- preferred_direction = 4
+ preferred_direction = 4;
+ timid = 0
},
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/pod_3)
@@ -2069,7 +2064,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 5
},
-/obj/structure/sign/securearea{
+/obj/structure/sign/warning/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.";
name = "WARNING: Do Not Enter When Red Light Shows";
pixel_y = 32
@@ -2307,7 +2302,7 @@
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 1
},
-/obj/structure/sign/pods{
+/obj/structure/sign/warning/pods{
pixel_y = 30
},
/turf/open/floor/plasteel/red/corner{
@@ -2361,7 +2356,7 @@
/obj/item/twohanded/required/kirbyplants{
icon_state = "plant-16"
},
-/obj/structure/sign/securearea{
+/obj/structure/sign/warning/securearea{
desc = "A warning sign which reads 'WARNING: Criminally Insane Inmates', describing the possible hazards of those contained within.";
name = "WARNING: Criminally Insane Inmates";
pixel_y = 32
@@ -2566,7 +2561,7 @@
/area/crew_quarters/fitness/recreation)
"afz" = (
/obj/structure/closet/emcloset,
-/obj/structure/sign/pods{
+/obj/structure/sign/warning/pods{
pixel_y = 30
},
/turf/open/floor/plasteel/vault,
@@ -2720,15 +2715,6 @@
dir = 1
},
/area/security/prison)
-"afQ" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 2
- },
-/obj/effect/landmark/lightsout,
-/turf/open/floor/plasteel/red/corner{
- dir = 1
- },
-/area/security/prison)
"afR" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 1
@@ -3099,11 +3085,7 @@
/turf/open/floor/plating,
/area/maintenance/solars/port/fore)
"agD" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
- icon_state = "space";
- layer = 4;
- name = "EXTERNAL AIRLOCK";
+/obj/structure/sign/warning/vacuum/external{
pixel_x = 32
},
/turf/open/floor/plating{
@@ -3152,7 +3134,7 @@
/turf/open/floor/plasteel/vault,
/area/security/prison)
"agJ" = (
-/obj/structure/sign/securearea,
+/obj/structure/sign/warning/securearea,
/turf/closed/wall,
/area/security/prison)
"agK" = (
@@ -3181,7 +3163,7 @@
/turf/open/floor/plasteel,
/area/security/prison)
"agN" = (
-/obj/structure/sign/securearea{
+/obj/structure/sign/warning/securearea{
desc = "A warning sign which reads 'WARNING: Dangerous Inmates'.";
name = "\improper WARNING: Dangerous Inmates"
},
@@ -4223,7 +4205,6 @@
},
/obj/machinery/door/poddoor/preopen{
id = "Disposal Exit";
- layer = 3.1;
name = "disposal exit vent"
},
/turf/open/floor/plating,
@@ -4271,11 +4252,7 @@
/turf/open/floor/plating,
/area/maintenance/solars/port/fore)
"aji" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'HIGH VOLTAGE'";
- icon_state = "shock";
- name = "HIGH VOLTAGE"
- },
+/obj/structure/sign/warning/electricshock,
/turf/closed/wall,
/area/maintenance/solars/port/fore)
"ajj" = (
@@ -4624,10 +4601,7 @@
},
/area/engine/gravity_generator)
"akb" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'RADIOACTIVE AREA'";
- icon_state = "radiation";
- name = "RADIOACTIVE AREA";
+/obj/structure/sign/warning/radiation/rad_area{
pixel_y = 32
},
/obj/effect/turf_decal/bot_white,
@@ -4881,7 +4855,7 @@
/area/security/brig)
"akz" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/sign/pods{
+/obj/structure/sign/warning/pods{
pixel_x = 32
},
/turf/open/floor/plasteel/red/side{
@@ -5349,7 +5323,7 @@
dir = 2;
id = "garbage"
},
-/obj/structure/sign/vacuum{
+/obj/structure/sign/warning/vacuum{
pixel_x = -32
},
/turf/open/floor/plating,
@@ -7117,11 +7091,7 @@
pixel_x = 4
},
/obj/effect/decal/cleanable/cobweb,
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
- icon_state = "space";
- layer = 4;
- name = "EXTERNAL AIRLOCK";
+/obj/structure/sign/warning/vacuum/external{
pixel_y = 32
},
/turf/open/floor/plating,
@@ -7226,11 +7196,7 @@
/turf/open/floor/plating,
/area/maintenance/solars/starboard/fore)
"app" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
- icon_state = "space";
- layer = 4;
- name = "EXTERNAL AIRLOCK";
+/obj/structure/sign/warning/vacuum/external{
pixel_x = 32
},
/obj/effect/decal/cleanable/cobweb/cobweb2,
@@ -7270,7 +7236,7 @@
/turf/open/floor/plating,
/area/maintenance/disposal)
"apt" = (
-/obj/structure/sign/securearea{
+/obj/structure/sign/warning/securearea{
name = "\improper STAY CLEAR HEAVY MACHINERY"
},
/turf/closed/wall,
@@ -7331,7 +7297,7 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
-/obj/structure/sign/kiddieplaque/library{
+/obj/structure/sign/plaques/kiddie/library{
pixel_y = -32
},
/turf/open/floor/plasteel/neutral/corner{
@@ -7789,11 +7755,7 @@
/area/space/nearstation)
"aqC" = (
/obj/machinery/space_heater,
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
- icon_state = "space";
- layer = 4;
- name = "EXTERNAL AIRLOCK";
+/obj/structure/sign/warning/vacuum/external{
pixel_y = 32
},
/turf/open/floor/plating,
@@ -7833,11 +7795,7 @@
/area/maintenance/port/fore)
"aqH" = (
/obj/machinery/space_heater,
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
- icon_state = "space";
- layer = 4;
- name = "EXTERNAL AIRLOCK";
+/obj/structure/sign/warning/vacuum/external{
pixel_y = 32
},
/turf/open/floor/plating{
@@ -9134,11 +9092,7 @@
/turf/open/floor/plating,
/area/maintenance/solars/starboard/fore)
"atl" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'HIGH VOLTAGE'";
- icon_state = "shock";
- name = "HIGH VOLTAGE"
- },
+/obj/structure/sign/warning/electricshock,
/turf/closed/wall,
/area/maintenance/solars/starboard/fore)
"atm" = (
@@ -9368,10 +9322,6 @@
},
/turf/open/floor/plating,
/area/maintenance/port/fore)
-"atJ" = (
-/obj/effect/spawner/structure/window/shuttle,
-/turf/open/floor/plating,
-/area/shuttle/labor)
"atK" = (
/obj/machinery/computer/gulag_teleporter_computer{
dir = 1
@@ -9401,7 +9351,7 @@
},
/area/security/brig)
"atO" = (
-/obj/structure/sign/pods,
+/obj/structure/sign/warning/pods,
/turf/closed/wall/r_wall,
/area/security/warden)
"atP" = (
@@ -9568,7 +9518,6 @@
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 4
},
-/obj/effect/landmark/lightsout,
/turf/open/floor/plasteel,
/area/crew_quarters/dorms)
"auj" = (
@@ -9656,11 +9605,8 @@
/area/maintenance/starboard)
"auu" = (
/obj/structure/closet/radiation,
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'RADIOACTIVE AREA'";
+/obj/structure/sign/warning/radiation/rad_area{
dir = 1;
- icon_state = "radiation";
- name = "RADIOACTIVE AREA";
pixel_y = 32
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -9683,11 +9629,8 @@
c_tag = "Gravity Generator Foyer"
},
/obj/structure/closet/radiation,
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'RADIOACTIVE AREA'";
+/obj/structure/sign/warning/radiation/rad_area{
dir = 1;
- icon_state = "radiation";
- name = "RADIOACTIVE AREA";
pixel_y = 32
},
/obj/machinery/airalarm{
@@ -9734,11 +9677,7 @@
/area/maintenance/starboard/fore)
"auB" = (
/obj/structure/closet/emcloset,
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
- icon_state = "space";
- layer = 4;
- name = "EXTERNAL AIRLOCK";
+/obj/structure/sign/warning/vacuum/external{
pixel_x = 32
},
/turf/open/floor/plating,
@@ -9755,11 +9694,7 @@
icon_state = "crateopen";
opened = 1
},
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
- icon_state = "space";
- layer = 4;
- name = "EXTERNAL AIRLOCK";
+/obj/structure/sign/warning/vacuum/external{
pixel_y = 32
},
/obj/effect/decal/cleanable/cobweb,
@@ -9859,40 +9794,12 @@
},
/turf/open/floor/plating,
/area/maintenance/port/fore)
-"auQ" = (
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/labor)
-"auR" = (
-/obj/machinery/computer/shuttle/labor{
- dir = 4
- },
-/obj/structure/reagent_dispensers/peppertank{
- pixel_x = -31
- },
-/turf/open/floor/mineral/plastitanium/brig,
-/area/shuttle/labor)
-"auS" = (
-/obj/structure/chair/office/dark{
- dir = 1
- },
-/turf/open/floor/mineral/plastitanium/brig,
-/area/shuttle/labor)
-"auT" = (
-/obj/structure/table,
-/obj/item/folder/red,
-/obj/item/restraints/handcuffs,
-/turf/open/floor/mineral/plastitanium/brig,
-/area/shuttle/labor)
"auU" = (
/obj/structure/disposalpipe/segment{
dir = 6
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
- icon_state = "space";
- layer = 4;
- name = "EXTERNAL AIRLOCK";
+/obj/structure/sign/warning/vacuum/external{
pixel_x = -32
},
/turf/open/floor/plasteel/red/corner{
@@ -10163,11 +10070,8 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'RADIOACTIVE AREA'";
+/obj/structure/sign/warning/radiation/rad_area{
dir = 1;
- icon_state = "radiation";
- name = "RADIOACTIVE AREA";
pixel_y = 32
},
/obj/effect/turf_decal/stripes/line{
@@ -10256,11 +10160,8 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'RADIOACTIVE AREA'";
+/obj/structure/sign/warning/radiation/rad_area{
dir = 1;
- icon_state = "radiation";
- name = "RADIOACTIVE AREA";
pixel_y = 32
},
/obj/effect/turf_decal/stripes/line{
@@ -10354,11 +10255,7 @@
/turf/open/floor/plating,
/area/maintenance/port/fore)
"avK" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
- icon_state = "space";
- layer = 4;
- name = "EXTERNAL AIRLOCK";
+/obj/structure/sign/warning/vacuum/external{
pixel_y = 32
},
/obj/effect/turf_decal/stripes/line{
@@ -10463,34 +10360,6 @@
},
/turf/open/floor/plating,
/area/maintenance/port/fore)
-"avU" = (
-/turf/open/floor/mineral/plastitanium/brig,
-/area/shuttle/labor)
-"avV" = (
-/obj/machinery/button/flasher{
- id = "gulagshuttleflasher";
- name = "Flash Control";
- pixel_y = -26;
- req_access_txt = "1"
- },
-/obj/machinery/light,
-/turf/open/floor/mineral/plastitanium/brig,
-/area/shuttle/labor)
-"avW" = (
-/obj/machinery/mineral/labor_claim_console{
- machinedir = 2;
- pixel_x = 30;
- pixel_y = 30
- },
-/turf/open/floor/mineral/plastitanium/brig,
-/area/shuttle/labor)
-"avX" = (
-/obj/machinery/door/airlock/titanium{
- name = "Labor Shuttle Airlock";
- req_access_txt = "2"
- },
-/turf/open/floor/mineral/plastitanium/brig,
-/area/shuttle/labor)
"avY" = (
/obj/machinery/door/airlock/external{
name = "Labor Camp Shuttle Airlock";
@@ -10663,7 +10532,6 @@
/obj/structure/cable/yellow{
icon_state = "2-8"
},
-/obj/effect/landmark/lightsout,
/turf/open/floor/plasteel,
/area/security/brig)
"awn" = (
@@ -10891,13 +10759,6 @@
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
/area/maintenance/port/fore)
-"awN" = (
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/mining)
-"awO" = (
-/obj/effect/spawner/structure/window/shuttle,
-/turf/open/floor/plating,
-/area/shuttle/mining)
"awP" = (
/obj/item/clothing/gloves/color/rainbow,
/obj/item/clothing/shoes/sneakers/rainbow,
@@ -10954,20 +10815,6 @@
"awW" = (
/turf/closed/wall/r_wall,
/area/security/nuke_storage)
-"awX" = (
-/obj/machinery/door/airlock/titanium{
- name = "Labor Shuttle Airlock";
- req_access_txt = "2"
- },
-/turf/open/floor/plasteel/dark,
-/area/shuttle/labor)
-"awY" = (
-/obj/machinery/mineral/stacking_machine/laborstacker{
- input_dir = 2;
- output_dir = 1
- },
-/turf/open/floor/plasteel/dark,
-/area/shuttle/labor)
"awZ" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 8
@@ -11307,15 +11154,6 @@
dir = 1
},
/area/crew_quarters/dorms)
-"axH" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/dorms)
"axI" = (
/obj/machinery/door/airlock{
id_tag = "Cabin5";
@@ -11464,7 +11302,7 @@
/turf/open/floor/plasteel,
/area/engine/engineering)
"axV" = (
-/obj/structure/sign/securearea{
+/obj/structure/sign/warning/securearea{
pixel_y = 32
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -11497,7 +11335,7 @@
dir = 8;
name = "emergency shower"
},
-/obj/structure/sign/securearea{
+/obj/structure/sign/warning/securearea{
pixel_y = 32
},
/obj/effect/turf_decal/stripes/line{
@@ -11543,14 +11381,6 @@
/obj/item/stack/rods,
/turf/open/floor/plating/airless,
/area/space/nearstation)
-"ayg" = (
-/obj/structure/table,
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/mining)
-"ayh" = (
-/obj/machinery/computer/shuttle/mining,
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/mining)
"ayi" = (
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
@@ -11639,16 +11469,6 @@
dir = 8
},
/area/security/nuke_storage)
-"ayt" = (
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/labor)
-"ayu" = (
-/obj/machinery/mineral/labor_claim_console{
- machinedir = 1;
- pixel_x = 30
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/labor)
"ayw" = (
/obj/effect/spawner/structure/window/reinforced,
/obj/structure/cable/yellow{
@@ -11964,15 +11784,6 @@
/obj/item/stack/cable_coil,
/turf/open/floor/plating/airless,
/area/space/nearstation)
-"azh" = (
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/mining)
-"azi" = (
-/obj/structure/chair{
- dir = 1
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/mining)
"azj" = (
/obj/item/ore/iron,
/obj/effect/turf_decal/stripes/line{
@@ -12170,22 +11981,6 @@
dir = 1
},
/area/security/nuke_storage)
-"azA" = (
-/obj/structure/chair{
- dir = 4
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/labor)
-"azB" = (
-/obj/structure/chair{
- dir = 8
- },
-/obj/machinery/flasher{
- id = "gulagshuttleflasher";
- pixel_x = 25
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/labor)
"azC" = (
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
@@ -12684,29 +12479,17 @@
},
/area/library)
"aAA" = (
-/obj/machinery/door/airlock/titanium{
- name = "Mining Shuttle Airlock";
- req_access_txt = "0"
- },
-/obj/docking_port/mobile{
- dir = 8;
- dwidth = 3;
- height = 5;
- id = "mining";
- name = "mining shuttle";
- port_direction = 4;
- width = 7
- },
/obj/docking_port/stationary{
dir = 8;
dwidth = 3;
height = 5;
id = "mining_home";
name = "mining shuttle bay";
- width = 7
+ width = 7;
+ roundstart_template = /datum/map_template/shuttle/mining/box
},
-/turf/open/floor/plating,
-/area/shuttle/mining)
+/turf/open/space/basic,
+/area/space)
"aAB" = (
/obj/machinery/door/airlock/external{
name = "Mining Dock Airlock";
@@ -12892,34 +12675,18 @@
dir = 1
},
/area/security/nuke_storage)
-"aAU" = (
-/obj/structure/closet/crate,
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/labor)
"aAV" = (
-/obj/machinery/door/airlock/titanium{
- id_tag = "prisonshuttle";
- name = "Labor Shuttle Airlock"
- },
-/obj/docking_port/mobile{
- dir = 8;
- dwidth = 2;
- height = 5;
- id = "laborcamp";
- name = "labor camp shuttle";
- port_direction = 4;
- width = 9
- },
/obj/docking_port/stationary{
dir = 8;
dwidth = 2;
height = 5;
id = "laborcamp_home";
name = "fore bay 1";
- width = 9
+ width = 9;
+ roundstart_template = /datum/map_template/shuttle/labour/box
},
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/labor)
+/turf/open/space/basic,
+/area/space)
"aAW" = (
/obj/machinery/door/airlock/external{
name = "Labor Camp Shuttle Airlock"
@@ -13212,7 +12979,7 @@
/area/crew_quarters/dorms)
"aBB" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/sign/pods{
+/obj/structure/sign/warning/pods{
pixel_x = 30
},
/turf/open/floor/plasteel/neutral/corner{
@@ -13391,12 +13158,7 @@
/turf/open/floor/plasteel,
/area/quartermaster/miningoffice)
"aBU" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
- icon_state = "space";
- layer = 4;
- name = "EXTERNAL AIRLOCK"
- },
+/obj/structure/sign/warning/vacuum/external,
/turf/closed/wall,
/area/quartermaster/miningoffice)
"aBV" = (
@@ -13533,14 +13295,6 @@
dir = 1
},
/area/security/nuke_storage)
-"aCi" = (
-/obj/structure/shuttle/engine/heater,
-/obj/structure/window/reinforced{
- dir = 1;
- layer = 2.9
- },
-/turf/open/floor/plating,
-/area/shuttle/labor)
"aCj" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/security/glass{
@@ -13960,27 +13714,6 @@
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
/area/maintenance/port/fore)
-"aDe" = (
-/obj/structure/closet/crate,
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/mining)
-"aDf" = (
-/obj/structure/shuttle/engine/heater,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/turf/open/floor/plating/airless,
-/area/shuttle/mining)
-"aDg" = (
-/obj/structure/ore_box,
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/mining)
"aDh" = (
/obj/machinery/firealarm{
dir = 8;
@@ -13991,8 +13724,8 @@
},
/obj/machinery/computer/shuttle/mining{
dir = 4;
- req_access = "0";
- req_one_access = "0"
+ req_access = null;
+ req_one_access = null
},
/turf/open/floor/plasteel/brown{
dir = 9
@@ -14062,7 +13795,7 @@
/turf/closed/wall/r_wall,
/area/security/nuke_storage)
"aDq" = (
-/obj/structure/sign/securearea,
+/obj/structure/sign/warning/securearea,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 10
},
@@ -14083,13 +13816,9 @@
},
/area/security/nuke_storage)
"aDs" = (
-/obj/structure/sign/securearea,
+/obj/structure/sign/warning/securearea,
/turf/closed/wall/r_wall,
/area/security/nuke_storage)
-"aDt" = (
-/obj/structure/shuttle/engine/propulsion,
-/turf/open/floor/plating,
-/area/shuttle/labor)
"aDu" = (
/turf/closed/wall,
/area/hallway/primary/fore)
@@ -14119,10 +13848,7 @@
},
/area/hallway/primary/fore)
"aDy" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'HIGH VOLTAGE'";
- icon_state = "shock";
- name = "HIGH VOLTAGE";
+/obj/structure/sign/warning/electricshock{
pixel_y = 32
},
/turf/open/floor/plasteel/red/corner{
@@ -14130,10 +13856,7 @@
},
/area/hallway/primary/fore)
"aDz" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'HIGH VOLTAGE'";
- icon_state = "shock";
- name = "HIGH VOLTAGE";
+/obj/structure/sign/warning/electricshock{
pixel_y = 32
},
/obj/machinery/camera{
@@ -14644,14 +14367,6 @@
},
/turf/open/floor/plasteel/floorgrime,
/area/quartermaster/warehouse)
-"aEu" = (
-/obj/structure/shuttle/engine/propulsion/burst,
-/obj/structure/window/reinforced{
- dir = 1;
- layer = 2.9
- },
-/turf/open/floor/plating/airless,
-/area/shuttle/mining)
"aEv" = (
/obj/machinery/computer/security/mining{
dir = 4;
@@ -14775,11 +14490,7 @@
/turf/open/floor/plasteel,
/area/hallway/primary/fore)
"aEJ" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
- icon_state = "space";
- layer = 4;
- name = "EXTERNAL AIRLOCK";
+/obj/structure/sign/warning/vacuum/external{
pixel_y = 32
},
/obj/machinery/light/small{
@@ -16138,7 +15849,7 @@
/obj/machinery/light/small{
dir = 1
},
-/obj/structure/sign/securearea{
+/obj/structure/sign/warning/securearea{
pixel_y = 30
},
/obj/effect/turf_decal/stripes/line{
@@ -17186,12 +16897,7 @@
/area/engine/supermatter)
"aJB" = (
/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
- icon_state = "space";
- layer = 4;
- name = "EXTERNAL AIRLOCK"
- },
+/obj/structure/sign/warning/vacuum/external,
/turf/open/floor/plating,
/area/quartermaster/storage)
"aJC" = (
@@ -17626,9 +17332,6 @@
/obj/machinery/portable_atmospherics/canister/toxins,
/turf/open/floor/plating,
/area/engine/engineering)
-"aKy" = (
-/turf/open/floor/plating,
-/area/engine/engineering)
"aKz" = (
/obj/machinery/door/poddoor{
id = "Secure Storage";
@@ -17990,7 +17693,7 @@
/turf/open/floor/plasteel/dark,
/area/ai_monitored/turret_protected/ai_upload)
"aLs" = (
-/obj/structure/sign/kiddieplaque{
+/obj/structure/sign/plaques/kiddie{
pixel_y = 32
},
/obj/structure/table,
@@ -18169,7 +17872,7 @@
dir = 2;
network = list("SS13")
},
-/obj/structure/sign/pods{
+/obj/structure/sign/warning/pods{
pixel_y = 30
},
/obj/effect/turf_decal/delivery,
@@ -19276,7 +18979,6 @@
/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/effect/landmark/lightsout,
/turf/open/floor/plasteel/floorgrime,
/area/crew_quarters/locker)
"aOA" = (
@@ -20654,10 +20356,7 @@
/obj/machinery/light{
dir = 8
},
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'HIGH VOLTAGE'";
- icon_state = "shock";
- name = "HIGH VOLTAGE";
+/obj/structure/sign/warning/electricshock{
pixel_x = -31
},
/obj/structure/cable{
@@ -20787,7 +20486,8 @@
/obj/docking_port/mobile/pod{
id = "pod1";
name = "escape pod 1";
- port_direction = 2
+ port_direction = 2;
+ timid = 0
},
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/pod_1)
@@ -21948,7 +21648,7 @@
/turf/open/floor/plasteel/dark,
/area/aisat)
"aUb" = (
-/obj/structure/sign/pods,
+/obj/structure/sign/warning/pods,
/turf/closed/wall,
/area/hallway/secondary/entry)
"aUc" = (
@@ -22729,11 +22429,6 @@
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
/area/quartermaster/storage)
-"aVI" = (
-/obj/effect/landmark/lightsout,
-/obj/effect/turf_decal/bot,
-/turf/open/floor/plasteel,
-/area/quartermaster/storage)
"aVJ" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 5
@@ -23006,7 +22701,7 @@
/turf/open/floor/plasteel,
/area/crew_quarters/locker)
"aWo" = (
-/obj/structure/sign/pods,
+/obj/structure/sign/warning/pods,
/turf/closed/wall,
/area/crew_quarters/locker)
"aWp" = (
@@ -23215,11 +22910,7 @@
/turf/open/floor/plasteel,
/area/hallway/secondary/entry)
"aWV" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
- icon_state = "space";
- layer = 4;
- name = "EXTERNAL AIRLOCK";
+/obj/structure/sign/warning/vacuum/external{
pixel_y = -32
},
/obj/effect/turf_decal/stripes/line,
@@ -23589,7 +23280,7 @@
dir = 2;
network = list("SS13")
},
-/obj/structure/sign/securearea{
+/obj/structure/sign/warning/securearea{
desc = "A warning sign which reads 'HIGH-POWER TURRETS AHEAD'.";
name = "\improper HIGH-POWER TURRETS AHEAD";
pixel_y = 32
@@ -23646,7 +23337,7 @@
/obj/machinery/light/small{
dir = 1
},
-/obj/structure/sign/securearea{
+/obj/structure/sign/warning/securearea{
pixel_y = 32
},
/obj/effect/turf_decal/stripes/corner{
@@ -23698,7 +23389,6 @@
/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/effect/landmark/lightsout,
/obj/effect/turf_decal/plaque{
icon_state = "L7"
},
@@ -24035,7 +23725,7 @@
},
/area/crew_quarters/heads/chief)
"aYs" = (
-/obj/structure/sign/securearea{
+/obj/structure/sign/warning/securearea{
pixel_y = 32
},
/obj/structure/closet/radiation,
@@ -24107,10 +23797,7 @@
},
/area/ai_monitored/turret_protected/ai)
"aYC" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'.";
- name = "KEEP CLEAR: DOCKING AREA"
- },
+/obj/structure/sign/warning/docking,
/turf/closed/wall,
/area/hallway/secondary/entry)
"aYE" = (
@@ -24135,11 +23822,7 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 5
},
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
- icon_state = "space";
- layer = 4;
- name = "EXTERNAL AIRLOCK";
+/obj/structure/sign/warning/vacuum/external{
pixel_y = -32
},
/obj/effect/turf_decal/stripes/line,
@@ -24646,7 +24329,6 @@
/turf/open/floor/plasteel,
/area/engine/engineering)
"aZJ" = (
-/obj/effect/landmark/lightsout,
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 9
@@ -24718,7 +24400,7 @@
/turf/open/floor/wood,
/area/library)
"aZQ" = (
-/obj/effect/landmark/tripai,
+/obj/effect/landmark/start/ai/secondary,
/obj/item/device/radio/intercom{
anyai = 1;
freerange = 1;
@@ -24820,7 +24502,7 @@
},
/area/ai_monitored/turret_protected/ai)
"aZY" = (
-/obj/effect/landmark/tripai,
+/obj/effect/landmark/start/ai/secondary,
/obj/item/device/radio/intercom{
anyai = 1;
freerange = 1;
@@ -25947,7 +25629,6 @@
"bbZ" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/effect/landmark/lightsout,
/turf/open/floor/plasteel,
/area/hallway/primary/port)
"bca" = (
@@ -26319,19 +26000,6 @@
},
/turf/open/space,
/area/space/nearstation)
-"bcS" = (
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/arrival)
-"bcT" = (
-/obj/machinery/door/airlock/titanium{
- name = "Arrivals Shuttle Airlock"
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/arrival)
-"bcU" = (
-/obj/effect/spawner/structure/window/shuttle,
-/turf/open/floor/plating,
-/area/shuttle/arrival)
"bcV" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
dir = 4
@@ -27047,12 +26715,7 @@
/turf/closed/wall,
/area/engine/break_room)
"beq" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
- icon_state = "space";
- layer = 4;
- name = "EXTERNAL AIRLOCK"
- },
+/obj/structure/sign/warning/vacuum/external,
/turf/closed/wall/r_wall,
/area/space/nearstation)
"bes" = (
@@ -27141,67 +26804,6 @@
},
/turf/open/floor/plasteel/dark,
/area/aisat)
-"beB" = (
-/obj/structure/table,
-/obj/item/storage/firstaid/regular{
- pixel_x = 3;
- pixel_y = -3
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/arrival)
-"beC" = (
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/arrival)
-"beD" = (
-/obj/machinery/computer/arcade,
-/obj/machinery/light{
- dir = 1
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/arrival)
-"beE" = (
-/obj/structure/closet/wardrobe/green,
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/arrival)
-"beF" = (
-/obj/structure/closet/wardrobe/black,
-/obj/structure/sign/map/left{
- desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown).";
- icon_state = "map-left-MS";
- pixel_y = 32
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/arrival)
-"beG" = (
-/obj/structure/closet/wardrobe/mixed,
-/obj/structure/sign/map/right{
- desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown).";
- icon_state = "map-right-MS";
- pixel_y = 32
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/arrival)
-"beH" = (
-/obj/structure/closet/wardrobe/grey,
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/arrival)
-"beI" = (
-/obj/machinery/camera{
- c_tag = "Arrivals Shuttle";
- dir = 2;
- network = list("SS13")
- },
-/obj/machinery/light{
- dir = 1
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/arrival)
-"beJ" = (
-/obj/structure/shuttle/engine/propulsion/burst/right{
- dir = 4
- },
-/turf/open/floor/plating/airless,
-/area/shuttle/arrival)
"beK" = (
/obj/effect/spawner/structure/window/reinforced,
/obj/structure/cable/yellow{
@@ -27386,11 +26988,6 @@
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
/area/hallway/primary/port)
-"bfe" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/primary/port)
"bff" = (
/turf/open/floor/plasteel/brown/corner{
dir = 4
@@ -27520,7 +27117,6 @@
},
/obj/machinery/door/poddoor/preopen{
id = "bridge blast";
- layer = 2.9;
name = "bridge blast door"
},
/obj/structure/cable/yellow{
@@ -27538,7 +27134,6 @@
},
/obj/machinery/door/poddoor/preopen{
id = "bridge blast";
- layer = 2.9;
name = "bridge blast door"
},
/obj/structure/cable/yellow{
@@ -27556,7 +27151,6 @@
},
/obj/machinery/door/poddoor/preopen{
id = "bridge blast";
- layer = 2.9;
name = "bridge blast door"
},
/turf/open/floor/plating,
@@ -27568,7 +27162,6 @@
},
/obj/machinery/door/poddoor/preopen{
id = "bridge blast";
- layer = 2.9;
name = "bridge blast door"
},
/turf/open/floor/plating,
@@ -27583,7 +27176,6 @@
},
/obj/machinery/door/poddoor/preopen{
id = "bridge blast";
- layer = 2.9;
name = "bridge blast door"
},
/turf/open/floor/plating,
@@ -27595,7 +27187,6 @@
},
/obj/machinery/door/poddoor/preopen{
id = "bridge blast";
- layer = 2.9;
name = "bridge blast door"
},
/obj/structure/cable/yellow{
@@ -27957,25 +27548,6 @@
},
/turf/open/space,
/area/space/nearstation)
-"bgq" = (
-/obj/structure/chair,
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/arrival)
-"bgt" = (
-/obj/structure/shuttle/engine/heater{
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/turf/open/floor/plating/airless,
-/area/shuttle/arrival)
-"bgu" = (
-/obj/structure/shuttle/engine/propulsion{
- dir = 4
- },
-/turf/open/floor/plating/airless,
-/area/shuttle/arrival)
"bgv" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/light{
@@ -28404,7 +27976,6 @@
/obj/effect/spawner/structure/window/reinforced,
/obj/machinery/door/poddoor/preopen{
id = "bridge blast";
- layer = 2.9;
name = "bridge blast door"
},
/obj/structure/cable/yellow,
@@ -28512,7 +28083,6 @@
},
/obj/machinery/door/poddoor/preopen{
id = "bridge blast";
- layer = 2.9;
name = "bridge blast door"
},
/obj/structure/cable/yellow,
@@ -28742,7 +28312,7 @@
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 1
},
-/obj/structure/sign/securearea{
+/obj/structure/sign/warning/securearea{
pixel_y = 32
},
/turf/open/floor/plasteel/yellow/corner{
@@ -28827,7 +28397,7 @@
/obj/machinery/light{
dir = 1
},
-/obj/structure/sign/securearea{
+/obj/structure/sign/warning/securearea{
pixel_y = 32
},
/obj/structure/table/glass,
@@ -28926,7 +28496,8 @@
id = "pod4";
name = "escape pod 4";
port_direction = 2;
- preferred_direction = 4
+ preferred_direction = 4;
+ timid = 0
},
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/pod_4)
@@ -29063,7 +28634,7 @@
},
/area/hallway/secondary/entry)
"biw" = (
-/obj/structure/sign/pods,
+/obj/structure/sign/warning/pods,
/turf/closed/wall,
/area/security/checkpoint/customs)
"bix" = (
@@ -29293,7 +28864,6 @@
},
/obj/machinery/door/poddoor/preopen{
id = "bridge blast";
- layer = 2.9;
name = "bridge blast door"
},
/turf/open/floor/plating,
@@ -29384,7 +28954,6 @@
/obj/machinery/light_switch{
pixel_x = -28
},
-/obj/item/card/id/captains_spare,
/turf/open/floor/wood,
/area/crew_quarters/heads/captain/private)
"bji" = (
@@ -29737,12 +29306,6 @@
"bjT" = (
/turf/closed/wall/r_wall,
/area/ai_monitored/storage/satellite)
-"bjU" = (
-/obj/structure/chair{
- dir = 1
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/arrival)
"bjV" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 8
@@ -30556,7 +30119,7 @@
/turf/open/floor/plasteel,
/area/engine/break_room)
"bls" = (
-/obj/structure/sign/pods,
+/obj/structure/sign/warning/pods,
/turf/closed/wall/r_wall,
/area/engine/break_room)
"blt" = (
@@ -30723,49 +30286,6 @@
dir = 8
},
/area/ai_monitored/storage/satellite)
-"blN" = (
-/obj/structure/closet/emcloset,
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/arrival)
-"blO" = (
-/obj/item/device/radio/intercom{
- name = "Station Intercom (General)";
- pixel_y = -29
- },
-/obj/machinery/light,
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/arrival)
-"blP" = (
-/obj/structure/sign/map/left{
- desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown).";
- icon_state = "map-left-MS";
- pixel_y = -32
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/arrival)
-"blQ" = (
-/obj/structure/sign/map/right{
- desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown).";
- icon_state = "map-right-MS";
- pixel_y = -32
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/arrival)
-"blR" = (
-/obj/machinery/requests_console{
- department = "Arrival shuttle";
- name = "Arrivals Shuttle console";
- pixel_y = -30
- },
-/obj/machinery/light,
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/arrival)
-"blS" = (
-/obj/structure/shuttle/engine/propulsion/burst/left{
- dir = 4
- },
-/turf/open/floor/plating/airless,
-/area/shuttle/arrival)
"blT" = (
/obj/structure/cable/yellow{
icon_state = "1-4"
@@ -32500,7 +32020,7 @@
/turf/closed/wall/r_wall,
/area/space/nearstation)
"bpv" = (
-/obj/structure/sign/securearea{
+/obj/structure/sign/warning/securearea{
pixel_y = 32
},
/obj/structure/transit_tube/station/reverse/flipped{
@@ -33631,7 +33151,7 @@
/area/hallway/primary/starboard)
"brz" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/sign/securearea{
+/obj/structure/sign/warning/securearea{
pixel_x = 32
},
/turf/open/floor/plasteel/dark/corner{
@@ -34106,7 +33626,6 @@
/obj/structure/cable/yellow{
icon_state = "2-4"
},
-/obj/effect/landmark/lightsout,
/turf/open/floor/plasteel,
/area/hallway/secondary/entry)
"bsp" = (
@@ -34755,7 +34274,7 @@
/area/crew_quarters/heads/hop)
"btD" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/sign/securearea{
+/obj/structure/sign/warning/securearea{
pixel_x = 32
},
/turf/open/floor/plasteel,
@@ -34883,11 +34402,7 @@
/turf/open/floor/plasteel,
/area/hallway/secondary/entry)
"btS" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
- icon_state = "space";
- layer = 4;
- name = "EXTERNAL AIRLOCK";
+/obj/structure/sign/warning/vacuum/external{
pixel_y = 32
},
/obj/effect/turf_decal/stripes/line{
@@ -35488,7 +35003,7 @@
"bvj" = (
/obj/machinery/door/poddoor/preopen{
id = "atmos";
- name = "Atmos Blast Door"
+ name = "Atmospherics Blast Door"
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
@@ -35496,7 +35011,7 @@
"bvk" = (
/obj/machinery/door/poddoor/preopen{
id = "atmos";
- name = "Atmos Blast Door"
+ name = "Atmospherics Blast Door"
},
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -35510,7 +35025,7 @@
"bvl" = (
/obj/machinery/door/poddoor/preopen{
id = "atmos";
- name = "Atmos Blast Door"
+ name = "Atmospherics Blast Door"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -35675,11 +35190,7 @@
/area/hallway/secondary/entry)
"bvC" = (
/obj/structure/chair,
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
- icon_state = "space";
- layer = 4;
- name = "EXTERNAL AIRLOCK";
+/obj/structure/sign/warning/vacuum/external{
pixel_y = 32
},
/obj/effect/turf_decal/stripes/line{
@@ -36295,7 +35806,7 @@
/turf/open/floor/plasteel/bar,
/area/crew_quarters/bar)
"bwQ" = (
-/obj/structure/sign/securearea{
+/obj/structure/sign/warning/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";
@@ -36486,11 +35997,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 9
},
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
- icon_state = "space";
- layer = 4;
- name = "EXTERNAL AIRLOCK";
+/obj/structure/sign/warning/vacuum/external{
pixel_y = -32
},
/obj/machinery/light/small{
@@ -36583,11 +36090,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
- icon_state = "space";
- layer = 4;
- name = "EXTERNAL AIRLOCK";
+/obj/structure/sign/warning/vacuum/external{
pixel_y = -32
},
/obj/effect/turf_decal/stripes/line,
@@ -36897,7 +36400,6 @@
},
/obj/machinery/door/poddoor/preopen{
id = "hop";
- layer = 3.1;
name = "privacy shutters"
},
/turf/open/floor/plasteel,
@@ -37283,7 +36785,7 @@
},
/area/engine/atmos)
"byV" = (
-/obj/structure/sign/atmosplaque{
+/obj/structure/sign/plaques/atmos{
pixel_y = 32
},
/obj/item/phone{
@@ -37711,10 +37213,7 @@
name = "Station Intercom (General)";
pixel_y = 21
},
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'HIGH VOLTAGE'";
- icon_state = "shock";
- name = "HIGH VOLTAGE";
+/obj/structure/sign/warning/electricshock{
pixel_y = 32
},
/obj/effect/turf_decal/bot,
@@ -38051,7 +37550,7 @@
/obj/effect/spawner/structure/window/reinforced,
/obj/machinery/door/poddoor/preopen{
id = "atmos";
- name = "Atmos Blast Door"
+ name = "Atmospherics Blast Door"
},
/obj/structure/cable/yellow{
icon_state = "0-2"
@@ -38547,7 +38046,6 @@
/obj/effect/spawner/structure/window/reinforced,
/obj/machinery/door/poddoor/preopen{
id = "council blast";
- layer = 2.9;
name = "Council Blast Doors"
},
/obj/structure/cable/yellow{
@@ -38559,7 +38057,6 @@
/obj/effect/spawner/structure/window/reinforced,
/obj/machinery/door/poddoor/preopen{
id = "council blast";
- layer = 2.9;
name = "Council Blast Doors"
},
/obj/structure/cable/yellow{
@@ -38574,7 +38071,6 @@
/obj/effect/spawner/structure/window/reinforced,
/obj/machinery/door/poddoor/preopen{
id = "council blast";
- layer = 2.9;
name = "Council Blast Doors"
},
/obj/structure/cable/yellow{
@@ -38592,7 +38088,6 @@
/obj/effect/spawner/structure/window/reinforced,
/obj/machinery/door/poddoor/preopen{
id = "council blast";
- layer = 2.9;
name = "Council Blast Doors"
},
/obj/structure/cable/yellow{
@@ -38607,7 +38102,6 @@
/obj/effect/spawner/structure/window/reinforced,
/obj/machinery/door/poddoor/preopen{
id = "council blast";
- layer = 2.9;
name = "Council Blast Doors"
},
/obj/structure/cable/yellow{
@@ -38775,12 +38269,6 @@
/area/hallway/primary/starboard)
"bCg" = (
/obj/structure/table/reinforced,
-/obj/machinery/door/poddoor{
- density = 0;
- icon_state = "pdoor0";
- id = "atmos";
- name = "Atmos Blast Door"
- },
/obj/machinery/door/window/northleft{
dir = 4;
icon_state = "left";
@@ -38793,7 +38281,7 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/poddoor/preopen{
id = "atmos";
- name = "Atmos Blast Door"
+ name = "Atmospherics Blast Door"
},
/obj/effect/turf_decal/delivery,
/obj/structure/cable/yellow{
@@ -38991,12 +38479,7 @@
/area/tcommsat/server)
"bCG" = (
/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
- icon_state = "space";
- layer = 4;
- name = "EXTERNAL AIRLOCK"
- },
+/obj/structure/sign/warning/vacuum/external,
/turf/open/floor/plating,
/area/hallway/secondary/entry)
"bCH" = (
@@ -39162,18 +38645,6 @@
dir = 1
},
/area/hallway/secondary/command)
-"bDc" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/landmark/lightsout,
-/turf/open/floor/plasteel/neutral/corner{
- dir = 1
- },
-/area/hallway/secondary/command)
"bDd" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -39336,15 +38807,6 @@
dir = 4
},
/area/hallway/secondary/command)
-"bDt" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/effect/landmark/lightsout,
-/turf/open/floor/plasteel/neutral/corner{
- dir = 4
- },
-/area/hallway/secondary/command)
"bDu" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -39463,10 +38925,6 @@
/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
/turf/open/floor/plasteel/bar,
/area/crew_quarters/bar)
-"bDE" = (
-/obj/effect/landmark/lightsout,
-/turf/open/floor/plasteel/bar,
-/area/crew_quarters/bar)
"bDF" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/bar,
@@ -39738,10 +39196,6 @@
},
/turf/open/floor/wood,
/area/security/vacantoffice)
-"bEr" = (
-/obj/effect/landmark/lightsout,
-/turf/open/floor/wood,
-/area/security/vacantoffice)
"bEs" = (
/obj/item/paper_bin{
pixel_x = -2;
@@ -40545,7 +39999,7 @@
},
/obj/machinery/door/poddoor/preopen{
id = "atmos";
- name = "Atmos Blast Door"
+ name = "Atmospherics Blast Door"
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
@@ -40887,7 +40341,7 @@
/turf/open/floor/plasteel,
/area/ai_monitored/storage/eva)
"bGA" = (
-/obj/structure/sign/securearea,
+/obj/structure/sign/warning/securearea,
/turf/closed/wall/r_wall,
/area/ai_monitored/storage/eva)
"bGB" = (
@@ -40923,7 +40377,7 @@
/area/teleporter)
"bGE" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/sign/securearea,
+/obj/structure/sign/warning/securearea,
/turf/closed/wall/r_wall,
/area/teleporter)
"bGF" = (
@@ -40990,7 +40444,7 @@
/turf/closed/wall/r_wall,
/area/gateway)
"bGN" = (
-/obj/structure/sign/securearea,
+/obj/structure/sign/warning/securearea,
/turf/closed/wall/r_wall,
/area/gateway)
"bGO" = (
@@ -42040,7 +41494,7 @@
/turf/closed/wall/r_wall,
/area/space/nearstation)
"bJg" = (
-/obj/machinery/message_server,
+/obj/machinery/telecomms/message_server,
/turf/open/floor/circuit/telecomms/mainframe,
/area/tcommsat/server)
"bJh" = (
@@ -42963,11 +42417,6 @@
/obj/structure/bookcase/random/adult,
/turf/open/floor/wood,
/area/library)
-"bLj" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/effect/landmark/lightsout,
-/turf/open/floor/carpet,
-/area/library)
"bLk" = (
/obj/structure/bookcase/random/reference,
/turf/open/floor/wood,
@@ -43330,7 +42779,7 @@
/turf/open/floor/wood,
/area/crew_quarters/theatre)
"bLT" = (
-/obj/structure/sign/securearea,
+/obj/structure/sign/warning/securearea,
/turf/closed/wall/r_wall,
/area/bridge)
"bLU" = (
@@ -43883,7 +43332,7 @@
/turf/open/floor/carpet,
/area/bridge/showroom/corporate)
"bNb" = (
-/obj/structure/sign/kiddieplaque/perfect_drone{
+/obj/structure/sign/plaques/kiddie/perfect_drone{
pixel_y = 32
},
/obj/structure/table/wood,
@@ -43985,7 +43434,7 @@
/area/bridge/showroom/corporate)
"bNj" = (
/obj/structure/showcase/perfect_employee,
-/obj/structure/sign/kiddieplaque/perfect_man{
+/obj/structure/sign/plaques/kiddie/perfect_man{
pixel_y = 32
},
/obj/structure/window/reinforced,
@@ -44312,10 +43761,6 @@
},
/turf/open/floor/plasteel,
/area/engine/atmos)
-"bNT" = (
-/obj/effect/landmark/lightsout,
-/turf/open/floor/plasteel,
-/area/engine/atmos)
"bNU" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 0;
@@ -44697,7 +44142,7 @@
/turf/open/floor/plasteel/vault,
/area/gateway)
"bON" = (
-/obj/structure/sign/securearea{
+/obj/structure/sign/warning/securearea{
pixel_x = -32
},
/obj/structure/cable/yellow{
@@ -44775,11 +44220,7 @@
/turf/open/floor/plasteel/showroomfloor,
/area/crew_quarters/kitchen)
"bOY" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
- icon_state = "space";
- layer = 4;
- name = "EXTERNAL AIRLOCK";
+/obj/structure/sign/warning/vacuum/external{
pixel_x = 32
},
/obj/effect/turf_decal/stripes/line{
@@ -45605,7 +45046,7 @@
/turf/open/floor/plasteel,
/area/engine/atmos)
"bQT" = (
-/obj/structure/sign/nosmoking_2,
+/obj/structure/sign/warning/nosmoking,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/closed/wall,
/area/engine/atmos)
@@ -46156,7 +45597,6 @@
/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel/cafeteria{
dir = 5
},
@@ -46683,9 +46123,6 @@
/obj/structure/disposalpipe/segment{
dir = 6
},
-/obj/structure/cable/yellow{
- icon_state = "2-4"
- },
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 1
},
@@ -46721,12 +46158,12 @@
/obj/structure/cable/yellow{
icon_state = "0-2"
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 10
- },
/obj/effect/turf_decal/stripes/line{
dir = 1
},
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
/turf/open/floor/plating,
/area/maintenance/starboard)
"bTd" = (
@@ -46745,8 +46182,8 @@
/obj/structure/cable/yellow{
icon_state = "1-8"
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 9
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
},
/turf/open/floor/plating,
/area/maintenance/starboard)
@@ -46831,11 +46268,7 @@
/turf/open/floor/plating,
/area/maintenance/solars/port/aft)
"bTp" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'HIGH VOLTAGE'";
- icon_state = "shock";
- name = "HIGH VOLTAGE"
- },
+/obj/structure/sign/warning/electricshock,
/turf/closed/wall,
/area/maintenance/solars/port/aft)
"bTq" = (
@@ -47210,7 +46643,7 @@
/area/hallway/primary/central)
"bUc" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/sign/botany{
+/obj/structure/sign/departments/botany{
pixel_x = 32;
pixel_y = 32
},
@@ -47276,11 +46709,6 @@
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel,
/area/hydroponics)
-"bUl" = (
-/obj/effect/turf_decal/bot,
-/obj/effect/turf_decal/stripes/line,
-/turf/open/floor/plasteel,
-/area/hydroponics)
"bUm" = (
/obj/effect/turf_decal/stripes/line,
/obj/machinery/chem_master/condimaster{
@@ -47368,27 +46796,30 @@
sortType = 20
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/obj/effect/turf_decal/stripes/line{
dir = 8
},
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
/turf/open/floor/plating,
/area/maintenance/starboard)
"bUt" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 10
- },
/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/structure/disposalpipe/segment{
dir = 5
},
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
/turf/open/floor/plating,
/area/maintenance/starboard)
"bUu" = (
@@ -47401,8 +46832,8 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 5
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
},
/turf/open/floor/plating,
/area/maintenance/starboard)
@@ -47410,10 +46841,10 @@
/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/disposalpipe/segment{
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plating{
@@ -47904,17 +47335,22 @@
},
/area/hydroponics)
"bVz" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/disposalpipe/segment,
+/turf/closed/wall,
+/area/hallway/secondary/service)
+"bVA" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/door/airlock{
+ name = "Service Hall";
+ req_access_txt = "null";
+ req_one_access_txt = "25;26;35;28"
+ },
/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/disposalpipe/segment,
/turf/open/floor/plating,
-/area/maintenance/starboard)
-"bVA" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plating,
-/area/maintenance/starboard)
+/area/hallway/secondary/service)
"bVB" = (
/obj/structure/rack,
/obj/item/extinguisher,
@@ -48347,7 +47783,6 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/obj/effect/landmark/lightsout,
/obj/effect/turf_decal/plaque{
icon_state = "L8"
},
@@ -48605,15 +48040,18 @@
/turf/open/floor/plasteel/hydrofloor,
/area/hydroponics)
"bWX" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/disposalpipe/segment,
-/turf/open/floor/plating{
- icon_state = "platingdmg1"
+/obj/structure/table,
+/obj/item/storage/bag/plants,
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 8
},
-/area/maintenance/starboard)
+/obj/item/reagent_containers/glass/bucket,
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/service)
"bWY" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 6
@@ -48865,11 +48303,7 @@
/turf/open/floor/plating,
/area/maintenance/solars/port/aft)
"bXv" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
- icon_state = "space";
- layer = 4;
- name = "EXTERNAL AIRLOCK";
+/obj/structure/sign/warning/vacuum/external{
pixel_x = 32
},
/turf/open/floor/plating,
@@ -49199,33 +48633,26 @@
/turf/open/floor/plasteel/hydrofloor,
/area/hydroponics)
"bYo" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 8
},
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
/obj/structure/disposalpipe/junction/flip{
dir = 2
},
-/turf/open/floor/plating,
-/area/maintenance/starboard)
+/obj/structure/table,
+/obj/item/kitchen/rollingpin,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/service)
"bYp" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/plating,
-/area/maintenance/starboard)
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/service)
"bYq" = (
/obj/structure/rack,
/obj/item/tank/internals/oxygen,
@@ -49479,7 +48906,7 @@
/obj/item/screwdriver{
pixel_y = 6
},
-/obj/structure/sign/nosmoking_2{
+/obj/structure/sign/warning/nosmoking{
pixel_y = 30
},
/turf/open/floor/plasteel/whiteblue/side{
@@ -49601,7 +49028,7 @@
/turf/open/floor/plating,
/area/medical/medbay/central)
"bZb" = (
-/obj/structure/sign/bluecross_2,
+/obj/structure/sign/departments/medbay/alt,
/turf/closed/wall,
/area/medical/medbay/central)
"bZc" = (
@@ -49699,7 +49126,7 @@
/turf/open/floor/plating,
/area/science/research)
"bZk" = (
-/obj/structure/sign/science,
+/obj/structure/sign/departments/science,
/turf/closed/wall,
/area/science/research)
"bZl" = (
@@ -49792,13 +49219,14 @@
/turf/open/floor/plasteel/showroomfloor,
/area/crew_quarters/kitchen)
"bZy" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 8
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/door/airlock{
+ name = "Service Hall";
+ req_access_txt = "null";
+ req_one_access_txt = "25;26;35;28"
},
-/turf/open/floor/plating{
- icon_state = "platingdmg1"
- },
-/area/maintenance/starboard)
+/turf/open/floor/plating,
+/area/hallway/secondary/service)
"bZz" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -49806,9 +49234,7 @@
/turf/open/floor/plating,
/area/maintenance/starboard)
"bZA" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
/turf/open/floor/plating{
icon_state = "platingdmg3"
},
@@ -50512,9 +49938,6 @@
/turf/open/floor/plating,
/area/maintenance/starboard)
"caU" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
/obj/structure/disposalpipe/sorting/mail{
sortType = 21
},
@@ -50527,22 +49950,17 @@
/obj/effect/turf_decal/stripes/line{
dir = 8
},
-/turf/open/floor/plating,
-/area/maintenance/starboard)
-"caV" = (
-/obj/structure/rack,
-/obj/item/extinguisher,
-/obj/item/clothing/mask/gas,
-/obj/effect/turf_decal/stripes/line{
- dir = 1
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
},
/turf/open/floor/plating,
/area/maintenance/starboard)
"caW" = (
-/obj/structure/closet,
-/obj/item/stack/cable_coil/random,
-/obj/effect/turf_decal/stripes/line{
- dir = 1
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 9
},
/turf/open/floor/plating,
/area/maintenance/starboard)
@@ -50567,7 +49985,7 @@
},
/obj/machinery/disposal/bin,
/obj/structure/disposalpipe/trunk,
-/obj/structure/sign/deathsposal{
+/obj/structure/sign/warning/deathsposal{
pixel_y = 32
},
/turf/open/floor/plasteel/floorgrime,
@@ -50961,7 +50379,6 @@
/turf/open/floor/plasteel/white,
/area/medical/storage)
"cbL" = (
-/obj/effect/landmark/lightsout,
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 2
},
@@ -51553,11 +50970,7 @@
/turf/open/floor/plating,
/area/engine/atmos)
"ccX" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
- icon_state = "space";
- layer = 4;
- name = "EXTERNAL AIRLOCK";
+/obj/structure/sign/warning/vacuum/external{
pixel_y = -32
},
/obj/machinery/light/small{
@@ -52013,6 +51426,9 @@
/area/maintenance/starboard)
"cdW" = (
/obj/item/device/flashlight,
+/obj/machinery/light/small{
+ dir = 4
+ },
/turf/open/floor/plating,
/area/maintenance/starboard)
"cdX" = (
@@ -52030,7 +51446,7 @@
/turf/open/floor/plating,
/area/maintenance/starboard)
"cdZ" = (
-/obj/structure/sign/nosmoking_2{
+/obj/structure/sign/warning/nosmoking{
pixel_x = -28
},
/obj/machinery/atmospherics/components/unary/portables_connector/visible{
@@ -52091,7 +51507,7 @@
/turf/open/floor/plasteel/floorgrime,
/area/maintenance/disposal/incinerator)
"cef" = (
-/obj/structure/sign/fire{
+/obj/structure/sign/warning/fire{
pixel_x = 32
},
/obj/machinery/atmospherics/components/binary/pump{
@@ -52127,11 +51543,7 @@
/turf/open/floor/plating,
/area/maintenance/port/aft)
"cel" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
- icon_state = "space";
- layer = 4;
- name = "EXTERNAL AIRLOCK";
+/obj/structure/sign/warning/vacuum/external{
pixel_y = 32
},
/obj/effect/turf_decal/stripes/line{
@@ -52410,11 +51822,6 @@
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel,
/area/hallway/primary/aft)
-"ceM" = (
-/turf/open/floor/plasteel/whitepurple/side{
- dir = 2
- },
-/area/science/research)
"ceN" = (
/obj/structure/table,
/obj/machinery/cell_charger,
@@ -52438,14 +51845,6 @@
dir = 2
},
/area/science/research)
-"ceP" = (
-/obj/structure/table,
-/obj/item/stock_parts/cell/potato,
-/obj/machinery/light,
-/turf/open/floor/plasteel/whitepurple/side{
- dir = 2
- },
-/area/science/research)
"ceQ" = (
/obj/machinery/disposal/bin,
/obj/structure/disposalpipe/trunk{
@@ -52866,7 +52265,7 @@
/obj/machinery/light{
dir = 1
},
-/obj/structure/sign/nosmoking_2{
+/obj/structure/sign/warning/nosmoking{
pixel_y = 30
},
/turf/open/floor/plasteel/vault,
@@ -53032,7 +52431,7 @@
/turf/closed/wall,
/area/medical/chemistry)
"cfW" = (
-/obj/structure/sign/chemistry,
+/obj/structure/sign/departments/chemistry,
/turf/closed/wall,
/area/medical/chemistry)
"cfX" = (
@@ -53653,16 +53052,6 @@
dir = 1
},
/area/science/lab)
-"chl" = (
-/obj/structure/noticeboard{
- desc = "A board for pinning important notices upon.";
- name = "notice board";
- pixel_y = 31
- },
-/turf/open/floor/plasteel/whitepurple/side{
- dir = 1
- },
-/area/science/lab)
"chm" = (
/obj/machinery/button/door{
id = "research_shutters";
@@ -53749,14 +53138,14 @@
},
/area/science/research)
"chw" = (
-/obj/structure/sign/securearea,
+/obj/structure/sign/warning/securearea,
/turf/closed/wall/r_wall,
/area/bridge/showroom/corporate)
"chx" = (
/turf/open/floor/engine,
/area/science/explab)
"chy" = (
-/obj/structure/sign/nosmoking_2{
+/obj/structure/sign/warning/nosmoking{
pixel_y = 32
},
/obj/machinery/camera{
@@ -54108,7 +53497,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/obj/structure/sign/nosmoking_2{
+/obj/structure/sign/warning/nosmoking{
pixel_y = 28
},
/turf/open/floor/plasteel/whiteblue/corner{
@@ -54588,15 +53977,15 @@
/obj/structure/disposalpipe/segment{
dir = 6
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 6
- },
/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/machinery/light/small{
dir = 1
},
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
/turf/open/floor/plating,
/area/maintenance/starboard)
"cjs" = (
@@ -55132,7 +54521,7 @@
/area/maintenance/starboard/aft)
"ckx" = (
/obj/structure/table,
-/obj/structure/sign/bluecross{
+/obj/structure/sign/departments/medbay{
pixel_y = 32
},
/obj/item/reagent_containers/glass/beaker/large,
@@ -55208,7 +54597,7 @@
/obj/machinery/light/small{
dir = 8
},
-/obj/structure/sign/fire{
+/obj/structure/sign/warning/fire{
pixel_x = -32
},
/obj/machinery/atmospherics/components/binary/pump{
@@ -55234,7 +54623,7 @@
/turf/open/floor/engine,
/area/maintenance/disposal/incinerator)
"ckF" = (
-/obj/structure/sign/fire{
+/obj/structure/sign/warning/fire{
pixel_x = 32
},
/obj/machinery/light/small{
@@ -55317,7 +54706,7 @@
/area/aisat)
"ckU" = (
/obj/structure/chair,
-/obj/structure/sign/nosmoking_2{
+/obj/structure/sign/warning/nosmoking{
pixel_x = -28
},
/turf/open/floor/plasteel/dark,
@@ -55377,7 +54766,7 @@
/obj/machinery/atmospherics/components/unary/vent_pump/on{
dir = 8
},
-/obj/structure/sign/nosmoking_2{
+/obj/structure/sign/warning/nosmoking{
pixel_x = 28
},
/obj/effect/landmark/blobstart,
@@ -55643,7 +55032,7 @@
/obj/machinery/light{
dir = 4
},
-/obj/structure/sign/nosmoking_2{
+/obj/structure/sign/warning/nosmoking{
pixel_x = 30
},
/turf/open/floor/plasteel,
@@ -55790,11 +55179,7 @@
},
/area/science/research)
"clS" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'HIGH VOLTAGE'";
- icon_state = "shock";
- name = "HIGH VOLTAGE"
- },
+/obj/structure/sign/warning/electricshock,
/turf/closed/wall/r_wall,
/area/science/explab)
"clT" = (
@@ -56074,7 +55459,7 @@
/area/medical/chemistry)
"cmD" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/sign/chemistry{
+/obj/structure/sign/departments/chemistry{
pixel_x = -32
},
/turf/open/floor/plasteel/yellow/corner{
@@ -56086,7 +55471,7 @@
/obj/machinery/light{
dir = 4
},
-/obj/structure/sign/science{
+/obj/structure/sign/departments/science{
pixel_x = 32
},
/turf/open/floor/plasteel/purple/corner{
@@ -56361,11 +55746,7 @@
/turf/open/floor/engine/vacuum,
/area/maintenance/disposal/incinerator)
"cnf" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
- icon_state = "space";
- layer = 4;
- name = "EXTERNAL AIRLOCK";
+/obj/structure/sign/warning/vacuum/external{
pixel_y = -32
},
/obj/machinery/atmospherics/components/unary/outlet_injector/on{
@@ -56861,7 +56242,7 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
-/obj/structure/sign/nosmoking_2{
+/obj/structure/sign/warning/nosmoking{
pixel_y = 32
},
/obj/machinery/camera{
@@ -57056,18 +56437,15 @@
/turf/open/floor/plating,
/area/maintenance/starboard/aft)
"cow" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/open/floor/plating,
-/area/maintenance/starboard)
+/obj/machinery/rnd/protolathe/department/service,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/service)
"cox" = (
/obj/structure/mineral_door/wood{
name = "The Gobbetting Barmaid"
@@ -57520,19 +56898,6 @@
},
/turf/open/floor/plasteel/white,
/area/science/research)
-"cps" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/effect/landmark/lightsout,
-/turf/open/floor/plasteel/white,
-/area/science/research)
"cpt" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -58477,7 +57842,7 @@
/turf/open/space,
/area/space/nearstation)
"cre" = (
-/obj/structure/sign/fire,
+/obj/structure/sign/warning/fire,
/turf/closed/wall/r_wall,
/area/maintenance/disposal/incinerator)
"crf" = (
@@ -58857,7 +58222,7 @@
/turf/closed/wall/r_wall,
/area/science/storage)
"crS" = (
-/obj/structure/sign/biohazard,
+/obj/structure/sign/warning/biohazard,
/turf/closed/wall/r_wall,
/area/science/storage)
"crT" = (
@@ -58994,7 +58359,7 @@
/area/maintenance/port/aft)
"csj" = (
/obj/structure/closet/secure_closet/medical2,
-/obj/structure/sign/nosmoking_2{
+/obj/structure/sign/warning/nosmoking{
pixel_x = -28
},
/turf/open/floor/plasteel,
@@ -59047,7 +58412,7 @@
dir = 1;
pixel_y = -22
},
-/obj/structure/sign/nosmoking_2{
+/obj/structure/sign/warning/nosmoking{
pixel_x = -28
},
/obj/machinery/iv_drip,
@@ -59535,7 +58900,7 @@
/obj/machinery/light/small{
dir = 1
},
-/obj/structure/sign/biohazard{
+/obj/structure/sign/warning/biohazard{
pixel_y = 32
},
/turf/open/floor/plasteel/white,
@@ -59575,7 +58940,7 @@
/obj/machinery/light/small{
dir = 1
},
-/obj/structure/sign/nosmoking_2{
+/obj/structure/sign/warning/nosmoking{
pixel_y = 32
},
/obj/effect/turf_decal/stripes/line{
@@ -60236,7 +59601,7 @@
dir = 4;
pixel_x = 24
},
-/obj/structure/sign/nosmoking_2{
+/obj/structure/sign/warning/nosmoking{
pixel_y = 32
},
/obj/structure/table/glass,
@@ -60465,13 +59830,6 @@
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
/area/science/storage)
-"cuX" = (
-/obj/effect/landmark/xeno_spawn,
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/starboard/aft)
"cuY" = (
/obj/structure/rack,
/obj/item/extinguisher,
@@ -60484,33 +59842,6 @@
"cuZ" = (
/turf/closed/wall/r_wall,
/area/science/circuit)
-"cva" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/starboard/aft)
-"cvb" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 5
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/starboard/aft)
-"cvc" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 8
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/maintenance/starboard/aft)
"cvd" = (
/obj/structure/cable{
icon_state = "2-4"
@@ -60573,11 +59904,7 @@
/area/solar/port/aft)
"cvj" = (
/obj/structure/closet/emcloset,
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
- icon_state = "space";
- layer = 4;
- name = "EXTERNAL AIRLOCK";
+/obj/structure/sign/warning/vacuum/external{
pixel_x = -32
},
/turf/open/floor/plating,
@@ -60636,7 +59963,7 @@
"cvq" = (
/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/sign/examroom{
+/obj/structure/sign/departments/examroom{
pixel_x = -32
},
/turf/open/floor/plasteel/white,
@@ -60812,7 +60139,7 @@
/turf/open/floor/plating,
/area/maintenance/aft)
"cvJ" = (
-/obj/structure/sign/nosmoking_2{
+/obj/structure/sign/warning/nosmoking{
pixel_x = -29
},
/turf/open/floor/engine{
@@ -60980,12 +60307,6 @@
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
/area/science/storage)
-"cvZ" = (
-/obj/structure/closet/crate,
-/obj/item/device/multitool,
-/obj/item/clothing/gloves/color/fyellow,
-/turf/open/floor/plating,
-/area/maintenance/starboard/aft)
"cwa" = (
/obj/structure/reagent_dispensers/watertank/high,
/turf/open/floor/plating,
@@ -61284,7 +60605,7 @@
icon_state = "2-4"
},
/obj/structure/disposalpipe/segment,
-/obj/structure/sign/nosmoking_2{
+/obj/structure/sign/warning/nosmoking{
pixel_x = -28
},
/turf/open/floor/plasteel,
@@ -61297,10 +60618,7 @@
/turf/open/floor/plating,
/area/science/robotics/mechbay)
"cwI" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'HIGH VOLTAGE'";
- icon_state = "shock";
- name = "HIGH VOLTAGE";
+/obj/structure/sign/warning/electricshock{
pixel_y = 31
},
/turf/open/floor/mech_bay_recharge_floor,
@@ -61579,7 +60897,6 @@
/obj/structure/cable/yellow{
icon_state = "1-8"
},
-/obj/effect/landmark/lightsout,
/turf/open/floor/plasteel/white,
/area/medical/medbay/aft)
"cxk" = (
@@ -61700,7 +61017,7 @@
},
/area/medical/genetics)
"cxy" = (
-/obj/structure/sign/nosmoking_2{
+/obj/structure/sign/warning/nosmoking{
pixel_x = 28
},
/obj/machinery/disposal/bin,
@@ -62131,7 +61448,7 @@
/turf/open/floor/plasteel/white,
/area/science/research)
"cyy" = (
-/obj/structure/sign/biohazard,
+/obj/structure/sign/warning/biohazard,
/turf/closed/wall,
/area/science/mixing)
"cyz" = (
@@ -62216,7 +61533,7 @@
/area/science/mixing)
"cyG" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible,
-/obj/structure/sign/nosmoking_2{
+/obj/structure/sign/warning/nosmoking{
pixel_y = 32
},
/obj/machinery/light{
@@ -62333,7 +61650,7 @@
/area/medical/medbay/aft)
"cyU" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/sign/nosmoking_2{
+/obj/structure/sign/warning/nosmoking{
pixel_x = 28
},
/obj/structure/disposalpipe/segment,
@@ -62612,15 +61929,6 @@
/obj/machinery/atmospherics/components/unary/vent_pump/on,
/turf/open/floor/plasteel/white,
/area/science/mixing)
-"czu" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 5
- },
-/turf/open/floor/plasteel/white,
-/area/science/mixing)
"czv" = (
/obj/machinery/atmospherics/pipe/manifold/general/visible,
/turf/open/floor/plasteel/white,
@@ -62733,7 +62041,7 @@
/turf/open/floor/plasteel/floorgrime,
/area/maintenance/disposal/incinerator)
"czI" = (
-/obj/structure/sign/securearea{
+/obj/structure/sign/warning/securearea{
desc = "A warning sign which reads 'BOMB RANGE";
name = "BOMB RANGE"
},
@@ -63266,7 +62574,7 @@
/turf/open/floor/plasteel,
/area/science/mixing)
"cAH" = (
-/obj/structure/sign/biohazard,
+/obj/structure/sign/warning/biohazard,
/turf/closed/wall/r_wall,
/area/science/mixing)
"cAI" = (
@@ -63702,7 +63010,6 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
-/obj/effect/landmark/lightsout,
/turf/open/floor/plasteel,
/area/science/misc_lab)
"cBF" = (
@@ -63778,7 +63085,7 @@
/turf/open/floor/plasteel,
/area/science/mixing)
"cBM" = (
-/obj/structure/sign/securearea{
+/obj/structure/sign/warning/securearea{
desc = "A warning sign which reads 'BOMB RANGE";
name = "BOMB RANGE"
},
@@ -64411,7 +63718,7 @@
/turf/open/floor/plasteel,
/area/science/robotics/lab)
"cDe" = (
-/obj/structure/sign/nosmoking_2{
+/obj/structure/sign/warning/nosmoking{
pixel_y = 32
},
/obj/structure/rack,
@@ -64493,7 +63800,7 @@
/turf/closed/wall/r_wall,
/area/science/mixing)
"cDl" = (
-/obj/structure/sign/securearea,
+/obj/structure/sign/warning/securearea,
/turf/closed/wall/r_wall,
/area/science/mixing)
"cDm" = (
@@ -64540,11 +63847,7 @@
/turf/open/floor/plating,
/area/science/mixing)
"cDr" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
- icon_state = "space";
- layer = 4;
- name = "EXTERNAL AIRLOCK";
+/obj/structure/sign/warning/vacuum/external{
pixel_y = -32
},
/obj/machinery/light/small,
@@ -65098,11 +64401,7 @@
/turf/open/floor/engine/vacuum,
/area/science/mixing)
"cEs" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
- icon_state = "space";
- layer = 4;
- name = "EXTERNAL AIRLOCK";
+/obj/structure/sign/warning/vacuum/external{
pixel_y = 32
},
/turf/open/floor/engine/vacuum,
@@ -65261,7 +64560,7 @@
dir = 8
},
/obj/structure/table/glass,
-/obj/structure/sign/deathsposal{
+/obj/structure/sign/warning/deathsposal{
pixel_x = -30
},
/turf/open/floor/plasteel/whitegreen/side{
@@ -65371,7 +64670,7 @@
pixel_x = 1;
pixel_y = 4
},
-/obj/structure/sign/nosmoking_2{
+/obj/structure/sign/warning/nosmoking{
pixel_y = -30
},
/obj/structure/table/glass,
@@ -65443,7 +64742,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/sign/science{
+/obj/structure/sign/departments/science{
name = "\improper ROBOTICS!";
pixel_x = 32
},
@@ -65593,10 +64892,6 @@
},
/turf/open/floor/plasteel,
/area/science/mixing)
-"cFt" = (
-/obj/effect/decal/cleanable/oil,
-/turf/open/floor/plating,
-/area/maintenance/starboard/aft)
"cFu" = (
/obj/structure/closet,
/obj/item/device/assembly/prox_sensor{
@@ -65773,7 +65068,7 @@
/turf/open/floor/plating,
/area/medical/virology)
"cFL" = (
-/obj/structure/sign/biohazard{
+/obj/structure/sign/warning/biohazard{
pixel_y = 32
},
/obj/machinery/shower{
@@ -65800,7 +65095,7 @@
/turf/open/floor/plasteel/white,
/area/medical/virology)
"cFN" = (
-/obj/structure/sign/securearea{
+/obj/structure/sign/warning/securearea{
pixel_y = 32
},
/obj/machinery/shower{
@@ -65984,7 +65279,6 @@
/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/effect/landmark/lightsout,
/turf/open/floor/plasteel/white,
/area/science/research)
"cGi" = (
@@ -66012,7 +65306,7 @@
/area/science/mixing)
"cGk" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/sign/fire{
+/obj/structure/sign/warning/fire{
pixel_y = -32
},
/obj/machinery/atmospherics/components/binary/pump{
@@ -66178,7 +65472,6 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 10
},
-/obj/effect/landmark/lightsout,
/obj/machinery/holopad,
/obj/structure/cable/yellow{
icon_state = "2-4"
@@ -66556,7 +65849,7 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
-/obj/structure/sign/securearea{
+/obj/structure/sign/warning/securearea{
desc = "A warning sign which reads 'SERVER ROOM'.";
name = "SERVER ROOM"
},
@@ -66603,15 +65896,6 @@
},
/turf/closed/wall/r_wall,
/area/science/mixing)
-"cHj" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/open/floor/plating{
- icon_state = "platingdmg2"
- },
-/area/maintenance/starboard/aft)
"cHk" = (
/obj/structure/cable,
/obj/machinery/power/tracker,
@@ -66766,7 +66050,7 @@
/turf/open/floor/plasteel/white,
/area/medical/virology)
"cHz" = (
-/obj/structure/sign/biohazard{
+/obj/structure/sign/warning/biohazard{
pixel_x = -32
},
/turf/open/floor/plasteel/whitegreen/side{
@@ -66792,7 +66076,7 @@
},
/area/medical/medbay/aft)
"cHB" = (
-/obj/structure/sign/biohazard{
+/obj/structure/sign/warning/biohazard{
pixel_x = -32
},
/obj/item/storage/box/gloves{
@@ -66806,7 +66090,7 @@
},
/area/medical/medbay/aft)
"cHC" = (
-/obj/structure/sign/nosmoking_2{
+/obj/structure/sign/warning/nosmoking{
pixel_y = -30
},
/obj/item/storage/box/beakers{
@@ -66869,7 +66153,7 @@
/obj/item/reagent_containers/blood/empty,
/obj/item/reagent_containers/syringe,
/obj/item/reagent_containers/dropper,
-/obj/structure/sign/biohazard{
+/obj/structure/sign/warning/biohazard{
pixel_x = 32
},
/turf/open/floor/plasteel/floorgrime,
@@ -67100,7 +66384,7 @@
/area/science/server)
"cId" = (
/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/sign/securearea{
+/obj/structure/sign/warning/securearea{
desc = "A warning sign which reads 'SERVER ROOM'.";
name = "SERVER ROOM";
pixel_y = 32
@@ -67148,7 +66432,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/obj/structure/sign/biohazard{
+/obj/structure/sign/warning/biohazard{
pixel_y = 32
},
/turf/open/floor/plating,
@@ -67302,7 +66586,7 @@
/turf/open/floor/plasteel/vault,
/area/medical/virology)
"cIy" = (
-/obj/structure/sign/biohazard{
+/obj/structure/sign/warning/biohazard{
pixel_x = -32
},
/turf/open/space,
@@ -67580,11 +66864,7 @@
/turf/open/floor/plating,
/area/maintenance/starboard/aft)
"cJe" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
- icon_state = "space";
- layer = 4;
- name = "EXTERNAL AIRLOCK";
+/obj/structure/sign/warning/vacuum/external{
pixel_y = -32
},
/obj/structure/cable/yellow{
@@ -67853,19 +67133,6 @@
dir = 4
},
/area/science/robotics/lab)
-"cJI" = (
-/obj/structure/table/optable,
-/obj/item/surgical_drapes,
-/obj/item/storage/firstaid/regular,
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/obj/machinery/light/small/built{
- dir = 1
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
"cJJ" = (
/obj/machinery/computer/operating{
dir = 1;
@@ -68366,7 +67633,7 @@
/turf/open/floor/plating,
/area/maintenance/aft)
"cKI" = (
-/obj/structure/sign/securearea,
+/obj/structure/sign/warning/securearea,
/turf/closed/wall/r_wall,
/area/science/research)
"cKJ" = (
@@ -68440,11 +67707,7 @@
/turf/open/floor/plating,
/area/maintenance/solars/starboard/aft)
"cKR" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'HIGH VOLTAGE'";
- icon_state = "shock";
- name = "HIGH VOLTAGE"
- },
+/obj/structure/sign/warning/electricshock,
/turf/closed/wall/r_wall,
/area/maintenance/solars/starboard/aft)
"cKS" = (
@@ -69721,11 +68984,7 @@
/obj/structure/cable{
icon_state = "0-8"
},
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
- icon_state = "space";
- layer = 4;
- name = "EXTERNAL AIRLOCK";
+/obj/structure/sign/warning/vacuum/external{
pixel_y = -32
},
/turf/open/floor/plating,
@@ -69914,10 +69173,6 @@
},
/turf/open/floor/plasteel,
/area/hallway/secondary/exit/departure_lounge)
-"cNM" = (
-/obj/effect/landmark/lightsout,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit/departure_lounge)
"cNN" = (
/obj/structure/flora/ausbushes/fernybush,
/obj/structure/flora/ausbushes/fullgrass,
@@ -69981,7 +69236,7 @@
},
/area/hallway/secondary/exit/departure_lounge)
"cNT" = (
-/obj/structure/sign/vacuum{
+/obj/structure/sign/warning/vacuum{
pixel_x = 32
},
/obj/effect/turf_decal/stripes/line,
@@ -70484,7 +69739,7 @@
/obj/structure/chair{
dir = 8
},
-/obj/structure/sign/electricshock{
+/obj/structure/sign/warning/electricshock{
pixel_x = 32
},
/obj/effect/turf_decal/stripes/line{
@@ -70708,7 +69963,7 @@
/turf/open/floor/carpet,
/area/chapel/main)
"cPE" = (
-/obj/structure/sign/kiddieplaque/badger{
+/obj/structure/sign/plaques/kiddie/badger{
pixel_y = 32
},
/obj/item/reagent_containers/food/snacks/grown/poppy{
@@ -71235,7 +70490,7 @@
},
/area/chapel/main)
"cQJ" = (
-/obj/structure/sign/vacuum{
+/obj/structure/sign/warning/vacuum{
pixel_x = -32
},
/obj/effect/turf_decal/delivery,
@@ -71272,7 +70527,7 @@
/turf/open/floor/plasteel,
/area/hallway/secondary/exit/departure_lounge)
"cQP" = (
-/obj/structure/sign/vacuum{
+/obj/structure/sign/warning/vacuum{
pixel_x = 32
},
/obj/effect/turf_decal/delivery,
@@ -71343,11 +70598,11 @@
/turf/open/floor/plasteel,
/area/science/xenobiology)
"cRa" = (
-/obj/structure/sign/biohazard,
+/obj/structure/sign/warning/biohazard,
/turf/closed/wall,
/area/science/xenobiology)
"cRb" = (
-/obj/structure/sign/securearea,
+/obj/structure/sign/warning/securearea,
/turf/closed/wall,
/area/science/xenobiology)
"cRc" = (
@@ -71431,11 +70686,7 @@
dir = 2;
id = "chapelgun"
},
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
- icon_state = "space";
- layer = 4;
- name = "EXTERNAL AIRLOCK";
+/obj/structure/sign/warning/vacuum/external{
pixel_y = 32
},
/obj/machinery/light/small{
@@ -71508,7 +70759,7 @@
/turf/open/floor/plasteel,
/area/hallway/secondary/exit/departure_lounge)
"cRu" = (
-/obj/structure/sign/biohazard,
+/obj/structure/sign/warning/biohazard,
/turf/closed/wall/r_wall,
/area/science/xenobiology)
"cRv" = (
@@ -71537,7 +70788,7 @@
},
/area/science/xenobiology)
"cRw" = (
-/obj/structure/sign/securearea,
+/obj/structure/sign/warning/securearea,
/turf/closed/wall/r_wall,
/area/science/xenobiology)
"cRx" = (
@@ -71897,9 +71148,6 @@
"cSn" = (
/turf/open/floor/engine,
/area/science/xenobiology)
-"cSo" = (
-/turf/open/floor/engine,
-/area/science/xenobiology)
"cSp" = (
/obj/machinery/light/small{
dir = 8
@@ -72080,11 +71328,7 @@
/turf/open/floor/plasteel/white,
/area/science/xenobiology)
"cSI" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'HIGH VOLTAGE'";
- icon_state = "shock";
- name = "HIGH VOLTAGE"
- },
+/obj/structure/sign/warning/electricshock,
/turf/closed/wall,
/area/science/xenobiology)
"cSJ" = (
@@ -72388,17 +71632,6 @@
},
/turf/open/floor/engine,
/area/science/xenobiology)
-"cTh" = (
-/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)
"cTi" = (
/obj/structure/chair{
dir = 4
@@ -72613,7 +71846,6 @@
/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/effect/landmark/lightsout,
/obj/machinery/holopad,
/turf/open/floor/plasteel/white,
/area/science/xenobiology)
@@ -72640,9 +71872,6 @@
},
/turf/open/floor/plasteel/dark,
/area/engine/atmos)
-"cUS" = (
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/supply)
"cUT" = (
/obj/machinery/light{
dir = 1
@@ -72659,56 +71888,7 @@
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/wood,
/area/library)
-"cUV" = (
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/supply)
-"cUW" = (
-/obj/machinery/conveyor{
- dir = 4;
- id = "QMLoad2"
- },
-/obj/machinery/door/poddoor{
- id = "QMLoaddoor2";
- name = "supply dock loading door"
- },
-/turf/open/floor/plating,
-/area/shuttle/supply)
-"cUX" = (
-/obj/machinery/door/airlock/titanium{
- name = "Supply Shuttle Airlock";
- req_access_txt = "31"
- },
-/turf/open/floor/plating,
-/area/shuttle/supply)
-"cUY" = (
-/obj/machinery/button/door{
- dir = 2;
- id = "QMLoaddoor2";
- name = "Loading Doors";
- pixel_x = 24;
- pixel_y = 8
- },
-/obj/machinery/button/door{
- id = "QMLoaddoor";
- name = "Loading Doors";
- pixel_x = 24;
- pixel_y = -8
- },
-/obj/machinery/light{
- dir = 4
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/supply)
"cUZ" = (
-/obj/machinery/door/airlock/titanium{
- name = "Supply Shuttle Airlock";
- req_access_txt = "31"
- },
-/obj/docking_port/mobile/supply{
- dwidth = 5;
- roundstart_move = "supply_away";
- width = 12
- },
/obj/docking_port/stationary{
dir = 8;
dwidth = 5;
@@ -72717,8 +71897,8 @@
name = "Cargo Bay";
width = 12
},
-/turf/open/floor/plating,
-/area/shuttle/supply)
+/turf/open/space/basic,
+/area/space)
"cVa" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -72747,9 +71927,6 @@
},
/turf/open/floor/wood,
/area/library)
-"cVc" = (
-/turf/closed/wall/mineral/titanium/interior,
-/area/shuttle/supply)
"cVd" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 8
@@ -72781,13 +71958,6 @@
},
/turf/open/floor/wood,
/area/library)
-"cVg" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/shuttle/engine/heater,
-/turf/open/floor/plating/airless,
-/area/shuttle/supply)
"cVh" = (
/obj/structure/closet/emcloset,
/turf/open/floor/plasteel/dark,
@@ -72799,67 +71969,7 @@
},
/turf/open/floor/wood,
/area/library)
-"cVj" = (
-/obj/structure/shuttle/engine/propulsion,
-/turf/open/floor/plating/airless,
-/area/shuttle/supply)
-"cVk" = (
-/obj/structure/shuttle/engine/propulsion/burst/left,
-/turf/open/floor/plating/airless,
-/area/shuttle/supply)
-"cVl" = (
-/obj/structure/shuttle/engine/propulsion/burst/right,
-/turf/open/floor/plating/airless,
-/area/shuttle/supply)
-"cVm" = (
-/obj/structure/shuttle/engine/propulsion/left{
- dir = 8
- },
-/turf/open/floor/plating/airless,
-/area/shuttle/transport)
-"cVn" = (
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/transport)
-"cVp" = (
-/obj/effect/spawner/structure/window/shuttle,
-/turf/open/floor/plating,
-/area/shuttle/transport)
-"cVr" = (
-/obj/structure/shuttle/engine/heater{
- dir = 8
- },
-/obj/structure/window/reinforced,
-/turf/open/floor/plating/airless,
-/area/shuttle/transport)
-"cVu" = (
-/obj/structure/chair,
-/turf/open/floor/pod/dark,
-/area/shuttle/transport)
-"cVv" = (
-/turf/open/floor/pod/light,
-/area/shuttle/transport)
-"cVw" = (
-/obj/structure/shuttle/engine/heater{
- dir = 8
- },
-/obj/structure/window/reinforced{
- dir = 4
- },
-/turf/open/floor/plating/airless,
-/area/shuttle/transport)
"cVx" = (
-/obj/machinery/door/airlock/titanium,
-/obj/docking_port/mobile{
- dir = 8;
- dwidth = 2;
- height = 13;
- id = "ferry";
- name = "ferry shuttle";
- port_direction = 1;
- preferred_direction = 4;
- roundstart_move = "ferry_away";
- width = 5
- },
/obj/docking_port/stationary{
dir = 8;
dwidth = 2;
@@ -72869,8 +71979,8 @@
turf_type = /turf/open/space;
width = 5
},
-/turf/open/floor/pod/light,
-/area/shuttle/transport)
+/turf/open/space/basic,
+/area/space)
"cVy" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
/obj/effect/spawner/structure/window/reinforced,
@@ -72886,12 +71996,6 @@
/obj/structure/lattice/catwalk,
/turf/open/space,
/area/engine/atmos)
-"cVB" = (
-/obj/structure/chair{
- dir = 1
- },
-/turf/open/floor/pod/dark,
-/area/shuttle/transport)
"cVC" = (
/mob/living/simple_animal/sloth/citrus,
/turf/open/floor/plasteel,
@@ -72907,29 +72011,12 @@
},
/turf/open/floor/plating,
/area/shuttle/auxillary_base)
-"cVF" = (
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/abandoned)
-"cVG" = (
-/obj/effect/spawner/structure/window/shuttle,
-/turf/open/floor/plating,
-/area/shuttle/abandoned)
"cVH" = (
/obj/effect/turf_decal/stripes/line{
dir = 5
},
/turf/open/floor/plating,
/area/shuttle/auxillary_base)
-"cVI" = (
-/obj/machinery/door/airlock/titanium{
- name = "recovery shuttle external airlock"
- },
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/abandoned)
"cVJ" = (
/obj/structure/window/reinforced,
/obj/machinery/computer/atmos_control/tank{
@@ -72962,250 +72049,20 @@
},
/turf/open/floor/plating,
/area/shuttle/auxillary_base)
-"cVN" = (
-/obj/structure/shuttle/engine/propulsion/left{
- dir = 8
- },
-/turf/open/floor/plating/airless,
-/area/shuttle/abandoned)
-"cVO" = (
-/obj/structure/toilet{
- pixel_y = 9
- },
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/obj/effect/decal/cleanable/greenglow{
- desc = "Looks like something's sprung a leak"
- },
-/obj/machinery/light/small/built{
- dir = 8
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
"cVQ" = (
/obj/machinery/light{
dir = 4
},
/turf/open/floor/plating,
/area/shuttle/auxillary_base)
-"cVR" = (
-/obj/structure/mirror{
- pixel_x = 28
- },
-/obj/structure/sink{
- dir = 4;
- pixel_x = 11
- },
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"cVS" = (
-/obj/structure/table,
-/obj/item/storage/pill_bottle/dice{
- pixel_y = 3
- },
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"cVT" = (
-/obj/structure/closet/wardrobe/mixed,
-/obj/item/clothing/under/rank/centcom_officer{
- desc = "A badge on the arm indicates that it's meant to be worn by CentCom recovery teams. This one seems dusty and clearly hasn't been cleaned in some time.";
- name = "\improper dusty old CentCom jumpsuit"
- },
-/obj/item/clothing/under/rank/centcom_commander{
- desc = "A badge on the arm indicates that it's meant to be worn by CentCom recovery teams. This one seems dusty and clearly hasn't been cleaned in some time.";
- name = "\improper dusty old CentCom jumpsuit"
- },
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"cVU" = (
-/obj/structure/table,
-/obj/item/stack/sheet/metal/fifty,
-/obj/item/stock_parts/cell/high{
- charge = 100;
- maxcharge = 15000;
- pixel_y = 2
- },
-/obj/effect/decal/cleanable/cobweb,
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"cVV" = (
-/obj/machinery/suit_storage_unit/standard_unit,
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"cVX" = (
-/obj/structure/tank_dispenser/oxygen{
- layer = 2.7;
- pixel_x = -1;
- pixel_y = 2
- },
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"cVY" = (
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/abandoned)
-"cVZ" = (
-/obj/structure/sign/vacuum{
- pixel_x = -32
- },
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/obj/machinery/light/small/built{
- dir = 8
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/abandoned)
-"cWa" = (
-/obj/structure/closet/crate/medical{
- name = "medical crate"
- },
-/obj/item/storage/firstaid/o2{
- pixel_x = 3;
- pixel_y = 3
- },
-/obj/item/roller{
- pixel_y = 4
- },
-/obj/item/device/healthanalyzer,
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/obj/effect/turf_decal/bot,
-/obj/machinery/light/small/built{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/shuttle/abandoned)
-"cWb" = (
-/obj/item/storage/box/lights/mixed,
-/obj/item/cigbutt,
-/obj/structure/closet/crate{
- icon_state = "crateopen";
- name = "spare equipment crate";
- opened = 1
- },
-/obj/item/tank/internals/oxygen/red,
-/obj/item/tank/internals/air,
-/obj/effect/spawner/lootdrop/maintenance{
- lootcount = 2;
- name = "2maintenance loot spawner"
- },
-/obj/item/clothing/mask/breath,
-/obj/item/clothing/mask/breath,
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/obj/effect/turf_decal/bot,
-/turf/open/floor/plasteel,
-/area/shuttle/abandoned)
-"cWc" = (
-/obj/structure/closet/crate{
- name = "spare equipment crate"
- },
-/obj/item/grenade/chem_grenade/metalfoam,
-/obj/item/relic,
-/obj/item/device/t_scanner,
-/obj/effect/spawner/lootdrop/maintenance{
- lootcount = 3;
- name = "3maintenance loot spawner"
- },
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/obj/effect/turf_decal/bot,
-/turf/open/floor/plasteel,
-/area/shuttle/abandoned)
-"cWd" = (
-/obj/structure/closet/crate{
- name = "emergency supplies crate"
- },
-/obj/item/storage/toolbox/emergency,
-/obj/item/storage/toolbox/emergency,
-/obj/item/device/flashlight/flare{
- pixel_x = 3;
- pixel_y = 3
- },
-/obj/item/device/flashlight/flare{
- pixel_x = -6;
- pixel_y = -2
- },
-/obj/item/crowbar,
-/obj/item/wrench,
-/obj/effect/spawner/lootdrop/maintenance,
-/obj/item/extinguisher,
-/obj/item/extinguisher,
-/obj/effect/decal/cleanable/cobweb/cobweb2,
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/obj/effect/turf_decal/bot,
-/turf/open/floor/plasteel,
-/area/shuttle/abandoned)
-"cWe" = (
-/obj/structure/shuttle/engine/heater{
- dir = 8
- },
-/obj/structure/window/reinforced{
- dir = 4
- },
-/turf/open/floor/plating/airless,
-/area/shuttle/abandoned)
-"cWf" = (
-/obj/structure/shuttle/engine/propulsion{
- dir = 8
- },
-/turf/open/floor/plating/airless,
-/area/shuttle/abandoned)
"cWg" = (
/obj/docking_port/mobile/auxillary_base{
dheight = 4;
dir = 2;
dwidth = 4;
height = 9;
- width = 9
+ width = 9;
+ timid = 0
},
/obj/machinery/bluespace_beacon,
/obj/machinery/computer/auxillary_base,
@@ -73217,279 +72074,10 @@
},
/turf/open/floor/plating,
/area/shuttle/auxillary_base)
-"cWi" = (
-/obj/machinery/door/airlock/titanium{
- name = "bathroom"
- },
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/abandoned)
-"cWj" = (
-/obj/structure/bed,
-/obj/item/bedsheet/centcom,
-/obj/effect/decal/remains/human,
-/obj/effect/decal/cleanable/blood/old,
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/obj/machinery/light/small/built{
- dir = 4
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"cWk" = (
-/obj/effect/decal/cleanable/blood/old,
-/obj/effect/decal/cleanable/blood/gibs/old,
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/obj/effect/decal/remains/human{
- desc = "They look like human remains, and have clearly been gnawed at."
- },
-/obj/item/gun/energy/laser/retro,
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/abandoned)
-"cWl" = (
-/obj/structure/table,
-/obj/item/storage/belt/utility,
-/obj/item/storage/belt/utility,
-/obj/item/device/radio/off,
-/obj/item/device/radio/off,
-/obj/item/device/radio/off,
-/obj/item/device/radio/off,
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/obj/machinery/light/small/built{
- dir = 8
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"cWm" = (
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/obj/effect/decal/cleanable/oil,
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/abandoned)
-"cWn" = (
-/obj/machinery/door/airlock/titanium{
- name = "E.V.A. equipment"
- },
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/abandoned)
-"cWo" = (
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/abandoned)
-"cWp" = (
-/obj/effect/decal/cleanable/blood/old,
-/obj/effect/decal/cleanable/blood/gibs/old,
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/obj/effect/decal/remains/human{
- desc = "They look like human remains, and have clearly been gnawed at."
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/abandoned)
-"cWq" = (
-/obj/effect/decal/cleanable/oil,
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/obj/effect/turf_decal/delivery{
- dir = 1
- },
-/turf/open/floor/plasteel{
- dir = 1
- },
-/area/shuttle/abandoned)
-"cWr" = (
-/obj/machinery/door/airlock/titanium{
- name = "cargo bay"
- },
-/obj/effect/turf_decal/delivery{
- dir = 1
- },
-/turf/open/floor/plasteel{
- dir = 1
- },
-/area/shuttle/abandoned)
-"cWs" = (
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/obj/effect/turf_decal/delivery{
- dir = 1
- },
-/turf/open/floor/plasteel{
- dir = 1
- },
-/area/shuttle/abandoned)
-"cWt" = (
-/obj/effect/decal/cleanable/robot_debris/old,
-/obj/effect/decal/cleanable/oil,
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/obj/effect/turf_decal/delivery{
- dir = 1
- },
-/turf/open/floor/plasteel{
- dir = 1
- },
-/area/shuttle/abandoned)
-"cWu" = (
-/obj/machinery/shower{
- dir = 4
- },
-/obj/machinery/door/window/westright{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/obj/item/soap/nanotrasen,
-/obj/effect/decal/remains/human{
- desc = "They look like human remains, and have clearly been gnawed at."
- },
-/obj/effect/decal/cleanable/blood/gibs/old,
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"cWv" = (
-/obj/effect/decal/cleanable/blood/old,
-/obj/structure/mirror{
- pixel_x = 28
- },
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/obj/machinery/light/small/built{
- dir = 4
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/abandoned)
-"cWw" = (
-/obj/structure/bed,
-/obj/item/bedsheet/centcom,
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"cWx" = (
-/obj/effect/decal/cleanable/blood/old,
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/obj/effect/decal/cleanable/blood/gibs/limb,
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/abandoned)
-"cWy" = (
-/obj/structure/table,
-/obj/item/stack/sheet/glass/fifty{
- pixel_x = -2;
- pixel_y = 2
- },
-/obj/item/stack/rods/fifty,
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/obj/item/wrench,
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"cWz" = (
-/obj/structure/rack,
-/obj/item/storage/toolbox/electrical{
- pixel_x = 1;
- pixel_y = 6
- },
-/obj/item/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,
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
"cWA" = (
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
/area/maintenance/port/fore)
-"cWB" = (
-/obj/machinery/portable_atmospherics/canister/oxygen,
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/obj/machinery/light/small{
- dir = 4
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"cWC" = (
-/obj/effect/decal/cleanable/oil,
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/obj/effect/turf_decal/bot,
-/turf/open/floor/plasteel,
-/area/shuttle/abandoned)
-"cWD" = (
-/obj/structure/closet/emcloset,
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/obj/effect/turf_decal/bot,
-/obj/machinery/light/small,
-/turf/open/floor/plasteel,
-/area/shuttle/abandoned)
-"cWE" = (
-/obj/structure/closet/firecloset/full,
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/obj/effect/turf_decal/bot,
-/turf/open/floor/plasteel,
-/area/shuttle/abandoned)
"cWF" = (
/obj/machinery/portable_atmospherics/canister/air,
/obj/effect/turf_decal/stripes/line{
@@ -73497,37 +72085,6 @@
},
/turf/open/floor/plating,
/area/shuttle/auxillary_base)
-"cWG" = (
-/obj/machinery/door/airlock/titanium{
- name = "bathroom"
- },
-/obj/effect/decal/cleanable/blood/old,
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/abandoned)
-"cWH" = (
-/obj/machinery/vending/boozeomat{
- icon_deny = "smartfridge";
- icon_state = "smartfridge";
- req_access_txt = "0";
- use_power = 0
- },
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/abandoned)
-"cWI" = (
-/obj/machinery/door/airlock/titanium{
- name = "dormitory"
- },
-/obj/effect/decal/cleanable/blood/old,
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/abandoned)
"cWJ" = (
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plating,
@@ -73536,20 +72093,6 @@
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
/area/construction/mining/aux_base)
-"cWL" = (
-/obj/machinery/door/airlock/titanium{
- name = "recovery shuttle interior airlock"
- },
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/abandoned)
"cWM" = (
/obj/machinery/door/airlock/external{
cyclelinkeddir = 1;
@@ -73560,151 +72103,6 @@
},
/turf/open/floor/plating,
/area/construction/mining/aux_base)
-"cWN" = (
-/obj/machinery/door/airlock/titanium{
- name = "cargo bay"
- },
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/obj/effect/turf_decal/delivery{
- dir = 1
- },
-/turf/open/floor/plasteel{
- dir = 1
- },
-/area/shuttle/abandoned)
-"cWO" = (
-/obj/machinery/vending/cigarette{
- use_power = 0
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"cWP" = (
-/obj/effect/decal/cleanable/blood/gibs/old,
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/obj/machinery/light/built{
- dir = 1
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/abandoned)
-"cWQ" = (
-/obj/effect/decal/cleanable/blood/old,
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/obj/effect/decal/cleanable/blood/gibs/limb,
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/abandoned)
-"cWR" = (
-/obj/effect/decal/cleanable/blood/old,
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/abandoned)
-"cWS" = (
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/obj/effect/decal/cleanable/cobweb/cobweb2,
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/abandoned)
-"cWT" = (
-/obj/structure/table,
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/obj/item/folder/blue,
-/obj/item/pen,
-/obj/machinery/light{
- dir = 1
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"cWU" = (
-/obj/effect/decal/cleanable/cobweb,
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/obj/structure/table,
-/obj/item/device/camera,
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"cWV" = (
-/obj/structure/table,
-/obj/item/paper_bin{
- pixel_x = -1;
- pixel_y = 6
- },
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"cWW" = (
-/obj/structure/table,
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/obj/item/storage/photo_album,
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"cWX" = (
-/obj/structure/reagent_dispensers/fueltank,
-/obj/structure/sign/vacuum{
- pixel_x = -32
- },
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/obj/machinery/light/small/built{
- dir = 4
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/abandoned)
-"cWY" = (
-/obj/machinery/vending/coffee,
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"cWZ" = (
-/obj/structure/chair,
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"cXa" = (
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"cXb" = (
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
"cXc" = (
/obj/machinery/light/small{
dir = 8
@@ -73712,235 +72110,6 @@
/obj/structure/easel,
/turf/open/floor/plating,
/area/maintenance/starboard/fore)
-"cXf" = (
-/obj/structure/table,
-/obj/item/folder/blue,
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/obj/item/device/gps{
- gpstag = "NTREC1";
- pixel_x = -1;
- pixel_y = 2
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"cXg" = (
-/obj/machinery/door/airlock/titanium{
- name = "recovery shuttle interior airlock"
- },
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/abandoned)
-"cXh" = (
-/obj/structure/table,
-/obj/item/reagent_containers/food/drinks/shaker,
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"cXi" = (
-/obj/structure/chair{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"cXj" = (
-/obj/structure/table,
-/obj/item/storage/fancy/donut_box,
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"cXk" = (
-/obj/structure/table,
-/obj/item/reagent_containers/food/condiment/peppermill{
- pixel_x = 3;
- pixel_y = 4
- },
-/obj/item/reagent_containers/food/condiment/saltshaker{
- pixel_x = -3;
- pixel_y = 4
- },
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"cXl" = (
-/obj/structure/chair{
- dir = 8
- },
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"cXm" = (
-/obj/machinery/door/airlock/titanium{
- name = "living quarters"
- },
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/abandoned)
-"cXn" = (
-/obj/item/clothing/suit/bio_suit,
-/obj/item/clothing/suit/bio_suit,
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/obj/item/clothing/gloves/color/latex,
-/obj/item/clothing/gloves/color/latex,
-/obj/item/clothing/head/bio_hood,
-/obj/item/clothing/head/bio_hood,
-/obj/item/clothing/mask/breath,
-/obj/item/clothing/mask/breath,
-/obj/structure/table,
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"cXo" = (
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/obj/item/roller{
- pixel_x = -3;
- pixel_y = 7
- },
-/obj/item/roller{
- pixel_x = 3;
- pixel_y = 4
- },
-/obj/item/reagent_containers/spray/cleaner,
-/obj/structure/table,
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"cXp" = (
-/obj/effect/decal/cleanable/blood/old,
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/obj/effect/decal/cleanable/blood/gibs/limb,
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"cXq" = (
-/obj/effect/decal/cleanable/blood/gibs/old,
-/obj/effect/decal/cleanable/blood/old,
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/obj/effect/decal/remains/human{
- desc = "They look like human remains, and have clearly been gnawed at."
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"cXr" = (
-/obj/item/storage/toolbox/emergency{
- pixel_x = -3;
- pixel_y = 3
- },
-/obj/item/storage/toolbox/emergency,
-/obj/item/storage/toolbox/emergency{
- pixel_x = 3;
- pixel_y = -3
- },
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/obj/structure/table,
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"cXs" = (
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/obj/item/clothing/gloves/color/black,
-/obj/item/clothing/gloves/color/black,
-/obj/item/clothing/suit/armor/vest,
-/obj/item/clothing/suit/armor/vest,
-/obj/structure/table,
-/obj/item/clothing/head/helmet/swat/nanotrasen,
-/obj/item/clothing/head/helmet/swat/nanotrasen,
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"cXt" = (
-/obj/machinery/door/airlock/titanium{
- name = "bridge"
- },
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/abandoned)
-"cXu" = (
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/obj/machinery/computer/shuttle/white_ship{
- dir = 8
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"cXv" = (
-/obj/effect/decal/cleanable/blood/old,
-/obj/structure/chair/comfy/black{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"cXw" = (
-/obj/structure/reagent_dispensers/watertank,
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/obj/structure/light_construct/small{
- dir = 4
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/abandoned)
-"cXx" = (
-/obj/machinery/vending/cola/random,
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"cXy" = (
-/obj/structure/chair{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
"cXz" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -73956,38 +72125,6 @@
"cXA" = (
/turf/closed/wall/r_wall,
/area/security/checkpoint/engineering)
-"cXC" = (
-/obj/item/phone{
- pixel_x = -3;
- pixel_y = 3
- },
-/obj/item/cigbutt/cigarbutt{
- pixel_x = 5;
- pixel_y = -1
- },
-/obj/structure/table,
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"cXD" = (
-/obj/effect/decal/cleanable/blood/old,
-/obj/effect/decal/cleanable/blood/gibs/old,
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/obj/item/clothing/head/centhat{
- desc = "There's a gouge through the top where something has clawed clean through it. Whoever was wearing it probably doesn't need a hat any more.";
- name = "\improper damaged CentCom hat"
- },
-/obj/effect/decal/remains/human{
- desc = "They look like human remains, and have clearly been gnawed at."
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/abandoned)
"cXE" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
dir = 4
@@ -73996,109 +72133,10 @@
dir = 1
},
/area/construction/mining/aux_base)
-"cXF" = (
-/obj/machinery/vending/snack/random,
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"cXG" = (
-/obj/structure/sign/science{
- pixel_y = -32
- },
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/abandoned)
-"cXH" = (
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/obj/machinery/computer/camera_advanced/shuttle_docker/whiteship{
- dir = 1;
- station_lock_override = 1;
- view_range = 15;
- x_offset = -3;
- y_offset = -7
- },
-/obj/machinery/light/built{
- dir = 2
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
"cXI" = (
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
/area/maintenance/starboard)
-"cXJ" = (
-/obj/structure/table,
-/obj/item/device/radio/off{
- pixel_y = 6
- },
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"cXK" = (
-/obj/structure/table,
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"cXL" = (
-/obj/machinery/door/airlock/titanium{
- name = "hydroponics"
- },
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/abandoned)
-"cXM" = (
-/obj/structure/sign/botany,
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/abandoned)
-"cXN" = (
-/obj/machinery/door/airlock/titanium{
- name = "kitchen"
- },
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/abandoned)
-"cXO" = (
-/obj/machinery/door/airlock/titanium{
- name = "laboratory"
- },
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/abandoned)
-"cXP" = (
-/obj/structure/sign/bluecross_2,
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/abandoned)
-"cXQ" = (
-/obj/machinery/door/airlock/titanium{
- name = "medbay";
- welded = 0
- },
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/abandoned)
"cXR" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 10
@@ -74107,89 +72145,6 @@
dir = 1
},
/area/construction/mining/aux_base)
-"cXS" = (
-/obj/item/storage/bag/plants/portaseeder,
-/obj/structure/table,
-/obj/item/reagent_containers/spray/plantbgone{
- pixel_x = 13;
- pixel_y = 5
- },
-/obj/item/reagent_containers/glass/bottle/nutrient/ez,
-/obj/item/reagent_containers/glass/bottle/nutrient/ez,
-/obj/item/reagent_containers/glass/bottle/nutrient/ez,
-/obj/item/reagent_containers/glass/bottle/nutrient/rh{
- pixel_x = -2;
- pixel_y = 3
- },
-/obj/effect/decal/cleanable/cobweb,
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"cXT" = (
-/obj/machinery/biogenerator{
- idle_power_usage = 0;
- use_power = 0
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"cXU" = (
-/obj/machinery/vending/hydroseeds{
- use_power = 0
- },
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/obj/machinery/light/small/built{
- dir = 1
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"cXV" = (
-/obj/machinery/processor,
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/obj/machinery/light/small/built{
- dir = 1
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"cXW" = (
-/obj/structure/table,
-/obj/machinery/microwave{
- pixel_x = -3;
- pixel_y = 6
- },
-/obj/item/storage/box/donkpockets,
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/obj/effect/decal/cleanable/cobweb/cobweb2,
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"cXX" = (
-/obj/structure/kitchenspike,
-/obj/effect/decal/cleanable/blood/gibs/old,
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"cXY" = (
-/obj/effect/decal/cleanable/oil,
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
"cXZ" = (
/obj/structure/reagent_dispensers/watertank,
/obj/structure/window/reinforced{
@@ -74198,32 +72153,6 @@
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
/area/maintenance/starboard)
-"cYa" = (
-/obj/machinery/sleeper{
- dir = 4;
- use_power = 0
- },
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"cYb" = (
-/obj/structure/closet/crate/freezer,
-/obj/item/reagent_containers/blood/empty{
- pixel_x = -3;
- pixel_y = -3
- },
-/obj/item/reagent_containers/blood/OMinus,
-/obj/item/reagent_containers/blood/random,
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/obj/effect/decal/cleanable/xenoblood,
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
"cYc" = (
/obj/structure/table/optable{
name = "Robotics Operating Table"
@@ -74240,314 +72169,17 @@
dir = 1
},
/area/science/robotics/lab)
-"cYd" = (
-/obj/structure/table,
-/obj/item/wrench,
-/obj/item/crowbar,
-/obj/item/clothing/suit/apron,
-/obj/item/shovel/spade,
-/obj/item/cultivator,
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/obj/item/wirecutters,
-/obj/item/device/plant_analyzer,
-/obj/item/reagent_containers/glass/bucket,
-/obj/machinery/light/small/built{
- dir = 8
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"cYe" = (
-/obj/machinery/smartfridge{
- use_power = 0
- },
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/abandoned)
-"cYf" = (
-/obj/structure/sink{
- dir = 4;
- pixel_x = 11
- },
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/abandoned)
-"cYg" = (
-/obj/structure/sink{
- dir = 8;
- pixel_x = -12;
- pixel_y = 2
- },
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/abandoned)
-"cYh" = (
-/obj/structure/table,
-/obj/item/kitchen/rollingpin,
-/obj/item/kitchen/knife,
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/obj/machinery/light/small/built{
- dir = 4
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"cYi" = (
-/obj/effect/decal/cleanable/egg_smudge,
-/obj/effect/decal/cleanable/flour,
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/abandoned)
"cYj" = (
/obj/structure/closet/firecloset,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
/area/maintenance/starboard)
-"cYl" = (
-/obj/structure/chair/office/light,
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/abandoned)
-"cYm" = (
-/obj/machinery/vending/wallmed{
- name = "Emergency NanoMed";
- pixel_x = -28;
- req_access_txt = "0";
- use_power = 0
- },
-/obj/machinery/iv_drip,
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/obj/machinery/light/small/built{
- dir = 8
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/abandoned)
-"cYn" = (
-/obj/effect/decal/cleanable/xenoblood,
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/obj/effect/decal/remains/xeno{
- desc = "A pile of remains that look vaguely humanoid. The skull is abnormally elongated, and there are burns through some of the other bones."
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/abandoned)
-"cYo" = (
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/obj/effect/decal/cleanable/ash,
-/obj/effect/decal/cleanable/xenoblood,
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/abandoned)
-"cYp" = (
-/obj/structure/sink{
- dir = 4;
- pixel_x = 11
- },
-/obj/effect/decal/cleanable/xenoblood,
-/obj/effect/decal/cleanable/xenoblood/xgibs/limb,
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/abandoned)
-"cYq" = (
-/obj/structure/shuttle/engine/propulsion/right{
- dir = 8
- },
-/turf/open/floor/plating/airless,
-/area/shuttle/abandoned)
-"cYr" = (
-/obj/machinery/hydroponics/constructable,
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"cYs" = (
-/obj/machinery/hydroponics/constructable,
-/obj/item/seeds/glowshroom,
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"cYt" = (
-/obj/structure/table,
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/obj/item/storage/box/monkeycubes{
- pixel_y = 4
- },
-/obj/item/storage/fancy/egg_box{
- pixel_y = 5
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"cYu" = (
-/obj/structure/table,
-/obj/machinery/reagentgrinder{
- pixel_y = 6
- },
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"cYv" = (
-/obj/structure/table,
-/obj/item/reagent_containers/food/condiment/flour,
-/obj/item/reagent_containers/food/condiment/flour,
-/obj/item/reagent_containers/food/condiment/flour,
-/obj/item/reagent_containers/food/condiment/flour,
-/obj/item/reagent_containers/food/condiment/milk,
-/obj/item/reagent_containers/food/condiment/milk,
-/obj/item/reagent_containers/food/condiment/milk,
-/obj/item/reagent_containers/food/condiment/soymilk,
-/obj/item/reagent_containers/food/condiment/soymilk,
-/obj/item/reagent_containers/food/condiment/sugar,
-/obj/item/reagent_containers/food/condiment/sugar,
-/obj/item/reagent_containers/food/condiment/sugar,
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"cYw" = (
-/obj/structure/table,
-/obj/item/reagent_containers/glass/beaker{
- pixel_x = 5
- },
-/obj/item/reagent_containers/food/condiment/enzyme{
- layer = 5
- },
-/obj/item/reagent_containers/dropper,
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"cYx" = (
-/obj/structure/table,
-/obj/item/reagent_containers/glass/beaker{
- pixel_x = 5;
- pixel_y = 2
- },
-/obj/item/reagent_containers/glass/beaker,
-/obj/item/reagent_containers/dropper,
-/obj/item/reagent_containers/syringe,
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"cYy" = (
-/obj/structure/table,
-/obj/item/hand_labeler,
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"cYz" = (
-/obj/structure/table,
-/obj/item/folder/white{
- pixel_x = 4;
- pixel_y = -3
- },
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"cYA" = (
-/obj/structure/table,
-/obj/item/defibrillator,
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"cYB" = (
-/obj/structure/table,
-/obj/item/clothing/gloves/color/latex,
-/obj/item/clothing/mask/surgical,
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/obj/item/clothing/suit/apron/surgical,
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"cYC" = (
-/obj/structure/table,
-/obj/item/reagent_containers/glass/bottle/epinephrine{
- pixel_x = 6
- },
-/obj/item/reagent_containers/glass/bottle/charcoal{
- pixel_x = -3
- },
-/obj/item/reagent_containers/syringe,
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"cYD" = (
-/obj/structure/table,
-/obj/item/storage/backpack/duffelbag/med/surgery{
- pixel_y = 4
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
"cYE" = (
/obj/structure/closet/toolcloset,
/turf/open/floor/plasteel/yellow/side{
dir = 1
},
/area/construction/mining/aux_base)
-"cYF" = (
-/obj/effect/spawner/structure/window/shuttle,
-/turf/open/floor/plating,
-/area/shuttle/escape)
"cYG" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/cable/yellow{
@@ -74555,26 +72187,7 @@
},
/turf/open/floor/plasteel/yellow/side,
/area/construction/mining/aux_base)
-"cYH" = (
-/obj/machinery/door/airlock/titanium{
- name = "Emergency Shuttle Airlock"
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/escape)
-"cYI" = (
-/turf/closed/wall/mineral/titanium/nodiagonal,
-/area/shuttle/escape)
"cYJ" = (
-/obj/machinery/door/airlock/titanium{
- name = "Emergency Shuttle Airlock"
- },
-/obj/docking_port/mobile/emergency{
- dir = 2;
- dwidth = 5;
- height = 14;
- name = "Meta emergency shuttle";
- width = 25
- },
/obj/docking_port/stationary{
dheight = 0;
dir = 2;
@@ -74584,8 +72197,8 @@
name = "MetaStation emergency evac bay";
width = 29
},
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/escape)
+/turf/open/space/basic,
+/area/space)
"cYK" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -74608,101 +72221,6 @@
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
/area/construction/mining/aux_base)
-"cYM" = (
-/obj/structure/tank_dispenser/oxygen{
- layer = 2.7;
- pixel_x = -1;
- pixel_y = 2
- },
-/obj/machinery/light{
- dir = 4
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/escape)
-"cYN" = (
-/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/tank/internals/emergency_oxygen/double{
- pixel_x = 3
- },
-/obj/item/tank/internals/emergency_oxygen/double{
- pixel_x = 3
- },
-/obj/item/tank/internals/emergency_oxygen/double{
- pixel_x = 3
- },
-/obj/item/tank/internals/emergency_oxygen/double{
- pixel_x = 3
- },
-/obj/item/tank/internals/emergency_oxygen/double{
- pixel_x = 3
- },
-/obj/item/clothing/mask/breath{
- pixel_x = -3;
- pixel_y = -3
- },
-/obj/item/clothing/mask/breath{
- pixel_x = -3;
- pixel_y = -3
- },
-/obj/item/clothing/mask/breath{
- pixel_x = -3;
- pixel_y = -3
- },
-/obj/item/clothing/mask/breath{
- pixel_x = -3;
- pixel_y = -3
- },
-/obj/item/clothing/mask/breath{
- pixel_x = -3;
- pixel_y = -3
- },
-/obj/item/clothing/head/hardhat/orange{
- name = "protective hat";
- pixel_y = 9
- },
-/obj/item/clothing/head/hardhat/orange{
- name = "protective hat";
- pixel_y = 9
- },
-/obj/item/clothing/head/hardhat/orange{
- name = "protective hat";
- pixel_y = 9
- },
-/obj/item/clothing/head/hardhat/orange{
- name = "protective hat";
- pixel_y = 9
- },
-/obj/item/clothing/head/hardhat/orange{
- name = "protective hat";
- pixel_y = 9
- },
-/obj/structure/closet/crate{
- name = "lifejackets"
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/escape)
-"cYO" = (
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/escape)
"cYP" = (
/obj/machinery/door/airlock/engineering{
cyclelinkeddir = 1;
@@ -74720,104 +72238,18 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/closed/wall,
/area/construction/mining/aux_base)
-"cYS" = (
-/obj/item/device/radio/intercom{
- dir = 4;
- name = "Station Intercom (General)";
- pixel_y = 27
- },
-/obj/structure/chair,
-/obj/machinery/light{
- dir = 1
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/escape)
"cYT" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plasteel/white,
/area/science/xenobiology)
-"cYU" = (
-/obj/structure/table,
-/obj/item/clipboard,
-/obj/item/folder/yellow,
-/obj/item/pen,
-/obj/item/hand_labeler_refill,
-/obj/effect/turf_decal/bot,
-/turf/open/floor/plasteel,
-/area/shuttle/escape)
-"cYV" = (
-/turf/open/floor/plasteel/floorgrime,
-/area/shuttle/escape)
-"cYW" = (
-/obj/structure/closet/crate/medical{
- name = "medical crate"
- },
-/obj/item/storage/firstaid/regular,
-/obj/item/storage/firstaid/o2{
- pixel_x = 3;
- pixel_y = 3
- },
-/obj/item/storage/firstaid/toxin{
- pixel_x = -4;
- pixel_y = 3
- },
-/obj/item/device/healthanalyzer{
- pixel_x = 3;
- pixel_y = 3
- },
-/obj/item/lazarus_injector,
-/obj/effect/turf_decal/bot,
-/mob/living/simple_animal/bot/medbot{
- name = "\improper emergency medibot";
- pixel_x = -3;
- pixel_y = 2
- },
-/turf/open/floor/plasteel,
-/area/shuttle/escape)
-"cYX" = (
-/obj/item/cigbutt,
-/turf/open/floor/plasteel/floorgrime,
-/area/shuttle/escape)
-"cYY" = (
-/obj/structure/extinguisher_cabinet,
-/turf/closed/wall/mineral/titanium/nodiagonal,
-/area/shuttle/escape)
-"cYZ" = (
-/obj/machinery/vending/wallmed{
- name = "Emergency NanoMed";
- req_access_txt = "0";
- use_power = 0
- },
-/turf/closed/wall/mineral/titanium/nodiagonal,
-/area/shuttle/escape)
"cZa" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plasteel/white,
/area/science/xenobiology)
-"cZb" = (
-/obj/structure/closet/crate{
- name = "emergency supplies crate"
- },
-/obj/item/storage/toolbox/emergency,
-/obj/item/storage/toolbox/emergency,
-/obj/item/device/flashlight/flare{
- pixel_x = 3;
- pixel_y = 3
- },
-/obj/item/device/flashlight/flare{
- pixel_x = -6;
- pixel_y = -2
- },
-/obj/item/crowbar,
-/obj/item/wrench,
-/obj/item/device/radio,
-/obj/effect/turf_decal/bot,
-/turf/open/floor/plasteel,
-/area/shuttle/escape)
"cZc" = (
/obj/item/device/radio/intercom{
freerange = 0;
@@ -74835,9 +72267,6 @@
dir = 4
},
/area/chapel/main)
-"cZe" = (
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/escape)
"cZf" = (
/obj/structure/chair,
/obj/machinery/light{
@@ -74848,10 +72277,6 @@
},
/turf/open/floor/plasteel,
/area/hallway/secondary/entry)
-"cZg" = (
-/obj/structure/sign/nosmoking_2,
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/escape)
"cZh" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -74860,61 +72285,6 @@
dir = 4
},
/area/hallway/secondary/entry)
-"cZi" = (
-/obj/structure/chair,
-/turf/open/floor/mineral/titanium,
-/area/shuttle/escape)
-"cZj" = (
-/obj/structure/shuttle/engine/propulsion{
- dir = 8
- },
-/turf/open/floor/plating/airless,
-/area/shuttle/escape)
-"cZk" = (
-/obj/item/device/radio/intercom{
- dir = 2;
- name = "Station Intercom (General)";
- pixel_y = -31
- },
-/obj/structure/chair{
- dir = 1
- },
-/obj/machinery/light,
-/turf/open/floor/mineral/titanium,
-/area/shuttle/escape)
-"cZl" = (
-/obj/structure/shuttle/engine/heater{
- dir = 8
- },
-/obj/structure/window/reinforced{
- dir = 4
- },
-/turf/open/floor/plating/airless,
-/area/shuttle/escape)
-"cZm" = (
-/obj/structure/chair/office/dark{
- dir = 1
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/escape)
-"cZn" = (
-/obj/machinery/status_display,
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/escape)
-"cZo" = (
-/obj/structure/chair{
- dir = 1
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/escape)
-"cZp" = (
-/obj/machinery/door/airlock/medical/glass{
- id_tag = null;
- name = "Escape Shuttle Infirmary";
- req_access_txt = "0"
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/escape)
"cZq" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -74927,204 +72297,9 @@
},
/turf/open/floor/plasteel,
/area/hallway/secondary/entry)
-"cZr" = (
-/obj/structure/sign/bluecross_2,
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/escape)
-"cZs" = (
-/obj/structure/table,
-/obj/item/storage/firstaid/toxin,
-/obj/item/storage/firstaid/o2{
- pixel_x = 3;
- pixel_y = 3
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/escape)
-"cZt" = (
-/obj/structure/table,
-/obj/item/storage/firstaid/fire,
-/obj/item/storage/firstaid/regular{
- pixel_x = 2;
- pixel_y = 3
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/escape)
"cZv" = (
/turf/open/floor/circuit/killroom,
/area/science/xenobiology)
-"cZw" = (
-/obj/structure/table,
-/obj/item/reagent_containers/glass/bottle/epinephrine{
- pixel_x = 6
- },
-/obj/item/reagent_containers/glass/bottle/charcoal{
- pixel_x = -3
- },
-/obj/item/reagent_containers/glass/bottle/epinephrine{
- pixel_x = -3;
- pixel_y = 8
- },
-/obj/item/reagent_containers/glass/bottle/charcoal{
- pixel_x = 6;
- pixel_y = 8
- },
-/obj/item/reagent_containers/syringe/epinephrine{
- pixel_x = 3;
- pixel_y = -2
- },
-/obj/item/reagent_containers/syringe/epinephrine{
- pixel_x = 4;
- pixel_y = 1
- },
-/obj/item/reagent_containers/syringe/epinephrine{
- pixel_x = -2;
- pixel_y = 5
- },
-/obj/item/reagent_containers/syringe/epinephrine{
- pixel_x = 2;
- pixel_y = 8
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/escape)
-"cZx" = (
-/obj/structure/table,
-/obj/item/defibrillator/loaded,
-/turf/open/floor/mineral/titanium,
-/area/shuttle/escape)
-"cZy" = (
-/obj/structure/table,
-/obj/item/paper_bin{
- pixel_x = -2;
- pixel_y = 8
- },
-/obj/item/device/radio/intercom{
- dir = 2;
- name = "Station Intercom (General)";
- pixel_y = -31
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/escape)
-"cZz" = (
-/obj/structure/table/optable,
-/obj/item/surgical_drapes,
-/obj/machinery/light{
- dir = 8
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/escape)
-"cZA" = (
-/obj/structure/table,
-/obj/item/folder/blue,
-/obj/structure/extinguisher_cabinet{
- dir = 4;
- pixel_y = -27
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/escape)
-"cZB" = (
-/obj/machinery/space_heater,
-/obj/structure/extinguisher_cabinet{
- dir = 4;
- pixel_y = -27
- },
-/obj/effect/turf_decal/bot,
-/turf/open/floor/plasteel,
-/area/shuttle/escape)
-"cZC" = (
-/obj/machinery/door/airlock/titanium{
- name = "Emergency Shuttle Cargo Bay Airlock"
- },
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plasteel,
-/area/shuttle/escape)
-"cZD" = (
-/obj/structure/chair{
- dir = 4
- },
-/turf/open/floor/mineral/plastitanium/brig,
-/area/shuttle/escape)
-"cZE" = (
-/obj/structure/table,
-/obj/item/storage/box/handcuffs{
- pixel_x = 2;
- pixel_y = 2
- },
-/turf/open/floor/mineral/plastitanium/brig,
-/area/shuttle/escape)
-"cZF" = (
-/obj/structure/chair,
-/turf/open/floor/mineral/plastitanium/brig,
-/area/shuttle/escape)
-"cZG" = (
-/turf/open/floor/mineral/plastitanium/brig,
-/area/shuttle/escape)
-"cZH" = (
-/obj/structure/table,
-/obj/machinery/recharger{
- active_power_usage = 0;
- idle_power_usage = 0;
- use_power = 0
- },
-/turf/open/floor/mineral/plastitanium/brig,
-/area/shuttle/escape)
-"cZI" = (
-/obj/machinery/door/airlock/security/glass{
- name = "Brig";
- req_access_txt = "2"
- },
-/turf/open/floor/mineral/plastitanium/brig,
-/area/shuttle/escape)
-"cZJ" = (
-/obj/structure/table,
-/obj/item/restraints/handcuffs{
- pixel_y = 3
- },
-/turf/open/floor/mineral/plastitanium/brig,
-/area/shuttle/escape)
-"cZK" = (
-/obj/structure/closet/emcloset,
-/turf/open/floor/mineral/titanium,
-/area/shuttle/escape)
-"cZL" = (
-/obj/structure/chair{
- dir = 4
- },
-/turf/open/floor/plasteel/floorgrime,
-/area/shuttle/escape)
-"cZM" = (
-/obj/machinery/shower,
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/escape)
-"cZN" = (
-/obj/machinery/sleeper{
- dir = 8
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/escape)
-"cZO" = (
-/obj/structure/rack,
-/obj/item/crowbar,
-/obj/item/wrench,
-/obj/item/weldingtool,
-/obj/item/wirecutters,
-/obj/item/stack/cable_coil,
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/shuttle/escape)
-"cZP" = (
-/obj/structure/reagent_dispensers/watertank,
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plasteel,
-/area/shuttle/escape)
-"cZQ" = (
-/obj/machinery/door/airlock/command/glass{
- name = "Cockpit";
- req_access_txt = "19"
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/escape)
"cZR" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/cable/yellow{
@@ -75138,160 +72313,6 @@
dir = 8
},
/area/security/main)
-"cZS" = (
-/obj/structure/table,
-/obj/item/restraints/handcuffs{
- pixel_y = 3
- },
-/obj/machinery/light{
- dir = 4
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/escape)
-"cZT" = (
-/obj/structure/table,
-/obj/item/storage/firstaid/regular,
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/escape)
-"cZU" = (
-/obj/structure/reagent_dispensers/fueltank,
-/obj/effect/turf_decal/delivery,
-/obj/machinery/light{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/shuttle/escape)
-"cZV" = (
-/obj/machinery/door/airlock/command{
- name = "Emergency Recovery Airlock";
- req_access = null;
- req_access_txt = "19"
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/escape)
-"cZW" = (
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plasteel,
-/area/shuttle/escape)
-"cZX" = (
-/obj/machinery/recharge_station,
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plasteel,
-/area/shuttle/escape)
-"cZY" = (
-/obj/structure/chair{
- dir = 8
- },
-/turf/open/floor/mineral/plastitanium/brig,
-/area/shuttle/escape)
-"cZZ" = (
-/obj/structure/chair/office/dark{
- dir = 8
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/escape)
-"daa" = (
-/obj/machinery/computer/security,
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/escape)
-"dab" = (
-/obj/structure/reagent_dispensers/peppertank,
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/escape)
-"dac" = (
-/obj/structure/rack,
-/obj/item/storage/toolbox/electrical{
- pixel_x = -3;
- pixel_y = 1
- },
-/obj/item/storage/toolbox/mechanical{
- pixel_y = -1
- },
-/obj/item/storage/toolbox/emergency{
- pixel_x = 3;
- pixel_y = -5
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/shuttle/escape)
-"dad" = (
-/obj/machinery/suit_storage_unit/standard_unit,
-/turf/open/floor/plasteel/floorgrime,
-/area/shuttle/escape)
-"dae" = (
-/obj/machinery/door/airlock/external{
- name = "Emergency Recovery Airlock"
- },
-/turf/open/floor/plasteel/floorgrime,
-/area/shuttle/escape)
-"daf" = (
-/obj/machinery/computer/crew,
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/escape)
-"dag" = (
-/obj/structure/chair/office/dark,
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/escape)
-"dah" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/shuttle/escape)
-"dai" = (
-/obj/structure/table,
-/obj/item/storage/fancy/donut_box,
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/escape)
-"daj" = (
-/obj/structure/table,
-/obj/item/phone{
- pixel_x = -3;
- pixel_y = 3
- },
-/obj/item/cigbutt/cigarbutt{
- pixel_x = 5;
- pixel_y = -1
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/escape)
-"dak" = (
-/obj/machinery/computer/communications{
- dir = 4
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/escape)
-"dal" = (
-/obj/machinery/computer/emergency_shuttle{
- dir = 4
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/escape)
-"dam" = (
-/obj/structure/table,
-/obj/item/storage/toolbox/emergency{
- pixel_y = 3
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/escape)
-"dan" = (
-/obj/machinery/computer/station_alert{
- dir = 4
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/escape)
-"dao" = (
-/obj/structure/table,
-/obj/machinery/recharger{
- active_power_usage = 0;
- idle_power_usage = 0;
- pixel_y = 4;
- use_power = 0
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/escape)
"dap" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/chair{
@@ -75302,89 +72323,6 @@
dir = 4
},
/area/security/main)
-"daq" = (
-/obj/structure/table,
-/obj/item/folder/red{
- pixel_x = 3
- },
-/obj/item/folder/white{
- pixel_x = -4;
- pixel_y = 2
- },
-/obj/item/device/radio/intercom{
- dir = 2;
- name = "Station Intercom (General)";
- pixel_y = -31
- },
-/obj/item/book/manual/wiki/security_space_law{
- pixel_x = -4;
- pixel_y = 4
- },
-/turf/open/floor/mineral/plastitanium/brig,
-/area/shuttle/escape)
-"dar" = (
-/obj/structure/reagent_dispensers/watertank,
-/turf/open/floor/plasteel/floorgrime,
-/area/shuttle/escape)
-"das" = (
-/obj/structure/table,
-/obj/item/scalpel{
- pixel_y = 12
- },
-/obj/item/circular_saw,
-/obj/item/retractor{
- pixel_x = 4
- },
-/obj/item/hemostat{
- pixel_x = -4
- },
-/obj/item/clothing/gloves/color/latex,
-/obj/item/clothing/mask/surgical,
-/obj/item/device/radio/intercom{
- dir = 2;
- name = "Station Intercom (General)";
- pixel_x = -27
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/escape)
-"dat" = (
-/obj/machinery/vending/wallmed{
- name = "Emergency NanoMed";
- req_access_txt = "0";
- use_power = 0
- },
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/escape)
-"dau" = (
-/obj/structure/sink,
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/escape)
-"dav" = (
-/obj/structure/rack,
-/obj/item/tank/internals/oxygen/red,
-/obj/item/clothing/suit/fire/firefighter,
-/obj/item/clothing/mask/gas,
-/obj/item/clothing/head/hardhat/red,
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/shuttle/escape)
-"daw" = (
-/obj/item/device/radio/intercom{
- dir = 2;
- name = "Station Intercom (General)";
- pixel_y = -31
- },
-/obj/machinery/portable_atmospherics/canister/oxygen,
-/obj/effect/turf_decal/bot,
-/obj/machinery/light/small,
-/turf/open/floor/plasteel,
-/area/shuttle/escape)
-"dax" = (
-/obj/structure/extinguisher_cabinet,
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/escape)
"daA" = (
/obj/machinery/door/window/southleft{
dir = 2;
@@ -75405,11 +72343,7 @@
/turf/open/floor/engine,
/area/science/xenobiology)
"daC" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'HIGH VOLTAGE'";
- icon_state = "shock";
- name = "HIGH VOLTAGE"
- },
+/obj/structure/sign/warning/electricshock,
/turf/closed/wall/r_wall,
/area/science/xenobiology)
"daD" = (
@@ -76327,7 +73261,7 @@
/area/science/xenobiology)
"dcK" = (
/obj/machinery/disposal/bin,
-/obj/structure/sign/deathsposal{
+/obj/structure/sign/warning/deathsposal{
pixel_y = -32
},
/obj/structure/disposalpipe/trunk{
@@ -76805,34 +73739,6 @@
/obj/docking_port/stationary/public_mining_dock,
/turf/open/floor/plating,
/area/shuttle/auxillary_base)
-"ddH" = (
-/obj/machinery/door/airlock/external,
-/turf/open/floor/pod/dark,
-/area/shuttle/transport)
-"ddJ" = (
-/obj/machinery/door/airlock/titanium,
-/turf/open/floor/pod/light,
-/area/shuttle/transport)
-"ddK" = (
-/obj/machinery/computer/shuttle/ferry/request{
- dir = 8
- },
-/turf/open/floor/pod/dark,
-/area/shuttle/transport)
-"ddL" = (
-/obj/structure/shuttle/engine/heater{
- dir = 8
- },
-/obj/structure/window/reinforced{
- dir = 1;
- pixel_y = 1
- },
-/turf/open/floor/plating/airless,
-/area/shuttle/transport)
-"ddM" = (
-/obj/machinery/door/airlock/external,
-/turf/open/floor/pod/light,
-/area/shuttle/transport)
"ddO" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible,
/turf/open/floor/plasteel/dark,
@@ -77178,7 +74084,7 @@
/turf/open/floor/plating,
/area/engine/engineering)
"deM" = (
-/obj/structure/sign/securearea,
+/obj/structure/sign/warning/securearea,
/turf/closed/wall/r_wall,
/area/engine/engineering)
"deN" = (
@@ -77215,7 +74121,7 @@
/turf/open/floor/engine,
/area/engine/engineering)
"deV" = (
-/obj/structure/sign/fire,
+/obj/structure/sign/warning/fire,
/turf/closed/wall/r_wall,
/area/engine/supermatter)
"deW" = (
@@ -77255,7 +74161,7 @@
/turf/closed/wall/r_wall,
/area/engine/supermatter)
"dfc" = (
-/obj/structure/sign/electricshock,
+/obj/structure/sign/warning/electricshock,
/turf/closed/wall/r_wall,
/area/engine/supermatter)
"dfd" = (
@@ -77287,7 +74193,7 @@
/turf/open/floor/plating,
/area/engine/engineering)
"dfh" = (
-/obj/structure/sign/nosmoking_2,
+/obj/structure/sign/warning/nosmoking,
/turf/closed/wall/r_wall,
/area/engine/engineering)
"dfi" = (
@@ -78923,33 +75829,18 @@
},
/turf/open/floor/plating,
/area/hallway/secondary/entry)
-"djE" = (
-/obj/structure/chair{
- dir = 8
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/arrival)
"djM" = (
-/obj/structure/shuttle/engine/propulsion{
- dir = 4
- },
-/obj/docking_port/mobile/arrivals,
/obj/docking_port/stationary{
dir = 8;
dwidth = 3;
height = 15;
id = "arrivals_stationary";
name = "arrivals";
- width = 7
+ width = 7;
+ roundstart_template = /datum/map_template/shuttle/arrival/box
},
-/turf/open/floor/plating/airless,
-/area/shuttle/arrival)
-"djR" = (
-/obj/machinery/door/airlock/titanium{
- name = "Arrivals Shuttle Airlock"
- },
-/turf/open/floor/plating,
-/area/shuttle/arrival)
+/turf/open/space/basic,
+/area/space)
"djW" = (
/obj/structure/table/wood,
/obj/item/clipboard,
@@ -78967,192 +75858,6 @@
},
/turf/open/floor/plating,
/area/chapel/main)
-"dli" = (
-/obj/structure/chair,
-/obj/machinery/light/small{
- dir = 4
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/arrival)
-"dlj" = (
-/obj/structure/chair{
- dir = 1
- },
-/obj/machinery/light/small{
- dir = 4
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/arrival)
-"dlk" = (
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/obj/machinery/light/small/built{
- dir = 4
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/abandoned)
-"dll" = (
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/obj/machinery/light/built{
- dir = 1
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/abandoned)
-"dlm" = (
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/obj/machinery/light/built{
- dir = 2
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/abandoned)
-"dln" = (
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/obj/machinery/light,
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/abandoned)
-"dlo" = (
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/obj/machinery/light/small{
- dir = 8
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"dlp" = (
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/obj/machinery/light/small/built{
- dir = 4
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"dlq" = (
-/obj/structure/chair,
-/obj/machinery/light{
- dir = 1
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/escape)
-"dlr" = (
-/obj/machinery/light{
- dir = 8
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/escape)
-"dls" = (
-/obj/machinery/holopad,
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/escape)
-"dlt" = (
-/obj/machinery/light{
- dir = 4
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/escape)
-"dlv" = (
-/obj/structure/table,
-/obj/item/stack/medical/gauze,
-/obj/item/stack/medical/bruise_pack,
-/obj/item/stack/medical/ointment,
-/obj/machinery/status_display{
- dir = 8;
- pixel_x = 32
- },
-/obj/machinery/light{
- dir = 4
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/escape)
-"dlw" = (
-/obj/structure/chair{
- dir = 1
- },
-/obj/machinery/light,
-/turf/open/floor/mineral/titanium,
-/area/shuttle/escape)
-"dlx" = (
-/obj/machinery/light/small{
- dir = 4
- },
-/turf/open/floor/mineral/plastitanium/brig,
-/area/shuttle/escape)
-"dly" = (
-/obj/machinery/light{
- dir = 4
- },
-/turf/open/floor/plasteel/floorgrime,
-/area/shuttle/escape)
-"dlz" = (
-/obj/structure/chair{
- dir = 8
- },
-/obj/machinery/light{
- dir = 4
- },
-/turf/open/floor/mineral/plastitanium/brig,
-/area/shuttle/escape)
-"dlA" = (
-/obj/machinery/light{
- dir = 1
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/labor)
-"dlB" = (
-/obj/machinery/light{
- dir = 8
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/mining)
-"dlC" = (
-/obj/machinery/light{
- dir = 1
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/supply)
-"dlD" = (
-/obj/machinery/light{
- dir = 8
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/supply)
-"dlE" = (
-/obj/machinery/light{
- dir = 1
- },
-/turf/open/floor/pod/light,
-/area/shuttle/transport)
-"dlF" = (
-/obj/machinery/light/small,
-/turf/open/floor/pod/light,
-/area/shuttle/transport)
-"dlG" = (
-/obj/machinery/light,
-/turf/open/floor/pod/light,
-/area/shuttle/transport)
-"dlH" = (
-/obj/machinery/sleeper{
- dir = 8
- },
-/obj/machinery/light/small{
- dir = 4
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/escape)
"dlI" = (
/turf/closed/wall/r_wall,
/area/engine/supermatter)
@@ -79257,9 +75962,6 @@
/obj/structure/disposalpipe/segment,
/turf/open/floor/plating,
/area/maintenance/port/fore)
-"dnH" = (
-/turf/open/floor/plating,
-/area/maintenance/port/fore)
"dnM" = (
/obj/structure/chair{
dir = 8
@@ -79355,6 +76057,13 @@
"dqT" = (
/turf/closed/wall/r_wall,
/area/maintenance/starboard/fore)
+"dqU" = (
+/obj/effect/turf_decal/stripes/corner{
+ dir = 8
+ },
+/obj/machinery/vending/coffee,
+/turf/open/floor/plasteel,
+/area/science/mixing)
"drQ" = (
/turf/open/floor/plating{
icon_state = "platingdmg2"
@@ -79551,9 +76260,6 @@
"dwL" = (
/turf/closed/wall/r_wall,
/area/maintenance/starboard/aft)
-"dwN" = (
-/turf/open/floor/plating,
-/area/maintenance/starboard/aft)
"dwQ" = (
/obj/structure/chair/stool,
/turf/open/floor/plating,
@@ -79582,10 +76288,6 @@
icon_state = "platingdmg3"
},
/area/maintenance/port/aft)
-"dxO" = (
-/obj/structure/closet/emcloset,
-/turf/open/floor/plating,
-/area/maintenance/starboard/aft)
"dxQ" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -79638,17 +76340,6 @@
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
/area/maintenance/port/aft)
-"dyQ" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating{
- icon_state = "platingdmg1"
- },
-/area/maintenance/starboard/aft)
"dzc" = (
/obj/machinery/space_heater,
/turf/open/floor/plating,
@@ -79670,14 +76361,6 @@
/obj/structure/reagent_dispensers/fueltank,
/turf/open/floor/plating,
/area/maintenance/starboard/aft)
-"dzR" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plating,
-/area/maintenance/starboard/aft)
"dAd" = (
/obj/machinery/power/apc/highcap/five_k{
dir = 2;
@@ -79841,7 +76524,7 @@
/obj/effect/spawner/structure/window/reinforced,
/obj/machinery/door/poddoor/preopen{
id = "atmos";
- name = "Atmos Blast Door"
+ name = "Atmospherics Blast Door"
},
/obj/structure/cable/yellow,
/turf/open/floor/plating,
@@ -80449,178 +77132,178 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
/area/maintenance/starboard/fore)
-"dDN" = (
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
+"dGH" = (
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel/white,
+/area/science/circuit)
+"dLK" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
},
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/obj/structure/chair/office/light{
- dir = 1
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/abandoned)
-"dDO" = (
-/obj/effect/decal/cleanable/blood/old,
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/obj/structure/chair/office/light,
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/abandoned)
-"dDP" = (
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/obj/structure/table,
-/obj/item/device/megaphone,
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"EDa" = (
-/obj/docking_port/stationary{
- dheight = 1;
- dir = 8;
- dwidth = 12;
- height = 17;
- id = "syndicate_nw";
- name = "northwest of station";
- turf_type = /turf/open/space;
- width = 23
- },
-/turf/open/space/basic,
-/area/space/nearstation)
-"EDb" = (
-/obj/structure/grille,
-/turf/open/floor/plating/airless,
-/area/space/nearstation)
-"EDi" = (
-/obj/docking_port/mobile{
- callTime = 250;
- dheight = 0;
- dir = 2;
- dwidth = 11;
- height = 15;
- id = "whiteship";
- launch_status = 0;
- movement_force = list("KNOCKDOWN" = 0, "THROW" = 0);
- name = "NT Recovery White-Ship";
- port_direction = 8;
- preferred_direction = 4;
- roundstart_move = "whiteship_away";
- width = 28
- },
-/obj/machinery/door/airlock/titanium{
- name = "recovery shuttle external airlock"
- },
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/obj/docking_port/stationary{
- dir = 2;
- dwidth = 11;
- height = 15;
- id = "whiteship_home";
- name = "SS13: Auxiliary Dock, Station-Port";
- width = 28
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/abandoned)
-"EDj" = (
-/obj/structure/sign/restroom,
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/abandoned)
-"EDk" = (
-/obj/structure/sign/cargo,
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/abandoned)
-"EDl" = (
-/obj/machinery/porta_turret/centcom_shuttle/weak{
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/abandoned)
-"EDm" = (
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/obj/machinery/turretid{
- icon_state = "control_kill";
- lethal = 1;
- locked = 0;
- pixel_x = -28;
- req_access = null
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"EDo" = (
-/obj/effect/spawner/structure/window/plasma/reinforced,
/turf/open/floor/plating,
-/area/engine/atmos)
-"EDw" = (
-/obj/machinery/rnd/protolathe/department/service,
-/obj/machinery/door/firedoor,
-/turf/open/floor/plating,
-/area/hydroponics)
-"EDx" = (
-/turf/closed/wall/mineral/plastitanium,
-/area/hallway/secondary/entry)
-"EDz" = (
-/turf/closed/wall/mineral/plastitanium,
-/area/security/prison)
-"EDB" = (
-/turf/closed/wall/mineral/plastitanium,
-/area/crew_quarters/fitness/recreation)
-"EDC" = (
-/turf/closed/wall/mineral/plastitanium,
-/area/engine/break_room)
-"EDD" = (
+/area/maintenance/starboard)
+"eoK" = (
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 9
+ },
/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/chair{
- dir = 4
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"eqq" = (
+/obj/item/screwdriver,
+/obj/structure/table/reinforced,
+/obj/structure/sign/poster/official/random{
+ pixel_y = 32
},
-/obj/effect/landmark/start/security_officer,
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 4
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
},
-/turf/open/floor/plasteel/red/side{
+/turf/open/floor/plasteel/white,
+/area/science/circuit)
+"eqG" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/science/circuit)
+"evy" = (
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/space)
+"eEe" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
dir = 8
},
-/area/security/main)
-"EDE" = (
+/turf/open/floor/plasteel/white,
+/area/science/circuit)
+"eFN" = (
+/obj/structure/bodycontainer/crematorium{
+ dir = 1
+ },
+/turf/open/floor/plasteel/dark,
+/area/chapel/office)
+"eXy" = (
+/obj/machinery/airalarm{
+ pixel_y = 32
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/obj/machinery/disposal/bin,
+/turf/open/floor/plasteel/white,
+/area/science/circuit)
+"eZe" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 10
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard/aft)
+"fdr" = (
/obj/structure/closet/firecloset,
/turf/open/floor/plating,
/area/engine/engineering)
-"EDF" = (
+"fDD" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/science/circuit)
+"gfh" = (
+/obj/machinery/libraryscanner,
+/turf/open/floor/plasteel/white,
+/area/science/circuit)
+"gix" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/door/airlock/research/glass{
+ name = "Circuitry Lab";
+ req_access_txt = "47"
+ },
+/turf/open/floor/plasteel/white,
+/area/science/circuit)
+"gnZ" = (
+/obj/item/device/radio/intercom{
+ pixel_y = -30
+ },
+/turf/open/floor/plasteel/white,
+/area/science/circuit)
+"gEk" = (
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard/aft)
+"gGT" = (
+/obj/effect/landmark/start/scientist,
+/obj/structure/chair/office/light{
+ dir = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/science/circuit)
+"gHh" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/door/airlock/maintenance,
+/turf/open/floor/plating,
+/area/maintenance/starboard/aft)
+"gJs" = (
+/obj/effect/spawner/structure/window/plasma/reinforced,
+/turf/open/floor/plating,
+/area/engine/atmos)
+"gLC" = (
+/obj/structure/reagent_dispensers/water_cooler,
+/turf/open/floor/plasteel,
+/area/science/misc_lab)
+"gNe" = (
/obj/machinery/light/small{
dir = 8
},
/turf/open/floor/plating,
/area/maintenance/aft)
-"EDG" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
+"gRS" = (
+/obj/structure/table/reinforced,
+/obj/item/device/integrated_circuit_printer/upgraded,
+/obj/item/device/integrated_electronics/analyzer,
+/turf/open/floor/plasteel/white,
+/area/science/circuit)
+"hfJ" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
},
-/obj/effect/landmark/blobstart,
-/turf/open/floor/plating,
-/area/maintenance/starboard/aft)
-"EDH" = (
-/obj/machinery/droneDispenser,
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"Ljw" = (
-/obj/structure/sign/poster/official/random,
-/turf/closed/wall,
-/area/hydroponics)
-"QsX" = (
+/obj/machinery/autolathe,
+/turf/open/floor/plasteel/white,
+/area/science/circuit)
+"ioI" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/door/airlock/research/glass{
+ name = "Circuitry Lab";
+ req_access_txt = "47"
+ },
+/obj/machinery/door/firedoor,
+/turf/open/floor/plasteel,
+/area/science/circuit)
+"izu" = (
/obj/machinery/autolathe{
name = "public autolathe"
},
@@ -80634,33 +77317,60 @@
id = "research_shutters";
name = "research shutters"
},
-/turf/open/floor/plating,
+/turf/open/floor/plasteel/whitepurple,
/area/science/lab)
-"QsY" = (
-/obj/structure/table,
-/obj/item/device/paicard,
-/turf/open/floor/plasteel/whitepurple/side{
- dir = 2
+"jwW" = (
+/turf/closed/wall/mineral/plastitanium,
+/area/crew_quarters/fitness/recreation)
+"jyv" = (
+/obj/item/stock_parts/cell/super,
+/obj/item/stock_parts/cell/super,
+/obj/item/stack/sheet/metal/fifty,
+/obj/structure/table/reinforced,
+/obj/machinery/computer/security/telescreen{
+ desc = "Used for watching the RD's goons from the safety of your own office.";
+ name = "Research Monitor";
+ network = list("RD");
+ pixel_y = 32
},
-/area/science/research)
-"QsZ" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
+/turf/open/floor/plasteel/white,
+/area/science/circuit)
+"kfu" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/white,
+/area/science/circuit)
+"krD" = (
+/turf/closed/wall,
+/area/science/circuit)
+"kys" = (
+/obj/structure/cable/yellow{
+ icon_state = "0-8"
},
-/turf/open/floor/plasteel/whitepurple/side{
- dir = 2
- },
-/area/science/research)
-"Qta" = (
-/obj/structure/chair/office/light{
+/obj/machinery/power/apc{
+ areastring = "/area/hallway/secondary/service";
dir = 1;
- pixel_y = 3
+ name = "Service Hall APC";
+ pixel_y = 25
},
-/turf/open/floor/plasteel/whitepurple/side{
- dir = 1
+/obj/machinery/airalarm{
+ dir = 8;
+ pixel_x = 24
},
-/area/science/lab)
-"Qtb" = (
+/turf/open/floor/plasteel,
+/area/hallway/secondary/service)
+"kOt" = (
+/obj/item/device/multitool,
+/obj/item/screwdriver,
+/obj/structure/table/reinforced,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/light_switch{
+ pixel_y = 32
+ },
+/turf/open/floor/plasteel/white,
+/area/science/circuit)
+"kVo" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
},
@@ -80668,21 +77378,32 @@
/obj/structure/disposalpipe/segment,
/turf/open/floor/plating,
/area/maintenance/starboard/aft)
-"Qtc" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
+"lal" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/door/airlock/maintenance,
-/obj/machinery/door/firedoor,
-/turf/open/floor/plating,
+/turf/open/floor/plasteel,
/area/science/circuit)
-"Qtd" = (
+"llb" = (
+/obj/structure/table/reinforced,
+/obj/item/device/integrated_circuit_printer/upgraded,
+/turf/open/floor/plasteel/white,
+/area/science/circuit)
+"lsv" = (
+/obj/machinery/power/apc{
+ areastring = "/area/science/circuit";
+ dir = 1;
+ name = "Circuitry Lab APC";
+ pixel_y = 30
+ },
+/obj/structure/cable/yellow{
+ icon_state = "0-8"
+ },
+/obj/structure/table/reinforced,
+/obj/item/device/multitool,
+/turf/open/floor/plasteel/white,
+/area/science/circuit)
+"lzk" = (
/obj/structure/cable/yellow{
icon_state = "2-8"
},
@@ -80697,27 +77418,15 @@
},
/turf/open/floor/plasteel/white,
/area/science/circuit)
-"Qte" = (
-/obj/structure/target_stake,
-/turf/open/floor/plasteel/white,
-/area/science/circuit)
-"Qtf" = (
-/obj/structure/closet/crate,
-/obj/item/target/alien,
-/obj/item/target/alien,
-/obj/item/target/clown,
-/obj/item/target/clown,
-/obj/item/target/syndicate,
-/obj/item/target/syndicate,
-/obj/item/gun/energy/laser/practice,
-/obj/item/gun/energy/laser/practice,
-/turf/open/floor/plasteel/white,
-/area/science/circuit)
-"Qtg" = (
+"lMz" = (
/obj/structure/falsewall,
/turf/open/floor/plating,
/area/maintenance/starboard/aft)
-"Qth" = (
+"lMJ" = (
+/obj/structure/lattice,
+/turf/open/space/basic,
+/area/space/nearstation)
+"mjJ" = (
/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.";
icon = 'icons/obj/machines/nuke.dmi';
@@ -80728,86 +77437,99 @@
},
/turf/open/floor/plating,
/area/maintenance/starboard/aft)
-"Qti" = (
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/space)
-"Qtj" = (
-/obj/structure/lattice,
-/turf/open/space/basic,
-/area/space)
-"Qtk" = (
-/obj/structure/lattice,
-/turf/open/space/basic,
-/area/space)
-"Qtl" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/door/airlock/research/glass{
- name = "Circuitry Lab";
- req_access_txt = "47"
- },
-/turf/open/floor/plasteel/white,
-/area/science/circuit)
-"Qtm" = (
-/turf/closed/wall,
-/area/science/circuit)
-"Qtn" = (
-/turf/closed/wall,
-/area/science/circuit)
-"Qto" = (
-/turf/closed/wall,
-/area/science/circuit)
-"Qtp" = (
-/turf/closed/wall,
-/area/science/circuit)
-"Qtq" = (
-/turf/closed/wall,
-/area/science/circuit)
-"Qtr" = (
-/turf/closed/wall,
-/area/science/circuit)
-"Qts" = (
-/turf/closed/wall,
-/area/science/circuit)
-"Qtt" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/science/circuit)
-"Qtu" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 5
- },
-/turf/open/floor/plasteel,
-/area/science/circuit)
-"Qtv" = (
-/obj/machinery/airalarm{
- pixel_y = 32
- },
-/obj/structure/disposalpipe/trunk{
+"mvj" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/closed/wall,
+/area/hallway/secondary/service)
+"mzh" = (
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -24
+ },
/turf/open/floor/plasteel/white,
/area/science/circuit)
-"Qtw" = (
-/obj/item/device/multitool,
-/obj/item/screwdriver,
+"ngl" = (
+/obj/machinery/bookbinder,
+/turf/open/floor/plasteel/white,
+/area/science/circuit)
+"nnK" = (
+/obj/item/stack/sheet/glass/fifty,
+/obj/item/paper_bin,
+/obj/item/pen,
+/obj/structure/table/reinforced,
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 32
+ },
+/turf/open/floor/plasteel/white,
+/area/science/circuit)
+"noG" = (
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/science/circuit)
+"nyo" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/service)
+"nAG" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"obb" = (
+/obj/structure/target_stake,
+/turf/open/floor/plasteel/white,
+/area/science/circuit)
+"ocT" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/item/stock_parts/cell/super,
+/obj/item/stock_parts/cell/super,
+/obj/item/stack/sheet/metal/fifty,
/obj/structure/table/reinforced,
/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/machinery/light_switch{
+/obj/machinery/computer/security/telescreen{
+ desc = "Used for watching the RD's goons from the safety of your own office.";
+ name = "Research Monitor";
+ network = list("RD");
pixel_y = 32
},
/turf/open/floor/plasteel/white,
/area/science/circuit)
-"Qtx" = (
+"ohj" = (
+/obj/item/device/integrated_electronics/analyzer,
+/obj/item/device/integrated_electronics/debugger,
+/obj/item/device/integrated_electronics/wirer,
+/obj/structure/table/reinforced,
+/turf/open/floor/plasteel/white,
+/area/science/circuit)
+"oub" = (
+/obj/structure/sign/poster/official/random,
+/turf/closed/wall,
+/area/hydroponics)
+"oLW" = (
/obj/structure/table/reinforced,
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -80823,296 +77545,88 @@
/obj/item/device/integrated_electronics/debugger,
/turf/open/floor/plasteel/white,
/area/science/circuit)
-"Qty" = (
-/obj/machinery/light{
- dir = 1
+"oRL" = (
+/obj/docking_port/stationary{
+ dir = 2;
+ dwidth = 11;
+ height = 15;
+ id = "whiteship_home";
+ name = "SS13: Auxiliary Dock, Station-Port";
+ width = 28
},
-/obj/item/stock_parts/cell/super,
-/obj/item/stock_parts/cell/super,
-/obj/item/stack/sheet/metal/fifty,
+/turf/open/space/basic,
+/area/space)
+"oUA" = (
/obj/structure/table/reinforced,
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/computer/security/telescreen{
- desc = "Used for watching the RD's goons from the safety of your own office.";
- name = "Research Monitor";
- network = list("RD");
- pixel_y = 32
- },
-/turf/open/floor/plasteel/white,
-/area/science/circuit)
-"Qtz" = (
-/obj/item/screwdriver,
-/obj/structure/table/reinforced,
-/obj/structure/sign/poster/official/random{
- pixel_y = 32
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/white,
-/area/science/circuit)
-"QtA" = (
-/obj/machinery/power/apc{
- areastring = "/area/science/circuit";
- dir = 1;
- name = "Circuitry Lab APC";
- pixel_y = 30
- },
-/obj/structure/cable/yellow{
- icon_state = "0-8"
- },
-/obj/structure/table/reinforced,
-/obj/item/device/multitool,
-/turf/open/floor/plasteel/white,
-/area/science/circuit)
-"QtB" = (
-/obj/item/stock_parts/cell/super,
-/obj/item/stock_parts/cell/super,
-/obj/item/stack/sheet/metal/fifty,
-/obj/structure/table/reinforced,
-/obj/machinery/computer/security/telescreen{
- desc = "Used for watching the RD's goons from the safety of your own office.";
- name = "Research Monitor";
- network = list("RD");
- pixel_y = 32
- },
-/turf/open/floor/plasteel/white,
-/area/science/circuit)
-"QtC" = (
-/turf/closed/wall,
-/area/science/circuit)
-"QtD" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/science/circuit)
-"QtE" = (
-/turf/open/floor/plasteel,
-/area/science/circuit)
-"QtF" = (
-/obj/effect/turf_decal/stripes/line{
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/turf/open/floor/plasteel,
-/area/science/circuit)
-"QtG" = (
+/obj/item/paper_bin,
+/obj/item/pen,
/turf/open/floor/plasteel/white,
/area/science/circuit)
-"QtH" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/white,
-/area/science/circuit)
-"QtI" = (
-/obj/structure/table/reinforced,
-/obj/item/device/integrated_circuit_printer/upgraded,
-/obj/item/device/integrated_electronics/analyzer,
-/turf/open/floor/plasteel/white,
-/area/science/circuit)
-"QtJ" = (
-/obj/effect/landmark/start/scientist,
-/obj/structure/chair/office/light{
- dir = 1
+"pvA" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
},
-/turf/open/floor/plasteel/white,
-/area/science/circuit)
-"QtK" = (
-/obj/item/device/integrated_electronics/wirer,
-/obj/structure/table/reinforced,
-/turf/open/floor/plasteel/white,
-/area/science/circuit)
-"QtL" = (
-/obj/structure/table/reinforced,
-/obj/item/device/integrated_circuit_printer/upgraded,
-/turf/open/floor/plasteel/white,
-/area/science/circuit)
-"QtM" = (
-/obj/structure/chair/office/light{
- dir = 1
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/turf/open/floor/plasteel/white,
-/area/science/circuit)
-"QtN" = (
-/obj/item/device/integrated_electronics/analyzer,
-/obj/item/device/integrated_electronics/debugger,
-/obj/item/device/integrated_electronics/wirer,
-/obj/structure/table/reinforced,
-/turf/open/floor/plasteel/white,
-/area/science/circuit)
-"QtO" = (
-/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating,
-/area/science/circuit)
-"QtP" = (
+/area/maintenance/starboard)
+"pCV" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 6
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"qnJ" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/obj/machinery/door/airlock/maintenance,
-/turf/open/floor/plating,
-/area/maintenance/starboard/aft)
-"QtQ" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/machinery/light{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/science/circuit)
-"QtR" = (
-/obj/structure/table/reinforced,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/item/paper_bin,
-/obj/item/pen,
-/turf/open/floor/plasteel/white,
-/area/science/circuit)
-"QtS" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/science/circuit)
-"QtT" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/rnd/protolathe/department/science,
-/turf/open/floor/plasteel/white,
-/area/science/circuit)
-"QtU" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/autolathe,
-/turf/open/floor/plasteel/white,
-/area/science/circuit)
-"QtV" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/science/circuit)
-"QtW" = (
-/obj/item/stack/sheet/glass/fifty,
-/obj/item/paper_bin,
-/obj/item/pen,
-/obj/structure/table/reinforced,
-/obj/machinery/light{
- dir = 4
- },
-/obj/structure/extinguisher_cabinet{
- pixel_x = 32
- },
-/turf/open/floor/plasteel/white,
-/area/science/circuit)
-"QtX" = (
-/turf/closed/wall,
-/area/science/circuit)
-"QtY" = (
-/obj/structure/chair/comfy,
-/turf/open/floor/plasteel,
-/area/science/misc_lab)
-"QtZ" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
-/area/science/misc_lab)
-"Qua" = (
-/obj/structure/reagent_dispensers/water_cooler,
-/turf/open/floor/plasteel,
-/area/science/misc_lab)
-"Qub" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 10
- },
-/turf/open/floor/plasteel,
-/area/science/circuit)
-"Quc" = (
-/obj/effect/turf_decal/stripes/line,
-/turf/open/floor/plasteel,
-/area/science/circuit)
-"Qud" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 6
- },
-/turf/open/floor/plasteel,
-/area/science/circuit)
-"Que" = (
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/science/circuit)
-"Quf" = (
-/obj/structure/table/glass,
-/obj/machinery/camera/autoname{
- dir = 4;
- network = list("SS13")
- },
-/turf/open/floor/plasteel,
-/area/science/misc_lab)
-"Qug" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
-/area/science/misc_lab)
-"Quh" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 6
- },
-/turf/open/floor/plasteel,
-/area/science/misc_lab)
-"Qui" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/machinery/door/airlock/research/glass{
- name = "Circuitry Lab";
- req_access_txt = "47"
- },
/obj/machinery/door/firedoor,
+/turf/open/floor/plating,
+/area/science/circuit)
+"qqg" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 6
+ },
+/turf/open/floor/plasteel,
+/area/science/misc_lab)
+"qBh" = (
+/obj/structure/table,
+/obj/item/device/paicard,
+/turf/open/floor/plasteel/whitepurple/side{
+ dir = 2
+ },
+/area/science/research)
+"qBq" = (
+/turf/closed/wall/mineral/plastitanium,
+/area/hallway/secondary/entry)
+"qJZ" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
/turf/open/floor/plasteel,
/area/science/circuit)
-"Quj" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/science/circuit)
-"Quk" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/science/circuit)
-"Qul" = (
-/obj/machinery/light,
-/obj/structure/sign/poster/official/random{
- pixel_y = -32
- },
-/turf/open/floor/plasteel/white,
-/area/science/circuit)
-"Qum" = (
-/obj/machinery/firealarm{
- dir = 1;
- pixel_y = -24
- },
-/turf/open/floor/plasteel/white,
-/area/science/circuit)
-"Qun" = (
-/obj/item/device/radio/intercom{
- pixel_y = -30
- },
-/turf/open/floor/plasteel/white,
-/area/science/circuit)
-"Quo" = (
+"qRM" = (
/obj/machinery/camera{
c_tag = "Research Division Circuitry Lab";
dir = 1;
@@ -81120,95 +77634,99 @@
},
/turf/open/floor/plasteel/white,
/area/science/circuit)
-"Qup" = (
-/obj/machinery/light,
-/turf/open/floor/plasteel/white,
+"rzX" = (
+/obj/structure/chair/office/light{
+ dir = 1;
+ pixel_y = 3
+ },
+/turf/open/floor/plasteel/whitepurple/side{
+ dir = 1
+ },
+/area/science/lab)
+"rQK" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/structure/chair{
+ dir = 4
+ },
+/obj/effect/landmark/start/security_officer,
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 8
+ },
+/area/security/main)
+"rSL" = (
+/obj/machinery/vending/snack/random,
+/turf/open/floor/plasteel,
+/area/science/mixing)
+"sdi" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/turf/open/floor/plasteel,
/area/science/circuit)
-"Quq" = (
+"siF" = (
+/obj/structure/grille,
+/turf/open/floor/plating/airless,
+/area/space/nearstation)
+"sJW" = (
+/turf/closed/wall/mineral/plastitanium,
+/area/engine/break_room)
+"tjH" = (
/obj/structure/table/reinforced,
/obj/machinery/computer/libraryconsole/bookmanagement,
/turf/open/floor/plasteel/white,
/area/science/circuit)
-"Qur" = (
-/obj/machinery/bookbinder,
-/turf/open/floor/plasteel/white,
-/area/science/circuit)
-"Qus" = (
-/obj/machinery/libraryscanner,
-/turf/open/floor/plasteel/white,
-/area/science/circuit)
-"Qut" = (
-/turf/closed/wall,
-/area/science/circuit)
-"Quu" = (
+"tsx" = (
/obj/structure/cable/yellow{
- icon_state = "1-2"
+ icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
-/area/science/misc_lab)
-"Quv" = (
-/turf/closed/wall,
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"txj" = (
+/obj/structure/chair/office/light{
+ dir = 1
+ },
+/turf/open/floor/plasteel/white,
/area/science/circuit)
-"Quw" = (
+"tFJ" = (
+/obj/structure/bodycontainer/morgue{
+ dir = 8
+ },
+/turf/open/floor/plasteel/dark,
+/area/medical/morgue)
+"tVY" = (
+/obj/structure/closet/crate,
+/obj/item/target/alien,
+/obj/item/target/alien,
+/obj/item/target/clown,
+/obj/item/target/clown,
+/obj/item/target/syndicate,
+/obj/item/target/syndicate,
+/obj/item/gun/energy/laser/practice,
+/obj/item/gun/energy/laser/practice,
+/turf/open/floor/plasteel/white,
+/area/science/circuit)
+"upN" = (
/obj/effect/turf_decal/stripes/line{
- dir = 2
+ dir = 5
},
-/turf/closed/wall,
+/turf/open/floor/plasteel,
/area/science/circuit)
-"Qux" = (
-/turf/closed/wall,
-/area/science/circuit)
-"Quy" = (
-/turf/closed/wall,
-/area/science/circuit)
-"Quz" = (
-/turf/closed/wall,
-/area/science/circuit)
-"QuA" = (
-/turf/closed/wall,
-/area/science/circuit)
-"QuB" = (
-/turf/closed/wall,
-/area/science/circuit)
-"QuC" = (
-/turf/closed/wall,
-/area/science/circuit)
-"QuD" = (
-/turf/closed/wall,
-/area/science/circuit)
-"QuE" = (
-/turf/closed/wall,
-/area/science/circuit)
-"QuF" = (
-/turf/closed/wall,
-/area/science/circuit)
-"QuG" = (
-/turf/closed/wall,
-/area/science/circuit)
-"QuH" = (
-/turf/closed/wall,
-/area/science/circuit)
-"QuI" = (
-/turf/closed/wall,
-/area/science/circuit)
-"QuJ" = (
-/obj/structure/lattice,
-/turf/open/space/basic,
-/area/space/nearstation)
-"QuK" = (
-/obj/structure/lattice,
-/turf/open/space/basic,
-/area/space/nearstation)
-"QuL" = (
-/obj/structure/lattice,
-/turf/open/space/basic,
-/area/space/nearstation)
-"QuM" = (
+"urv" = (
+/turf/closed/wall/mineral/plastitanium,
+/area/security/prison)
+"uun" = (
/obj/machinery/vending/assist,
/turf/open/floor/plasteel,
/area/science/mixing)
-"QuN" = (
+"uGW" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
},
@@ -81217,76 +77735,130 @@
},
/turf/open/floor/plasteel,
/area/science/mixing)
-"QuO" = (
-/obj/structure/lattice,
-/turf/open/space/basic,
-/area/space/nearstation)
-"QuP" = (
-/obj/structure/lattice,
-/turf/open/space/basic,
-/area/space/nearstation)
-"QuQ" = (
-/obj/structure/lattice,
-/turf/open/space/basic,
-/area/space/nearstation)
-"QuR" = (
-/obj/machinery/vending/snack/random,
-/turf/open/floor/plasteel,
-/area/science/mixing)
-"QuS" = (
-/obj/effect/turf_decal/stripes/corner{
- dir = 8
- },
-/obj/machinery/vending/coffee,
-/turf/open/floor/plasteel,
-/area/science/mixing)
-"QuT" = (
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/turf/open/floor/plating,
-/area/maintenance/starboard/aft)
-"QuU" = (
+"uHc" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 10
},
/turf/open/floor/plating,
-/area/maintenance/starboard/aft)
-"QuV" = (
+/area/maintenance/starboard)
+"uJU" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"uRM" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel/whitepurple/side{
+ dir = 2
+ },
+/area/science/research)
+"uTS" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/rnd/protolathe/department/science,
+/turf/open/floor/plasteel/white,
+/area/science/circuit)
+"uYk" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/open/floor/plasteel/white,
+/area/science/circuit)
+"vhG" = (
+/obj/structure/table/glass,
+/obj/machinery/camera/autoname{
+ dir = 4;
+ network = list("SS13")
+ },
+/turf/open/floor/plasteel,
+/area/science/misc_lab)
+"vLD" = (
/obj/structure/lattice,
/turf/open/space/basic,
/area/space)
-"QuW" = (
-/obj/effect/landmark/event_spawn,
+"wFH" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/effect/landmark/blobstart,
+/turf/open/floor/plating,
+/area/maintenance/starboard/aft)
+"wKo" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 2
+ },
+/turf/closed/wall,
+/area/science/circuit)
+"wOE" = (
+/obj/machinery/droneDispenser,
+/turf/open/floor/plating,
+/area/maintenance/aft)
+"wPk" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
/turf/open/floor/plasteel/white,
/area/science/circuit)
-"QuX" = (
-<<<<<<< HEAD
-/obj/effect/landmark/event_spawn,
+"wRy" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel,
+/area/science/misc_lab)
+"xkG" = (
+/obj/item/device/integrated_electronics/wirer,
+/obj/structure/table/reinforced,
/turf/open/floor/plasteel/white,
/area/science/circuit)
-=======
-/obj/structure/bodycontainer/morgue{
+"xyp" = (
+/obj/docking_port/stationary{
+ dheight = 1;
+ dir = 8;
+ dwidth = 12;
+ height = 17;
+ id = "syndicate_nw";
+ name = "northwest of station";
+ turf_type = /turf/open/space;
+ width = 23
+ },
+/turf/open/space/basic,
+/area/space/nearstation)
+"xAp" = (
+/obj/structure/chair/comfy,
+/turf/open/floor/plasteel,
+/area/science/misc_lab)
+"xVl" = (
+/turf/closed/wall,
+/area/hallway/secondary/service)
+"xVP" = (
+/obj/machinery/light,
+/obj/structure/sign/poster/official/random{
+ pixel_y = -32
+ },
+/turf/open/floor/plasteel/white,
+/area/science/circuit)
+"ygk" = (
+/obj/effect/turf_decal/stripes/line{
dir = 8
},
-/turf/open/floor/plasteel/dark,
-/area/medical/morgue)
-"QuY" = (
-/obj/structure/bodycontainer/morgue{
+/obj/machinery/light{
dir = 8
},
-/turf/open/floor/plasteel/dark,
-/area/medical/morgue)
-"QuZ" = (
-/obj/structure/bodycontainer/crematorium{
- dir = 1
- },
-/turf/open/floor/plasteel/dark,
-/area/chapel/office)
->>>>>>> 2db9ecb... Morgue and Crematorium Repositions (#35113)
+/turf/open/floor/plasteel,
+/area/science/circuit)
+"ykE" = (
+/obj/machinery/light,
+/turf/open/floor/plasteel/white,
+/area/science/circuit)
(1,1,1) = {"
aaa
@@ -87086,11 +83658,11 @@ aaa
aaa
aaa
aaa
-cVF
-cVF
-cVI
-cVF
-cVF
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -87339,19 +83911,19 @@ aaa
aac
aaa
aaa
-cVN
-cWf
-cWf
-cWf
-cVG
-cWX
-cVY
-cXw
-cVG
-cWf
-cWf
-cWf
-cYq
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -87595,21 +84167,21 @@ aaa
aaa
aaa
aaa
-cVF
-cVF
-cWe
-cWe
-cVF
-cVF
-cVF
-cXg
-cVF
-cVF
-cVF
-cWe
-cWe
-cVF
-cVF
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -87852,21 +84424,21 @@ aaa
aaa
aaa
aaa
-cVF
-cVF
-cVF
-cVF
-cVF
-cWO
-cWY
-cVY
-cXx
-cXF
-cVF
-cVF
-cVF
-cVF
-cVF
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -88109,21 +84681,21 @@ aaa
aaa
aaa
aaa
-cVF
-cVO
-cVF
-cWu
-EDj
-cWo
-cWo
-cWo
-cWo
-cWo
-cVF
-cXS
-cYd
-cYr
-cVF
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -88366,21 +84938,21 @@ aaa
aaa
aaa
aaa
-cVG
-cVR
-cWi
-cWv
-cWG
-cWQ
-cXa
-cXi
-cXb
-cWo
-cXM
-cXT
-cVY
-cYr
-cVG
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -88623,21 +85195,21 @@ aaa
aaa
aaa
aaa
-cVF
-cVF
-cVF
-cVF
-cVF
-cWP
-cWZ
-cXh
-cXy
-cWo
-cXL
-cVY
-cWo
-cYs
-cVG
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -88880,21 +85452,21 @@ aaa
aaa
aaa
aaa
-cVG
-cVT
-cWk
-cWx
-cWI
-cWR
-cWZ
-cXk
-cXy
-dlm
-cVF
-cXU
-cYf
-cYr
-cVF
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -89137,21 +85709,21 @@ aaa
aaa
aaa
aaa
-cVF
-cVS
-cWj
-cWw
-cWH
-cWo
-cWZ
-cXj
-cXy
-cWo
-cVF
-cVF
-cYe
-cVF
-cVF
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -89394,21 +85966,21 @@ aaa
aaa
aaa
aaa
-cVF
-cVF
-cVF
-cVF
-cVF
-cWo
-cXb
-cXl
-cXa
-cWo
-cXN
-cWo
-cYg
-cYu
-cVF
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -89651,21 +86223,21 @@ aaa
aaa
aaa
aaa
-cVF
-cVU
-cWl
-cWy
-cVF
-cWS
-cWo
-cVY
-cWo
-cWo
-cVF
-cXV
-cVY
-cYt
-cVG
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -89908,21 +86480,21 @@ aaf
aaf
aaf
aaf
-cVG
-cVV
-cWm
-cWz
-cVF
-cVF
-cVF
-cXm
-cVF
-cVF
-cVF
-cXX
-cYi
-cYw
-cVG
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -90156,7 +86728,7 @@ aaa
aaf
aaa
aaa
-cVm
+aaa
aaa
aaa
aaf
@@ -90165,21 +86737,21 @@ aaa
aaf
aaa
aaf
-cVG
-cVV
-cVY
-cWo
-cWn
-cVY
-cWo
-cWo
-cWo
-cWo
-cVF
-cXW
-cYh
-cYv
-cVF
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -90388,7 +86960,7 @@ aaa
aaa
aaa
aaa
-EDx
+qBq
aRA
aRA
aRA
@@ -90412,9 +86984,9 @@ aVs
aVs
aVs
aaa
-cVm
-cVw
-cVm
+aaa
+aaa
+aaa
aaa
aVs
aVs
@@ -90422,21 +86994,21 @@ aVs
aVs
aaa
aaf
-cVF
-cVX
-cWo
-cWB
-cVF
-cWo
-cXa
-cXo
-cXa
-cWo
-cVF
-cVF
-cVF
-cVF
-cVF
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -90656,11 +87228,11 @@ aVs
aaf
aaf
aaa
-bcS
-bcS
-bcU
-bcS
-bcS
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaf
aaf
@@ -90669,9 +87241,9 @@ bvB
aWT
aVs
aaa
-cVr
-cVv
-ddL
+aaa
+aaa
+aaa
aaa
aVs
bKS
@@ -90679,21 +87251,21 @@ aWT
aVs
aVs
aVs
-cVF
-cVF
-cWn
-cVF
-cVF
-dll
-cXb
-cXn
-cXb
-cXG
-cVF
-cXY
-dlo
-cYx
-cVF
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -90913,11 +87485,11 @@ aYC
aaa
aaf
aaa
-bcS
-bgq
-beC
-bjU
-bcS
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaf
aaa
@@ -90926,9 +87498,9 @@ aVu
aWU
aRA
aaa
-cVn
-dlF
-cVn
+aaa
+aaa
+aaa
aaa
aRA
btS
@@ -90936,21 +87508,21 @@ aWU
bOd
bPA
bOd
-cVI
-cVZ
-cWo
-cVY
-cWL
-cWo
-cWR
-cXq
-cWo
-cWo
-cXO
-cWo
-cYl
-cYz
-cVG
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -91170,11 +87742,11 @@ aVs
aaf
aaf
aaa
-bcS
-dli
-beC
-dlj
-bcS
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaf
aaf
@@ -91182,37 +87754,32 @@ aVs
aVw
aWU
aVs
-cVn
-cVn
-ddJ
-cVn
-cVn
+aaa
+aaa
+aaa
+aaa
+aaa
aVs
aVw
aWU
bOd
aZZ
bOd
-EDi
-<<<<<<< HEAD
-cVY
-cWp
-dlk
-cWL
-cVY
-cWo
-cXp
-cVY
-cWo
-cVF
-cXa
-dlp
-cYy
-cVF
-=======
+oRL
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
->>>>>>> 2db9ecb... Morgue and Crematorium Repositions (#35113)
aaa
aaa
aaa
@@ -91421,7 +87988,7 @@ aaa
aaa
aaf
aaa
-EDx
+qBq
aRA
aRA
aRA
@@ -91431,45 +87998,45 @@ aWV
aRA
aaa
aaa
-bcS
-bcS
-bcS
-bcT
-bcS
-bcS
-bcS
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aRA
bvC
bxt
aYC
-cVp
-cVu
-cVv
-cVB
-cVp
+aaa
+aaa
+aaa
+aaa
+aaa
aYC
bKT
aWU
aVs
aVs
aVs
-cVF
-cVF
-cWr
-cVF
-cVF
-cWo
-cXa
-cXs
-cXa
-dln
-cVF
-cVF
-cVF
-cVF
-cVF
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -91688,45 +88255,45 @@ aWU
aVs
aVs
aVs
-bcS
-beB
-beC
-beC
-beC
-blN
-bcS
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aVs
aVs
aVs
bvD
aWU
aVs
-cVn
-cVu
-cVv
-cVB
-cVn
+aaa
+aaa
+aaa
+aaa
+aaa
aVs
aVw
aWU
aVs
aaa
aaf
-cVF
-cWa
-cWq
-cWC
-EDk
-cWo
-cXa
-cXr
-cXb
-cWo
-cXP
-cYa
-cYm
-cYA
-cVF
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -91945,45 +88512,45 @@ aWU
djz
aZZ
djC
-bcT
-beC
-djE
-djE
-djE
-beC
-djR
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
djz
bsk
djC
aVu
bxu
aRA
-cVn
-dlE
-cVv
-cVv
-cVn
+aaa
+aaa
+aaa
+aaa
+aaa
aRA
aVu
aWU
aVs
aaf
aaf
-cVG
-cWc
-cWs
-cWs
-cWN
-cWo
-cWo
-cVY
-cWo
-cWo
-cXQ
-cVY
-cYo
-cYC
-cVG
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -92146,7 +88713,7 @@ aaa
aaa
aaa
aaa
-EDa
+xyp
aaa
aaa
aaa
@@ -92202,45 +88769,45 @@ aWU
aVs
aVs
aVs
-bcS
-beD
-beC
-beC
-beC
-blO
-bcS
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aVs
aVs
aVs
aVu
bxv
aVs
-ddH
-cVv
-ddK
-cVv
-ddM
+aaa
+aaa
+aaa
+aaa
+aaa
aVs
aVu
bMu
aRA
aaa
aaf
-cVG
-cWb
-cWs
-cWD
-cVF
-cVF
-cVF
-cXt
-cVF
-cVF
-cVF
-cYb
-cYn
-cYB
-cVG
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -92459,45 +89026,45 @@ aWW
aWT
baa
aVs
-bcU
-beE
-djE
-djE
-djE
-beC
-bcU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aVs
bsl
btO
bvE
bxw
aVs
-cVn
-cVv
-cVv
-dlG
-cVn
+aaa
+aaa
+aaa
+aaa
+aaa
aVs
bKU
bMv
aVs
aaa
aaf
-cVF
-cWd
-cWt
-cWE
-cVF
-cWU
-EDm
-cWo
-cXa
-dDP
-cVF
-cJI
-cYp
-cYD
-cVF
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaf
@@ -92716,53 +89283,45 @@ bvF
aWU
baa
aVs
-bcS
-beF
-beC
-beC
-beC
-blP
-bcS
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aVs
bsm
aVu
bvF
bxw
aVs
-<<<<<<< HEAD
-cVn
-cVu
-cVv
-cVB
-cVn
-=======
aaa
aaa
aaa
aaa
aaa
->>>>>>> 2db9ecb... Morgue and Crematorium Repositions (#35113)
aVs
aVu
bMw
aRA
aaa
aaf
-cVF
-cVF
-cVG
-cVF
-cVF
-cWT
-dDN
-cWo
-dDO
-cXH
-cVF
-cVF
-cVG
-cVF
-cVF
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaf
@@ -92981,24 +89540,24 @@ bvF
aWU
bab
aVs
-bcS
-beG
-djE
-djE
-djE
-blQ
-bcS
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aVs
baa
btP
aWX
bxx
aRA
-cVp
-cVu
-cVv
-cVB
-cVp
+aaa
+aaa
+aaa
+aaa
+aaa
aRA
btS
bxw
@@ -93009,13 +89568,13 @@ aaa
aaa
aaa
aaa
-cVG
-cWW
-cWo
-cXv
-cXD
-cXK
-cVG
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -93238,24 +89797,24 @@ aWY
aYE
bac
aVs
-bcU
-beH
-beC
-beC
-beC
-beC
-bcU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aVs
bsn
btQ
bvG
bxw
aVs
-cVn
-cVp
+aaa
+aaa
cVx
-cVp
-cVn
+aaa
+aaa
aVs
aVu
bxw
@@ -93266,13 +89825,13 @@ aaa
aaa
aaa
aaa
-cVG
-cWV
-cXf
-cXu
-cXC
-cXJ
-cVG
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -93495,13 +90054,13 @@ aWZ
aVs
aVs
aVs
-bcS
-beI
-djE
-djE
-djE
-blR
-bcS
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aVs
aVs
aVs
@@ -93523,13 +90082,13 @@ aaa
aaa
aaa
aaa
-EDl
-cVG
-cVG
-cVG
-cVG
-cVG
-EDl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -93752,15 +90311,6 @@ aWZ
djz
aZZ
djC
-<<<<<<< HEAD
-bcT
-beC
-beC
-beC
-beC
-beC
-bcT
-=======
aaa
aaa
aaa
@@ -93768,7 +90318,6 @@ aaa
aaa
aaa
aaa
->>>>>>> 2db9ecb... Morgue and Crematorium Repositions (#35113)
djz
bsk
djC
@@ -94019,13 +90568,13 @@ aWZ
aVs
aVs
aVs
-bcS
-bcS
-bgt
-bgt
-bgt
-bcS
-bcS
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aVs
aVs
aVs
@@ -94276,13 +90825,13 @@ aXa
aYF
aVs
aaa
-bcS
-beJ
-bgu
+aaa
+aaa
+aaa
djM
-bgu
-blS
-bcS
+aaa
+aaa
+aaa
aaa
aVs
btR
@@ -95023,7 +91572,7 @@ arX
dne
dne
dne
-dnH
+aRG
aoc
drQ
dne
@@ -95032,14 +91581,14 @@ dne
dst
aDc
dhE
-dnH
-dnH
+aRG
+aRG
cWA
auG
dnd
dhK
dnk
-dnH
+aRG
aSP
dne
dhM
@@ -95794,25 +92343,25 @@ doJ
atq
aaf
aaa
-awN
-awN
-awO
-awN
-awO
-awN
-awN
aaa
-cUS
-cUS
-cUS
-cUS
-cUS
-cUS
-cUS
-cUS
-cUS
-cUS
-cUS
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
dne
@@ -96051,26 +92600,26 @@ doJ
atq
aaf
aaa
-awN
-ayg
-azh
-dlB
-azi
-aDe
-awN
aaa
-cUS
-cUV
-cUV
-cUV
-cUV
-dlD
-cUV
-cUV
-cUV
-cVc
-cUS
-cVk
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaf
dne
bag
@@ -96308,33 +92857,26 @@ doJ
atq
aaf
aaa
-<<<<<<< HEAD
-awO
-ayh
-azi
-azh
-azi
-aDf
-aEu
-=======
aaa
aaa
aaa
aaa
->>>>>>> 2db9ecb... Morgue and Crematorium Repositions (#35113)
aaa
-cUS
-cUV
-cUV
-cUV
-cUV
-cUV
-cUV
-cUV
-cUV
-cUV
-cVg
-cVj
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaf
aip
doJ
@@ -96572,26 +93114,26 @@ doJ
atq
aaf
aaa
-awN
-ayg
-azh
-azh
-azi
-aDg
-awN
aaa
-cUS
-dlC
-cUV
-cUV
-cUV
-cUV
-cUV
-cUV
-cUV
-cUV
-cVg
-cVj
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aip
asi
@@ -96829,28 +93371,10 @@ doJ
atq
aaf
aaa
-awN
-awN
-awO
+aaa
+aaa
+aaa
aAA
-awO
-awN
-awN
-aaa
-<<<<<<< HEAD
-cUS
-cUV
-cUV
-cUV
-cUV
-cUV
-cUV
-cUV
-cUV
-cUV
-cVg
-cVj
-=======
aaa
aaa
aaa
@@ -96866,7 +93390,7 @@ aaa
aaa
aaa
aaa
->>>>>>> 2db9ecb... Morgue and Crematorium Repositions (#35113)
+aaa
aaa
aip
doJ
@@ -96886,7 +93410,7 @@ bxJ
bzx
bBi
bCM
-bEr
+bBg
bBg
bHM
bJv
@@ -97112,18 +93636,18 @@ ayi
ayi
aaf
aaa
-cUS
-cUV
-cUV
-cUV
-cUV
-cUY
-cUV
-cUV
-cUV
-cVc
-cUS
-cVl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaf
dne
daX
@@ -97369,17 +93893,17 @@ aBS
ayi
aaf
aaa
-cUS
-cUS
-cUS
-cUW
-cUX
-cUS
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
cUZ
-cTh
-cUS
-cUS
-cUS
+aaa
+aaa
+aaa
+aaa
aaa
aaf
dne
@@ -98901,7 +95425,7 @@ apt
dnk
doJ
atu
-dnH
+aRG
dnZ
awQ
ayk
@@ -99693,7 +96217,7 @@ aQl
aMv
aSS
aMv
-aVI
+aQl
aXh
aMv
bar
@@ -100438,7 +96962,7 @@ aji
dnd
alE
dnr
-dnH
+aRG
alE
dou
dne
@@ -101209,7 +97733,7 @@ dho
akq
alH
amW
-dnH
+aRG
apw
dod
dne
@@ -101259,7 +97783,7 @@ bEy
bGr
bwd
bwd
-bLj
+bwd
bMK
bOl
bPR
@@ -101466,7 +97990,7 @@ ajl
akr
alI
amX
-dnH
+aRG
dnZ
aqP
dne
@@ -101566,7 +98090,7 @@ cLT
cMC
cNt
cTf
-QuZ
+eFN
cMI
cPC
djX
@@ -101723,8 +98247,8 @@ aio
aks
alJ
amY
-dnH
-dnH
+aRG
+aRG
aqQ
dne
atB
@@ -102783,7 +99307,7 @@ aYT
baC
bbZ
bdu
-bfe
+bbZ
bgX
biQ
bkv
@@ -103632,16 +100156,16 @@ dbF
cMI
aaa
aaa
-cZj
-cZj
-cZj
-cZe
-cZj
-cZj
-cZe
-cZj
-cZj
-cZj
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -103888,18 +100412,18 @@ cRn
cOS
cMI
aaa
-cZe
-cZl
-cZl
-cZl
-cZe
-cZl
-cZl
-cZe
-cZl
-cZl
-cZl
-cZe
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -104040,15 +100564,15 @@ aoj
apC
doA
dne
-auQ
-auQ
-atJ
-auQ
-auQ
-atJ
-auQ
-auQ
-auQ
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aDu
aDu
aDu
@@ -104144,20 +100668,20 @@ cQE
cQl
cRo
cMI
-cZe
-cZe
-cYF
-cYF
-cYF
-cZe
-cYF
-cYF
-cZe
-cYF
-cYF
-cYF
-cZe
-cZe
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -104297,15 +100821,15 @@ aok
aox
aqV
dne
-atJ
-auR
-avU
-awX
-ayt
-azA
-aAU
-aCi
-aDt
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
azC
aFV
aHu
@@ -104401,20 +100925,20 @@ cQF
cQV
cRp
cRL
-cYF
-daj
-dai
-dak
-dal
-dan
-dam
-dao
-dax
-cZL
-cZL
-cZL
-dar
-cYF
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -104554,17 +101078,6 @@ aol
apD
aqW
dne
-<<<<<<< HEAD
-atJ
-auS
-avV
-auQ
-dlA
-ayt
-ayt
-aCi
-aDt
-=======
aaa
aaa
aaa
@@ -104574,7 +101087,6 @@ aaa
aaa
aaa
aaa
->>>>>>> 2db9ecb... Morgue and Crematorium Repositions (#35113)
azC
aFW
aHv
@@ -104670,20 +101182,20 @@ cQF
cOP
cRp
cRL
-cYF
-daf
-cYO
-dag
-cZZ
-cZm
-cYO
-cZy
-cZe
-cYV
-dly
-cYV
-cYV
-dae
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -104823,15 +101335,15 @@ aom
ajm
dne
dne
-atJ
-auT
-avW
-awY
-ayu
-azB
-ayt
-aCi
-aDt
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
azC
aFW
aHw
@@ -104927,20 +101439,20 @@ cQG
cQW
cRq
cRL
-cYF
-daa
-cZm
-cYO
-cYO
-cYO
-dag
-cZA
-cZe
-dae
-cYI
-cYV
-cYV
-dae
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -105080,15 +101592,15 @@ aon
ajm
aqX
dne
-auQ
-auQ
-avX
-auQ
-auQ
-auQ
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aAV
-auQ
-auQ
+aaa
+aaa
aDu
aFX
aHx
@@ -105184,20 +101696,20 @@ cQF
cOP
cRp
cRL
-cYF
-cZT
-cZS
-cYO
-cYO
-cYO
-dlt
-cYO
-cZV
-dlx
-cZe
-dad
-dad
-cYF
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -105378,7 +101890,7 @@ bAZ
bkz
bzN
bBB
-bDc
+bDa
bEG
bGB
bIb
@@ -105441,20 +101953,20 @@ cQF
cQV
cRp
cRL
-cZe
-cZe
-cZn
-cZe
-cZQ
-cZe
-cZn
-cZe
-cZe
-cZe
-cZe
-cZn
-cZe
-cZe
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -105698,20 +102210,20 @@ cQH
cQX
cRr
cMI
-cZe
-cZK
-dlr
-cYO
-cYO
-cYO
-dlr
-cZK
-cZe
-cZD
-cZD
-cZD
-daq
-cZe
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -105839,7 +102351,7 @@ ady
adT
adc
aeW
-afQ
+afK
agJ
ahx
ait
@@ -105955,20 +102467,20 @@ cQI
cZc
cZd
cMI
-cYF
-cYO
-cYO
-cYO
-cYO
-cYO
-cYO
-cYO
-cZI
-cZG
-cZG
-cZG
-cZJ
-cYF
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -106084,7 +102596,7 @@ aaf
aaf
aaf
aaa
-EDz
+urv
aax
aax
aax
@@ -106212,20 +102724,20 @@ cMI
cMI
cMI
cMI
-cZe
-cZi
-cYO
-cZo
-cYF
-cZi
-cYO
-cZo
-cYF
-cZF
-cZG
-cZG
-cZH
-cYF
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -106469,20 +102981,20 @@ cQJ
cQY
cRs
cQY
-cYH
-cYO
-cYO
-cZo
-dat
-cZi
-cYO
-cZo
-cZe
-cZF
-cZY
-dlz
-cZE
-cZe
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -106704,9 +103216,9 @@ cyZ
cAd
ctA
dbr
-QuX
+tFJ
dDC
-QuX
+tFJ
cFU
cCe
ctK
@@ -106726,20 +103238,20 @@ cQK
cPv
cPv
cPv
-cZe
-dlq
-cYO
-cZo
-cYF
-cZi
-cYO
-cZk
-cZe
-cZe
-dab
-cZn
-cZe
-cZe
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -106983,20 +103495,20 @@ cQL
cQY
cQK
cQY
-cYH
-cYO
-cYO
-cZo
-dax
-cZi
-cYO
-cZo
-cZe
-cZx
-cZw
-cZz
-das
-cZe
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -107112,7 +103624,7 @@ aaa
aaf
aaa
aaa
-EDz
+urv
abe
abe
abe
@@ -107230,7 +103742,7 @@ cKy
cLo
cLm
cLm
-cNM
+cLm
cOr
cOU
dDG
@@ -107240,20 +103752,20 @@ cQK
cPv
cPv
cPv
-cZg
-cZi
-cYO
-cZo
-cYF
-cZi
-cYO
-cZo
-cYF
-cZM
-cYO
-cYO
-dau
-cYF
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -107497,20 +104009,20 @@ cQK
cPv
aaa
aaf
-cYF
-cZi
-cYO
-cYO
-cYO
-cYO
-cYO
-cYO
-cZp
-cYO
-cYO
-cYO
-cZt
-cYF
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -107754,20 +104266,20 @@ cQM
cPv
aaa
aaf
-cYF
-cZi
-cYO
-cZo
-cYF
-cZi
-cYO
-cZo
-cYF
-dlH
-cZN
-cYO
-cZs
-cZe
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -108011,20 +104523,20 @@ cQK
cPv
aaa
aaf
-cYF
-cZi
-cYO
-cZo
-cYY
-cZi
-cYO
-cZo
-cZr
-cZe
-cYF
-cZp
-cZr
-cZe
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -108268,20 +104780,20 @@ cQK
cPv
cPv
cPv
-cZe
-cYS
-cYO
-cZo
-cYF
-cZi
-cYO
-dlw
-cZe
-cZO
-dac
-dah
-dav
-cZe
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -108526,21 +105038,6 @@ cQY
cQK
cQY
cYJ
-<<<<<<< HEAD
-cYO
-cYO
-cZo
-cYZ
-cZi
-cYO
-cZo
-cYF
-cZP
-cYX
-cYV
-cZB
-cZe
-=======
aaa
aaa
aaa
@@ -108554,7 +105051,6 @@ aaa
aaa
aaa
aaa
->>>>>>> 2db9ecb... Morgue and Crematorium Repositions (#35113)
aaa
aaa
aaa
@@ -108798,20 +105294,20 @@ cQO
cPv
cPv
cPv
-cYF
-cZi
-cYO
-cZo
-cYF
-cZi
-cYO
-cZo
-dax
-cZU
-cYV
-cYV
-cZb
-cYF
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -109055,20 +105551,20 @@ cQP
cQY
cRt
cQY
-cYH
-cYO
-cYO
-cYO
-cYO
-cYO
-cYO
-cYO
-cZC
-cZW
-cYV
-cYX
-cYW
-cYF
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -109312,20 +105808,20 @@ cPb
cPv
cPv
cPv
-cZe
-cYO
-cYO
-cYO
-cYO
-cYO
-cYO
-cYO
-cZC
-cZW
-cYV
-cYV
-daw
-cZe
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -109569,20 +106065,20 @@ aaf
aaa
aaa
aaf
-cZe
-cYN
-cYM
-cYO
-dls
-cYO
-dlv
-cYN
-cZg
-cZX
-cZW
-cZW
-cYU
-cZe
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -109782,7 +106278,7 @@ bZk
cau
cce
ccd
-QsY
+qBh
cgd
chj
ciC
@@ -109826,20 +106322,20 @@ aaf
aaf
aaf
aaf
-cZe
-cZe
-cZe
-cYF
-cYF
-cYF
-cZe
-cZe
-cZe
-cZe
-cYF
-cYF
-cZe
-cZe
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -110553,9 +107049,9 @@ bZm
cax
cch
cdK
-QsZ
+uRM
cgf
-Qta
+rzX
ciF
ckb
clD
@@ -110747,7 +107243,7 @@ akM
alY
cZR
cZR
-EDD
+rQK
arm
asC
atT
@@ -110811,7 +107307,7 @@ cay
cci
cdL
ceR
-QsX
+izu
chm
ciG
ckc
@@ -110842,7 +107338,7 @@ cIN
cJM
cCq
cgM
-EDF
+gNe
cwc
cNe
cNT
@@ -111099,7 +107595,7 @@ cFh
cFh
cKH
cLz
-EDG
+wFH
cMk
bTs
bTs
@@ -111305,7 +107801,7 @@ bwB
byp
bAd
byo
-bDt
+bDj
bEZ
bGM
bIp
@@ -111357,7 +107853,7 @@ cJN
cCq
cgN
cMl
-EDH
+wOE
bTs
aaf
aaf
@@ -113645,7 +110141,7 @@ cgo
cgo
cgo
ccd
-cps
+cpr
cci
crQ
ctc
@@ -115160,7 +111656,7 @@ bwN
byz
bAj
bBU
-bDE
+bwO
dDb
bHb
bMP
@@ -115427,7 +111923,7 @@ bNA
bOU
bQD
bRS
-Ljw
+oub
bUi
bVu
bWO
@@ -115967,13 +112463,13 @@ dwL
dwL
dwL
dwL
-QtY
-Quf
+xAp
+vhG
cAI
cBD
cCD
-QuM
-QuR
+uun
+rSL
dvY
cEz
dxQ
@@ -116223,10 +112719,10 @@ cub
cJa
cJa
cJa
-QtP
-QtZ
-QtZ
-QtZ
+gHh
+wRy
+wRy
+wRy
cBE
cAJ
cCE
@@ -116455,8 +112951,8 @@ bNC
bOW
bQH
bRV
-EDw
-bUl
+bST
+bUh
bVx
bWS
bYi
@@ -116481,17 +112977,17 @@ cuY
cwa
dzQ
dwL
-Qua
-Quh
+gLC
+qqg
cAK
cBF
cCF
-QuN
-QuS
+uGW
+dqU
dvY
dww
-QuT
-QuU
+gEk
+eZe
cJa
cPx
cJb
@@ -116739,8 +113235,8 @@ cuZ
cuZ
cuZ
cuZ
-Qui
-Qtm
+ioI
+krD
czD
cAL
cBG
@@ -116993,11 +113489,11 @@ dwL
dxQ
cuZ
cwb
-QtD
-QtQ
-Qub
-Quj
-Quw
+lal
+ygk
+sdi
+fDD
+wKo
czD
cQC
cBH
@@ -117249,12 +113745,12 @@ cgq
dwL
dxQ
cuZ
-Qtt
-QtE
-QtE
-Quc
-Quk
-Qtm
+eqG
+cwZ
+cwZ
+cyM
+uYk
+krD
cQv
cAN
cBI
@@ -117501,17 +113997,17 @@ clW
cIk
cJa
cpG
-Qtb
+kVo
dDu
ctk
cuc
cuZ
dyp
-QtE
-QtE
-Quc
-Qul
-Qtm
+cwZ
+cwZ
+cyM
+xVP
+krD
czF
cAN
cBJ
@@ -117534,7 +114030,7 @@ aaa
aaf
aaa
aaa
-Qtj
+vLD
aaa
aaf
aaa
@@ -117692,7 +114188,7 @@ asY
aui
avm
asY
-axH
+aui
ayO
aAg
aBA
@@ -117761,14 +114257,14 @@ dvY
dvY
dvY
dvY
-Qtc
+qnJ
cuZ
-Qtu
-QtF
-QtF
-Qud
-QtG
-Qtm
+upN
+cxN
+cxN
+qJZ
+cxO
+krD
czG
cAN
cBK
@@ -118020,12 +114516,12 @@ cpH
dvY
cud
cuZ
-Qtv
-QtG
-QtG
-QuW
-Qum
-Qtm
+eXy
+cxO
+cxO
+dGH
+mzh
+krD
cQB
cAO
cBL
@@ -118275,14 +114771,14 @@ cpI
cqY
crY
dvY
-Qtd
-Qtl
+lzk
+gix
cwd
-QtH
+kfu
cxP
-QtG
-Qun
-Qtm
+cxO
+gnZ
+krD
czI
cAP
cAP
@@ -118532,14 +115028,14 @@ cpJ
cqZ
dvY
dvY
-Qte
-Qtm
-Qtw
-QtI
-QtR
-QtG
-Quo
-Qtm
+obb
+krD
+kOt
+gRS
+oUA
+cxO
+qRM
+krD
aaf
aaf
aaf
@@ -118771,10 +115267,10 @@ byN
bTb
bUt
bVA
-bVA
+nyo
bYp
bZy
-bVA
+tsx
bZB
cdW
cfk
@@ -118789,14 +115285,14 @@ dxh
clY
crZ
dvY
-Qtf
-Qtm
-Qtx
-QtJ
-QtS
-QuX
-QtG
-Qtm
+tVY
+krD
+oLW
+gGT
+wPk
+dGH
+cxO
+krD
aaf
aaa
aaf
@@ -119027,11 +115523,11 @@ cco
byN
bTc
bUu
-apb
-apb
+xVl
+kys
cow
-bZz
-apb
+xVl
+dLK
alq
alq
cfl
@@ -119046,14 +115542,14 @@ cnb
cra
csa
dvY
-Qtg
-Qtm
-Qty
-QtK
-QtT
-QtG
-Qup
-Qtm
+lMz
+krD
+ocT
+xkG
+uTS
+cxO
+ykE
+krD
aaa
aaa
aaa
@@ -119282,13 +115778,13 @@ dim
bPe
dis
byN
-apc
+bvd
bUv
-anM
-apb
-bXa
-bZz
-caV
+xVl
+xVl
+mvj
+xVl
+dLK
alq
cdX
cfm
@@ -119303,14 +115799,14 @@ ciL
cou
csb
dvY
-Qth
-Qtm
-Qtz
-QtL
-QtU
-QtG
-Quq
-Qtm
+mjJ
+krD
+eqq
+llb
+hfJ
+cxO
+tjH
+krD
aaa
aaa
aaa
@@ -119470,7 +115966,7 @@ aaa
aaa
aaf
aaa
-EDB
+jwW
adl
aQf
adl
@@ -119542,9 +116038,9 @@ byN
cjr
bTe
bVB
-apb
-bXa
-bZz
+bVC
+nAG
+pCV
caW
alq
cdY
@@ -119560,14 +116056,14 @@ ciL
cgs
csc
dvY
-Qti
-Qtm
-QtA
-QtM
-QtV
-QtG
-Qur
-Qtm
+evy
+krD
+lsv
+txj
+eEe
+cxO
+ngl
+krD
aaa
aaa
aaa
@@ -119796,11 +116292,11 @@ bHl
bPg
bHl
bSc
-bTe
-apc
-bVC
-apb
-bXa
+eoK
+uHc
+uJU
+uJU
+pvA
bZA
bZE
bZE
@@ -119817,14 +116313,14 @@ cpK
ciL
csc
dvY
-Qtj
-Qtm
-QtB
-QtN
-QtW
-QtG
-Qus
-Qtm
+vLD
+krD
+jyv
+ohj
+nnK
+cxO
+gfh
+krD
aaa
aaa
aaa
@@ -120074,14 +116570,14 @@ cpL
crb
csd
dvY
-Qtj
-Qtm
-Qtm
-QtO
-Qtm
-QtO
-Qtm
-Qtm
+vLD
+krD
+krD
+noG
+krD
+noG
+krD
+krD
aaa
aaa
aaa
@@ -120597,8 +117093,8 @@ aaf
aaf
aaf
aaf
-QuJ
-QuJ
+lMJ
+lMJ
aaf
aaa
aaf
@@ -121045,7 +117541,7 @@ axY
aJm
aJu
aMb
-EDE
+fdr
axY
aPX
aRm
@@ -122890,7 +119386,7 @@ cbe
ccO
bza
aaf
-EDo
+gJs
chO
cjd
ckG
@@ -122910,8 +119406,8 @@ aaa
aaa
aaf
aaf
-QuJ
-QuJ
+lMJ
+lMJ
aaf
aaf
aaa
@@ -123918,7 +120414,7 @@ cbi
ccS
bza
aaf
-EDo
+gJs
chR
cjg
ckH
@@ -124418,7 +120914,7 @@ bHx
bIU
bKB
bMh
-bNT
+bCi
bCi
bKD
bCi
@@ -124946,7 +121442,7 @@ cVJ
ccQ
bza
aaf
-EDo
+gJs
chU
cjj
ckJ
@@ -125173,7 +121669,7 @@ dgI
bgb
cTi
bgb
-EDC
+sJW
aNC
brM
aNC
@@ -125737,8 +122233,8 @@ aaa
aaf
aaf
aaf
-QuJ
-QuJ
+lMJ
+lMJ
aaf
aaf
aaa
@@ -126468,19 +122964,19 @@ aaa
aaf
bAR
dBC
-EDo
+gJs
bFZ
bAR
bCA
-EDo
+gJs
bFZ
bAR
bCA
-EDo
+gJs
bFZ
bAR
bCA
-EDo
+gJs
bFZ
bAR
aaf
@@ -129279,7 +125775,7 @@ aaa
aaa
aag
aaa
-EDb
+siF
aaa
aaa
aaa
@@ -129296,7 +125792,7 @@ bzj
bzj
aai
bzj
-EDb
+siF
bzj
bzj
bKK
@@ -129304,7 +125800,7 @@ bzj
bzj
bzj
bzj
-EDb
+siF
aai
bzj
bzj
@@ -130838,7 +127334,7 @@ aaa
aaa
aai
aaa
-EDb
+siF
aaa
aaa
aaa
@@ -131095,7 +127591,7 @@ aaa
aaa
aai
aaa
-EDb
+siF
aaa
aaa
aaa
@@ -131849,7 +128345,7 @@ aaa
aaa
aag
aaa
-EDb
+siF
aaa
aaa
aaf
@@ -132380,7 +128876,7 @@ aaf
aaf
aag
aaa
-EDb
+siF
aaa
aaa
aaa
@@ -146899,4 +143395,3 @@ aaa
aaa
aaa
"}
-
diff --git a/_maps/map_files/Mining/Lavaland.dmm b/_maps/map_files/Mining/Lavaland.dmm
index a7b9d0e994..003b4d01e1 100644
--- a/_maps/map_files/Mining/Lavaland.dmm
+++ b/_maps/map_files/Mining/Lavaland.dmm
@@ -76,9 +76,6 @@
"an" = (
/turf/closed/mineral/random/labormineral/volcanic,
/area/lavaland/surface/outdoors)
-"ao" = (
-/turf/closed/mineral/random/volcanic,
-/area/lavaland/surface/outdoors)
"ap" = (
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
@@ -501,7 +498,7 @@
pixel_y = 23
},
/obj/machinery/computer/shuttle/mining{
- req_access = "0"
+ req_access = null
},
/turf/open/floor/plasteel/purple/side{
dir = 1
@@ -579,10 +576,7 @@
/turf/open/floor/plating,
/area/mine/laborcamp)
"bN" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'.";
- name = "KEEP CLEAR: DOCKING AREA"
- },
+/obj/structure/sign/warning/docking,
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
/area/mine/production)
@@ -930,11 +924,7 @@
/turf/closed/wall,
/area/mine/living_quarters)
"cN" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'HIGH VOLTAGE'";
- icon_state = "shock";
- name = "HIGH VOLTAGE"
- },
+/obj/structure/sign/warning/electricshock,
/turf/closed/wall,
/area/mine/living_quarters)
"cO" = (
@@ -1172,10 +1162,6 @@
dir = 4
},
/area/mine/production)
-"dt" = (
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/mine/production)
"du" = (
/obj/effect/turf_decal/loading_area,
/turf/open/floor/plasteel,
@@ -3311,24 +3297,6 @@
/obj/effect/baseturf_helper/picky/lava_land/plating,
/turf/closed/wall,
/area/mine/laborcamp/security)
-"Wu" = (
-/obj/effect/baseturf_helper/lava_land/surface,
-/turf/closed/wall,
-/area/mine/laborcamp)
-"Ww" = (
-/obj/effect/baseturf_helper/lava_land/surface,
-/turf/open/floor/plasteel,
-/area/mine/living_quarters)
-"Wx" = (
-/obj/effect/baseturf_helper/lava_land/surface,
-/turf/open/floor/plasteel/brown{
- dir = 4
- },
-/area/mine/eva)
-"Wy" = (
-/obj/effect/baseturf_helper/lava_land/surface,
-/turf/open/floor/plasteel,
-/area/mine/production)
"Wz" = (
/obj/effect/mapping_helpers/planet_z,
/turf/open/lava/smooth/lava_land_surface,
diff --git a/_maps/map_files/OmegaStation/OmegaStation.dmm b/_maps/map_files/OmegaStation/OmegaStation.dmm
index 45ab557836..340afb89dc 100644
--- a/_maps/map_files/OmegaStation/OmegaStation.dmm
+++ b/_maps/map_files/OmegaStation/OmegaStation.dmm
@@ -27,7 +27,7 @@
/turf/open/space,
/area/space/nearstation)
"aah" = (
-/obj/structure/sign/securearea,
+/obj/structure/sign/warning/securearea,
/turf/closed/wall,
/area/asteroid/nearstation)
"aai" = (
@@ -821,7 +821,6 @@
icon_state = "1-4"
},
/obj/machinery/holopad,
-/obj/effect/landmark/lightsout,
/turf/open/floor/plasteel/vault,
/area/bridge)
"abF" = (
@@ -909,7 +908,7 @@
/turf/open/floor/plasteel,
/area/maintenance/starboard/fore)
"abN" = (
-/obj/structure/sign/vacuum,
+/obj/structure/sign/warning/vacuum,
/turf/closed/wall,
/area/maintenance/starboard)
"abO" = (
@@ -985,7 +984,7 @@
/turf/closed/wall,
/area/crew_quarters/heads/captain/private)
"abZ" = (
-/obj/structure/sign/vacuum{
+/obj/structure/sign/warning/vacuum{
pixel_y = 32
},
/obj/structure/displaycase/captain{
@@ -1189,7 +1188,7 @@
/obj/machinery/light{
dir = 4
},
-/obj/structure/sign/vacuum{
+/obj/structure/sign/warning/vacuum{
pixel_y = 32
},
/obj/machinery/atmospherics/components/unary/vent_pump/on,
@@ -1325,7 +1324,7 @@
/area/asteroid/nearstation)
"acI" = (
/obj/structure/dresser,
-/obj/structure/sign/vacuum{
+/obj/structure/sign/warning/vacuum{
pixel_y = 32
},
/obj/machinery/camera{
@@ -1709,7 +1708,7 @@
/area/quartermaster/storage)
"adq" = (
/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/sign/vacuum,
+/obj/structure/sign/warning/vacuum,
/turf/open/floor/plating,
/area/quartermaster/storage)
"ads" = (
@@ -1735,7 +1734,7 @@
/turf/open/floor/plating,
/area/asteroid/nearstation)
"adz" = (
-/obj/structure/sign/vacuum,
+/obj/structure/sign/warning/vacuum,
/turf/closed/wall,
/area/asteroid/nearstation)
"adA" = (
@@ -1865,7 +1864,7 @@
/obj/structure/cable/white{
icon_state = "2-8"
},
-/obj/structure/sign/goldenplaque/captain{
+/obj/structure/sign/plaques/golden/captain{
pixel_x = 32
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -1899,7 +1898,7 @@
/area/ai_monitored/turret_protected/ai)
"adR" = (
/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/sign/electricshock{
+/obj/structure/sign/warning/electricshock{
pixel_x = 32
},
/obj/structure/cable/white{
@@ -1931,7 +1930,7 @@
},
/area/bridge)
"adU" = (
-/obj/structure/sign/electricshock{
+/obj/structure/sign/warning/electricshock{
pixel_x = -32
},
/obj/structure/cable/white,
@@ -2004,7 +2003,7 @@
/obj/machinery/light{
dir = 1
},
-/obj/structure/sign/nosmoking_2{
+/obj/structure/sign/warning/nosmoking{
pixel_y = 32
},
/obj/effect/turf_decal/stripes/line{
@@ -2189,7 +2188,7 @@
/obj/structure/cable/white,
/obj/effect/spawner/structure/window/reinforced,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/sign/electricshock{
+/obj/structure/sign/warning/electricshock{
pixel_x = 32
},
/turf/open/floor/plating,
@@ -2442,12 +2441,16 @@
/turf/open/floor/plasteel,
/area/quartermaster/storage)
"aeZ" = (
-/obj/machinery/door/airlock/shuttle{
- name = "Supply Shuttle Airlock";
- req_access_txt = "31"
+/obj/docking_port/stationary{
+ dir = 4;
+ dwidth = 9;
+ height = 7;
+ id = "supply_home";
+ name = "Cargo Bay";
+ width = 20
},
-/turf/open/floor/plating,
-/area/shuttle/supply)
+/turf/open/space/basic,
+/area/space)
"afa" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
@@ -3010,7 +3013,6 @@
"aga" = (
/obj/structure/table/wood,
/obj/item/device/flashlight/lamp/green,
-/obj/item/card/id/captains_spare,
/obj/item/toy/figure/captain,
/turf/open/floor/carpet,
/area/crew_quarters/heads/captain/private)
@@ -3115,7 +3117,7 @@
dir = 4
},
/obj/machinery/recharge_station,
-/obj/structure/sign/nosmoking_2{
+/obj/structure/sign/warning/nosmoking{
pixel_x = 32
},
/obj/effect/turf_decal/stripes/line{
@@ -3286,22 +3288,6 @@
},
/turf/open/floor/plasteel,
/area/quartermaster/storage)
-"agD" = (
-/obj/docking_port/mobile/supply{
- dwidth = 5;
- roundstart_move = "supply_away";
- width = 12
- },
-/obj/docking_port/stationary{
- dir = 8;
- dwidth = 5;
- height = 7;
- id = "supply_home";
- name = "Cargo Bay";
- width = 12
- },
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/supply)
"agE" = (
/obj/item/ore/silver,
/obj/item/ore/iron,
@@ -3935,7 +3921,7 @@
/turf/open/floor/plating,
/area/maintenance/fore)
"ahH" = (
-/obj/structure/sign/securearea{
+/obj/structure/sign/warning/securearea{
pixel_x = -32
},
/obj/structure/closet/secure_closet/captains,
@@ -4231,7 +4217,7 @@
pixel_x = 3;
pixel_y = -3
},
-/obj/structure/sign/nosmoking_2{
+/obj/structure/sign/warning/nosmoking{
pixel_y = 32
},
/obj/effect/turf_decal/bot,
@@ -4240,7 +4226,7 @@
},
/area/security/brig)
"aip" = (
-/obj/structure/sign/electricshock,
+/obj/structure/sign/warning/electricshock,
/turf/closed/wall/r_wall,
/area/security/brig)
"aiq" = (
@@ -4452,7 +4438,7 @@
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"aiG" = (
-/obj/structure/sign/electricshock,
+/obj/structure/sign/warning/electricshock,
/turf/closed/wall,
/area/hallway/primary/central)
"aiH" = (
@@ -4825,7 +4811,7 @@
},
/area/hallway/primary/central)
"ajq" = (
-/obj/structure/sign/securearea{
+/obj/structure/sign/warning/securearea{
pixel_y = 32
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -4904,7 +4890,7 @@
},
/area/hallway/primary/central)
"ajx" = (
-/obj/structure/sign/securearea{
+/obj/structure/sign/warning/securearea{
pixel_y = 32
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -5238,7 +5224,6 @@
},
/area/hallway/primary/central)
"akd" = (
-/obj/effect/landmark/lightsout,
/obj/structure/cable/white{
icon_state = "1-2"
},
@@ -5328,7 +5313,7 @@
},
/area/hallway/primary/central)
"akk" = (
-/obj/structure/sign/electricshock{
+/obj/structure/sign/warning/electricshock{
pixel_y = -32
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -5511,7 +5496,6 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/obj/effect/landmark/lightsout,
/obj/structure/cable/white{
icon_state = "1-4"
},
@@ -5669,7 +5653,7 @@
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"akI" = (
-/obj/structure/sign/electricshock{
+/obj/structure/sign/warning/electricshock{
pixel_y = -32
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -5752,7 +5736,7 @@
/turf/open/floor/plating/airless,
/area/shuttle/supply)
"akT" = (
-/obj/structure/sign/electricshock{
+/obj/structure/sign/warning/electricshock{
pixel_x = -32
},
/obj/structure/cable/white{
@@ -5853,7 +5837,7 @@
/turf/closed/wall,
/area/security/brig)
"alb" = (
-/obj/structure/sign/electricshock{
+/obj/structure/sign/warning/electricshock{
pixel_x = -32
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -6141,7 +6125,6 @@
/obj/structure/cable/white{
icon_state = "2-4"
},
-/obj/effect/landmark/lightsout,
/turf/open/floor/plasteel/neutral,
/area/quartermaster/storage)
"alF" = (
@@ -6241,7 +6224,6 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/effect/landmark/lightsout,
/turf/open/floor/plasteel/neutral/side{
dir = 4
},
@@ -6840,7 +6822,7 @@
},
/area/teleporter)
"amY" = (
-/obj/structure/sign/electricshock,
+/obj/structure/sign/warning/electricshock,
/turf/closed/wall/r_wall,
/area/teleporter)
"amZ" = (
@@ -6887,7 +6869,7 @@
},
/area/hallway/primary/central)
"ane" = (
-/obj/structure/sign/electricshock,
+/obj/structure/sign/warning/electricshock,
/turf/closed/wall/r_wall,
/area/ai_monitored/storage/eva)
"anf" = (
@@ -6999,7 +6981,7 @@
/turf/open/floor/plasteel,
/area/quartermaster/storage)
"anp" = (
-/obj/structure/sign/nosmoking_1,
+/obj/structure/sign/warning/nosmoking/circle,
/turf/closed/wall,
/area/quartermaster/miningdock)
"anq" = (
@@ -7039,7 +7021,7 @@
/area/quartermaster/miningdock)
"ant" = (
/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/sign/vacuum,
+/obj/structure/sign/warning/vacuum,
/turf/open/floor/plating,
/area/quartermaster/miningdock)
"anu" = (
@@ -7966,7 +7948,6 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
-/obj/effect/landmark/lightsout,
/obj/structure/cable/white{
icon_state = "1-2"
},
@@ -8130,18 +8111,17 @@
/turf/open/floor/plasteel,
/area/quartermaster/miningdock)
"app" = (
-/obj/machinery/door/airlock/shuttle{
- name = "Mining Shuttle Airlock";
- req_access_txt = "0"
+/obj/docking_port/stationary{
+ dir = 4;
+ dwidth = 3;
+ height = 5;
+ id = "mining_home";
+ name = "mining shuttle bay";
+ roundstart_template = /datum/map_template/shuttle/mining/delta;
+ width = 7
},
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/shuttle/mining)
+/turf/open/space/basic,
+/area/space)
"apr" = (
/turf/open/floor/plasteel/neutral,
/area/shuttle/mining)
@@ -8433,7 +8413,7 @@
name = "Station Intercom";
pixel_x = 28
},
-/obj/structure/sign/nosmoking_2{
+/obj/structure/sign/warning/nosmoking{
pixel_y = -32
},
/obj/effect/turf_decal/delivery,
@@ -8593,7 +8573,7 @@
name = "Station Intercom";
pixel_x = -28
},
-/obj/structure/sign/nosmoking_2{
+/obj/structure/sign/warning/nosmoking{
pixel_y = -32
},
/turf/open/floor/plasteel/vault/side{
@@ -8770,7 +8750,7 @@
/area/quartermaster/miningdock)
"aqt" = (
/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/sign/pods{
+/obj/structure/sign/warning/pods{
name = "MINING POD"
},
/turf/open/floor/plating,
@@ -9333,7 +9313,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/sign/fire{
+/obj/structure/sign/warning/fire{
pixel_y = 32
},
/obj/effect/turf_decal/bot,
@@ -9424,7 +9404,7 @@
/obj/machinery/atmospherics/components/unary/thermomachine/heater{
dir = 8
},
-/obj/structure/sign/nosmoking_2{
+/obj/structure/sign/warning/nosmoking{
pixel_x = 32
},
/obj/effect/turf_decal/bot,
@@ -10001,7 +9981,7 @@
},
/area/engine/atmos)
"asI" = (
-/obj/structure/sign/vacuum{
+/obj/structure/sign/warning/vacuum{
pixel_x = -32
},
/turf/open/floor/plating,
@@ -10547,7 +10527,7 @@
/turf/open/floor/plasteel,
/area/security/brig)
"atM" = (
-/obj/structure/sign/electricshock{
+/obj/structure/sign/warning/electricshock{
pixel_x = -32
},
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
@@ -11229,7 +11209,7 @@
"auX" = (
/obj/structure/table/reinforced,
/obj/item/storage/toolbox/electrical,
-/obj/structure/sign/nosmoking_2{
+/obj/structure/sign/warning/nosmoking{
pixel_x = 32
},
/obj/effect/turf_decal/bot,
@@ -12446,7 +12426,7 @@
/obj/machinery/light{
dir = 1
},
-/obj/structure/sign/atmosplaque{
+/obj/structure/sign/plaques/atmos{
pixel_y = 32
},
/obj/effect/turf_decal/bot,
@@ -12503,7 +12483,7 @@
name = "Station Intercom";
pixel_x = 26
},
-/obj/structure/sign/nosmoking_1{
+/obj/structure/sign/warning/nosmoking/circle{
pixel_x = 26;
pixel_y = 26
},
@@ -13950,7 +13930,7 @@
},
/area/crew_quarters/dorms)
"aAI" = (
-/obj/structure/sign/nosmoking_2{
+/obj/structure/sign/warning/nosmoking{
pixel_y = 32
},
/turf/open/floor/plasteel/neutral/corner{
@@ -14037,7 +14017,6 @@
},
/obj/structure/table/wood,
/obj/item/kitchen/fork,
-/obj/effect/landmark/lightsout,
/obj/structure/cable/white{
icon_state = "4-8"
},
@@ -14473,7 +14452,6 @@
},
/area/hallway/primary/central)
"aBL" = (
-/obj/effect/landmark/lightsout,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -14766,7 +14744,7 @@
/area/hallway/secondary/exit)
"aCn" = (
/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/sign/vacuum,
+/obj/structure/sign/warning/vacuum,
/turf/open/floor/plating,
/area/hallway/secondary/exit)
"aCo" = (
@@ -14826,7 +14804,7 @@
dir = 4;
name = "Air to Pure"
},
-/obj/structure/sign/fire{
+/obj/structure/sign/warning/fire{
pixel_y = -32
},
/obj/effect/turf_decal/bot,
@@ -14974,7 +14952,7 @@
id = "atmoslock";
name = "Atmospherics Lockdown Blast door"
},
-/obj/structure/sign/electricshock{
+/obj/structure/sign/warning/electricshock{
pixel_x = -32
},
/obj/structure/cable/white{
@@ -15188,7 +15166,7 @@
desc = "Used to grind things up into raw materials and liquids.";
pixel_y = 5
},
-/obj/structure/sign/nosmoking_2{
+/obj/structure/sign/warning/nosmoking{
pixel_y = 32
},
/obj/structure/sign/nanotrasen{
@@ -15256,16 +15234,6 @@
/turf/open/floor/plasteel,
/area/hallway/secondary/exit)
"aDj" = (
-/obj/machinery/door/airlock/shuttle{
- name = "Emergency Shuttle Airlock"
- },
-/obj/docking_port/mobile/emergency{
- dheight = 0;
- dwidth = 5;
- height = 11;
- name = "Omega emergency shuttle";
- width = 19
- },
/obj/docking_port/stationary{
dheight = 0;
dir = 4;
@@ -15276,14 +15244,8 @@
turf_type = /turf/open/space;
width = 30
},
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/shuttle/escape)
+/turf/open/space/basic,
+/area/space)
"aDk" = (
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
@@ -15329,11 +15291,11 @@
/turf/closed/wall/r_wall,
/area/engine/atmos)
"aDr" = (
-/obj/structure/sign/nosmoking_2,
+/obj/structure/sign/warning/nosmoking,
/turf/closed/wall/r_wall,
/area/engine/atmos)
"aDs" = (
-/obj/structure/sign/fire,
+/obj/structure/sign/warning/fire,
/turf/closed/wall/r_wall,
/area/engine/atmos)
"aDt" = (
@@ -15354,7 +15316,7 @@
/turf/open/floor/plasteel,
/area/engine/atmos)
"aDu" = (
-/obj/structure/sign/securearea,
+/obj/structure/sign/warning/securearea,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/closed/wall/r_wall,
/area/engine/atmos)
@@ -15805,7 +15767,7 @@
/area/shuttle/escape)
"aEn" = (
/obj/machinery/shieldgen,
-/obj/structure/sign/nosmoking_2{
+/obj/structure/sign/warning/nosmoking{
pixel_y = 32
},
/obj/item/device/radio/intercom{
@@ -15920,7 +15882,6 @@
/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
dir = 8
},
-/obj/effect/landmark/lightsout,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
/area/engine/engineering)
@@ -15937,7 +15898,7 @@
/area/engine/engineering)
"aEA" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/sign/nosmoking_2,
+/obj/structure/sign/warning/nosmoking,
/turf/closed/wall/r_wall,
/area/hallway/primary/central)
"aEB" = (
@@ -16690,7 +16651,6 @@
/area/hallway/primary/central)
"aFY" = (
/obj/machinery/holopad,
-/obj/effect/landmark/lightsout,
/obj/structure/cable/white{
icon_state = "1-2"
},
@@ -16762,7 +16722,7 @@
/turf/open/floor/plasteel,
/area/engine/engineering)
"aGi" = (
-/obj/structure/sign/securearea,
+/obj/structure/sign/warning/securearea,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -16813,7 +16773,7 @@
/turf/open/floor/plating,
/area/engine/engineering)
"aGm" = (
-/obj/structure/sign/radiation,
+/obj/structure/sign/warning/radiation,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 9
},
@@ -16837,7 +16797,7 @@
/turf/open/floor/plasteel,
/area/engine/engineering)
"aGo" = (
-/obj/structure/sign/fire,
+/obj/structure/sign/warning/fire,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/closed/wall/r_wall,
/area/engine/engineering)
@@ -17289,7 +17249,7 @@
/obj/structure/cable/white{
icon_state = "4-8"
},
-/obj/structure/sign/electricshock{
+/obj/structure/sign/warning/electricshock{
pixel_y = 32
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -17409,7 +17369,7 @@
id = "ceblast";
name = "Engineering Lockdown Shutters"
},
-/obj/structure/sign/electricshock{
+/obj/structure/sign/warning/electricshock{
pixel_x = -32
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -17655,7 +17615,7 @@
/turf/closed/wall,
/area/hydroponics)
"aHR" = (
-/obj/structure/sign/botany{
+/obj/structure/sign/departments/botany{
pixel_x = -32
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -17732,7 +17692,7 @@
/turf/open/floor/plasteel/neutral,
/area/hallway/secondary/exit)
"aIb" = (
-/obj/structure/sign/radiation{
+/obj/structure/sign/warning/radiation{
pixel_x = -32
},
/obj/effect/turf_decal/bot_white,
@@ -17759,7 +17719,7 @@
/obj/structure/cable/white{
icon_state = "1-2"
},
-/obj/structure/sign/nosmoking_2{
+/obj/structure/sign/warning/nosmoking{
pixel_x = -32
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -18400,7 +18360,7 @@
/obj/machinery/power/smes{
charge = 5e+006
},
-/obj/structure/sign/electricshock{
+/obj/structure/sign/warning/electricshock{
pixel_y = 32
},
/obj/effect/turf_decal/bot,
@@ -18458,7 +18418,7 @@
/turf/open/floor/plasteel/dark,
/area/engine/engineering)
"aJt" = (
-/obj/structure/sign/radiation,
+/obj/structure/sign/warning/radiation,
/turf/closed/wall/r_wall,
/area/engine/supermatter)
"aJu" = (
@@ -18766,7 +18726,7 @@
},
/area/crew_quarters/bar/atrium)
"aJY" = (
-/obj/structure/sign/nosmoking_2,
+/obj/structure/sign/warning/nosmoking,
/turf/closed/wall,
/area/crew_quarters/kitchen)
"aJZ" = (
@@ -19057,7 +19017,7 @@
/turf/open/floor/engine,
/area/engine/supermatter)
"aKD" = (
-/obj/structure/sign/fire,
+/obj/structure/sign/warning/fire,
/turf/closed/wall/r_wall,
/area/engine/supermatter)
"aKE" = (
@@ -19946,7 +19906,6 @@
/obj/machinery/atmospherics/components/unary/vent_pump/on{
dir = 1
},
-/obj/effect/landmark/lightsout,
/turf/open/floor/plasteel/neutral,
/area/hallway/secondary/exit)
"aMC" = (
@@ -20239,7 +20198,7 @@
/area/engine/engineering)
"aNg" = (
/obj/structure/reagent_dispensers/fueltank,
-/obj/structure/sign/nosmoking_2{
+/obj/structure/sign/warning/nosmoking{
pixel_y = -32
},
/obj/effect/turf_decal/stripes/line{
@@ -20569,7 +20528,7 @@
/obj/item/folder/yellow,
/obj/item/pen,
/obj/item/hand_labeler_refill,
-/obj/structure/sign/nosmoking_2{
+/obj/structure/sign/warning/nosmoking{
pixel_x = -32
},
/obj/item/device/radio/intercom{
@@ -20800,7 +20759,7 @@
/turf/open/floor/plating,
/area/hydroponics)
"aOk" = (
-/obj/structure/sign/botany,
+/obj/structure/sign/departments/botany,
/turf/closed/wall,
/area/hydroponics)
"aOm" = (
@@ -21140,7 +21099,6 @@
/area/hallway/primary/central)
"aOU" = (
/obj/machinery/door/firedoor,
-/obj/effect/landmark/lightsout,
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
/obj/structure/cable/white{
icon_state = "4-8"
@@ -21616,7 +21574,7 @@
/turf/open/floor/engine,
/area/engine/engineering)
"aPK" = (
-/obj/structure/sign/electricshock,
+/obj/structure/sign/warning/electricshock,
/turf/closed/wall/r_wall,
/area/engine/supermatter)
"aPL" = (
@@ -21913,7 +21871,6 @@
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"aQp" = (
-/obj/effect/landmark/lightsout,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -21997,7 +21954,7 @@
/turf/open/floor/plasteel/neutral/corner,
/area/hallway/primary/central)
"aQz" = (
-/obj/structure/sign/securearea{
+/obj/structure/sign/warning/securearea{
pixel_y = -32
},
/obj/machinery/light,
@@ -22217,7 +22174,7 @@
/turf/open/floor/plasteel,
/area/library)
"aRa" = (
-/obj/structure/sign/kiddieplaque/library,
+/obj/structure/sign/plaques/kiddie/library,
/turf/closed/wall,
/area/library)
"aRb" = (
@@ -22577,7 +22534,7 @@
},
/area/library)
"aRV" = (
-/obj/structure/sign/nosmoking_2{
+/obj/structure/sign/warning/nosmoking{
pixel_y = 32
},
/obj/machinery/vending/games,
@@ -22664,7 +22621,7 @@
/turf/open/floor/plasteel/vault,
/area/medical/morgue)
"aSg" = (
-/obj/structure/sign/nosmoking_2{
+/obj/structure/sign/warning/nosmoking{
pixel_x = 32
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -22961,7 +22918,7 @@
"aSR" = (
/obj/structure/table/reinforced,
/obj/item/tank/internals/plasma,
-/obj/structure/sign/nosmoking_2{
+/obj/structure/sign/warning/nosmoking{
pixel_y = -32
},
/obj/effect/turf_decal/bot,
@@ -24724,7 +24681,7 @@
/area/medical/chemistry)
"aWO" = (
/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/sign/nosmoking_1{
+/obj/structure/sign/warning/nosmoking/circle{
pixel_x = 32
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -24798,7 +24755,7 @@
/turf/open/floor/plating,
/area/science/lab)
"aWW" = (
-/obj/structure/sign/nosmoking_1,
+/obj/structure/sign/warning/nosmoking/circle,
/turf/closed/wall,
/area/science/lab)
"aWX" = (
@@ -25110,7 +25067,6 @@
/obj/structure/cable/white{
icon_state = "1-4"
},
-/obj/effect/landmark/lightsout,
/turf/open/floor/plasteel/whitepurple/corner{
dir = 1
},
@@ -25300,7 +25256,7 @@
/area/medical/medbay/zone3)
"aXR" = (
/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/sign/bluecross_2,
+/obj/structure/sign/departments/medbay/alt,
/turf/open/floor/plating,
/area/medical/medbay/zone3)
"aXS" = (
@@ -25865,7 +25821,7 @@
/turf/open/floor/plasteel/neutral,
/area/hallway/primary/central)
"aYZ" = (
-/obj/structure/sign/securearea{
+/obj/structure/sign/warning/securearea{
pixel_x = 32
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
@@ -26181,7 +26137,6 @@
/obj/structure/cable/white{
icon_state = "2-4"
},
-/obj/effect/landmark/lightsout,
/turf/open/floor/plasteel/blue,
/area/medical/medbay/zone3)
"aZK" = (
@@ -26577,8 +26532,8 @@
/area/medical/medbay/zone3)
"baw" = (
/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/sign/bluecross_2,
-/obj/structure/sign/nosmoking_1{
+/obj/structure/sign/departments/medbay/alt,
+/obj/structure/sign/warning/nosmoking/circle{
pixel_y = -28
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -27424,7 +27379,7 @@
name = "Medbay Desk";
req_access_txt = "5"
},
-/obj/structure/sign/nosmoking_1{
+/obj/structure/sign/warning/nosmoking/circle{
pixel_x = 32
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -27641,7 +27596,7 @@
/obj/structure/window/reinforced{
dir = 8
},
-/obj/structure/sign/nosmoking_2{
+/obj/structure/sign/warning/nosmoking{
pixel_y = 32
},
/turf/open/floor/plasteel/bar,
@@ -28382,7 +28337,7 @@
/turf/open/floor/circuit/green,
/area/science/robotics/mechbay)
"bei" = (
-/obj/structure/sign/nosmoking_2{
+/obj/structure/sign/warning/nosmoking{
pixel_y = -32
},
/turf/open/floor/mech_bay_recharge_floor,
@@ -28448,7 +28403,7 @@
/obj/item/device/mmi,
/obj/item/device/mmi,
/obj/item/device/mmi,
-/obj/structure/sign/bluecross_2{
+/obj/structure/sign/departments/medbay/alt{
pixel_y = -32
},
/obj/machinery/light,
@@ -28482,7 +28437,7 @@
pixel_y = 16
},
/obj/item/circular_saw,
-/obj/structure/sign/nosmoking_2{
+/obj/structure/sign/warning/nosmoking{
pixel_y = -32
},
/obj/structure/mirror{
@@ -28628,7 +28583,7 @@
/turf/open/floor/plasteel,
/area/maintenance/port)
"beG" = (
-/obj/structure/sign/bluecross_2,
+/obj/structure/sign/departments/medbay/alt,
/turf/closed/wall,
/area/medical/medbay/zone3)
"beH" = (
@@ -29218,7 +29173,7 @@
name = "Xenobiology Lab";
req_access_txt = "47"
},
-/obj/structure/sign/xenobio{
+/obj/structure/sign/departments/xenobio{
pixel_x = 32
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -29340,7 +29295,7 @@
/area/chapel/main)
"bgb" = (
/obj/structure/bookcase,
-/obj/structure/sign/kiddieplaque/badger{
+/obj/structure/sign/plaques/kiddie/badger{
pixel_y = 32
},
/obj/machinery/light/small{
@@ -29395,16 +29350,6 @@
heat_capacity = 1e+006
},
/area/hallway/primary/central)
-<<<<<<< HEAD
-"bgh" = (
-/obj/effect/landmark/lightsout,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/neutral/side,
-/area/hallway/primary/central)
-=======
->>>>>>> 2d5c3d5... Merge pull request #34781 from DaxDupont/please-make-waffles-for=i-am-belgian
"bgl" = (
/obj/machinery/vending/cola/random,
/obj/machinery/newscaster{
@@ -29892,7 +29837,7 @@
pixel_x = -12;
pixel_y = 2
},
-/obj/structure/sign/nosmoking_2{
+/obj/structure/sign/warning/nosmoking{
pixel_x = -32
},
/turf/open/floor/plating,
@@ -29912,7 +29857,7 @@
dir = 4;
pixel_x = 11
},
-/obj/structure/sign/botany{
+/obj/structure/sign/departments/botany{
pixel_x = 32
},
/turf/open/floor/plating,
@@ -30294,7 +30239,7 @@
/obj/machinery/light/small{
dir = 1
},
-/obj/structure/sign/kiddieplaque/badger{
+/obj/structure/sign/plaques/kiddie/badger{
pixel_y = 32
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -30549,7 +30494,7 @@
},
/area/hallway/secondary/entry)
"biB" = (
-/obj/structure/sign/biohazard,
+/obj/structure/sign/warning/biohazard,
/turf/closed/wall/r_wall,
/area/science/xenobiology)
"biC" = (
@@ -30578,7 +30523,7 @@
/turf/open/floor/plasteel,
/area/science/xenobiology)
"biE" = (
-/obj/structure/sign/xenobio,
+/obj/structure/sign/departments/xenobio,
/turf/closed/wall/r_wall,
/area/science/xenobiology)
"biF" = (
@@ -31315,7 +31260,7 @@
/area/hallway/secondary/entry)
"bjY" = (
/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/sign/vacuum,
+/obj/structure/sign/warning/vacuum,
/turf/open/floor/plating,
/area/hallway/secondary/entry)
"bjZ" = (
@@ -32510,23 +32455,17 @@
/turf/open/floor/plating,
/area/maintenance/starboard/aft)
"btj" = (
-/obj/docking_port/mobile/arrivals{
- dir = 2;
- dwidth = 4;
- height = 17;
- name = "omega arrivals shuttle";
- width = 9
- },
/obj/docking_port/stationary{
dir = 2;
dwidth = 4;
height = 17;
id = "arrivals_stationary";
name = "omega arrivals";
+ roundstart_template = /datum/map_template/shuttle/arrival/delta;
width = 9
},
-/turf/closed/wall/mineral/plastitanium,
-/area/shuttle/arrival)
+/turf/open/space/basic,
+/area/space)
"btk" = (
/obj/machinery/door/airlock/external{
cyclelinkeddir = 4;
@@ -32662,7 +32601,7 @@
/turf/open/floor/circuit/green/telecomms,
/area/tcommsat/server)
"buP" = (
-/obj/machinery/message_server,
+/obj/machinery/telecomms/message_server,
/turf/open/floor/circuit/green/telecomms,
/area/tcommsat/server)
"buQ" = (
@@ -32837,18 +32776,6 @@
/turf/open/floor/pod/dark,
/area/shuttle/transport)
"bwz" = (
-/obj/machinery/door/airlock/titanium,
-/obj/docking_port/mobile{
- dir = 8;
- dwidth = 2;
- height = 13;
- id = "ferry";
- name = "ferry shuttle";
- port_direction = 1;
- preferred_direction = 4;
- roundstart_move = "ferry_away";
- width = 5
- },
/obj/docking_port/stationary{
dir = 8;
dwidth = 2;
@@ -32858,8 +32785,8 @@
turf_type = /turf/open/space;
width = 5
},
-/turf/open/floor/pod/light,
-/area/shuttle/transport)
+/turf/open/space/basic,
+/area/space)
"bwB" = (
/obj/structure/shuttle/engine/heater{
dir = 8
@@ -33209,7 +33136,7 @@
/turf/closed/wall/rust,
/area/maintenance/fore)
"byf" = (
-/obj/structure/sign/vacuum,
+/obj/structure/sign/warning/vacuum,
/turf/closed/wall,
/area/maintenance/starboard/fore)
"byg" = (
@@ -33344,7 +33271,7 @@
},
/area/bridge)
"swF" = (
-/obj/structure/sign/securearea,
+/obj/structure/sign/warning/securearea,
/turf/closed/wall/rust,
/area/asteroid/nearstation)
"swG" = (
@@ -33483,7 +33410,7 @@
/turf/open/floor/plasteel,
/area/maintenance/starboard)
"sBW" = (
-/obj/structure/sign/vacuum,
+/obj/structure/sign/warning/vacuum,
/turf/closed/wall/rust,
/area/maintenance/starboard)
"sCr" = (
@@ -33626,7 +33553,7 @@
/turf/open/floor/plasteel/vault,
/area/maintenance/starboard)
"sEQ" = (
-/obj/structure/sign/securearea,
+/obj/structure/sign/warning/securearea,
/turf/closed/wall,
/area/maintenance/starboard)
"sFn" = (
@@ -34041,7 +33968,7 @@
},
/area/maintenance/starboard/central)
"sIN" = (
-/obj/structure/sign/securearea,
+/obj/structure/sign/warning/securearea,
/turf/closed/wall/rust,
/area/maintenance/starboard)
"sIO" = (
@@ -34425,7 +34352,7 @@
/turf/closed/wall/rust,
/area/hallway/secondary/entry)
"sLw" = (
-/obj/structure/sign/electricshock,
+/obj/structure/sign/warning/electricshock,
/turf/closed/wall/r_wall/rust,
/area/ai_monitored/turret_protected/ai)
"sLx" = (
@@ -34466,11 +34393,11 @@
/turf/open/floor/plasteel/vault/side,
/area/ai_monitored/turret_protected/ai)
"sLA" = (
-/obj/structure/sign/electricshock,
+/obj/structure/sign/warning/electricshock,
/turf/closed/wall/r_wall,
/area/ai_monitored/turret_protected/ai)
"sLB" = (
-/obj/structure/sign/securearea,
+/obj/structure/sign/warning/securearea,
/turf/closed/wall/r_wall,
/area/ai_monitored/turret_protected/ai)
"sLC" = (
@@ -34508,7 +34435,7 @@
/turf/open/floor/circuit/green,
/area/ai_monitored/turret_protected/ai)
"sLI" = (
-/obj/structure/sign/securearea,
+/obj/structure/sign/warning/securearea,
/turf/closed/wall/r_wall/rust,
/area/ai_monitored/turret_protected/ai)
"sLJ" = (
@@ -34959,7 +34886,7 @@
/obj/structure/cable/yellow{
icon_state = "0-2"
},
-/obj/structure/sign/electricshock{
+/obj/structure/sign/warning/electricshock{
pixel_y = 32
},
/obj/effect/turf_decal/stripes/line{
@@ -34978,7 +34905,7 @@
},
/area/ai_monitored/turret_protected/aisat_interior)
"sMU" = (
-/obj/structure/sign/vacuum,
+/obj/structure/sign/warning/vacuum,
/turf/closed/wall/r_wall,
/area/ai_monitored/turret_protected/aisat_interior)
"sMV" = (
@@ -35025,7 +34952,7 @@
},
/area/ai_monitored/turret_protected/aisat_interior)
"sMY" = (
-/obj/structure/sign/securearea,
+/obj/structure/sign/warning/securearea,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -35069,7 +34996,7 @@
},
/area/ai_monitored/turret_protected/aisat_interior)
"sNc" = (
-/obj/structure/sign/securearea,
+/obj/structure/sign/warning/securearea,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -35286,7 +35213,7 @@
},
/area/ai_monitored/turret_protected/aisat_interior)
"sNx" = (
-/obj/structure/sign/securearea,
+/obj/structure/sign/warning/securearea,
/turf/closed/wall,
/area/ai_monitored/turret_protected/aisat_interior)
"sNy" = (
@@ -35427,7 +35354,7 @@
/turf/open/floor/plating,
/area/ai_monitored/turret_protected/aisat_interior)
"sNQ" = (
-/obj/structure/sign/securearea,
+/obj/structure/sign/warning/securearea,
/turf/closed/wall/r_wall,
/area/ai_monitored/turret_protected/aisat_interior)
"sNS" = (
@@ -35481,7 +35408,7 @@
/turf/open/space/basic,
/area/space/nearstation)
"sOk" = (
-/obj/structure/sign/securearea,
+/obj/structure/sign/warning/securearea,
/turf/closed/wall,
/area/space/nearstation)
"sOr" = (
@@ -71102,7 +71029,7 @@ aaa
aaa
aaa
aaa
-bwb
+aaa
aaa
aaa
aaa
@@ -71336,9 +71263,9 @@ aZz
baq
bbl
bbY
-bcP
+bbm
bdM
-bcP
+bbm
sKE
bfv
bfS
@@ -71358,9 +71285,9 @@ aaa
aaa
aaa
aaa
-bwb
-bwo
-bwb
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -71593,9 +71520,9 @@ aZA
bar
bbm
bbZ
-bcP
-bcP
-bcP
+bbm
+bbm
+bbm
baj
bfu
bfu
@@ -71615,9 +71542,9 @@ aaa
aaa
aaa
aaa
-bwc
-bwi
-bwB
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -71872,9 +71799,9 @@ aaa
aaa
aaa
aaa
-bvS
-bwq
-bvS
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -72128,11 +72055,11 @@ aaa
aaa
aaa
aaa
-bvS
-bvS
-bwr
-bvS
-bvS
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -72385,11 +72312,11 @@ aaa
aaa
aaa
aaa
-bvT
-bwf
-bwi
-bwE
-bvT
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -72642,11 +72569,11 @@ aaa
aaa
aaa
aaa
-bvS
-bwf
-bwi
-bwE
-bvS
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -72899,11 +72826,11 @@ aaa
aaa
aaa
aaa
-bvS
-bwh
-bwi
-bwi
-bvS
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -73156,11 +73083,11 @@ aaa
aaa
aaa
aaa
-bvW
-bwi
-bwv
-bwi
-bwQ
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -73413,11 +73340,11 @@ aaa
aaa
aaa
aaa
-bvS
-bwi
-bwi
-bwI
-bvS
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -73670,11 +73597,11 @@ aaa
aaa
aaa
aaa
-bvS
-bwf
-bwi
-bwE
-bvS
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -73927,11 +73854,11 @@ aaa
aaa
aaa
aaa
-bvT
-bwf
-bwi
-bwE
-bvT
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -74184,11 +74111,11 @@ aaa
aaa
aaa
aaa
-bvS
-bvT
+aaa
+aaa
bwz
-bvT
-bvS
+aaa
+aaa
aaa
aaa
aaa
@@ -76489,19 +76416,19 @@ bgV
aae
aaa
aaa
-bjO
-bjZ
-bka
-bkm
-bka
-bkb
-bkb
-bkb
-bkb
-bkG
-bkm
-bka
-bka
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -76745,20 +76672,20 @@ biv
bgU
aae
aaa
-bjN
-bjO
-bka
-bkc
-bkn
-bkq
-bkv
-bkv
-bkv
-bkv
-bkH
-bkn
-bkM
-bka
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -77002,23 +76929,23 @@ bxY
bgU
aaa
aaa
-bjN
-bjW
-bkb
-bkd
-bko
-bko
-bko
-bko
-bko
-bko
-bko
-bko
-bkN
-bka
-bka
-bkb
-bka
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -77259,23 +77186,23 @@ bix
bgU
aaa
aaa
-bjN
-bjW
-bkb
-bke
-bko
-bko
-bkw
-bkw
-bkw
-bkw
-bkI
-bko
-bkO
-bkT
-bkY
-bld
-bkb
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -77517,22 +77444,22 @@ bgU
aaa
aaa
btj
-bjO
-bjZ
-bkf
-bko
-bkr
-buA
-bkx
-bkD
-bkx
-bkF
-buB
-bkP
-bkU
-bkZ
-ble
-bkb
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -77773,23 +77700,23 @@ bix
bgU
aaa
aaa
-bjN
-bjW
-bkb
-bkg
-bko
-bko
-bkv
-bkv
-bkv
-bkv
-bkJ
-bko
-bkQ
-bkV
-bla
-bld
-bkb
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -78030,23 +77957,23 @@ biw
bgU
aaa
aaa
-bjN
-bjW
-bkb
-bkd
-bko
-bko
-bko
-bko
-bko
-bko
-bko
-bko
-byn
-bka
-bka
-bkb
-bka
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -78287,20 +78214,20 @@ biy
bgU
aae
aaa
-bjN
-bjO
-bka
-bkc
-bkp
-bks
-bkw
-bkw
-bkw
-bkw
-bkK
-bkp
-bkR
-bka
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -78545,19 +78472,19 @@ bgT
aae
aaa
aaa
-bjO
-bjZ
-bka
-bkb
-bka
-bkb
-bkb
-bkb
-bkb
-bkG
-bkb
-bka
-bka
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -81879,7 +81806,7 @@ aZl
sPI
bfP
bgm
-bhh
+bhg
bgm
sKZ
bjd
@@ -84385,17 +84312,17 @@ aaa
aaa
aaa
aaa
-abQ
-abQ
-abQ
-aei
+aaa
+aaa
+aaa
+aaa
aeZ
-abQ
-aeZ
-aht
-abQ
-abQ
-abQ
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
amC
@@ -84642,18 +84569,18 @@ aaa
aaa
aaa
aaa
-abQ
-acz
-afa
-afa
-afa
-afK
-afa
-afa
-aig
-abQ
-abQ
-akQ
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
amC
amC
@@ -84899,18 +84826,18 @@ aaa
aaa
aaa
aaa
-abQ
-acA
-ads
-aej
-ads
-ads
-ads
-ads
-aii
-aiQ
-ajN
-akR
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aae
amD
@@ -85156,18 +85083,18 @@ aaa
aaa
aaa
aaa
-abQ
-buy
-ads
-ads
-ads
-ads
-ads
-ads
-aii
-aiQ
-ajN
-akR
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aae
ant
@@ -85413,18 +85340,18 @@ aaa
aaa
aaa
aaa
-abQ
-acA
-ads
-ads
-ads
-ads
-ads
-ads
-aii
-aiQ
-ajN
-akR
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
amD
@@ -85670,26 +85597,26 @@ aaa
aaa
aaa
aaa
-abQ
-acC
-aek
-aek
-aek
-buz
-aek
-aek
-aij
-abQ
-abQ
-akS
aaa
-amE
-amE
-amF
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
app
-amF
-amE
-amE
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -85927,26 +85854,26 @@ aaa
aaa
aaa
aaa
-abQ
-abQ
-abQ
-abQ
-abQ
-abQ
-agD
-abQ
-abQ
-abQ
-abQ
aaa
aaa
-amE
-anu
-aon
-aon
-aqw
-arn
-amE
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -86197,13 +86124,13 @@ aaa
aaa
aaa
aaa
-amF
-anv
-aoo
-apr
-aqx
-aro
-asu
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -86454,13 +86381,13 @@ aaa
aaa
aaa
aaa
-amE
-anw
-aop
-aps
-aqy
-arp
-amE
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -86711,13 +86638,13 @@ aaa
aaa
aaa
aaa
-amE
-amE
-amF
-apt
-amF
-amE
-amE
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -87237,24 +87164,24 @@ aaa
aaa
aaa
aaa
-axX
-axX
-axX
-aBj
-axZ
+aaa
+aaa
+aaa
+aaa
+aaa
aDj
-axX
-axY
-axY
-axY
-axX
-aJe
-axZ
-aJe
-axX
-axX
-aLz
-aPD
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -87494,25 +87421,25 @@ aaa
aaa
aaa
aaa
-axX
-azc
-aAa
-aAb
-axY
-aDk
-aEg
-aEm
-aEm
-aEm
-aEg
-aDk
-axY
-aDk
-aMD
-aNL
-axX
-aPD
-aQE
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -87751,25 +87678,25 @@ aaa
aaa
aaa
aaa
-axY
-azd
-aAb
-aAb
-aCo
-aDl
-aEh
-aEh
-aEh
-aEh
-aEh
-aJf
-aKm
-aLw
-aME
-aNM
-axY
-aPE
-aQE
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -88008,25 +87935,25 @@ aaa
aaa
aaa
aaa
-axY
-azd
-aAb
-aAb
-axY
-aDl
-aEi
-bvP
-aEi
-aEi
-aEi
-aJf
-aKm
-aLx
-aMF
-aNN
-axY
-aPE
-aQE
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -88265,25 +88192,25 @@ aaa
aaa
aaa
aaa
-axX
-aze
-aAb
-aBk
-axY
-aDl
-aEj
-aFo
-aEl
-aFp
-aEj
-aJf
-axY
-aLy
-aMG
-aNO
-axX
-aPE
-aQE
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -88522,25 +88449,25 @@ aaa
aaa
aaa
aaa
-axZ
-axY
-aAc
-axY
-aCp
-bvO
-aEk
-aEj
-aGd
-aEl
-aEk
-bvR
-aKn
-aLz
-axY
-aLz
-aLz
-aPD
-aPD
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -88779,25 +88706,25 @@ aaa
aaa
aaa
aaa
-axX
-azf
-aAd
-aBl
-axY
-aDl
-aEl
-aFp
-aEj
-aFo
-aEl
-aJf
-axY
-aLA
-aMH
-aNP
-axX
-aPE
-aQE
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -89036,25 +88963,25 @@ aaa
aaa
aaa
aaa
-axY
-azg
-aAe
-aAd
-aCq
-aDl
-aEm
-bvQ
-aEm
-aEm
-aEm
-aJf
-aKo
-aLB
-aLB
-aNQ
-axY
-aPE
-aQE
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -89293,25 +89220,25 @@ aaa
aaa
aaa
aaa
-axY
-azh
-aAd
-aBm
-axY
-aDl
-aEh
-aEh
-aEh
-aEh
-aEh
-aJf
-aKo
-aLB
-aLB
-aNR
-axY
-aPE
-aQE
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -89550,25 +89477,25 @@ aaa
aaa
aaa
aaa
-axY
-azi
-aAf
-aBn
-axX
-aDm
-aEi
-aEi
-aEi
-aEi
-aEi
-aJg
-axY
-aLC
-aMI
-aNS
-axX
-aPD
-aQE
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -89807,24 +89734,24 @@ aaa
aaa
aaa
aaa
-axX
-axY
-axY
-axX
-axZ
-axX
-axY
-axY
-axY
-axY
-axY
-axX
-axZ
-axX
-axX
-axX
-aLz
-aPD
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
diff --git a/_maps/map_files/OmegaStation/job/job_changes.dm b/_maps/map_files/OmegaStation/job/job_changes.dm
deleted file mode 100644
index a844a95305..0000000000
--- a/_maps/map_files/OmegaStation/job/job_changes.dm
+++ /dev/null
@@ -1,129 +0,0 @@
-
-//custom access for some jobs. pasted together from ministation.
-
-/datum/job/New()
- ..()
- supervisors = "the captain and the head of personnel"
-
-/datum/outfit/job/New()
- box = /obj/item/storage/box/survival/radio
-
-/datum/job/assistant // Here so assistant appears on the top of the select job list.
-
-//Command
-
-/datum/job/captain/New()
- ..()
- supervisors = "Nanotrasen and Central Command"
-
-/datum/job/hop/New()
- ..()
- supervisors = "the captain and Central Command"
-
-/datum/job/hop/get_access()
- return get_all_accesses()
-
-//Security
-
-/datum/job/officer/New()
- ..()
- total_positions = 3
- spawn_positions = 3
- access = list(access_security, access_sec_doors, access_brig, access_armory, access_court, access_maint_tunnels, access_morgue, access_weapons, access_forensics_lockers)
- minimal_access = list(access_security, access_sec_doors, access_brig, access_armory, access_court, access_maint_tunnels, access_morgue, access_weapons, access_forensics_lockers)
-
-/datum/outfit/job/officer/New()
- box = /obj/item/storage/box/security/radio
-
-/datum/job/detective/New()
- ..()
- access = list(access_security, access_sec_doors, access_brig, access_armory, access_court, access_maint_tunnels, access_morgue, access_weapons, access_forensics_lockers)
- minimal_access = list(access_security, access_sec_doors, access_brig, access_armory, access_court, access_maint_tunnels, access_morgue, access_weapons, access_forensics_lockers)
-
-/datum/outfit/job/detective/New()
- box = /obj/item/storage/box/security/radio
-
-//Medbay
-
-/datum/job/doctor/New()
- ..()
- selection_color = "#ffffff"
- total_positions = 3
- spawn_positions = 3
- access = list(access_medical, access_morgue, access_surgery, access_chemistry, access_virology, access_genetics)
- minimal_access = list(access_medical, access_morgue, access_surgery, access_chemistry, access_virology, access_genetics)
-
-//Engineering
-
-/datum/job/engineer/New()
- ..()
- total_positions = 2
- spawn_positions = 2
- access = list(access_eva, access_engine, access_engine_equip, access_tech_storage, access_maint_tunnels, access_external_airlocks, access_construction, access_atmospherics, access_tcomsat)
- minimal_access = list(access_eva, access_engine, access_engine_equip, access_tech_storage, access_maint_tunnels, access_external_airlocks, access_construction, access_atmospherics, access_tcomsat)
-
-/datum/outfit/job/engineer/New()
- box = /obj/item/storage/box/engineer/radio
-
-/datum/job/atmos/New()
- ..()
- total_positions = 2
- spawn_positions = 2
-
-//Science
-
-/datum/job/scientist/New()
- ..()
- total_positions = 3
- spawn_positions = 3
- access = list(access_robotics, access_tox, access_tox_storage, access_research, access_xenobiology, access_mineral_storeroom, access_tech_storage)
- minimal_access = list(access_robotics, access_tox, access_tox_storage, access_research, access_xenobiology, access_mineral_storeroom, access_tech_storage)
-
-//Cargo
-
-/datum/job/cargo_tech/New()
- ..()
- total_positions = 2
- spawn_positions = 2
- access = list(access_maint_tunnels, access_mailsorting, access_cargo, access_cargo_bot, access_qm, access_mining, access_mining_station, access_mineral_storeroom)
- minimal_access = list(access_maint_tunnels, access_mailsorting, access_cargo, access_cargo_bot, access_qm, access_mining, access_mining_station, access_mineral_storeroom)
-
-/datum/job/mining/New()
- ..()
- total_positions = 2
- spawn_positions = 2
- access = list(access_maint_tunnels, access_mailsorting, access_cargo, access_cargo_bot, access_qm, access_mining, access_mining_station, access_mineral_storeroom)
- minimal_access = list(access_maint_tunnels, access_mailsorting, access_cargo, access_cargo_bot, access_qm, access_mining, access_mining_station, access_mineral_storeroom)
-
-/datum/outfit/job/mining/New()
- box = /obj/item/storage/box/engineer/radio
-
-//Service
-
-/datum/job/bartender/New()
- ..()
- access = list(access_hydroponics, access_bar, access_kitchen, access_morgue, access_weapons)
- minimal_access = list(access_hydroponics, access_bar, access_kitchen, access_morgue, access_weapons)
-
-/datum/job/cook/New()
- ..()
- access = list(access_hydroponics, access_bar, access_kitchen, access_morgue, access_weapons)
- minimal_access = list(access_hydroponics, access_bar, access_kitchen, access_morgue, access_weapons)
-
-/datum/job/hydro/New()
- ..()
- access = list(access_hydroponics, access_bar, access_kitchen, access_morgue, access_maint_tunnels)
- minimal_access = list(access_hydroponics, access_bar, access_kitchen, access_morgue, access_maint_tunnels)
- // they get maint access because of all the hydro content in maint
-
-/datum/job/janitor/New()
- ..()
- access = list(access_janitor, access_hydroponics, access_bar, access_kitchen, access_morgue, access_maint_tunnels)
- minimal_access = list(access_janitor, access_hydroponics, access_bar, access_kitchen, access_morgue, access_maint_tunnels)
-
-
-//Civilian
-
-/datum/job/clown/New()
- ..()
- supervisors = "nobody but yourself" //Honk
diff --git a/_maps/map_files/OmegaStation/job/removed_jobs.dm b/_maps/map_files/OmegaStation/job/removed_jobs.dm
deleted file mode 100644
index 447f4ebd76..0000000000
--- a/_maps/map_files/OmegaStation/job/removed_jobs.dm
+++ /dev/null
@@ -1,29 +0,0 @@
-//removed jobs. pasted together from MiniStation.
-
-
-/datum/job/hos/config_check()
- return 0
-
-/datum/job/chief_engineer/config_check()
- return 0
-
-/datum/job/qm/config_check()
- return 0
-
-/datum/job/cmo/config_check()
- return 0
-
-/datum/job/geneticist/config_check()
- return 0
-
-/datum/job/virologist/config_check()
- return 0
-
-/datum/job/rd/config_check()
- return 0
-
-/datum/job/warden/config_check()
- return 0
-
-/datum/job/lawyer/config_check()
- return 0
\ No newline at end of file
diff --git a/_maps/map_files/PubbyStation/EDITING_README.txt b/_maps/map_files/PubbyStation/EDITING_README.txt
deleted file mode 100644
index a97e77f994..0000000000
--- a/_maps/map_files/PubbyStation/EDITING_README.txt
+++ /dev/null
@@ -1,4 +0,0 @@
-Before opening PubbyStation.dme in DreamMaker, you have to tick all the
-.dm files in this folder first. Otherwise you will get path errors.
-
-Do not commit these changes to tgstation.dme.
diff --git a/_maps/map_files/PubbyStation/PubbyStation.dmm b/_maps/map_files/PubbyStation/PubbyStation.dmm
index 99f86960ea..affc670467 100644
--- a/_maps/map_files/PubbyStation/PubbyStation.dmm
+++ b/_maps/map_files/PubbyStation/PubbyStation.dmm
@@ -2,19 +2,6 @@
"aaa" = (
/turf/open/space/basic,
/area/space)
-"aaT" = (
-/obj/docking_port/stationary{
- dheight = 9;
- dir = 2;
- dwidth = 5;
- height = 24;
- id = "syndicate_n";
- name = "north of station";
- turf_type = /turf/open/space;
- width = 18
- },
-/turf/open/space,
-/area/space/nearstation)
"aby" = (
/obj/structure/lattice,
/obj/structure/grille,
@@ -109,7 +96,7 @@
/obj/structure/cable/yellow{
icon_state = "2-4"
},
-/obj/effect/landmark/tripai,
+/obj/effect/landmark/start/ai/secondary,
/obj/item/device/radio/intercom{
anyai = 1;
broadcasting = 0;
@@ -158,7 +145,7 @@
areastring = "/area/ai_monitored/turret_protected/ai";
pixel_y = 24
},
-/obj/effect/landmark/tripai,
+/obj/effect/landmark/start/ai/secondary,
/obj/item/device/radio/intercom{
anyai = 1;
broadcasting = 0;
@@ -1836,18 +1823,10 @@
/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";
+/obj/structure/sign/warning/vacuum/external{
pixel_x = 32
},
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
- icon_state = "space";
- layer = 4;
- name = "EXTERNAL AIRLOCK";
+/obj/structure/sign/warning/vacuum/external{
pixel_x = -32
},
/turf/open/floor/plating,
@@ -2002,7 +1981,6 @@
/obj/effect/spawner/structure/window/reinforced,
/obj/machinery/door/poddoor/preopen{
id = "executionfireblast";
- layer = 2.9;
name = "blast door"
},
/obj/machinery/door/firedoor,
@@ -2013,7 +1991,6 @@
/obj/effect/spawner/structure/window/reinforced,
/obj/machinery/door/poddoor/preopen{
id = "executionfireblast";
- layer = 2.9;
name = "blast door"
},
/obj/machinery/door/firedoor,
@@ -2022,7 +1999,6 @@
"agV" = (
/obj/machinery/door/poddoor/preopen{
id = "executionfireblast";
- layer = 2.9;
name = "blast door"
},
/obj/machinery/atmospherics/pipe/simple/general/hidden,
@@ -3006,7 +2982,7 @@
dir = 4;
light_color = "#e8eaff"
},
-/obj/structure/sign/nosmoking_2{
+/obj/structure/sign/warning/nosmoking{
pixel_x = 32
},
/turf/open/floor/plasteel/dark,
@@ -3041,7 +3017,7 @@
/area/security/main)
"ajn" = (
/obj/structure/table,
-/obj/structure/sign/goldenplaque{
+/obj/structure/sign/plaques/golden{
pixel_y = 32
},
/obj/machinery/light{
@@ -3368,7 +3344,7 @@
"akb" = (
/obj/machinery/disposal/bin,
/obj/structure/disposalpipe/trunk,
-/obj/structure/sign/atmosplaque{
+/obj/structure/sign/plaques/atmos{
desc = "An embossed piece of paper from the University of Nanotrasen at Portpoint.";
icon_state = "kiddieplaque";
name = "\improper 'Diploma' frame";
@@ -5521,11 +5497,7 @@
/obj/structure/disposalpipe/segment{
dir = 5
},
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
- icon_state = "space";
- layer = 4;
- name = "EXTERNAL AIRLOCK";
+/obj/structure/sign/warning/vacuum/external{
pixel_x = 32;
pixel_y = -32
},
@@ -5708,23 +5680,10 @@
},
/turf/open/floor/plating,
/area/maintenance/department/security/brig)
-"apA" = (
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
- },
-/area/maintenance/department/security/brig)
"apB" = (
/obj/structure/girder,
/turf/open/floor/plating,
/area/maintenance/department/security/brig)
-"apC" = (
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/labor)
-"apD" = (
-/obj/structure/grille,
-/obj/structure/window/shuttle,
-/turf/open/floor/plating,
-/area/shuttle/labor)
"apE" = (
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
@@ -5841,11 +5800,7 @@
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
- icon_state = "space";
- layer = 4;
- name = "EXTERNAL AIRLOCK";
+/obj/structure/sign/warning/vacuum/external{
pixel_x = 32
},
/turf/open/floor/plating,
@@ -5972,27 +5927,6 @@
/obj/item/clothing/under/color/red,
/turf/open/floor/plating,
/area/maintenance/department/security/brig)
-"aqj" = (
-/obj/machinery/computer/shuttle/labor{
- dir = 4
- },
-/obj/structure/reagent_dispensers/peppertank{
- pixel_x = -31
- },
-/turf/open/floor/mineral/plastitanium/brig,
-/area/shuttle/labor)
-"aqk" = (
-/obj/structure/chair/office/dark{
- dir = 1
- },
-/turf/open/floor/mineral/plastitanium/brig,
-/area/shuttle/labor)
-"aql" = (
-/obj/structure/table,
-/obj/item/folder/red,
-/obj/item/restraints/handcuffs,
-/turf/open/floor/mineral/plastitanium/brig,
-/area/shuttle/labor)
"aqm" = (
/obj/machinery/atmospherics/components/unary/vent_pump/on{
dir = 1
@@ -6307,7 +6241,8 @@
launch_status = 0;
name = "monastery shuttle";
port_direction = 2;
- width = 5
+ width = 5;
+ timid = 0
},
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/pod_1)
@@ -6348,34 +6283,6 @@
/obj/item/clothing/head/cone,
/turf/open/floor/plating,
/area/maintenance/department/security/brig)
-"are" = (
-/turf/open/floor/mineral/plastitanium/brig,
-/area/shuttle/labor)
-"arf" = (
-/obj/machinery/button/flasher{
- id = "gulagshuttleflasher";
- name = "Flash Control";
- pixel_y = -26;
- req_access_txt = "1"
- },
-/obj/machinery/light,
-/turf/open/floor/mineral/plastitanium/brig,
-/area/shuttle/labor)
-"arg" = (
-/obj/machinery/mineral/labor_claim_console{
- machinedir = 2;
- pixel_x = 30;
- pixel_y = 30
- },
-/turf/open/floor/mineral/plastitanium/brig,
-/area/shuttle/labor)
-"arh" = (
-/obj/machinery/door/airlock/titanium{
- name = "Labor Shuttle Airlock";
- req_access_txt = "2"
- },
-/turf/open/floor/mineral/plastitanium/brig,
-/area/shuttle/labor)
"ari" = (
/obj/machinery/door/airlock/external{
name = "Labor Camp Shuttle Airlock";
@@ -6707,7 +6614,7 @@
network = list("SS13")
},
/obj/structure/table,
-/obj/structure/sign/biohazard{
+/obj/structure/sign/warning/biohazard{
pixel_x = -32
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -6764,7 +6671,7 @@
pixel_y = 4
},
/obj/item/device/radio/off,
-/obj/structure/sign/biohazard{
+/obj/structure/sign/warning/biohazard{
pixel_x = 32
},
/obj/item/device/radio/off,
@@ -6900,20 +6807,6 @@
},
/turf/open/floor/plating,
/area/maintenance/department/security/brig)
-"ass" = (
-/obj/machinery/door/airlock/titanium{
- name = "Labor Shuttle Airlock";
- req_access_txt = "2"
- },
-/turf/open/floor/plasteel/dark,
-/area/shuttle/labor)
-"ast" = (
-/obj/machinery/mineral/stacking_machine/laborstacker{
- input_dir = 2;
- output_dir = 1
- },
-/turf/open/floor/plasteel/dark,
-/area/shuttle/labor)
"asu" = (
/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
dir = 8
@@ -7297,11 +7190,7 @@
/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";
+/obj/structure/sign/warning/vacuum/external{
pixel_x = 32
},
/obj/structure/closet/emcloset/anchored,
@@ -7337,22 +7226,6 @@
"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)
@@ -7513,7 +7386,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 5
},
-/obj/structure/sign/securearea,
+/obj/structure/sign/warning/securearea,
/turf/closed/wall,
/area/bridge)
"atM" = (
@@ -7530,7 +7403,7 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 5
},
-/obj/structure/sign/securearea,
+/obj/structure/sign/warning/securearea,
/turf/closed/wall,
/area/bridge)
"atO" = (
@@ -7721,7 +7594,7 @@
/area/crew_quarters/dorms)
"aul" = (
/obj/machinery/computer/shuttle/monastery_shuttle,
-/obj/structure/sign/pods{
+/obj/structure/sign/warning/pods{
pixel_y = 32
},
/turf/open/floor/plasteel/dark,
@@ -7789,22 +7662,6 @@
/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.";
@@ -7991,11 +7848,7 @@
/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";
+/obj/structure/sign/warning/vacuum/external{
pixel_x = -32
},
/obj/machinery/light/small{
@@ -8013,7 +7866,7 @@
/turf/closed/wall/r_wall,
/area/ai_monitored/nuke_storage)
"auX" = (
-/obj/structure/sign/securearea,
+/obj/structure/sign/warning/securearea,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 10
},
@@ -8032,7 +7885,7 @@
/turf/open/floor/plasteel/vault,
/area/ai_monitored/nuke_storage)
"auZ" = (
-/obj/structure/sign/securearea,
+/obj/structure/sign/warning/securearea,
/turf/closed/wall/r_wall,
/area/ai_monitored/nuke_storage)
"ava" = (
@@ -8059,7 +7912,7 @@
/turf/open/floor/plasteel,
/area/gateway)
"avc" = (
-/obj/structure/sign/securearea,
+/obj/structure/sign/warning/securearea,
/turf/closed/wall/r_wall,
/area/gateway)
"avd" = (
@@ -8085,7 +7938,7 @@
/obj/machinery/light/small{
dir = 1
},
-/obj/structure/sign/securearea{
+/obj/structure/sign/warning/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";
@@ -8181,34 +8034,18 @@
},
/turf/open/floor/plating,
/area/maintenance/department/crew_quarters/dorms)
-"avo" = (
-/obj/structure/closet/crate,
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/labor)
"avp" = (
-/obj/machinery/door/airlock/titanium{
- id_tag = "prisonshuttle";
- name = "Labor Shuttle Airlock"
- },
-/obj/docking_port/mobile{
- dir = 8;
- dwidth = 2;
- height = 5;
- id = "laborcamp";
- name = "labor camp shuttle";
- port_direction = 4;
- width = 9
- },
/obj/docking_port/stationary{
dir = 8;
dwidth = 2;
height = 5;
id = "laborcamp_home";
name = "fore bay 1";
+ roundstart_template = /datum/map_template/shuttle/labour/box;
width = 9
},
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/labor)
+/turf/open/space/basic,
+/area/space)
"avq" = (
/obj/machinery/door/airlock/external{
name = "Labor Camp Shuttle Airlock"
@@ -8760,14 +8597,6 @@
},
/turf/open/floor/plating,
/area/maintenance/department/security/brig)
-"awG" = (
-/obj/structure/shuttle/engine/heater,
-/obj/structure/window/reinforced{
- dir = 1;
- layer = 2.9
- },
-/turf/open/floor/plating,
-/area/shuttle/labor)
"awH" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/security/glass{
@@ -9157,10 +8986,6 @@
"axC" = (
/turf/closed/wall,
/area/maintenance/solars/port)
-"axD" = (
-/obj/structure/shuttle/engine/propulsion,
-/turf/open/floor/plating,
-/area/shuttle/labor)
"axE" = (
/obj/machinery/door/poddoor/preopen{
id = "prison release";
@@ -9194,7 +9019,7 @@
/turf/open/floor/plasteel,
/area/hallway/primary/fore)
"axJ" = (
-/obj/structure/sign/security{
+/obj/structure/sign/departments/security{
pixel_y = 32
},
/turf/open/floor/plasteel,
@@ -9273,7 +9098,6 @@
/area/crew_quarters/heads/captain)
"axU" = (
/obj/machinery/computer/card,
-/obj/item/card/id/captains_spare,
/obj/item/device/radio/intercom{
dir = 0;
name = "Station Intercom (General)";
@@ -9405,7 +9229,7 @@
/obj/machinery/light/small{
dir = 1
},
-/obj/structure/sign/securearea{
+/obj/structure/sign/warning/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";
@@ -9515,11 +9339,7 @@
/area/solar/port)
"ayz" = (
/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
- icon_state = "space";
- layer = 4;
- name = "EXTERNAL AIRLOCK";
+/obj/structure/sign/warning/vacuum/external{
pixel_x = -32
},
/turf/open/floor/plating,
@@ -9569,11 +9389,7 @@
},
/area/hallway/primary/fore)
"ayF" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
- icon_state = "space";
- layer = 4;
- name = "EXTERNAL AIRLOCK";
+/obj/structure/sign/warning/vacuum/external{
pixel_y = 32
},
/turf/open/floor/plasteel,
@@ -10506,11 +10322,6 @@
/obj/structure/cable,
/turf/open/floor/plating,
/area/maintenance/solars/port)
-"aAZ" = (
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
- },
-/area/maintenance/department/security/brig)
"aBa" = (
/turf/open/floor/plating{
icon_state = "panelscorched"
@@ -10831,7 +10642,7 @@
/obj/machinery/light/small{
dir = 1
},
-/obj/structure/sign/securearea{
+/obj/structure/sign/warning/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";
@@ -11483,7 +11294,7 @@
/area/crew_quarters/dorms)
"aDi" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
-/obj/structure/sign/restroom{
+/obj/structure/sign/departments/restroom{
pixel_y = -32
},
/turf/open/floor/plasteel/white/corner,
@@ -11744,7 +11555,7 @@
/obj/machinery/porta_turret/ai{
dir = 8
},
-/obj/structure/sign/kiddieplaque{
+/obj/structure/sign/plaques/kiddie{
pixel_x = 32
},
/turf/open/floor/plasteel/darkblue/side{
@@ -12379,11 +12190,7 @@
/turf/open/floor/plating,
/area/maintenance/department/cargo)
"aFg" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
- icon_state = "space";
- layer = 4;
- name = "EXTERNAL AIRLOCK";
+/obj/structure/sign/warning/vacuum/external{
pixel_y = 32
},
/turf/open/floor/plating,
@@ -12511,7 +12318,6 @@
"aFA" = (
/obj/machinery/door/poddoor/shutters/preopen{
id = "hop";
- layer = 2.9;
name = "Privacy Shutters"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -12539,7 +12345,6 @@
},
/obj/machinery/door/poddoor/preopen{
id = "hop";
- layer = 3.1;
name = "privacy shutters"
},
/turf/open/floor/plasteel,
@@ -12684,14 +12489,6 @@
},
/turf/open/floor/plating,
/area/maintenance/department/cargo)
-"aFS" = (
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/escape)
-"aFT" = (
-/obj/structure/grille,
-/obj/structure/window/shuttle,
-/turf/open/floor/plating,
-/area/shuttle/escape)
"aFU" = (
/obj/structure/table,
/obj/item/storage/box/bodybags,
@@ -13027,26 +12824,6 @@
/obj/structure/closet/emcloset,
/turf/open/floor/plating,
/area/maintenance/department/cargo)
-"aGQ" = (
-/obj/structure/table,
-/obj/item/storage/firstaid/regular{
- pixel_x = 2;
- pixel_y = 3
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/escape)
-"aGR" = (
-/obj/machinery/computer/emergency_shuttle,
-/turf/open/floor/mineral/titanium,
-/area/shuttle/escape)
-"aGS" = (
-/obj/structure/table,
-/obj/machinery/recharger,
-/obj/structure/extinguisher_cabinet{
- pixel_x = 27
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/escape)
"aGT" = (
/obj/machinery/door/airlock/maintenance{
name = "Detective Maintenance";
@@ -13283,27 +13060,6 @@
/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)
-"aHx" = (
-/obj/structure/chair/comfy/black{
- dir = 1
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/escape)
-"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)
@@ -13484,7 +13240,7 @@
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 1
},
-/obj/structure/sign/securearea{
+/obj/structure/sign/warning/securearea{
pixel_y = 32
},
/turf/open/floor/plasteel/blue/corner{
@@ -13582,7 +13338,7 @@
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 1
},
-/obj/structure/sign/securearea{
+/obj/structure/sign/warning/securearea{
pixel_y = 32
},
/turf/open/floor/plasteel/blue/corner{
@@ -13660,7 +13416,7 @@
/obj/machinery/airalarm{
pixel_y = 22
},
-/obj/structure/sign/restroom{
+/obj/structure/sign/departments/restroom{
pixel_x = 32
},
/turf/open/floor/plasteel/white/corner,
@@ -13724,49 +13480,6 @@
},
/turf/open/space,
/area/solar/port)
-"aIs" = (
-/obj/structure/closet,
-/turf/open/floor/mineral/titanium/yellow,
-/area/shuttle/escape)
-"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)
-"aIv" = (
-/obj/machinery/computer/atmos_alert{
- dir = 4
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/escape)
-"aIw" = (
-/obj/structure/chair{
- dir = 8
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/escape)
-"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)
-"aIz" = (
-/obj/machinery/computer/security{
- dir = 8
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/escape)
-"aIA" = (
-/obj/structure/chair,
-/turf/open/floor/mineral/plastitanium/brig,
-/area/shuttle/escape)
"aIB" = (
/obj/item/twohanded/required/kirbyplants{
icon_state = "plant-17"
@@ -14236,56 +13949,8 @@
/obj/item/toy/figure/ian,
/turf/open/floor/plating,
/area/maintenance/department/cargo)
-"aJx" = (
-/turf/open/floor/mineral/titanium/yellow,
-/area/shuttle/escape)
-"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{
- dir = 4
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/escape)
-"aJA" = (
-/obj/machinery/computer/communications{
- dir = 8
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/escape)
-"aJB" = (
-/obj/machinery/flasher{
- id = "shuttle_flasher";
- pixel_x = -24;
- pixel_y = 6
- },
-/obj/machinery/button/flasher{
- id = "shuttle_flasher";
- pixel_x = -24;
- pixel_y = -6
- },
-/obj/machinery/light/small{
- brightness = 3;
- dir = 8
- },
-/turf/open/floor/mineral/plastitanium/brig,
-/area/shuttle/escape)
-"aJC" = (
-/turf/open/floor/mineral/plastitanium/brig,
-/area/shuttle/escape)
"aJD" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
- icon_state = "space";
- layer = 4;
- name = "EXTERNAL AIRLOCK";
+/obj/structure/sign/warning/vacuum/external{
pixel_x = -32
},
/turf/open/floor/plasteel/red/side{
@@ -14370,7 +14035,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/obj/structure/sign/restroom{
+/obj/structure/sign/departments/restroom{
pixel_y = -32
},
/turf/open/floor/plasteel,
@@ -14616,40 +14281,6 @@
/obj/item/toy/figure/lawyer,
/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/public/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;
@@ -14892,26 +14523,6 @@
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
/area/maintenance/disposal)
-"aLp" = (
-/obj/machinery/door/airlock/public/glass{
- name = "Emergency Shuttle Cargo Hold";
- req_access_txt = "0"
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/escape)
-"aLq" = (
-/obj/item/twohanded/required/kirbyplants{
- icon_state = "plant-22"
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/escape)
-"aLr" = (
-/obj/machinery/door/airlock/public/glass{
- name = "Emergency Shuttle Brig";
- req_access_txt = "2"
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/escape)
"aLs" = (
/obj/machinery/door/airlock/security/glass{
name = "Holding Area";
@@ -15480,15 +15091,6 @@
},
/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/twohanded/required/kirbyplants{
icon_state = "plant-10"
@@ -16026,43 +15628,6 @@
},
/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
@@ -16164,7 +15729,7 @@
},
/area/hallway/secondary/exit/departure_lounge)
"aOs" = (
-/obj/structure/sign/evac,
+/obj/structure/sign/departments/evac,
/turf/closed/wall,
/area/hallway/secondary/exit/departure_lounge)
"aOt" = (
@@ -16521,10 +16086,6 @@
/obj/effect/spawner/structure/window/reinforced,
/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,
@@ -16558,23 +16119,6 @@
},
/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{
@@ -16916,16 +16460,6 @@
/obj/structure/closet/crate/medical,
/turf/open/floor/plasteel/floorgrime,
/area/quartermaster/warehouse)
-"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/sorting/mail/flip{
dir = 2;
@@ -16988,18 +16522,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";
+/obj/structure/sign/warning/vacuum/external{
pixel_x = -32
},
/turf/open/floor/plasteel/escape{
@@ -17367,7 +16891,7 @@
/area/hallway/primary/central)
"aRe" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/sign/cargo{
+/obj/structure/sign/departments/cargo{
pixel_x = 32
},
/turf/open/floor/plasteel/brown/corner{
@@ -17453,9 +16977,6 @@
/obj/structure/closet/crate/internals,
/turf/open/floor/plasteel/floorgrime,
/area/quartermaster/warehouse)
-"aRr" = (
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/supply)
"aRs" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -17529,10 +17050,6 @@
},
/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,
@@ -17874,12 +17391,6 @@
/obj/structure/disposalpipe/segment,
/turf/open/floor/plating,
/area/maintenance/disposal)
-"aSp" = (
-/obj/machinery/door/airlock/public/glass{
- name = "Emergency Shuttle Infirmary"
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/escape)
"aSq" = (
/obj/machinery/camera{
c_tag = "Departures - Port";
@@ -18306,17 +17817,6 @@
},
/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{
icon_state = "1-4"
@@ -18441,20 +17941,7 @@
},
/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;
@@ -18464,17 +17951,8 @@
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_direction = 4;
- width = 18
- },
-/turf/open/floor/plating,
-/area/shuttle/escape)
+/turf/open/space/basic,
+/area/space)
"aTI" = (
/obj/machinery/light,
/turf/open/floor/plating,
@@ -18821,13 +18299,6 @@
/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;
@@ -18836,8 +18307,8 @@
name = "Cargo Bay";
width = 12
},
-/turf/open/floor/plating,
-/area/shuttle/supply)
+/turf/open/space/basic,
+/area/space)
"aUB" = (
/obj/structure/rack,
/obj/effect/spawner/lootdrop/maintenance,
@@ -18865,28 +18336,6 @@
},
/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/storage/firstaid/fire,
-/obj/item/storage/firstaid/regular{
- pixel_x = 2;
- pixel_y = 3
- },
-/obj/item/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,
@@ -19357,33 +18806,6 @@
},
/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{
icon_state = "1-2"
@@ -19420,16 +18842,6 @@
/obj/item/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/defibrillator/loaded,
-/turf/open/floor/mineral/titanium,
-/area/shuttle/escape)
"aVL" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 5
@@ -19569,7 +18981,7 @@
/obj/machinery/light/small{
dir = 1
},
-/obj/structure/sign/securearea{
+/obj/structure/sign/warning/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";
@@ -19801,17 +19213,6 @@
},
/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
@@ -19861,7 +19262,7 @@
/area/hallway/secondary/exit/departure_lounge)
"aWM" = (
/obj/machinery/washing_machine,
-/obj/structure/sign/securearea{
+/obj/structure/sign/warning/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";
@@ -20081,7 +19482,7 @@
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 4
},
-/obj/structure/sign/cargo{
+/obj/structure/sign/departments/cargo{
pixel_x = 32
},
/turf/open/floor/plasteel/brown/corner{
@@ -20171,17 +19572,6 @@
},
/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,
@@ -20237,7 +19627,6 @@
},
/obj/machinery/door/poddoor/preopen{
id = "papersplease";
- layer = 3.1;
name = "privacy shutters"
},
/obj/item/folder/red,
@@ -20346,7 +19735,7 @@
/area/hydroponics)
"aXY" = (
/obj/machinery/hydroponics/constructable,
-/obj/structure/sign/botany{
+/obj/structure/sign/departments/botany{
pixel_y = 32
},
/obj/machinery/light{
@@ -20972,10 +20361,6 @@
/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{
icon_state = "2-4"
@@ -21914,11 +21299,7 @@
/area/maintenance/solars/starboard)
"bbO" = (
/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
- icon_state = "space";
- layer = 4;
- name = "EXTERNAL AIRLOCK";
+/obj/structure/sign/warning/vacuum/external{
pixel_x = 32
},
/turf/open/floor/plating,
@@ -21968,7 +21349,6 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/door/poddoor/preopen{
id = "papersplease";
- layer = 3.1;
name = "privacy shutters"
},
/obj/item/crowbar,
@@ -22373,11 +21753,7 @@
/turf/open/floor/plasteel/airless/solarpanel,
/area/solar/starboard)
"bcW" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
- icon_state = "space";
- layer = 4;
- name = "EXTERNAL AIRLOCK";
+/obj/structure/sign/warning/vacuum/external{
pixel_y = 32
},
/obj/effect/spawner/structure/window/reinforced,
@@ -22657,24 +22033,6 @@
},
/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{
icon_state = "2-4"
@@ -22763,7 +22121,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/sign/custodian{
+/obj/structure/sign/departments/custodian{
pixel_x = 32
},
/turf/open/floor/plasteel/neutral/corner,
@@ -23089,12 +22447,6 @@
},
/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{
icon_state = "1-2"
@@ -23128,19 +22480,6 @@
},
/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/effect/spawner/structure/window/shuttle,
-/turf/open/floor/plating,
-/area/shuttle/arrival)
"beY" = (
/obj/machinery/camera{
c_tag = "Arrivals Central";
@@ -23468,36 +22807,17 @@
/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_direction = 4;
- width = 7
- },
/obj/docking_port/stationary{
- dir = 8;
+ dir = 4;
dwidth = 3;
height = 5;
id = "mining_home";
name = "mining shuttle bay";
+ roundstart_template = /datum/map_template/shuttle/mining/delta;
width = 7
},
-/turf/open/floor/plating,
-/area/shuttle/labor)
+/turf/open/space/basic,
+/area/space)
"bfM" = (
/obj/structure/chair{
dir = 4
@@ -23524,60 +22844,6 @@
/obj/item/electronics/apc,
/turf/open/floor/plating,
/area/maintenance/department/cargo)
-"bfQ" = (
-/obj/structure/table,
-/obj/item/storage/firstaid/regular{
- pixel_y = 4
- },
-/obj/item/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,
@@ -23918,51 +23184,18 @@
/obj/item/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";
+ roundstart_template = /datum/map_template/shuttle/arrival/pubby;
width = 6
},
-/turf/open/floor/plating/airless,
-/area/shuttle/arrival)
+/turf/open/space/basic,
+/area/space)
"bgU" = (
/obj/structure/table/wood,
/obj/item/device/flashlight/lamp/green{
@@ -24261,24 +23494,6 @@
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{
icon_state = "1-2"
@@ -24303,16 +23518,6 @@
},
/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
@@ -24458,42 +23663,6 @@
/obj/structure/cable,
/turf/open/floor/plasteel/dark,
/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/storage/firstaid/o2,
-/obj/item/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
@@ -24548,7 +23717,7 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
-/obj/structure/sign/bluecross_2{
+/obj/structure/sign/departments/medbay/alt{
pixel_x = 32;
pixel_y = -32
},
@@ -24694,18 +23863,6 @@
},
/turf/open/floor/plating,
/area/maintenance/department/cargo)
-"biA" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/department/cargo)
"biB" = (
/obj/structure/cable{
icon_state = "4-8"
@@ -24930,7 +24087,7 @@
/turf/open/floor/plating,
/area/medical/medbay/central)
"bje" = (
-/obj/structure/sign/bluecross_2,
+/obj/structure/sign/departments/medbay/alt,
/turf/closed/wall,
/area/medical/medbay/central)
"bjf" = (
@@ -24998,7 +24155,7 @@
/turf/open/floor/plasteel/green/corner,
/area/science/research/lobby)
"bjs" = (
-/obj/structure/sign/science,
+/obj/structure/sign/departments/science,
/turf/closed/wall,
/area/science/research/lobby)
"bjt" = (
@@ -25095,11 +24252,6 @@
/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{
@@ -25929,13 +25081,6 @@
},
/turf/open/floor/plasteel/dark/telecomms/server/walkway,
/area/science/server)
-"blO" = (
-/obj/machinery/rnd/server,
-/obj/structure/sign/poster/random{
- pixel_y = 32
- },
-/turf/open/floor/circuit/telecomms/server,
-/area/science/server)
"blP" = (
/obj/effect/landmark/event_spawn,
/obj/item/device/radio/beacon,
@@ -25985,7 +25130,7 @@
/turf/open/floor/engine,
/area/science/explab)
"blV" = (
-/obj/structure/sign/kiddieplaque/perfect_drone{
+/obj/structure/sign/plaques/kiddie/perfect_drone{
pixel_y = 32
},
/turf/open/floor/engine,
@@ -26857,9 +26002,6 @@
dir = 1
},
/area/science/xenobiology)
-"boi" = (
-/turf/open/floor/engine,
-/area/science/xenobiology)
"boj" = (
/obj/item/weldingtool,
/obj/effect/spawner/lootdrop/maintenance,
@@ -27321,11 +26463,7 @@
/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"
- },
+/obj/structure/sign/warning/electricshock,
/turf/closed/wall/r_wall,
/area/science/xenobiology)
"bpr" = (
@@ -28030,17 +27168,6 @@
/obj/item/cigbutt,
/turf/open/floor/plating,
/area/maintenance/department/cargo)
-"bqP" = (
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/transport)
-"bqQ" = (
-/obj/effect/spawner/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;
@@ -28544,7 +27671,7 @@
/turf/open/floor/plasteel/white,
/area/science/xenobiology)
"brR" = (
-/obj/structure/sign/biohazard,
+/obj/structure/sign/warning/biohazard,
/turf/closed/wall,
/area/science/xenobiology)
"brS" = (
@@ -28625,7 +27752,7 @@
/turf/open/floor/plasteel,
/area/science/xenobiology)
"brZ" = (
-/obj/structure/sign/xenobio,
+/obj/structure/sign/departments/xenobio,
/obj/machinery/atmospherics/pipe/simple/general/hidden{
dir = 9
},
@@ -28718,39 +27845,8 @@
/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/sign/securearea{
- desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
- icon_state = "space";
- layer = 4;
- name = "EXTERNAL AIRLOCK"
- },
+/obj/structure/sign/warning/vacuum/external,
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
/area/hallway/secondary/entry)
@@ -29331,7 +28427,7 @@
dir = 8
},
/obj/effect/landmark/xeno_spawn,
-/obj/structure/sign/xenobio{
+/obj/structure/sign/departments/xenobio{
pixel_x = -32
},
/turf/open/floor/plasteel/floorgrime,
@@ -29348,7 +28444,7 @@
/area/science/xenobiology)
"btC" = (
/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/sign/biohazard,
+/obj/structure/sign/warning/biohazard,
/turf/open/floor/plating,
/area/science/xenobiology)
"btD" = (
@@ -29365,42 +28461,7 @@
/obj/item/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{
- dir = 8
- },
-/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_direction = 1;
- preferred_direction = 4;
- roundstart_move = "ferry_away";
- width = 5
- },
/obj/docking_port/stationary{
dir = 8;
dwidth = 2;
@@ -29410,8 +28471,8 @@
turf_type = /turf/open/space;
width = 5
},
-/turf/open/floor/pod/light,
-/area/shuttle/transport)
+/turf/open/space/basic,
+/area/space)
"btL" = (
/obj/machinery/door/airlock/external{
cyclelinkeddir = 4;
@@ -30006,26 +29067,6 @@
},
/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)
@@ -30302,7 +29343,7 @@
name = "research shutters"
},
/obj/machinery/door/firedoor/heavy,
-/obj/structure/sign/securearea{
+/obj/structure/sign/warning/securearea{
pixel_x = 32
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -30634,10 +29675,6 @@
},
/turf/open/floor/plating/airless,
/area/space/nearstation)
-"bwp" = (
-/obj/machinery/door/airlock/external,
-/turf/open/floor/pod/light,
-/area/shuttle/transport)
"bwq" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/public/glass{
@@ -31900,7 +30937,7 @@
},
/obj/machinery/door/firedoor/heavy,
/obj/effect/turf_decal/stripes/line,
-/obj/structure/sign/securearea{
+/obj/structure/sign/warning/securearea{
pixel_x = 32
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -32288,7 +31325,7 @@
/obj/structure/chair{
dir = 4
},
-/obj/structure/sign/holy{
+/obj/structure/sign/departments/holy{
pixel_x = -32
},
/turf/open/floor/plasteel/dark,
@@ -32502,7 +31539,7 @@
/turf/open/floor/plasteel/whiteblue/corner,
/area/medical/medbay/central)
"bzY" = (
-/obj/structure/sign/bluecross_2,
+/obj/structure/sign/departments/medbay/alt,
/turf/closed/wall,
/area/crew_quarters/heads/cmo)
"bzZ" = (
@@ -32922,7 +31959,7 @@
/turf/open/floor/plasteel/white,
/area/medical/virology)
"bAY" = (
-/obj/structure/sign/biohazard,
+/obj/structure/sign/warning/biohazard,
/turf/closed/wall,
/area/medical/virology)
"bAZ" = (
@@ -33750,7 +32787,7 @@
/turf/open/floor/engine,
/area/science/storage)
"bCS" = (
-/obj/structure/sign/fire,
+/obj/structure/sign/warning/fire,
/turf/closed/wall,
/area/science/storage)
"bCT" = (
@@ -35139,7 +34176,7 @@
/obj/machinery/door/airlock/medical/glass{
id_tag = null;
name = "Medbay Storage";
- req_access_txt = "45"
+ req_access_txt = "5"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -35198,7 +34235,7 @@
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
-/obj/structure/sign/examroom{
+/obj/structure/sign/departments/examroom{
pixel_x = -32
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -35214,7 +34251,7 @@
/turf/open/floor/plasteel/yellow/corner,
/area/hallway/primary/aft)
"bGa" = (
-/obj/structure/sign/science,
+/obj/structure/sign/departments/science,
/turf/closed/wall,
/area/hallway/primary/aft)
"bGb" = (
@@ -35585,13 +34622,13 @@
/turf/open/floor/plasteel/white,
/area/medical/medbay/central)
"bGY" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
/obj/machinery/door/airlock/medical/glass{
id_tag = null;
name = "Medbay Storage";
- req_access_txt = "45"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
+ req_access_txt = "5"
},
/turf/open/floor/plasteel/white,
/area/medical/medbay/central)
@@ -36349,7 +35386,7 @@
/obj/structure/cable{
icon_state = "4-8"
},
-/obj/structure/sign/nosmoking_2{
+/obj/structure/sign/warning/nosmoking{
pixel_y = -32
},
/obj/effect/turf_decal/stripes/corner{
@@ -36443,12 +35480,7 @@
/area/chapel/dock)
"bIV" = (
/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
- icon_state = "space";
- layer = 4;
- name = "EXTERNAL AIRLOCK"
- },
+/obj/structure/sign/warning/vacuum/external,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating,
/area/chapel/dock)
@@ -37036,7 +36068,7 @@
/area/medical/virology)
"bKq" = (
/obj/effect/spawner/structure/window,
-/obj/structure/sign/deathsposal,
+/obj/structure/sign/warning/deathsposal,
/turf/open/floor/plating,
/area/medical/virology)
"bKr" = (
@@ -37199,7 +36231,7 @@
/obj/effect/turf_decal/delivery,
/obj/machinery/door/poddoor/preopen{
id = "atmos";
- name = "atmos blast door"
+ name = "Atmospherics Blast Door"
},
/obj/machinery/door/firedoor/heavy,
/turf/open/floor/plasteel/dark,
@@ -37208,7 +36240,7 @@
/obj/effect/turf_decal/delivery,
/obj/machinery/door/poddoor/preopen{
id = "atmos";
- name = "atmos blast door"
+ name = "Atmospherics Blast Door"
},
/obj/machinery/door/firedoor/heavy,
/obj/structure/disposalpipe/segment,
@@ -37503,9 +36535,6 @@
"bLv" = (
/turf/open/floor/engine,
/area/maintenance/department/engine)
-"bLw" = (
-/turf/open/floor/engine,
-/area/maintenance/department/engine)
"bLx" = (
/obj/structure/window/reinforced{
dir = 4
@@ -37840,11 +36869,7 @@
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";
+/obj/structure/sign/warning/vacuum/external{
pixel_x = -32
},
/turf/open/floor/engine/vacuum,
@@ -37869,11 +36894,7 @@
/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";
+/obj/structure/sign/warning/vacuum/external{
pixel_x = -32
},
/turf/open/floor/plating,
@@ -38659,7 +37680,7 @@
/turf/open/floor/plating,
/area/engine/atmos)
"bOs" = (
-/obj/structure/sign/fire,
+/obj/structure/sign/warning/fire,
/turf/closed/wall/r_wall,
/area/science/mixing)
"bOt" = (
@@ -38988,10 +38009,6 @@
},
/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";
@@ -39513,8 +38530,7 @@
},
/obj/machinery/door/poddoor/preopen{
id = "atmos";
- layer = 2.9;
- name = "atmos blast door"
+ name = "Atmospherics Blast Door"
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
@@ -39748,10 +38764,7 @@
/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";
+/obj/structure/sign/warning/radiation/rad_area{
pixel_x = -32
},
/obj/effect/turf_decal/stripes/corner{
@@ -39849,8 +38862,7 @@
},
/obj/machinery/door/poddoor/preopen{
id = "atmos";
- layer = 2.9;
- name = "atmos blast door"
+ name = "Atmospherics Blast Door"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -40351,10 +39363,7 @@
/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";
+/obj/structure/sign/warning/radiation/rad_area{
pixel_x = -32
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -40439,7 +39448,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/obj/structure/sign/engineering{
+/obj/structure/sign/departments/engineering{
pixel_y = -32
},
/turf/open/floor/plasteel/yellow/corner,
@@ -40458,7 +39467,7 @@
icon_state = "plant-02"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/sign/engineering{
+/obj/structure/sign/departments/engineering{
pixel_y = -32
},
/turf/open/floor/plasteel/yellow/corner,
@@ -40849,7 +39858,7 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
dir = 4
},
-/obj/structure/sign/atmosplaque{
+/obj/structure/sign/plaques/atmos{
pixel_y = 32
},
/obj/machinery/light{
@@ -40974,11 +39983,6 @@
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
/area/maintenance/department/engine)
-"bTY" = (
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
- },
-/area/maintenance/department/engine)
"bUa" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible{
dir = 1;
@@ -41007,7 +40011,7 @@
/turf/open/floor/plating,
/area/maintenance/department/engine)
"bUf" = (
-/obj/structure/sign/securearea,
+/obj/structure/sign/warning/securearea,
/turf/closed/wall/r_wall,
/area/storage/tech)
"bUg" = (
@@ -41019,7 +40023,7 @@
/turf/open/floor/plasteel/dark,
/area/storage/tech)
"bUh" = (
-/obj/structure/sign/securearea,
+/obj/structure/sign/warning/securearea,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/closed/wall/r_wall,
/area/storage/tech)
@@ -41098,7 +40102,7 @@
"bUo" = (
/obj/machinery/door/poddoor/preopen{
id = "atmos";
- name = "atmos blast door"
+ name = "Atmospherics Blast Door"
},
/obj/machinery/door/firedoor/heavy,
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
@@ -41196,19 +40200,6 @@
},
/turf/open/space,
/area/space/nearstation)
-"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/nearstation)
"bUC" = (
/obj/structure/flora/ausbushes/fernybush,
/turf/open/floor/plating/asteroid,
@@ -41461,7 +40452,7 @@
"bVc" = (
/obj/machinery/door/poddoor/preopen{
id = "atmos";
- name = "atmos blast door"
+ name = "Atmospherics Blast Door"
},
/obj/machinery/door/firedoor/heavy,
/obj/structure/disposalpipe/segment{
@@ -42602,7 +41593,7 @@
/obj/structure/disposalpipe/trunk{
dir = 4
},
-/obj/structure/sign/deathsposal{
+/obj/structure/sign/warning/deathsposal{
pixel_x = -32
},
/turf/open/floor/plating{
@@ -42695,11 +41686,7 @@
/area/engine/engineering)
"bYf" = (
/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'HIGH VOLTAGE'";
- icon_state = "shock";
- name = "HIGH VOLTAGE"
- },
+/obj/structure/sign/warning/electricshock,
/turf/open/floor/plating,
/area/engine/engine_smes)
"bYg" = (
@@ -43530,7 +42517,7 @@
/turf/open/floor/engine,
/area/maintenance/disposal/incinerator)
"bZV" = (
-/obj/structure/sign/fire,
+/obj/structure/sign/warning/fire,
/turf/closed/wall/r_wall,
/area/maintenance/disposal/incinerator)
"bZY" = (
@@ -43667,13 +42654,6 @@
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel,
/area/engine/engineering)
-"cas" = (
-/obj/structure/cable/yellow{
- 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
@@ -43719,10 +42699,6 @@
/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;
@@ -44041,11 +43017,7 @@
/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"
- },
+/obj/structure/sign/warning/radiation/rad_area,
/turf/closed/wall/r_wall,
/area/engine/engineering)
"cbk" = (
@@ -44540,21 +43512,6 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel,
/area/engine/engineering)
-"ccT" = (
-/obj/structure/cable/yellow{
- icon_state = "2-4"
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"ccU" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/structure/cable/yellow{
- icon_state = "2-4"
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
"ccV" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
@@ -44598,36 +43555,12 @@
/obj/effect/landmark/event_spawn,
/turf/open/floor/plating,
/area/engine/engineering)
-"cdb" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/engine/engineering)
"cdc" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
},
/turf/open/floor/plasteel,
/area/engine/engineering)
-"cdd" = (
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"cde" = (
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
"cdf" = (
/obj/structure/cable{
icon_state = "1-2"
@@ -44668,11 +43601,7 @@
/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";
+/obj/structure/sign/warning/vacuum/external{
pixel_y = 32
},
/turf/open/floor/plating,
@@ -44922,13 +43851,6 @@
/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/machinery/computer/rdconsole/production{
dir = 8
@@ -45239,11 +44161,7 @@
/obj/structure/cable{
icon_state = "1-2"
},
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
- icon_state = "space";
- layer = 4;
- name = "EXTERNAL AIRLOCK";
+/obj/structure/sign/warning/vacuum/external{
pixel_x = 32
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -45255,14 +44173,6 @@
},
/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/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
@@ -45292,11 +44202,7 @@
/obj/structure/cable{
icon_state = "1-2"
},
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
- icon_state = "space";
- layer = 4;
- name = "EXTERNAL AIRLOCK";
+/obj/structure/sign/warning/vacuum/external{
pixel_x = -32
},
/turf/open/floor/plating,
@@ -45758,7 +44664,7 @@
/area/chapel/main/monastery)
"cgM" = (
/obj/structure/dresser,
-/obj/structure/sign/securearea{
+/obj/structure/sign/warning/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";
@@ -45795,11 +44701,7 @@
/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";
+/obj/structure/sign/warning/vacuum/external{
pixel_x = -32
},
/turf/open/floor/plating,
@@ -45843,12 +44745,6 @@
},
/turf/open/floor/plating/airless,
/area/space/nearstation)
-"cgW" = (
-/turf/open/space,
-/area/space)
-"cgX" = (
-/turf/open/space/basic,
-/area/space)
"cgY" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
@@ -46001,10 +44897,6 @@
},
/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"
@@ -46237,21 +45129,6 @@
},
/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/public/glass{
- name = "Shuttle Airlock"
- },
-/turf/open/floor/plasteel/dark,
-/area/shuttle/abandoned)
"cio" = (
/obj/structure/closet/cabinet,
/obj/item/clothing/suit/holidaypriest,
@@ -46318,12 +45195,6 @@
/obj/structure/grille,
/turf/open/floor/plating/airless,
/area/engine/engineering)
-"ciw" = (
-/turf/open/floor/plasteel/dark,
-/area/shuttle/abandoned)
-"cix" = (
-/turf/open/floor/plasteel,
-/area/shuttle/abandoned)
"ciy" = (
/obj/item/reagent_containers/glass/bucket,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -46474,47 +45345,6 @@
/obj/item/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/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/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
@@ -46595,7 +45425,7 @@
/turf/closed/wall,
/area/asteroid/nearstation/bomb_site)
"cjw" = (
-/obj/structure/sign/securearea{
+/obj/structure/sign/warning/securearea{
desc = "A warning sign which reads 'BOMB RANGE";
name = "BOMB RANGE"
},
@@ -46608,39 +45438,7 @@
"cjx" = (
/turf/open/floor/plating/asteroid/airless,
/area/asteroid/nearstation/bomb_site)
-"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)
"cjB" = (
-/obj/machinery/door/airlock/public/glass{
- name = "Shuttle Airlock"
- },
-/obj/docking_port/mobile{
- dheight = 0;
- dir = 8;
- dwidth = 4;
- height = 9;
- id = "whiteship";
- launch_status = 0;
- name = "White Ship";
- port_direction = 4;
- preferred_direction = 1;
- roundstart_move = "whiteship_away";
- width = 9
- },
/obj/docking_port/stationary{
dir = 8;
dwidth = 11;
@@ -46650,14 +45448,10 @@
turf_type = /turf/open/space;
width = 35
},
-/turf/open/floor/plasteel/dark,
-/area/shuttle/abandoned)
+/turf/open/space/basic,
+/area/space)
"cjC" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
- icon_state = "space";
- layer = 4;
- name = "EXTERNAL AIRLOCK";
+/obj/structure/sign/warning/vacuum/external{
pixel_y = 32
},
/obj/machinery/light/small{
@@ -46734,32 +45528,6 @@
},
/turf/open/floor/plating/asteroid/airless,
/area/asteroid/nearstation/bomb_site)
-"cjW" = (
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/window/reinforced,
-/obj/structure/table/glass,
-/obj/item/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
- },
-/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/storage/crayons,
@@ -46987,7 +45755,7 @@
/turf/open/floor/plasteel/dark,
/area/library)
"ckJ" = (
-/obj/structure/sign/securearea,
+/obj/structure/sign/warning/securearea,
/turf/closed/wall/r_wall,
/area/engine/engineering)
"ckK" = (
@@ -47068,10 +45836,6 @@
/obj/structure/bookcase/random/fiction,
/turf/open/floor/plasteel/dark,
/area/library)
-"ckY" = (
-/obj/structure/shuttle/engine/propulsion/burst,
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/abandoned)
"clb" = (
/obj/machinery/door/poddoor{
id = "chapelgun";
@@ -47143,19 +45907,6 @@
/obj/effect/spawner/lootdrop/maintenance,
/turf/closed/mineral,
/area/asteroid/nearstation/bomb_site)
-"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/nearstation)
"clu" = (
/obj/machinery/camera{
c_tag = "Telecomms External Fore";
@@ -47657,7 +46408,7 @@
/turf/open/floor/circuit/telecomms/mainframe,
/area/tcommsat/server)
"cmH" = (
-/obj/machinery/message_server,
+/obj/machinery/telecomms/message_server,
/turf/open/floor/circuit/telecomms/mainframe,
/area/tcommsat/server)
"cmI" = (
@@ -47874,19 +46625,6 @@
},
/turf/open/space,
/area/space/nearstation)
-"cnA" = (
-/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/nearstation)
"cnC" = (
/obj/machinery/turretid{
control_area = "/area/ai_monitored/turret_protected/aisat_interior";
@@ -48593,11 +47331,6 @@
dir = 1
},
/area/science/research/lobby)
-"cqq" = (
-/obj/structure/grille,
-/obj/structure/window/shuttle,
-/turf/open/floor/plating,
-/area/shuttle/transport)
"cqs" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -48753,12 +47486,7 @@
/turf/open/floor/plasteel/dark,
/area/chapel/main/monastery)
"crl" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
- icon_state = "space";
- layer = 4;
- name = "EXTERNAL AIRLOCK"
- },
+/obj/structure/sign/warning/vacuum/external,
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
/area/chapel/asteroid/monastery)
@@ -48804,11 +47532,7 @@
/turf/open/floor/plating,
/area/maintenance/department/engine)
"crA" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
- icon_state = "space";
- layer = 4;
- name = "EXTERNAL AIRLOCK";
+/obj/structure/sign/warning/vacuum/external{
pixel_y = 32
},
/obj/structure/disposalpipe/segment{
@@ -48865,7 +47589,7 @@
/obj/machinery/door/airlock/centcom{
name = "Crematorium";
opacity = 1;
- req_access = "27"
+ req_access = list(27)
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/dark,
@@ -49069,12 +47793,6 @@
},
/turf/open/floor/plating,
/area/maintenance/department/engine)
-"csz" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/department/engine)
"csB" = (
/obj/structure/chair/comfy/black{
dir = 4
@@ -49941,11 +48659,7 @@
/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";
+/obj/structure/sign/warning/vacuum/external{
pixel_x = -32
},
/obj/machinery/camera{
@@ -50287,13 +49001,6 @@
},
/turf/closed/wall,
/area/library)
-"cxF" = (
-/obj/structure/lattice,
-/turf/open/space/basic,
-/area/library)
-"cxG" = (
-/turf/open/space/basic,
-/area/library)
"cxJ" = (
/obj/structure/window/reinforced/fulltile,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -50398,10 +49105,6 @@
},
/turf/closed/wall,
/area/library)
-"cyK" = (
-/obj/structure/lattice,
-/turf/open/space/basic,
-/area/space/nearstation)
"cyL" = (
/obj/structure/lattice,
/obj/structure/lattice,
@@ -50495,11 +49198,6 @@
/obj/structure/table/wood/fancy,
/turf/open/floor/carpet,
/area/library)
-"czs" = (
-/obj/structure/table/wood/fancy,
-/obj/item/storage/pill_bottle/dice,
-/turf/open/floor/carpet,
-/area/library)
"czt" = (
/obj/structure/table/wood/fancy,
/obj/item/storage/photo_album,
@@ -50526,11 +49224,6 @@
},
/turf/open/floor/plasteel/dark,
/area/library)
-"czA" = (
-/obj/structure/table/wood/fancy,
-/obj/item/dice/d20,
-/turf/open/floor/carpet,
-/area/library)
"czB" = (
/obj/structure/table/wood/fancy,
/obj/item/storage/fancy/candle_box,
@@ -50957,7 +49650,7 @@
/turf/open/floor/plating,
/area/maintenance/department/engine)
"cBM" = (
-/obj/structure/sign/securearea{
+/obj/structure/sign/warning/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";
@@ -50965,23 +49658,6 @@
},
/turf/open/floor/plasteel/dark,
/area/chapel/office)
-"cBN" = (
-/obj/effect/spawner/structure/window/shuttle,
-/turf/open/floor/plating,
-/area/shuttle/escape)
-"cBO" = (
-/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
- },
-/turf/open/space/basic,
-/area/space/nearstation)
"cBP" = (
/obj/machinery/smoke_machine,
/turf/open/floor/plasteel/white,
@@ -51017,99 +49693,12 @@
"cBU" = (
/turf/closed/wall/r_wall,
/area/gateway)
-"cBV" = (
-/turf/closed/wall/r_wall,
-/area/gateway)
-"cBW" = (
-/turf/closed/wall/r_wall,
-/area/gateway)
-"cBX" = (
-/turf/closed/wall/r_wall,
-/area/gateway)
-"cBY" = (
-/turf/closed/wall/r_wall,
-/area/gateway)
-"cBZ" = (
-/turf/closed/wall/r_wall,
-/area/gateway)
-"cCa" = (
-/turf/closed/wall/r_wall,
-/area/gateway)
-"cCb" = (
-/turf/closed/wall/r_wall,
-/area/gateway)
-"cCc" = (
-/turf/closed/wall/r_wall,
-/area/gateway)
-"cCd" = (
-/turf/closed/wall/r_wall,
-/area/gateway)
-"cCe" = (
-/turf/closed/wall/r_wall,
-/area/gateway)
-"cCf" = (
-/turf/closed/wall/r_wall,
-/area/gateway)
-"cCg" = (
-/turf/closed/wall/r_wall,
-/area/gateway)
-"cCh" = (
-/turf/closed/wall/r_wall,
-/area/gateway)
-"cCi" = (
-/turf/closed/wall/r_wall,
-/area/gateway)
-"cCj" = (
-/turf/closed/wall/r_wall,
-/area/gateway)
-"cCk" = (
-/turf/closed/wall/r_wall,
-/area/gateway)
"cCl" = (
/turf/closed/wall/r_wall,
/area/science/lab)
-"cCm" = (
-/turf/closed/wall/r_wall,
-/area/science/lab)
-"cCn" = (
-/turf/closed/wall/r_wall,
-/area/science/lab)
-"cCo" = (
-/turf/closed/wall/r_wall,
-/area/science/lab)
-"cCp" = (
-/turf/closed/wall/r_wall,
-/area/science/lab)
-"cCq" = (
-/turf/closed/wall/r_wall,
-/area/science/lab)
-"cCr" = (
-/turf/closed/wall/r_wall,
-/area/science/lab)
-"cCs" = (
-/turf/closed/wall/r_wall,
-/area/science/lab)
"cCt" = (
/turf/open/floor/plasteel/white,
/area/science/lab)
-"cCu" = (
-/turf/closed/wall/r_wall,
-/area/science/lab)
-"cCv" = (
-/turf/closed/wall/r_wall,
-/area/science/lab)
-"cCw" = (
-/turf/open/floor/plasteel/white,
-/area/science/lab)
-"cCx" = (
-/turf/closed/wall/r_wall,
-/area/science/lab)
-"cCy" = (
-/turf/closed/wall/r_wall,
-/area/science/lab)
-"cCz" = (
-/turf/closed/wall/r_wall,
-/area/science/lab)
"cCA" = (
/turf/closed/wall,
/area/science/lab)
@@ -51119,21 +49708,10 @@
},
/turf/open/floor/plasteel,
/area/quartermaster/storage)
-"cCC" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/rnd/protolathe/department/cargo,
-/turf/open/floor/plasteel,
-/area/quartermaster/storage)
"cCD" = (
/obj/machinery/rnd/protolathe/department/service,
/turf/open/floor/plating,
/area/crew_quarters/kitchen)
-"cCE" = (
-/obj/machinery/rnd/protolathe/department/medical,
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/central)
"cCF" = (
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel/white,
@@ -51154,30 +49732,6 @@
},
/turf/open/floor/plating/airless,
/area/engine/engineering)
-"cCJ" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plating/airless,
-/area/engine/engineering)
-"cCK" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plating/airless,
-/area/engine/engineering)
-"cCL" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plating/airless,
-/area/engine/engineering)
-"cCM" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plating/airless,
-/area/engine/engineering)
"cCN" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -51194,10 +49748,6 @@
/obj/effect/turf_decal/bot/right,
/turf/open/floor/plasteel/white,
/area/engine/gravity_generator)
-"cCQ" = (
-/obj/effect/turf_decal/bot/right,
-/turf/open/floor/plasteel/white,
-/area/engine/gravity_generator)
"cCR" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
@@ -51258,45 +49808,6 @@
"cDa" = (
/turf/closed/wall,
/area/quartermaster/warehouse)
-"cDb" = (
-/turf/closed/wall,
-/area/quartermaster/warehouse)
-"cDc" = (
-/turf/closed/wall,
-/area/quartermaster/warehouse)
-"cDd" = (
-/turf/closed/wall,
-/area/quartermaster/warehouse)
-"cDe" = (
-/turf/closed/wall,
-/area/quartermaster/warehouse)
-"cDf" = (
-/turf/closed/wall,
-/area/quartermaster/warehouse)
-"cDg" = (
-/turf/closed/wall,
-/area/quartermaster/warehouse)
-"cDh" = (
-/turf/closed/wall,
-/area/quartermaster/warehouse)
-"cDi" = (
-/turf/closed/wall,
-/area/quartermaster/warehouse)
-"cDj" = (
-/turf/closed/wall,
-/area/quartermaster/warehouse)
-"cDk" = (
-/turf/closed/wall,
-/area/quartermaster/warehouse)
-"cDl" = (
-/turf/closed/wall,
-/area/quartermaster/warehouse)
-"cDm" = (
-/turf/closed/wall,
-/area/quartermaster/warehouse)
-"cDn" = (
-/turf/closed/wall,
-/area/quartermaster/warehouse)
(1,1,1) = {"
aaa
@@ -59963,11 +58474,11 @@ aaa
aaa
aaa
aaa
-cil
-cja
-cin
-cja
-cil
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -60219,13 +58730,13 @@ aaa
aaa
aaa
aaa
-cil
-cil
-ciw
-cix
-ciw
-cil
-cil
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -60475,15 +58986,15 @@ aaa
aaa
aaa
aaa
-cil
-cil
-ciw
-ciw
-cix
-ciw
-ciw
-cil
-cil
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -60732,15 +59243,15 @@ aaa
aaa
aaa
aaa
-cim
-ciw
-ciw
-cjb
-cjy
-cjW
-ciw
-ciw
-ckY
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -60989,15 +59500,15 @@ aaa
aaa
aaa
aaa
-cin
-cix
-cix
-cjc
-cjz
-cjX
-cix
-cix
-cin
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -61246,15 +59757,15 @@ aaa
aaa
aaa
aaa
-cim
-ciw
-ciw
-cjd
-cjA
-cjY
-ciw
-ciw
-ckY
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -61503,15 +60014,15 @@ aaa
aaa
aaa
aaa
-cil
-cil
-ciw
-ciw
-cix
-ciw
-ciw
-cil
-cil
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -61761,13 +60272,13 @@ aaa
aaa
aaa
aaa
-cil
-cil
-ciw
-cix
-ciw
-cil
-cil
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -62019,11 +60530,11 @@ aaa
aaa
aaa
aaa
-cil
-cje
+aaa
+aaa
cjB
-cje
-cil
+aaa
+aaa
aaa
aaa
aaa
@@ -65274,21 +63785,21 @@ aaa
aaa
aaa
aaa
-aFS
-cBN
-cBN
-aKs
-aFS
-aFS
-cBN
-cBN
-aFS
-aKs
-aFS
-aKs
-aFS
-aFS
-aFS
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -65531,21 +64042,21 @@ aaa
aaa
aaa
aaa
-aFS
-aIs
-aJx
-aJx
-cBN
-aMI
-aNZ
-aNZ
-aNZ
-aMI
-aNZ
-aMI
-aNZ
-aVJ
-aWD
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -65788,21 +64299,21 @@ aaa
aaa
aaa
aaa
-aFS
-aIt
-aJx
-aJx
-aLp
-aIx
-aIx
-aIx
-aIx
-aIx
-aIx
-aIx
-aIx
-aVJ
-aWD
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -66045,21 +64556,21 @@ aaa
aaa
aaa
aaa
-aFS
-aIu
-aJy
-aKt
-cBN
-aIx
-aOa
-aOa
-aOa
-aIx
-aIx
-aOe
-aOe
-aVJ
-aWD
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -66302,22 +64813,22 @@ aaa
aaa
aaa
aaa
-aFS
-aFS
-aFS
-aFS
-aHv
-aMJ
-aOb
-aOb
-aOb
-aRA
-aHv
-aFS
-aFS
-aFS
-aFS
-aFS
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -66557,24 +65068,24 @@ aaa
aaa
aaa
aaa
-aFS
-aFS
-aHv
-aIv
-aJz
-aKu
-aLq
-aIx
-aIx
-aIx
-aIx
-aIx
-aFS
-aTF
-aUE
-aTF
-aVJ
-aWD
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -66814,24 +65325,24 @@ aaa
aaa
aaa
aaa
-cBN
-aGQ
-aHw
-aIw
-aIw
-cBN
-aIx
-aIx
-aOc
-aPj
-aOc
-aIx
-cBN
-aMI
-aMI
-aMI
-aVJ
-aWD
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -67071,24 +65582,24 @@ aaa
aaa
aaa
aaa
-aFT
-aGR
-aHx
-aIx
-aIx
-aKv
-aIx
-aIx
-aOd
-aPk
-aQq
-aIx
-aSp
-aMI
-aMI
-aMI
-aVJ
-aWD
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -67328,24 +65839,24 @@ aaa
aaa
aaa
aaa
-aFT
-aGS
-aHy
-aIy
-aIy
-aFT
-aIx
-aIx
-aOc
-aPl
-aOc
-aIx
-aFT
-aMI
-aNZ
-aNZ
-aVJ
-aWD
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -67585,24 +66096,24 @@ axB
aaa
aaa
aaa
-aFS
-aFS
-aHv
-aIz
-aJA
-aKu
-aLq
-aIx
-aIx
-aIx
-aIx
-aIx
-aFS
-aTG
-aUF
-aVK
-aVJ
-aWD
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -67844,22 +66355,22 @@ aaa
aaa
aaa
aaa
-aFS
-aFS
-aFS
-aFS
-aHv
-aMJ
-aOa
-aOa
-aOa
-aRA
-aHv
-aFS
-aFS
-aFS
-aFS
-aFS
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -68101,21 +66612,21 @@ aaa
aaa
aaa
aaa
-aFS
-aIA
-aJB
-aKw
-aFT
-aIx
-aOb
-aOb
-aOb
-aIx
-aIx
-aNZ
-aNZ
-aVJ
-aWD
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -68358,21 +66869,21 @@ aaa
aaa
aaa
aaa
-aFS
-aIA
-aJC
-aJC
-aLr
-aIx
-aIx
-aIx
-aIx
-aIx
-aIx
-aIx
-aIx
-aVJ
-aWD
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -68615,21 +67126,6 @@ aaa
aaa
aaa
aaa
-aFS
-aIA
-aJC
-aJC
-aFT
-aMI
-aOe
-aOe
-aOe
-aMI
-aOe
-aMI
-aOe
-aVJ
-aWD
aaa
aaa
aaa
@@ -68651,7 +67147,22 @@ aaa
aaa
aaa
aaa
-bsg
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -68872,21 +67383,18 @@ aaa
aaa
aaa
aaa
-aFS
-aFT
-aFT
-aKx
-aFS
-aFS
-aFT
-aFT
-aFS
-aKs
-aFS
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aTH
-aFS
-aFS
-aFS
aaa
aaa
aaa
@@ -68907,9 +67415,12 @@ aaa
aaa
aaa
aaa
-bsg
-btG
-bsg
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -69152,10 +67663,6 @@ aaa
aaa
aaa
aaa
-beV
-bgP
-bgP
-beV
aaa
aaa
aaa
@@ -69164,9 +67671,13 @@ aaa
aaa
aaa
aaa
-bsh
-bsk
-buX
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -69379,7 +67890,7 @@ aiu
aiu
ayD
azU
-aAZ
+aoK
ajD
ait
aaa
@@ -69409,10 +67920,6 @@ aaa
aaa
aaa
aaa
-beV
-bfR
-bhC
-beV
aaa
aaa
aaa
@@ -69421,9 +67928,13 @@ aaa
aaa
aaa
aaa
-bqP
-btH
-bqP
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -69665,23 +68176,23 @@ aZx
aZx
aaa
aaa
-beV
-beV
-bgQ
-bgQ
-beV
-beV
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aZx
aZx
aZx
aZx
-bqP
-bqP
-btI
-bqP
-bqP
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -69882,15 +68393,15 @@ amI
anu
aog
aiu
-apC
-apC
-apD
-apC
-apC
-apD
-apC
-apC
-apC
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aiu
azW
aBa
@@ -69922,23 +68433,23 @@ baJ
aZx
bcW
aZx
-beV
-bfQ
-bfR
-bfR
-bhX
-beV
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aZx
aZx
aZx
baJ
bon
aZx
-bqQ
-bsi
-bsk
-buY
-cqq
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -70139,15 +68650,15 @@ amJ
anv
aoh
aiu
-apD
-aqj
-are
-ass
-atr
-auv
-avo
-awG
-axD
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aiu
azX
aBb
@@ -70179,23 +68690,23 @@ baK
bbQ
bcX
bdV
-beW
-bfR
-bgR
-bgR
-bfR
-beW
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
bbQ
bcX
bdV
baK
bon
aZx
-bqP
-bsi
-bsk
-buY
-bqP
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -70396,15 +68907,15 @@ amK
anw
aoh
aiu
-apD
-aqk
-arf
-apC
-ats
-atr
-atr
-awG
-axD
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aiu
azY
aiu
@@ -70436,23 +68947,23 @@ baK
aZx
aZx
aZx
-beV
-bfS
-bfR
-bfR
-bhY
-beV
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aZx
aZx
aZx
baK
bon
aZx
-bqP
-bsj
-bsk
-bsk
-bqP
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -70653,15 +69164,15 @@ akA
akA
aoi
aiu
-apD
-aql
-arg
-ast
-att
-auw
-atr
-awG
-axD
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aiu
azZ
aiu
@@ -70693,23 +69204,23 @@ baK
bbR
bcY
aZx
-beX
-bfT
-bgR
-bgR
-bfR
-beX
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aZx
bkQ
bbR
baK
bon
aZx
-bqR
-bsk
-btJ
-bsk
-bwp
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -70910,15 +69421,15 @@ amL
anx
aoj
aiu
-apC
-apC
-arh
-apC
-apC
-apC
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
avp
-apC
-apC
+aaa
+aaa
aiu
aAa
aiu
@@ -70950,23 +69461,23 @@ baL
baK
bcZ
aZx
-beX
-bfU
-bfR
-bfR
-bfR
-beX
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aZx
bkR
baK
baL
bon
aZx
-bqP
-bsk
-bsk
-buZ
-bqP
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -71207,23 +69718,23 @@ baK
bbS
bda
aZx
-beX
-bfR
-bgR
-bgR
-bfR
-beX
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aZx
bkS
bbS
baK
bon
aZx
-bqP
-bsi
-bsk
-buY
-bqP
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -71464,23 +69975,23 @@ baM
aZx
aZx
aZx
-beV
-bfV
-bgR
-bgR
-bhZ
-beV
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aZx
aZx
aZx
bno
boo
aZx
-bqQ
-bsi
-bsk
-buY
-cqq
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -71721,23 +70232,23 @@ baN
bbQ
bcX
bdV
-beW
-bfR
-bfR
-bfR
-bfR
-beW
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
bbQ
bcX
bdV
bnp
bon
aZx
-bqP
-bqQ
+aaa
+aaa
btK
-bqQ
-bqP
+aaa
+aaa
aaa
aaa
aaa
@@ -71978,12 +70489,12 @@ baN
aZx
bcW
aZx
-beV
-bfW
-bfW
-bfW
-bfW
-beV
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aZx
aZx
aZx
@@ -72235,12 +70746,12 @@ baN
bbR
bbR
aYG
-beV
-bfX
+aaa
+aaa
bgS
-bhD
-bia
-beV
+aaa
+aaa
+aaa
aYG
bbR
bbR
@@ -73291,7 +71802,7 @@ bGL
bHQ
bJe
bKj
-bLw
+bLv
bMB
bNI
bOz
@@ -74329,8 +72840,8 @@ bQT
bDi
bSq
bDi
-bTY
-bTY
+bSw
+bSw
bva
bva
bDi
@@ -90722,10 +89233,10 @@ aJm
aKg
cDa
aMo
-cDd
-cDf
-cDg
-cDh
+cDa
+cDa
+cDa
+cDa
aLg
aTj
aUu
@@ -91753,8 +90264,8 @@ aMs
aNO
aPb
aQe
-cDi
-cDj
+cDa
+cDa
aTn
aUx
aVA
@@ -92011,7 +90522,7 @@ aNP
aPb
aNO
aNP
-cDk
+cDa
aTo
aSk
aTm
@@ -92268,7 +90779,7 @@ aNO
aPc
aQf
aRq
-cDl
+cDa
aTp
aSk
aTm
@@ -92525,7 +91036,7 @@ aNQ
aNO
aQg
aNP
-cDm
+cDa
aTq
aSk
aVB
@@ -92776,13 +91287,13 @@ aEd
aEd
aEd
cCX
-cDb
-cDc
-cDe
+cDa
+cDa
+cDa
coL
coL
coL
-cDn
+cDa
aTr
aUy
aPd
@@ -93551,25 +92062,25 @@ aKq
aJs
aEj
aaa
-aQh
-aQh
-aQh
-aTt
-aUA
-aQh
-aWC
-aXB
-aQh
-aQh
-aQh
aaa
-apC
-apC
-apD
+aaa
+aaa
+aaa
+aUA
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
bfK
-apD
-apC
-apC
+aaa
+aaa
+aaa
aEj
aTx
bkE
@@ -93807,26 +92318,26 @@ aKn
aKn
aMy
aEj
-aPe
-aQh
-aQh
-aRr
-aRr
-aRr
-aVC
-aRr
-aRr
-aRr
-aRr
-aQh
aaa
-apC
-bdN
-atr
-atr
-beQ
-bhw
-apC
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aEj
aTx
bkE
@@ -94064,26 +92575,26 @@ aEj
aLk
aLk
aEj
-aPe
-aQi
-aRr
-aRr
-aRr
-aRr
-aRr
-aRr
-aRr
-aRr
-aRr
-aQh
aaa
-apD
-bdO
-beQ
-atr
-beQ
-bhx
-bhW
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aEj
bjz
bkE
@@ -94321,26 +92832,26 @@ aKo
aLl
aMz
aEj
-aPe
-aQi
-aRr
-aRr
-aRr
-aRr
-aRr
-aRr
-aRr
-aRr
-aZu
-aQh
aaa
-apC
-bdP
-atr
-atr
-beQ
-bhy
-apC
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aEj
aTx
bkF
@@ -94578,26 +93089,26 @@ aFi
aFi
aEj
aEj
-aPe
-aQi
-aRr
-aRr
-aRr
-aRr
-aRr
-aRr
-aRr
-aRr
-aRr
-aQh
aaa
-apC
-apC
-apD
-bfL
-apD
-apC
-apC
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aEj
aTx
bkF
@@ -94835,18 +93346,18 @@ aKp
aFi
aMA
aEj
-aPe
-aQh
-aQh
-aRr
-aRr
-aRr
-aVD
-aRr
-aRr
-aRr
-aRr
-aQh
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -95093,17 +93604,17 @@ aFi
aFi
aEj
aaa
-aQh
-aQh
-aQh
-aQh
-aQh
-aQh
-aQh
-aQh
-aQh
-aQh
-aQh
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -96916,7 +95427,7 @@ bjE
bkK
bkF
bnh
-boi
+blX
blX
bqH
bsb
@@ -96926,7 +95437,7 @@ bwe
bxS
bzr
blX
-boi
+blX
bDe
bEg
bFA
@@ -97165,7 +95676,7 @@ bcL
bdS
baG
bfP
-bgO
+bdz
aFi
aKq
biD
@@ -97683,7 +96194,7 @@ abI
abI
aEj
biG
-bjG
+aKo
bjD
bkF
blX
@@ -97944,7 +96455,7 @@ bjH
bjD
bkF
bnh
-boi
+blX
blX
bqK
bsd
@@ -97954,7 +96465,7 @@ bwe
bxU
bzu
blX
-boi
+blX
bDe
bkF
bjD
@@ -99998,7 +98509,7 @@ aaa
aaa
aEj
bkO
-bgO
+bdz
bnn
bom
aEj
@@ -116832,4 +115343,4 @@ aaa
aaa
aaa
aaa
-"}
+"}
\ No newline at end of file
diff --git a/_maps/map_files/PubbyStation/areas.dm b/_maps/map_files/PubbyStation/areas.dm
deleted file mode 100644
index e15bc87193..0000000000
--- a/_maps/map_files/PubbyStation/areas.dm
+++ /dev/null
@@ -1,7 +0,0 @@
-/area/chapel/asteroid
- name = "Chapel Asteroid"
- icon_state = "explored"
-
-/area/chapel/dock
- name = "Chapel Dock"
- icon_state = "construction"
diff --git a/_maps/map_files/PubbyStation/job/job_changes.dm b/_maps/map_files/PubbyStation/job/job_changes.dm
deleted file mode 100644
index 232f127f2d..0000000000
--- a/_maps/map_files/PubbyStation/job/job_changes.dm
+++ /dev/null
@@ -1,20 +0,0 @@
-/datum/job/assistant
-/datum/job/captain
-/datum/job/hop
-
-/datum/job/hos/New()
- ..()
- access += access_crematorium
- minimal_access += access_crematorium
-
-/datum/job/warden/New()
- ..()
- access += access_crematorium
- minimal_access += access_crematorium
-
-/datum/job/officer/New()
- ..()
- access += access_crematorium
- minimal_access += access_crematorium
-
-/datum/job/detective
diff --git a/_maps/map_files/PubbyStation/job/removed_jobs.dm b/_maps/map_files/PubbyStation/job/removed_jobs.dm
deleted file mode 100644
index aea9363737..0000000000
--- a/_maps/map_files/PubbyStation/job/removed_jobs.dm
+++ /dev/null
@@ -1,5 +0,0 @@
-/datum/job/librarian/config_check()
- return 0
-
-/datum/job/lawyer/config_check()
- return 0
diff --git a/_maps/map_files/PubbyStation/monastery_shuttle.dm b/_maps/map_files/PubbyStation/monastery_shuttle.dm
deleted file mode 100644
index b1cbb3c7b2..0000000000
--- a/_maps/map_files/PubbyStation/monastery_shuttle.dm
+++ /dev/null
@@ -1,11 +0,0 @@
-/obj/machinery/computer/shuttle/monastery_shuttle
- name = "monastery shuttle console"
- desc = "Used to control the monastery shuttle."
- circuit = /obj/item/circuitboard/computer/shuttle/monastery_shuttle
- shuttleId = "pod1"
- possible_destinations = "monastery_shuttle_asteroid;monastery_shuttle_station"
- no_destination_swap = TRUE
-
-/obj/item/circuitboard/computer/shuttle/monastery_shuttle
- name = "Monastery Shuttle (Computer Board)"
- build_path = /obj/machinery/computer/shuttle/monastery_shuttle
diff --git a/_maps/map_files/debug/runtimestation.dmm b/_maps/map_files/debug/runtimestation.dmm
index d8ee100bf1..60bf3a95a6 100644
--- a/_maps/map_files/debug/runtimestation.dmm
+++ b/_maps/map_files/debug/runtimestation.dmm
@@ -20,10 +20,6 @@
"af" = (
/turf/open/floor/plating,
/area/maintenance/department/bridge)
-"ag" = (
-/obj/structure/lattice,
-/turf/open/space,
-/area/space/nearstation)
"ah" = (
/turf/closed/wall/r_wall,
/area/engine/atmos)
@@ -131,10 +127,7 @@
/area/engine/gravity_generator)
"au" = (
/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'RADIOACTIVE AREA'";
- icon_state = "radiation";
- name = "RADIOACTIVE AREA";
+/obj/structure/sign/warning/radiation/rad_area{
pixel_y = 32
},
/turf/open/floor/plating,
@@ -1306,15 +1299,6 @@
dir = 1
},
/area/hallway/primary/central)
-"dV" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/camera/autoname,
-/turf/open/floor/plasteel/blue/side{
- dir = 1
- },
-/area/hallway/primary/central)
"dW" = (
/obj/effect/turf_decal/stripes/line,
/obj/machinery/camera/autoname,
@@ -2510,7 +2494,7 @@ bI
cf
cq
bu
-dV
+dU
bE
bE
cN
diff --git a/_maps/map_files/generic/CentCom.dmm b/_maps/map_files/generic/CentCom.dmm
index a45c06d0dc..c4ce9d99fe 100644
--- a/_maps/map_files/generic/CentCom.dmm
+++ b/_maps/map_files/generic/CentCom.dmm
@@ -2860,7 +2860,7 @@
/turf/closed/indestructible/riveted,
/area/centcom/prison)
"iI" = (
-/obj/structure/sign/securearea,
+/obj/structure/sign/warning/securearea,
/turf/closed/indestructible/riveted,
/area/centcom/prison)
"iJ" = (
@@ -2992,12 +2992,7 @@
/area/centcom/control)
"jb" = (
/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
- icon_state = "space";
- layer = 4;
- name = "EXTERNAL AIRLOCK"
- },
+/obj/structure/sign/warning/vacuum/external,
/turf/open/floor/plating,
/area/centcom/supply)
"jc" = (
@@ -3250,11 +3245,12 @@
"jC" = (
/obj/docking_port/stationary{
dir = 8;
- dwidth = 5;
+ dwidth = 8;
height = 7;
id = "supply_away";
+ json_key = "cargo";
name = "CentCom";
- width = 12
+ width = 20
},
/turf/open/space,
/area/space)
@@ -4751,7 +4747,7 @@
/turf/closed/indestructible/fakeglass,
/area/syndicate_mothership/control)
"nA" = (
-/obj/structure/sign/nosmoking_2,
+/obj/structure/sign/warning/nosmoking,
/turf/closed/indestructible/riveted,
/area/centcom/ferry)
"nB" = (
@@ -5339,30 +5335,6 @@
dir = 8
},
/area/centcom/control)
-"oS" = (
-/obj/machinery/porta_turret/syndicate{
- dir = 9
- },
-/turf/closed/wall/mineral/plastitanium,
-/area/shuttle/syndicate/bridge)
-"oT" = (
-/turf/closed/wall/mineral/plastitanium,
-/area/shuttle/syndicate/bridge)
-"oU" = (
-/obj/structure/window/plastitanium,
-/obj/machinery/door/poddoor/shutters{
- id = "syndieshutters";
- name = "blast shutters"
- },
-/obj/structure/grille,
-/turf/open/floor/plating,
-/area/shuttle/syndicate/bridge)
-"oV" = (
-/obj/machinery/porta_turret/syndicate{
- dir = 5
- },
-/turf/closed/wall/mineral/plastitanium,
-/area/shuttle/syndicate/bridge)
"oW" = (
/obj/structure/flora/bush,
/obj/effect/light_emitter{
@@ -5607,40 +5579,6 @@
dir = 8
},
/area/centcom/control)
-"px" = (
-/obj/machinery/computer/med_data/syndie,
-/obj/effect/turf_decal/bot_white,
-/turf/open/floor/plasteel/dark,
-/area/shuttle/syndicate/bridge)
-"py" = (
-/obj/machinery/computer/crew/syndie,
-/obj/effect/turf_decal/bot_white,
-/turf/open/floor/plasteel/dark,
-/area/shuttle/syndicate/bridge)
-"pz" = (
-/obj/machinery/computer/camera_advanced/shuttle_docker/syndicate,
-/obj/effect/turf_decal/bot_white,
-/turf/open/floor/plasteel/dark,
-/area/shuttle/syndicate/bridge)
-"pA" = (
-/obj/machinery/computer/shuttle/syndicate,
-/obj/effect/turf_decal/bot_white,
-/turf/open/floor/plasteel/dark,
-/area/shuttle/syndicate/bridge)
-"pB" = (
-/obj/structure/table/reinforced,
-/turf/open/floor/plasteel/dark,
-/area/shuttle/syndicate/bridge)
-"pC" = (
-/obj/machinery/computer/camera_advanced/syndie,
-/obj/effect/turf_decal/bot_white,
-/turf/open/floor/plasteel/dark,
-/area/shuttle/syndicate/bridge)
-"pD" = (
-/obj/machinery/computer/secure_data/syndie,
-/obj/effect/turf_decal/bot_white,
-/turf/open/floor/plasteel/dark,
-/area/shuttle/syndicate/bridge)
"pF" = (
/obj/machinery/door/airlock/centcom{
name = "Auxillary Dock";
@@ -5758,64 +5696,13 @@
/turf/open/floor/plasteel,
/area/centcom/supply)
"pR" = (
-/obj/structure/table/reinforced,
-/obj/machinery/status_display{
- pixel_x = -32
- },
-/obj/item/clipboard,
-/obj/machinery/light{
- dir = 8
- },
-/obj/item/folder/red,
-/obj/item/toy/figure/syndie,
-/turf/open/floor/plasteel/vault{
- dir = 8
- },
-/area/shuttle/syndicate/bridge)
-"pS" = (
-/obj/structure/chair/office/dark{
- dir = 8;
- name = "tactical swivel chair"
- },
-/turf/open/floor/plasteel/dark,
-/area/shuttle/syndicate/bridge)
-"pT" = (
-/turf/open/floor/plasteel/dark,
-/area/shuttle/syndicate/bridge)
-"pU" = (
-/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/dark,
-/area/shuttle/syndicate/bridge)
-"pV" = (
-/obj/structure/chair/office/dark{
- dir = 4;
- name = "tactical swivel chair"
- },
-/turf/open/floor/plasteel/dark,
-/area/shuttle/syndicate/bridge)
-"pW" = (
-/obj/structure/table/reinforced,
-/obj/machinery/ai_status_display{
- pixel_x = 32
- },
-/obj/item/storage/fancy/donut_box,
/obj/machinery/light{
dir = 4
},
/turf/open/floor/plasteel/vault{
- dir = 8
+ dir = 5
},
-/area/shuttle/syndicate/bridge)
+/area/centcom/ferry)
"pX" = (
/obj/item/storage/crayons,
/obj/structure/table,
@@ -5929,7 +5816,7 @@
/area/centcom/ferry)
"ql" = (
/obj/structure/dresser,
-/obj/structure/sign/goldenplaque/captain{
+/obj/structure/sign/plaques/golden/captain{
pixel_x = 32
},
/turf/open/floor/plasteel/vault{
@@ -6081,9 +5968,6 @@
"qE" = (
/turf/closed/indestructible/riveted/uranium,
/area/wizard_station)
-"qI" = (
-/turf/open/floor/plasteel/vault/side,
-/area/shuttle/syndicate/bridge)
"qJ" = (
/obj/machinery/computer/shuttle/syndicate/recall,
/turf/open/floor/plasteel/bar{
@@ -6208,19 +6092,6 @@
/obj/machinery/computer/shuttle,
/turf/open/floor/engine/cult,
/area/wizard_station)
-"rb" = (
-/obj/machinery/status_display,
-/turf/closed/wall/mineral/plastitanium,
-/area/shuttle/syndicate/bridge)
-"rc" = (
-/obj/machinery/door/airlock/hatch{
- name = "Cockpit";
- req_access_txt = "150"
- },
-/turf/open/floor/plasteel/vault{
- dir = 8
- },
-/area/shuttle/syndicate/bridge)
"rd" = (
/obj/structure/flora/grass/brown,
/obj/effect/light_emitter{
@@ -6411,7 +6282,7 @@
/turf/open/floor/plasteel/grimy,
/area/centcom/ferry)
"rz" = (
-/obj/structure/sign/securearea,
+/obj/structure/sign/warning/securearea,
/turf/closed/indestructible/riveted,
/area/centcom/ferry)
"rA" = (
@@ -6647,46 +6518,6 @@
},
/turf/open/floor/engine/cult,
/area/wizard_station)
-"rY" = (
-/obj/machinery/porta_turret/syndicate{
- dir = 10
- },
-/turf/closed/wall/mineral/plastitanium,
-/area/shuttle/syndicate/hallway)
-"rZ" = (
-/turf/closed/wall/mineral/plastitanium,
-/area/shuttle/syndicate/hallway)
-"sa" = (
-/obj/structure/table/reinforced,
-/obj/item/stack/cable_coil/white,
-/obj/item/stack/cable_coil/white,
-/obj/item/crowbar/red,
-/turf/open/floor/plasteel/vault{
- dir = 5
- },
-/area/shuttle/syndicate/hallway)
-"sb" = (
-/turf/open/floor/plasteel/vault{
- dir = 5
- },
-/area/shuttle/syndicate/hallway)
-"sc" = (
-/obj/structure/table/reinforced,
-/obj/item/storage/box/handcuffs{
- pixel_x = 3;
- pixel_y = 3
- },
-/obj/item/storage/box/zipties,
-/turf/open/floor/plasteel/vault{
- dir = 5
- },
-/area/shuttle/syndicate/hallway)
-"sd" = (
-/obj/machinery/porta_turret/syndicate{
- dir = 6
- },
-/turf/closed/wall/mineral/plastitanium,
-/area/shuttle/syndicate/hallway)
"se" = (
/obj/machinery/light{
dir = 8
@@ -7088,27 +6919,6 @@
},
/turf/open/floor/engine/cult,
/area/wizard_station)
-"sY" = (
-/obj/structure/chair{
- dir = 4;
- name = "tactical chair"
- },
-/turf/open/floor/plasteel/vault{
- dir = 5
- },
-/area/shuttle/syndicate/hallway)
-"sZ" = (
-/turf/open/floor/plasteel/dark,
-/area/shuttle/syndicate/hallway)
-"ta" = (
-/obj/structure/chair{
- dir = 8;
- name = "tactical chair"
- },
-/turf/open/floor/plasteel/vault{
- dir = 5
- },
-/area/shuttle/syndicate/hallway)
"te" = (
/obj/structure/table/wood,
/obj/item/reagent_containers/food/snacks/pizzaslice/mushroom,
@@ -7422,7 +7232,7 @@
},
/area/centcom/control)
"tP" = (
-/obj/structure/sign/securearea,
+/obj/structure/sign/warning/securearea,
/turf/closed/indestructible/riveted,
/area/centcom/control)
"tQ" = (
@@ -7471,50 +7281,6 @@
},
/turf/open/floor/engine/cult,
/area/wizard_station)
-"tY" = (
-/obj/machinery/porta_turret/syndicate{
- dir = 9
- },
-/turf/closed/wall/mineral/plastitanium,
-/area/shuttle/syndicate/eva)
-"tZ" = (
-/turf/closed/wall/mineral/plastitanium,
-/area/shuttle/syndicate/eva)
-"ua" = (
-/obj/structure/chair{
- dir = 4;
- name = "tactical chair"
- },
-/obj/machinery/light{
- dir = 8
- },
-/turf/open/floor/plasteel/vault{
- dir = 5
- },
-/area/shuttle/syndicate/hallway)
-"ub" = (
-/obj/structure/chair{
- dir = 8;
- name = "tactical chair"
- },
-/obj/machinery/light{
- dir = 4
- },
-/turf/open/floor/plasteel/vault{
- dir = 5
- },
-/area/shuttle/syndicate/hallway)
-"uc" = (
-/obj/structure/chair{
- dir = 4;
- name = "tactical chair"
- },
-/obj/effect/turf_decal/bot_white,
-/obj/machinery/light{
- dir = 8
- },
-/turf/open/floor/plasteel/dark,
-/area/shuttle/syndicate/airlock)
"ud" = (
/obj/machinery/door/poddoor/shutters{
id = "nukeop_ready";
@@ -7745,23 +7511,6 @@
/obj/structure/chair/wood/wings,
/turf/open/floor/carpet,
/area/wizard_station)
-"uG" = (
-/obj/machinery/suit_storage_unit/syndicate,
-/obj/effect/turf_decal/stripes/line{
- dir = 5
- },
-/turf/open/floor/mineral/plastitanium,
-/area/shuttle/syndicate/eva)
-"uH" = (
-/turf/open/floor/plasteel/vault{
- dir = 5
- },
-/area/shuttle/syndicate/eva)
-"uI" = (
-/obj/machinery/portable_atmospherics/canister/oxygen,
-/obj/effect/turf_decal/bot_white,
-/turf/open/floor/plasteel/dark,
-/area/shuttle/syndicate/eva)
"uJ" = (
/obj/machinery/door/airlock/external{
req_access_txt = "150"
@@ -7964,7 +7713,8 @@
height = 50;
id = "emergency_away";
name = "CentCom Emergency Shuttle Dock";
- width = 50
+ width = 50;
+ json_key = "emergency"
},
/turf/open/space,
/area/space)
@@ -7997,36 +7747,6 @@
},
/turf/open/floor/carpet,
/area/wizard_station)
-"vo" = (
-/obj/machinery/suit_storage_unit/syndicate,
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/turf/open/floor/mineral/plastitanium,
-/area/shuttle/syndicate/eva)
-"vp" = (
-/obj/structure/tank_dispenser/oxygen,
-/obj/effect/turf_decal/bot_white,
-/turf/open/floor/plasteel/dark,
-/area/shuttle/syndicate/eva)
-"vq" = (
-/turf/closed/wall/mineral/plastitanium,
-/area/shuttle/syndicate/airlock)
-"vs" = (
-/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/airlock)
-"vt" = (
-/obj/machinery/porta_turret/syndicate{
- dir = 5
- },
-/turf/closed/wall/mineral/plastitanium,
-/area/shuttle/syndicate/airlock)
"vu" = (
/obj/item/storage/box/drinkingglasses,
/obj/item/reagent_containers/food/drinks/bottle/rum,
@@ -8329,28 +8049,6 @@
},
/turf/open/floor/carpet,
/area/wizard_station)
-"wf" = (
-/obj/machinery/portable_atmospherics/canister/oxygen,
-/obj/machinery/light{
- dir = 4
- },
-/obj/effect/turf_decal/bot_white,
-/turf/open/floor/plasteel/dark,
-/area/shuttle/syndicate/eva)
-"wg" = (
-/obj/structure/grille,
-/obj/structure/window/plastitanium,
-/turf/open/floor/plating,
-/area/shuttle/syndicate/hallway)
-"wh" = (
-/obj/machinery/door/airlock/external{
- name = "Ready Room";
- req_access_txt = "150"
- },
-/turf/open/floor/plasteel/vault{
- dir = 8
- },
-/area/shuttle/syndicate/hallway)
"wl" = (
/obj/machinery/light,
/turf/open/floor/wood,
@@ -8574,29 +8272,6 @@
/obj/item/toy/cards/deck,
/turf/open/floor/carpet,
/area/wizard_station)
-"wR" = (
-/turf/open/floor/plasteel/dark,
-/area/shuttle/syndicate/eva)
-"wS" = (
-/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/eva)
-"wT" = (
-/obj/machinery/door/airlock/external{
- req_access_txt = "150"
- },
-/turf/open/floor/mineral/plastitanium,
-/area/shuttle/syndicate/airlock)
-"wU" = (
-/turf/open/floor/plasteel/vault{
- dir = 5
- },
-/area/shuttle/syndicate/airlock)
"wV" = (
/obj/machinery/computer/telecrystals/boss{
dir = 1
@@ -8646,6 +8321,7 @@
dwidth = 2;
height = 13;
id = "ferry_away";
+ json_key = "ferry";
name = "CentCom Ferry Dock";
width = 5
},
@@ -8807,28 +8483,6 @@
/obj/machinery/light,
/turf/open/floor/carpet,
/area/wizard_station)
-"xA" = (
-/obj/machinery/suit_storage_unit/syndicate,
-/obj/effect/turf_decal/stripes/line{
- dir = 6
- },
-/turf/open/floor/mineral/plastitanium,
-/area/shuttle/syndicate/eva)
-"xB" = (
-/obj/structure/reagent_dispensers/fueltank,
-/obj/effect/turf_decal/bot_white,
-/turf/open/floor/plasteel/dark,
-/area/shuttle/syndicate/eva)
-"xC" = (
-/obj/structure/grille,
-/obj/structure/window/plastitanium,
-/turf/open/floor/plating,
-/area/shuttle/syndicate/eva)
-"xD" = (
-/obj/structure/grille,
-/obj/structure/window/plastitanium,
-/turf/open/floor/plating,
-/area/shuttle/syndicate/airlock)
"xG" = (
/turf/open/floor/plasteel/dark,
/area/syndicate_mothership/control)
@@ -8969,38 +8623,6 @@
},
/turf/open/floor/engine/cult,
/area/wizard_station)
-"yc" = (
-/obj/machinery/porta_turret/syndicate{
- dir = 9
- },
-/turf/closed/wall/mineral/plastitanium,
-/area/shuttle/syndicate/medical)
-"yd" = (
-/turf/closed/wall/mineral/plastitanium,
-/area/shuttle/syndicate/medical)
-"ye" = (
-/obj/machinery/ai_status_display,
-/turf/closed/wall/mineral/plastitanium,
-/area/shuttle/syndicate/medical)
-"yf" = (
-/turf/closed/wall/mineral/plastitanium/nodiagonal,
-/area/shuttle/syndicate/medical)
-"yg" = (
-/turf/closed/wall/mineral/plastitanium/nodiagonal,
-/area/shuttle/syndicate/armory)
-"yh" = (
-/turf/closed/wall/mineral/plastitanium,
-/area/shuttle/syndicate/armory)
-"yi" = (
-/obj/machinery/status_display,
-/turf/closed/wall/mineral/plastitanium,
-/area/shuttle/syndicate/armory)
-"yj" = (
-/obj/machinery/porta_turret/syndicate{
- dir = 5
- },
-/turf/closed/wall/mineral/plastitanium,
-/area/shuttle/syndicate/armory)
"yk" = (
/obj/effect/turf_decal/stripes/corner{
dir = 8
@@ -9022,7 +8644,7 @@
/area/syndicate_mothership/control)
"yn" = (
/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/sign/vacuum,
+/obj/structure/sign/warning/vacuum,
/turf/open/floor/plating,
/area/centcom/ferry)
"yo" = (
@@ -9043,7 +8665,7 @@
/obj/machinery/computer/security/telescreen/entertainment{
pixel_y = -28
},
-/obj/structure/sign/securearea{
+/obj/structure/sign/warning/securearea{
pixel_x = 32
},
/obj/effect/turf_decal/stripes/line{
@@ -9196,125 +8818,6 @@
/obj/effect/decal/cleanable/blood/splatter,
/turf/open/floor/grass,
/area/wizard_station)
-"yL" = (
-/obj/machinery/sleeper/syndie{
- dir = 4
- },
-/obj/effect/turf_decal/bot_white,
-/turf/open/floor/plasteel/dark,
-/area/shuttle/syndicate/medical)
-"yM" = (
-/turf/open/floor/plasteel/dark,
-/area/shuttle/syndicate/medical)
-"yN" = (
-/obj/machinery/light{
- dir = 1
- },
-/turf/open/floor/plasteel/dark,
-/area/shuttle/syndicate/medical)
-"yO" = (
-/obj/item/reagent_containers/glass/bottle/epinephrine{
- pixel_x = 6
- },
-/obj/item/reagent_containers/glass/bottle/charcoal{
- pixel_x = -3
- },
-/obj/item/reagent_containers/glass/bottle/epinephrine{
- pixel_x = -3;
- pixel_y = 8
- },
-/obj/item/reagent_containers/glass/bottle/charcoal{
- pixel_x = 6;
- pixel_y = 8
- },
-/obj/item/reagent_containers/syringe/epinephrine{
- pixel_x = 3;
- pixel_y = -2
- },
-/obj/item/reagent_containers/syringe/epinephrine{
- pixel_x = 4;
- pixel_y = 1
- },
-/obj/item/reagent_containers/syringe/epinephrine{
- pixel_x = -2;
- pixel_y = 5
- },
-/obj/item/reagent_containers/syringe/epinephrine{
- pixel_x = 2;
- pixel_y = 8
- },
-/obj/structure/table/reinforced,
-/obj/effect/turf_decal/bot_white,
-/turf/open/floor/plasteel/dark,
-/area/shuttle/syndicate/medical)
-"yP" = (
-/obj/structure/table/reinforced,
-/obj/item/stack/medical/gauze,
-/obj/item/stack/medical/bruise_pack,
-/obj/item/stack/medical/ointment,
-/obj/effect/turf_decal/bot_white,
-/turf/open/floor/plasteel/dark,
-/area/shuttle/syndicate/medical)
-"yQ" = (
-/obj/structure/grille,
-/obj/structure/window/plastitanium,
-/turf/open/floor/plating,
-/area/shuttle/syndicate/medical)
-"yR" = (
-/obj/structure/grille,
-/obj/structure/window/plastitanium,
-/turf/open/floor/plating,
-/area/shuttle/syndicate/armory)
-"yS" = (
-/obj/item/stock_parts/cell/high{
- pixel_x = -3;
- pixel_y = 3
- },
-/obj/item/stock_parts/cell/high,
-/obj/structure/table/reinforced,
-/turf/open/floor/plasteel/dark,
-/area/shuttle/syndicate/armory)
-"yT" = (
-/obj/item/screwdriver{
- pixel_y = 9
- },
-/obj/item/device/assembly/voice{
- pixel_y = 3
- },
-/obj/structure/table/reinforced,
-/turf/open/floor/plasteel/dark,
-/area/shuttle/syndicate/armory)
-"yU" = (
-/obj/item/wrench,
-/obj/item/device/assembly/infra,
-/obj/structure/table/reinforced,
-/obj/machinery/light{
- dir = 1
- },
-/turf/open/floor/plasteel/dark,
-/area/shuttle/syndicate/armory)
-"yV" = (
-/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/dark,
-/area/shuttle/syndicate/armory)
-"yW" = (
-/obj/item/weldingtool/largetank{
- pixel_y = 3
- },
-/obj/item/device/multitool,
-/obj/structure/table/reinforced,
-/turf/open/floor/plasteel/dark,
-/area/shuttle/syndicate/armory)
"yX" = (
/obj/structure/chair/stool,
/turf/open/floor/plasteel/dark,
@@ -9494,34 +8997,6 @@
/obj/item/reagent_containers/food/snacks/meat/slab/corgi,
/turf/open/floor/grass,
/area/wizard_station)
-"zs" = (
-/obj/structure/bed/roller,
-/obj/machinery/iv_drip,
-/obj/effect/turf_decal/bot_white,
-/turf/open/floor/plasteel/dark,
-/area/shuttle/syndicate/medical)
-"zt" = (
-/turf/open/floor/plasteel/vault/side,
-/area/shuttle/syndicate/medical)
-"zu" = (
-/obj/machinery/light{
- dir = 8
- },
-/turf/open/floor/plasteel/vault{
- dir = 5
- },
-/area/shuttle/syndicate/hallway)
-"zv" = (
-/obj/machinery/light{
- dir = 4
- },
-/turf/open/floor/plasteel/vault{
- dir = 5
- },
-/area/shuttle/syndicate/hallway)
-"zw" = (
-/turf/open/floor/plasteel/vault/side,
-/area/shuttle/syndicate/armory)
"zx" = (
/obj/structure/closet/syndicate/personal,
/obj/effect/turf_decal/stripes/line{
@@ -9658,67 +9133,6 @@
},
/turf/open/floor/grass,
/area/wizard_station)
-"zR" = (
-/turf/open/floor/plasteel/vault{
- dir = 5
- },
-/area/shuttle/syndicate/medical)
-"zS" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 9
- },
-/turf/open/floor/mineral/plastitanium,
-/area/shuttle/syndicate/medical)
-"zT" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/mineral/plastitanium,
-/area/shuttle/syndicate/medical)
-"zU" = (
-/obj/machinery/door/airlock/hatch{
- req_access_txt = "150"
- },
-/turf/open/floor/plasteel/vault{
- dir = 8
- },
-/area/shuttle/syndicate/medical)
-"zV" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/mineral/plastitanium,
-/area/shuttle/syndicate/hallway)
-"zW" = (
-/obj/machinery/door/airlock/hatch{
- req_access_txt = "150"
- },
-/turf/open/floor/plasteel/vault{
- dir = 8
- },
-/area/shuttle/syndicate/armory)
-"zX" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/mineral/plastitanium,
-/area/shuttle/syndicate/armory)
-"zY" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 5
- },
-/turf/open/floor/mineral/plastitanium,
-/area/shuttle/syndicate/armory)
-"zZ" = (
-/turf/open/floor/plasteel/vault{
- dir = 5
- },
-/area/shuttle/syndicate/armory)
-"Aa" = (
-/obj/structure/closet/syndicate/personal,
-/obj/effect/turf_decal/bot_white,
-/turf/open/floor/plasteel/dark,
-/area/shuttle/syndicate/armory)
"Ab" = (
/obj/machinery/photocopier,
/turf/open/floor/plasteel/grimy,
@@ -9888,42 +9302,6 @@
/obj/effect/decal/remains/xeno,
/turf/open/floor/grass,
/area/wizard_station)
-"AC" = (
-/obj/structure/table/reinforced,
-/obj/item/reagent_containers/glass/beaker/large,
-/obj/item/reagent_containers/glass/beaker,
-/obj/item/reagent_containers/dropper,
-/turf/open/floor/plasteel/vault/side,
-/area/shuttle/syndicate/medical)
-"AD" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 10
- },
-/turf/open/floor/mineral/plastitanium,
-/area/shuttle/syndicate/medical)
-"AE" = (
-/obj/effect/turf_decal/stripes/line,
-/turf/open/floor/mineral/plastitanium,
-/area/shuttle/syndicate/medical)
-"AF" = (
-/obj/effect/turf_decal/stripes/line,
-/turf/open/floor/mineral/plastitanium,
-/area/shuttle/syndicate/hallway)
-"AG" = (
-/obj/effect/turf_decal/stripes/line,
-/turf/open/floor/mineral/plastitanium,
-/area/shuttle/syndicate/armory)
-"AH" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 6
- },
-/turf/open/floor/mineral/plastitanium,
-/area/shuttle/syndicate/armory)
-"AI" = (
-/obj/structure/closet/syndicate/nuclear,
-/obj/effect/turf_decal/bot_white,
-/turf/open/floor/plasteel/dark,
-/area/shuttle/syndicate/armory)
"AJ" = (
/obj/structure/chair/comfy/brown{
color = "#596479";
@@ -10003,7 +9381,7 @@
},
/area/centcom/ferry)
"AT" = (
-/obj/structure/sign/bluecross_2,
+/obj/structure/sign/departments/medbay/alt,
/turf/closed/indestructible/riveted,
/area/centcom/control)
"AU" = (
@@ -10096,111 +9474,6 @@
/obj/item/reagent_containers/food/snacks/meat/slab/xeno,
/turf/open/floor/grass,
/area/wizard_station)
-"Bj" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/item/bodypart/r_arm/robot,
-/obj/item/bodypart/l_arm/robot,
-/obj/structure/table/reinforced,
-/obj/item/toy/plush/nukeplushie,
-/turf/open/floor/plasteel/vault/side,
-/area/shuttle/syndicate/medical)
-"Bk" = (
-/obj/machinery/door/window{
- dir = 1;
- name = "Surgery";
- req_access_txt = "150"
- },
-/turf/open/floor/plasteel/vault/side,
-/area/shuttle/syndicate/medical)
-"Bl" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/turf/open/floor/plasteel/vault/side,
-/area/shuttle/syndicate/medical)
-"Bm" = (
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/item/storage/firstaid/regular{
- pixel_x = 3;
- pixel_y = 3
- },
-/obj/item/storage/firstaid/brute,
-/obj/item/storage/firstaid/regular{
- pixel_x = -3;
- pixel_y = -3
- },
-/obj/structure/table/reinforced,
-/turf/open/floor/plasteel/vault/side,
-/area/shuttle/syndicate/medical)
-"Bn" = (
-/obj/item/storage/firstaid/regular{
- pixel_x = 3;
- pixel_y = 3
- },
-/obj/item/storage/firstaid/fire,
-/obj/item/storage/firstaid/regular{
- pixel_x = -3;
- pixel_y = -3
- },
-/obj/structure/table/reinforced,
-/turf/open/floor/plasteel/vault/side,
-/area/shuttle/syndicate/medical)
-"Bo" = (
-/turf/open/floor/plasteel/vault,
-/area/shuttle/syndicate/hallway)
-"Bp" = (
-/obj/item/device/sbeacondrop/bomb{
- pixel_y = 5
- },
-/obj/item/device/sbeacondrop/bomb,
-/obj/structure/table/reinforced,
-/turf/open/floor/plasteel/vault/side,
-/area/shuttle/syndicate/armory)
-"Bq" = (
-/obj/item/grenade/syndieminibomb{
- pixel_x = 4;
- pixel_y = 2
- },
-/obj/item/grenade/syndieminibomb{
- pixel_x = -1
- },
-/obj/structure/table/reinforced,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/item/grenade/plastic/c4,
-/obj/item/grenade/plastic/c4,
-/obj/item/grenade/plastic/c4,
-/obj/item/grenade/plastic/c4,
-/obj/item/grenade/plastic/c4,
-/turf/open/floor/plasteel/vault/side,
-/area/shuttle/syndicate/armory)
-"Br" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/turf/open/floor/plasteel/vault/side,
-/area/shuttle/syndicate/armory)
-"Bs" = (
-/obj/machinery/door/window{
- dir = 1;
- name = "Technological Storage";
- req_access_txt = "150"
- },
-/turf/open/floor/plasteel/vault/side,
-/area/shuttle/syndicate/armory)
-"Bt" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/table/reinforced,
-/obj/item/device/aicard,
-/turf/open/floor/plasteel/vault/side,
-/area/shuttle/syndicate/armory)
"Bu" = (
/obj/structure/table/wood,
/obj/item/paper_bin,
@@ -10445,50 +9718,6 @@
},
/turf/open/floor/engine/cult,
/area/wizard_station)
-"BT" = (
-/obj/item/surgicaldrill,
-/obj/item/circular_saw,
-/obj/structure/table/reinforced,
-/obj/machinery/light{
- dir = 8
- },
-/turf/open/floor/plasteel/vault{
- dir = 5
- },
-/area/shuttle/syndicate/medical)
-"BU" = (
-/obj/structure/sink{
- dir = 4;
- pixel_x = 11
- },
-/obj/structure/mirror{
- pixel_x = 30
- },
-/turf/open/floor/plasteel/vault{
- dir = 5
- },
-/area/shuttle/syndicate/medical)
-"BV" = (
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/shuttle/syndicate/hallway)
-"BW" = (
-/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/hallway)
-"BX" = (
-/obj/machinery/light{
- dir = 4
- },
-/turf/open/floor/plasteel/vault{
- dir = 5
- },
-/area/shuttle/syndicate/armory)
"BY" = (
/obj/item/toy/figure/syndie,
/turf/open/floor/plating/asteroid/snow/airless,
@@ -10576,46 +9805,6 @@
},
/turf/open/floor/engine/cult,
/area/wizard_station)
-"Cj" = (
-/obj/item/cautery,
-/obj/item/scalpel,
-/obj/structure/table/reinforced,
-/turf/open/floor/plasteel/vault{
- dir = 5
- },
-/area/shuttle/syndicate/medical)
-"Ck" = (
-/obj/structure/table/optable,
-/obj/item/surgical_drapes,
-/obj/effect/turf_decal/bot_white,
-/turf/open/floor/plasteel/dark,
-/area/shuttle/syndicate/medical)
-"Cl" = (
-/obj/item/retractor,
-/obj/item/hemostat,
-/obj/structure/table/reinforced,
-/turf/open/floor/plasteel/vault{
- dir = 5
- },
-/area/shuttle/syndicate/medical)
-"Cm" = (
-/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/hallway)
-"Cn" = (
-/obj/machinery/recharge_station,
-/turf/open/floor/circuit/red,
-/area/shuttle/syndicate/armory)
-"Co" = (
-/obj/machinery/telecomms/allinone{
- intercept = 1
- },
-/turf/open/floor/circuit/red,
-/area/shuttle/syndicate/armory)
"Cp" = (
/obj/structure/statue/uranium/nuke,
/turf/open/floor/plating/asteroid/snow/airless,
@@ -10755,7 +9944,7 @@
/obj/structure/table/reinforced,
/obj/item/storage/box/emps,
/obj/item/gun/energy/ionrifle,
-/obj/structure/sign/bluecross_2{
+/obj/structure/sign/departments/medbay/alt{
pixel_y = -32
},
/obj/effect/turf_decal/stripes/line{
@@ -10888,37 +10077,6 @@
dir = 8
},
/area/centcom/evac)
-"CS" = (
-/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/medical)
-"CT" = (
-/obj/structure/shuttle/engine/propulsion/left,
-/obj/effect/turf_decal/stripes/line,
-/turf/open/floor/plating/airless,
-/area/shuttle/syndicate/hallway)
-"CU" = (
-/obj/structure/shuttle/engine/propulsion,
-/obj/effect/turf_decal/stripes/line,
-/turf/open/floor/plating/airless,
-/area/shuttle/syndicate/hallway)
-"CV" = (
-/obj/structure/shuttle/engine/propulsion/right,
-/obj/effect/turf_decal/stripes/line,
-/turf/open/floor/plating/airless,
-/area/shuttle/syndicate/hallway)
-"CW" = (
-/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/armory)
"CX" = (
/obj/structure/closet/secure_closet/security,
/obj/item/storage/belt/security/full,
@@ -11030,48 +10188,6 @@
dir = 8
},
/area/centcom/evac)
-"Di" = (
-/obj/structure/shuttle/engine/propulsion/left,
-/obj/effect/turf_decal/stripes/line,
-/turf/open/floor/plating/airless,
-/area/shuttle/syndicate/medical)
-"Dj" = (
-/obj/structure/shuttle/engine/propulsion,
-/obj/effect/turf_decal/stripes/line,
-/turf/open/floor/plating/airless,
-/area/shuttle/syndicate/medical)
-"Dk" = (
-/obj/structure/shuttle/engine/propulsion/right,
-/obj/effect/turf_decal/stripes/line,
-/turf/open/floor/plating/airless,
-/area/shuttle/syndicate/medical)
-"Dl" = (
-/obj/machinery/porta_turret/syndicate{
- dir = 6
- },
-/turf/closed/wall/mineral/plastitanium,
-/area/shuttle/syndicate/medical)
-"Dm" = (
-/obj/machinery/porta_turret/syndicate{
- dir = 10
- },
-/turf/closed/wall/mineral/plastitanium,
-/area/shuttle/syndicate/armory)
-"Dn" = (
-/obj/structure/shuttle/engine/propulsion/left,
-/obj/effect/turf_decal/stripes/line,
-/turf/open/floor/plating/airless,
-/area/shuttle/syndicate/armory)
-"Do" = (
-/obj/structure/shuttle/engine/propulsion,
-/obj/effect/turf_decal/stripes/line,
-/turf/open/floor/plating/airless,
-/area/shuttle/syndicate/armory)
-"Dp" = (
-/obj/structure/shuttle/engine/propulsion/right,
-/obj/effect/turf_decal/stripes/line,
-/turf/open/floor/plating/airless,
-/area/shuttle/syndicate/armory)
"Dq" = (
/obj/machinery/door/airlock/external,
/obj/effect/turf_decal/stripes/line{
@@ -12178,7 +11294,7 @@
/turf/open/floor/plasteel,
/area/tdome/tdomeobserve)
"Gw" = (
-/obj/structure/sign/nosmoking_2,
+/obj/structure/sign/warning/nosmoking,
/turf/closed/indestructible/riveted,
/area/tdome/tdomeobserve)
"Gx" = (
@@ -12353,7 +11469,7 @@
/area/tdome/tdomeobserve)
"GL" = (
/obj/structure/table/wood,
-/obj/structure/sign/goldenplaque{
+/obj/structure/sign/plaques/golden{
pixel_y = 32
},
/obj/item/clothing/accessory/lawyers_badge{
@@ -12374,7 +11490,7 @@
/area/tdome/tdomeobserve)
"GO" = (
/obj/structure/table/wood,
-/obj/structure/sign/goldenplaque{
+/obj/structure/sign/plaques/golden{
pixel_y = 32
},
/obj/item/clothing/accessory/medal/silver{
@@ -12579,7 +11695,7 @@
/area/tdome/tdomeobserve)
"Hr" = (
/obj/structure/table/wood,
-/obj/structure/sign/atmosplaque/thunderdome{
+/obj/structure/sign/plaques/thunderdome{
pixel_y = -32
},
/obj/item/clothing/accessory/medal/gold{
@@ -12597,7 +11713,7 @@
/area/tdome/tdomeobserve)
"Ht" = (
/obj/structure/table/wood,
-/obj/structure/sign/atmosplaque/thunderdome{
+/obj/structure/sign/plaques/thunderdome{
pixel_y = -32
},
/obj/item/clothing/accessory/medal{
@@ -13898,12 +13014,6 @@
"KS" = (
/turf/closed/wall/mineral/titanium/interior,
/area/centcom/evac)
-"KT" = (
-/obj/machinery/computer/camera_advanced{
- dir = 4
- },
-/turf/open/floor/wood,
-/area/wizard_station)
"KU" = (
/obj/structure/closet/emcloset,
/turf/open/floor/mineral/titanium/blue,
@@ -14313,29 +13423,6 @@
},
/turf/open/floor/plasteel,
/area/tdome/arena)
-"Mt" = (
-/obj/structure/chair{
- dir = 4;
- name = "tactical chair"
- },
-/obj/effect/turf_decal/bot_white,
-/turf/open/floor/plasteel/dark,
-/area/shuttle/syndicate/airlock)
-"Mu" = (
-/obj/structure/table/reinforced,
-/obj/item/storage/toolbox/syndicate,
-/obj/item/crowbar/red,
-/obj/effect/turf_decal/stripes/line{
- dir = 9
- },
-/turf/open/floor/mineral/plastitanium,
-/area/shuttle/syndicate/airlock)
-"Mw" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/floor/mineral/plastitanium,
-/area/shuttle/syndicate/airlock)
"My" = (
/obj/docking_port/stationary{
area_type = /area/syndicate_mothership;
@@ -14346,63 +13433,30 @@
height = 17;
id = "syndicate_away";
name = "syndicate recon outpost";
+ roundstart_template = /datum/map_template/shuttle/infiltrator/basic;
turf_type = /turf/open/floor/plating/asteroid/snow;
width = 23
},
-/obj/machinery/door/poddoor{
- id = "smindicate";
- name = "outer blast door"
- },
-/obj/machinery/button/door{
- id = "smindicate";
- name = "external door control";
- pixel_y = 26;
- req_access_txt = "150"
- },
-/obj/docking_port/mobile{
- dheight = 1;
- dir = 8;
- dwidth = 12;
- height = 17;
- hidden = 1;
- id = "syndicate";
- movement_force = list("KNOCKDOWN" = 0, "THROW" = 0);
- name = "syndicate infiltrator";
- port_direction = 4;
- roundstart_move = null;
- width = 23
- },
-/obj/structure/fans/tiny,
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/mineral/plastitanium,
-/area/shuttle/syndicate/airlock)
-"Mz" = (
-/turf/open/floor/plasteel/dark,
-/area/shuttle/syndicate/airlock)
-"MC" = (
-/obj/structure/rack,
-/obj/item/clothing/suit/space/syndicate/black/red,
-/obj/item/clothing/head/helmet/space/syndicate/black/red,
-/obj/effect/turf_decal/bot_white,
-/obj/effect/turf_decal/stripes/line{
- dir = 10
- },
-/turf/open/floor/mineral/plastitanium,
-/area/shuttle/syndicate/airlock)
+/turf/open/floor/plating/asteroid/snow/airless,
+/area/syndicate_mothership)
"MD" = (
/obj/effect/light_emitter{
set_cap = 1;
set_luminosity = 4
},
-/obj/structure/sign/securearea{
+/obj/structure/sign/warning/securearea{
desc = "A warning sign which reads 'FOURTH WALL'.";
name = "\improper FOURTH WALL";
pixel_x = -32
},
/turf/open/floor/plating/asteroid/snow/airless,
/area/syndicate_mothership)
+"ME" = (
+/obj/machinery/computer/camera_advanced{
+ dir = 4
+ },
+/turf/open/floor/wood,
+/area/wizard_station)
(1,1,1) = {"
aa
@@ -16285,7 +15339,7 @@ fX
fX
fX
fX
-fY
+fX
fX
fX
fX
@@ -17056,7 +16110,7 @@ fX
fX
fX
fX
-fX
+fY
fX
fX
fX
@@ -18334,21 +17388,21 @@ aa
aa
aa
aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
+fX
+fX
+fX
+fX
+fX
+fX
+fX
+fX
+fX
+fX
+fX
+fX
+fX
+fX
+fX
aa
aa
aa
@@ -18591,21 +17645,21 @@ aa
aa
aa
aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
+fX
+fX
+fX
+fX
+fX
+fX
+fX
+fX
+fX
+fX
+fX
+fX
+fX
+fX
+fX
aa
aa
aa
@@ -18848,21 +17902,21 @@ aa
aa
aa
aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
+fX
+fX
+fX
+fX
+fX
+fX
+fX
+fX
+fX
+fX
+fX
+fX
+fX
+fX
+fX
aa
aa
aa
@@ -19105,21 +18159,21 @@ aa
aa
aa
aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
+fX
+fX
+fX
+fX
+fX
+fX
+fX
+fX
+fX
+fX
+fX
+fX
+fX
+fX
+fX
aa
aa
aa
@@ -19362,21 +18416,21 @@ aa
aa
aa
aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
+fX
+fX
+fX
+fX
+fX
+fX
+fX
+fX
+fX
+fX
+fX
+fX
+fX
+fX
+fX
aa
aa
aa
@@ -19461,7 +18515,7 @@ lI
lI
qE
qE
-KT
+ME
vj
ya
qZ
@@ -19619,21 +18673,21 @@ aa
aa
aa
aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
+fX
+fX
+fX
+fX
+fX
+fX
+fX
+fX
+fX
+fX
+fX
+fX
+fX
+fX
+fX
aa
aa
aa
@@ -26656,16 +25710,16 @@ kt
kt
kt
kt
-yc
-yd
-yd
-yd
-yd
-yd
-yd
-yd
-yd
-yd
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
kt
hl
hh
@@ -26907,22 +25961,22 @@ hl
hl
hl
kt
-tY
-tZ
-tZ
-tZ
-tZ
-tZ
-yd
-yL
-zs
-yL
-AC
-Bj
-BT
-Cj
-CS
-Di
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
kt
hl
hh
@@ -27164,22 +26218,22 @@ hl
hl
hl
kt
-tZ
-uG
-vo
-vo
-vo
-xA
-yd
-yM
-zt
-zR
-zR
-Bk
-zR
-Ck
-CS
-Dj
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
kt
hl
hh
@@ -27421,22 +26475,22 @@ kt
kt
kt
kt
-tZ
-uH
-uH
-uH
-uH
-uH
-ye
-yN
-zt
-zS
-AD
-Bl
-BU
-Cl
-CS
-Dk
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
kt
hl
hh
@@ -27671,29 +26725,29 @@ hl
hl
my
hl
-oS
-oT
-oT
-oT
-oT
hl
hl
-tZ
-uH
-uH
-uH
-uH
-uH
-yd
-yO
-zt
-zT
-AE
-Bm
-yf
-yd
-yd
-Dl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
kt
hl
hh
@@ -27928,26 +26982,26 @@ hl
hl
hl
hl
-oT
-px
-pR
-qI
-oT
-rY
hl
-tZ
-uI
-vp
-wf
-wR
-xB
-yd
-yP
-zt
-zT
-AE
-Bn
-yd
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
hl
hl
kt
@@ -28185,28 +27239,28 @@ hl
hl
hl
hl
-oU
-py
-pS
-qI
-oT
-rZ
-rZ
-tZ
-tZ
-tZ
-tZ
-wS
-xC
-yf
-yQ
-yQ
-zU
-yQ
-yd
-yd
-rZ
-rZ
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
kt
hl
hl
@@ -28442,28 +27496,28 @@ hl
hl
hl
nx
-oU
-pz
-pT
-qI
-rb
-sa
-sY
-ua
-sY
-sY
-wg
-sb
-sb
-sb
-sb
-zu
-zV
-AF
-Bo
-BV
-Cm
-CT
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
kt
hl
hl
@@ -28699,28 +27753,28 @@ hl
hl
hl
hl
-oU
-pA
-pU
-qI
-rc
-sb
-sZ
-sZ
-sZ
-sb
-wh
-sb
-sZ
-sZ
-sZ
-sZ
-zV
-AF
-Bo
-BW
-Cm
-CU
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
kt
hl
hl
@@ -28956,28 +28010,28 @@ hl
my
hl
hl
-oU
-pB
-pT
-qI
-oT
-sc
-ta
-ub
-ta
-ta
-wg
-sb
-sb
-sb
-sb
-zv
-zV
-AF
-Bo
-BV
-Cm
-CV
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
kt
hl
hl
@@ -29213,28 +28267,28 @@ hl
hl
hl
hl
-oU
-pC
-pV
-qI
-oT
-rZ
-rZ
-vq
-vq
-vq
-vq
-wT
-xD
-yg
-yR
-yR
-zW
-yR
-yh
-yh
-rZ
-rZ
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
kt
hl
hl
@@ -29470,26 +28524,26 @@ hl
hl
hl
hl
-oT
-pD
-pW
-qI
-oT
-sd
hl
-vq
-Mt
-Mt
-uc
-Mz
-Mt
-yh
-yS
-zw
-zX
-AG
-Bp
-yh
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
hl
hl
kt
@@ -29727,29 +28781,29 @@ hl
hl
hl
hl
-oV
-oT
-oT
-oT
-oT
hl
hl
-vq
-wU
-wU
-wU
-wU
-wU
-yh
-yT
-zw
-zX
-AG
-Bq
-yg
-yh
-yh
-Dm
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
kt
hl
hh
@@ -29991,22 +29045,22 @@ kt
kt
kt
kt
-vq
-wU
-wU
-wU
-wU
-wU
-yi
-yU
-zw
-zY
-AH
-Br
-zZ
-Cn
-CW
-Dn
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
kt
hl
hh
@@ -30248,22 +29302,22 @@ nx
hl
hl
kt
-vq
-Mu
-Mw
-Mw
-Mw
-MC
-yh
-yV
-zw
-zZ
-zZ
-Bs
-zZ
-Co
-CW
-Do
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
kt
hl
hh
@@ -30505,22 +29559,22 @@ hl
hl
hl
kt
-vt
-vq
-vq
+hl
+hl
+hl
My
-vs
-vq
-yh
-yW
-zw
-Aa
-AI
-Bt
-BX
-Cn
-CW
-Dp
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
kt
hl
hh
@@ -30768,16 +29822,16 @@ nz
uJ
nz
kt
-yj
-yh
-yh
-yh
-yh
-yh
-yh
-yh
-yh
-yh
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
kt
hl
hh
@@ -51067,7 +50121,7 @@ qb
mD
rs
sw
-tw
+pR
sw
uQ
mD
diff --git a/_maps/map_files/generic/Space2.dmm b/_maps/map_files/generic/Space2.dmm
new file mode 100644
index 0000000000..6621535fd3
--- /dev/null
+++ b/_maps/map_files/generic/Space2.dmm
@@ -0,0 +1,65540 @@
+//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
+"a" = (
+/turf/open/space/basic,
+/area/space)
+
+(1,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(2,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(3,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(4,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(5,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(6,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(7,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(8,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(9,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(10,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(11,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(12,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(13,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(14,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(15,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(16,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(17,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(18,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(19,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(20,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(21,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(22,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(23,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(24,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(25,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(26,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(27,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(28,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(29,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(30,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(31,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(32,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(33,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(34,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(35,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(36,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(37,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(38,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(39,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(40,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(41,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(42,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(43,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(44,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(45,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(46,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(47,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(48,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(49,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(50,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(51,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(52,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(53,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(54,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(55,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(56,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(57,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(58,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(59,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(60,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(61,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(62,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(63,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(64,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(65,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(66,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(67,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(68,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(69,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(70,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(71,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(72,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(73,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(74,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(75,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(76,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(77,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(78,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(79,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(80,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(81,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(82,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(83,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(84,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(85,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(86,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(87,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(88,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(89,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(90,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(91,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(92,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(93,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(94,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(95,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(96,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(97,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(98,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(99,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(100,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(101,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(102,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(103,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(104,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(105,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(106,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(107,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(108,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(109,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(110,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(111,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(112,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(113,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(114,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(115,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(116,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(117,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(118,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(119,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(120,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(121,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(122,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(123,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(124,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(125,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(126,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(127,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(128,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(129,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(130,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(131,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(132,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(133,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(134,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(135,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(136,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(137,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(138,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(139,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(140,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(141,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(142,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(143,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(144,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(145,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(146,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(147,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(148,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(149,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(150,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(151,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(152,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(153,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(154,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(155,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(156,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(157,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(158,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(159,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(160,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(161,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(162,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(163,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(164,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(165,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(166,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(167,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(168,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(169,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(170,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(171,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(172,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(173,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(174,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(175,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(176,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(177,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(178,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(179,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(180,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(181,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(182,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(183,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(184,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(185,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(186,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(187,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(188,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(189,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(190,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(191,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(192,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(193,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(194,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(195,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(196,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(197,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(198,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(199,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(200,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(201,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(202,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(203,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(204,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(205,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(206,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(207,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(208,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(209,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(210,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(211,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(212,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(213,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(214,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(215,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(216,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(217,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(218,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(219,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(220,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(221,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(222,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(223,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(224,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(225,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(226,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(227,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(228,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(229,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(230,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(231,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(232,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(233,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(234,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(235,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(236,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(237,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(238,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(239,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(240,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(241,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(242,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(243,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(244,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(245,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(246,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(247,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(248,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(249,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(250,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(251,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(252,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(253,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(254,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(255,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
diff --git a/_maps/map_files/generic/SpaceDock.dmm b/_maps/map_files/generic/SpaceDock.dmm
index b0a9ccbf71..286ca3e97d 100644
--- a/_maps/map_files/generic/SpaceDock.dmm
+++ b/_maps/map_files/generic/SpaceDock.dmm
@@ -10,7 +10,8 @@
height = 22;
id = "whiteship_away";
name = "Deep Space";
- width = 35
+ width = 35;
+ json_key = "whiteship"
},
/turf/open/space,
/area/space)
diff --git a/_maps/metastation.json b/_maps/metastation.json
index bb22737c31..fdadfb058c 100644
--- a/_maps/metastation.json
+++ b/_maps/metastation.json
@@ -1,5 +1,11 @@
{
"map_name": "MetaStation",
- "map_path": "cit_map_files/MetaStation",
- "map_file": "MetaStation.dmm"
+ "map_path": "map_files/MetaStation",
+ "map_file": "MetaStation.dmm",
+ "shuttles": {
+ "cargo": "cargo_box",
+ "ferry": "ferry_fancy",
+ "whiteship": "whiteship_meta",
+ "emergency": "emergency_meta"
+ }
}
diff --git a/_maps/ministation.dm b/_maps/ministation.dm
deleted file mode 100644
index 268439050a..0000000000
--- a/_maps/ministation.dm
+++ /dev/null
@@ -1,87 +0,0 @@
-/*
-MiniStation FAQ - Mod Created By Giacom
-
-
-What is it?
-
-A mod of tgstation 13 that is modified for low population servers; with simplified jobs, maps, duties and command structure.
-
-How do I run it?
-
-Simply tick this file, and only this file in the _maps folder, then compile and you will be running MiniStation.
-
-Who is the target audience?
-
-Server hosters who want to host a server for a player count of around 5 to 20 people.
-
-What about the map?
-
-The map has been created from the ground up with population size in mind.
-
-What about the jobs?
-
-Many jobs have been combined or just plainly cut out. These are the remaining jobs with their duties next to them.
-
- * Captain - Make sure your station is running.
- * HoP - You're second in command, protect the Captain and be his right hand man.
- * Cargo Tech x3 - Running cargo bay and mining minerals for the station.
- * Bartender - Keeping the bar, serving drinks and food. Hire the unemployeed to grow food for you, or do it yourself.
- * Janitor - Cleans the station, removes litter and empty trash bins to be recycled by the crusher.
- * Station Engineer x4 - Keeping the power running and fixing station damage.
- * Security Officer x4 - Protecting the crewmembers and serving space law.
- * Detective - Using forensic science to help security officers catch criminals.
- * Scientist x4 - Research and development of new technologies and create bombs.
- * Medical Doctor x4 - Healing the crew, performing surgeries and cloning dead crew.
- * Chemist - Creating useful chemicals for the crew to use.
- * Clown - Create laughter and boost the morale of the crew. Honk!
- * Assistant xInfinity - Not in charge at all.
-
-There will be 26 job slots (not including Assistant) available on MiniStation; the HoP can add more from his ID computer.
-There is a more simplified command system, with the Captain being the big boss and the HoP being second in command.
-The heads will have control over all departments and jobs.
-
-What else has changed?
-
-Changes to the uplinks were made to discourage murderboning, the rest is the same.
-
-*/
-
-#if !defined(MAP_FILE)
-
- #define TITLESCREEN "title" //Add an image in misc/fullscreen.dmi, and set this define to the icon_state, to set a custom titlescreen for your map
-
- #define MINETYPE "mining"
-
- #include "map_files\MiniStation\MiniStation.dmm"
- #include "map_files\generic\z2.dmm"
- #include "map_files\generic\z3.dmm"
- #include "map_files\generic\z4.dmm"
- #include "map_files\MiniStation\z5.dmm"
- #include "map_files\generic\z6.dmm"
- #include "map_files\generic\z7.dmm"
- #include "map_files\generic\z8.dmm"
- #include "map_files\generic\z9.dmm"
- #include "map_files\generic\z10.dmm"
- #include "map_files\generic\z11.dmm"
-
- #define MAP_PATH "map_files/MiniStation"
- #define MAP_FILE "MiniStation.dmm"
- #define MAP_NAME "MiniStation"
-
- #define MAP_TRANSITION_CONFIG DEFAULT_MAP_TRANSITION_CONFIG
-
- #if !defined(MAP_OVERRIDE_FILES)
- #define MAP_OVERRIDE_FILES
- #include "map_files\MiniStation\misc.dm"
- #include "map_files\MiniStation\cargopacks.dm"
- #include "map_files\MiniStation\telecomms.dm"
- #include "map_files\MiniStation\uplink_item.dm"
- #include "map_files\MiniStation\job\jobs.dm"
- #include "map_files\MiniStation\job\removed.dm"
- #endif
-
-#elif !defined(MAP_OVERRIDE)
-
- #warn a map has already been included, ignoring ministation.
-
-#endif
diff --git a/_maps/omegastation.json b/_maps/omegastation.json
index 69c667b724..805ec5eccc 100644
--- a/_maps/omegastation.json
+++ b/_maps/omegastation.json
@@ -1,5 +1,10 @@
{
"map_name": "OmegaStation",
- "map_path": "cit_map_files/OmegaStation",
- "map_file": "OmegaStation.dmm"
-}
\ No newline at end of file
+ "map_path": "map_files/OmegaStation",
+ "map_file": "OmegaStation.dmm",
+ "shuttles": {
+ "emergency": "emergency_omega",
+ "ferry": "ferry_fancy",
+ "cargo": "cargo_delta"
+ }
+}
diff --git a/_maps/pubbystation.json b/_maps/pubbystation.json
index f8253e3c33..f99cca57c5 100644
--- a/_maps/pubbystation.json
+++ b/_maps/pubbystation.json
@@ -1,5 +1,11 @@
{
"map_name": "PubbyStation",
- "map_path": "cit_map_files/PubbyStation",
- "map_file": "PubbyStation.dmm"
-}
\ No newline at end of file
+ "map_path": "map_files/PubbyStation",
+ "map_file": "PubbyStation.dmm",
+ "shuttles": {
+ "emergency": "emergency_pubby",
+ "whiteship": "whiteship_pubby",
+ "ferry": "ferry_fancy",
+ "cargo": "cargo_box"
+ }
+}
diff --git a/_maps/shuttles/arrival_box.dmm b/_maps/shuttles/arrival_box.dmm
new file mode 100644
index 0000000000..1bd1c69d39
--- /dev/null
+++ b/_maps/shuttles/arrival_box.dmm
@@ -0,0 +1,288 @@
+//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
+"a" = (
+/turf/template_noop,
+/area/template_noop)
+"b" = (
+/turf/closed/wall/mineral/titanium,
+/area/shuttle/arrival)
+"c" = (
+/obj/machinery/door/airlock/titanium{
+ name = "Arrivals Shuttle Airlock"
+ },
+/turf/open/floor/plating,
+/area/shuttle/arrival)
+"d" = (
+/obj/effect/spawner/structure/window/shuttle,
+/turf/open/floor/plating,
+/area/shuttle/arrival)
+"e" = (
+/obj/structure/table,
+/obj/item/storage/firstaid/regular,
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/arrival)
+"f" = (
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/arrival)
+"g" = (
+/obj/machinery/computer/arcade,
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/arrival)
+"h" = (
+/obj/structure/closet/wardrobe/green,
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/arrival)
+"i" = (
+/obj/structure/closet/wardrobe/black,
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/arrival)
+"j" = (
+/obj/structure/closet/wardrobe/mixed,
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/arrival)
+"k" = (
+/obj/structure/closet/wardrobe/grey,
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/arrival)
+"l" = (
+/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)
+"m" = (
+/obj/structure/shuttle/engine/heater{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/open/floor/plating/airless,
+/area/shuttle/arrival)
+"n" = (
+/obj/structure/shuttle/engine/propulsion/burst/right{
+ dir = 4
+ },
+/turf/open/floor/plating/airless,
+/area/shuttle/arrival)
+"o" = (
+/obj/structure/window/shuttle,
+/obj/structure/grille,
+/turf/open/floor/plating,
+/area/shuttle/arrival)
+"p" = (
+/obj/structure/chair,
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/arrival)
+"q" = (
+/obj/structure/chair,
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/arrival)
+"r" = (
+/obj/structure/chair{
+ dir = 8
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/arrival)
+"s" = (
+/obj/structure/shuttle/engine/propulsion{
+ dir = 4
+ },
+/turf/open/floor/plating/airless,
+/area/shuttle/arrival)
+"t" = (
+/obj/machinery/door/airlock/titanium{
+ name = "Arrivals Shuttle Airlock"
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/arrival)
+"u" = (
+/obj/structure/shuttle/engine/propulsion{
+ dir = 4
+ },
+/obj/docking_port/mobile/arrivals,
+/turf/open/floor/plating/airless,
+/area/shuttle/arrival)
+"v" = (
+/obj/structure/chair{
+ dir = 1
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/arrival)
+"w" = (
+/obj/structure/chair{
+ dir = 1
+ },
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/arrival)
+"x" = (
+/obj/structure/closet/emcloset,
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/arrival)
+"y" = (
+/obj/machinery/light,
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/arrival)
+"z" = (
+/obj/item/device/radio/intercom{
+ name = "Station Intercom (General)";
+ pixel_y = -29
+ },
+/obj/machinery/light,
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/arrival)
+"A" = (
+/obj/structure/shuttle/engine/propulsion/burst/left{
+ dir = 4
+ },
+/turf/open/floor/plating/airless,
+/area/shuttle/arrival)
+
+(1,1,1) = {"
+a
+b
+o
+d
+d
+b
+a
+"}
+(2,1,1) = {"
+a
+b
+p
+f
+v
+b
+a
+"}
+(3,1,1) = {"
+a
+b
+q
+f
+w
+b
+a
+"}
+(4,1,1) = {"
+b
+b
+b
+t
+b
+b
+b
+"}
+(5,1,1) = {"
+b
+e
+f
+f
+f
+x
+b
+"}
+(6,1,1) = {"
+c
+f
+r
+r
+r
+f
+c
+"}
+(7,1,1) = {"
+b
+g
+f
+f
+f
+y
+b
+"}
+(8,1,1) = {"
+d
+h
+r
+r
+r
+f
+d
+"}
+(9,1,1) = {"
+d
+i
+f
+f
+f
+f
+d
+"}
+(10,1,1) = {"
+d
+j
+r
+r
+r
+f
+d
+"}
+(11,1,1) = {"
+d
+k
+f
+f
+f
+f
+d
+"}
+(12,1,1) = {"
+b
+l
+r
+r
+r
+z
+b
+"}
+(13,1,1) = {"
+c
+f
+f
+f
+f
+f
+c
+"}
+(14,1,1) = {"
+b
+m
+m
+m
+m
+m
+b
+"}
+(15,1,1) = {"
+b
+n
+s
+u
+s
+A
+b
+"}
diff --git a/_maps/shuttles/arrival_delta.dmm b/_maps/shuttles/arrival_delta.dmm
new file mode 100644
index 0000000000..df4976c7e4
--- /dev/null
+++ b/_maps/shuttles/arrival_delta.dmm
@@ -0,0 +1,565 @@
+//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
+"a" = (
+/turf/template_noop,
+/area/template_noop)
+"b" = (
+/obj/structure/shuttle/engine/propulsion{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plating/airless,
+/area/shuttle/arrival)
+"c" = (
+/obj/docking_port/mobile/arrivals{
+ dir = 2;
+ dwidth = 4;
+ height = 17;
+ name = "delta arrivals shuttle";
+ timid = 1;
+ width = 9
+ },
+/turf/closed/wall/mineral/plastitanium,
+/area/shuttle/arrival)
+"d" = (
+/turf/closed/wall/mineral/plastitanium,
+/area/shuttle/arrival)
+"e" = (
+/obj/structure/window/reinforced,
+/obj/structure/shuttle/engine/heater{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plating/airless,
+/area/shuttle/arrival)
+"f" = (
+/turf/closed/wall/mineral/titanium/nodiagonal,
+/area/shuttle/arrival)
+"g" = (
+/turf/closed/wall/mineral/titanium,
+/area/shuttle/arrival)
+"h" = (
+/obj/structure/window/shuttle,
+/obj/structure/grille,
+/turf/open/floor/plating,
+/area/shuttle/arrival)
+"i" = (
+/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/tank/internals/emergency_oxygen/double{
+ pixel_x = 3
+ },
+/obj/item/tank/internals/emergency_oxygen/double{
+ pixel_x = 3
+ },
+/obj/item/tank/internals/emergency_oxygen/double{
+ pixel_x = 3
+ },
+/obj/item/tank/internals/emergency_oxygen/double{
+ pixel_x = 3
+ },
+/obj/item/tank/internals/emergency_oxygen/double{
+ pixel_x = 3
+ },
+/obj/item/clothing/mask/breath{
+ pixel_x = -3;
+ pixel_y = -3
+ },
+/obj/item/clothing/mask/breath{
+ pixel_x = -3;
+ pixel_y = -3
+ },
+/obj/item/clothing/mask/breath{
+ pixel_x = -3;
+ pixel_y = -3
+ },
+/obj/item/clothing/mask/breath{
+ pixel_x = -3;
+ pixel_y = -3
+ },
+/obj/item/clothing/mask/breath{
+ pixel_x = -3;
+ pixel_y = -3
+ },
+/obj/item/clothing/head/hardhat/orange{
+ name = "protective hat";
+ pixel_y = 9
+ },
+/obj/item/clothing/head/hardhat/orange{
+ name = "protective hat";
+ pixel_y = 9
+ },
+/obj/item/clothing/head/hardhat/orange{
+ name = "protective hat";
+ pixel_y = 9
+ },
+/obj/item/clothing/head/hardhat/orange{
+ name = "protective hat";
+ pixel_y = 9
+ },
+/obj/item/clothing/head/hardhat/orange{
+ name = "protective hat";
+ pixel_y = 9
+ },
+/obj/structure/closet/crate/internals,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/shuttle/arrival)
+"j" = (
+/obj/effect/turf_decal/delivery,
+/obj/structure/closet/wardrobe/mixed,
+/turf/open/floor/plasteel,
+/area/shuttle/arrival)
+"k" = (
+/obj/structure/table/reinforced,
+/obj/item/storage/toolbox/emergency,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/shuttle/arrival)
+"l" = (
+/obj/structure/table/reinforced,
+/obj/structure/extinguisher_cabinet{
+ pixel_y = 32
+ },
+/obj/item/storage/firstaid/regular{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/storage/firstaid/regular,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/shuttle/arrival)
+"m" = (
+/obj/structure/table/reinforced,
+/obj/machinery/cell_charger,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/shuttle/arrival)
+"n" = (
+/obj/machinery/door/airlock/shuttle{
+ name = "Arrival Shuttle Airlock";
+ req_access_txt = "0"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/shuttle/arrival)
+"o" = (
+/turf/open/floor/plasteel/neutral/side{
+ dir = 8;
+ heat_capacity = 1e+006
+ },
+/area/shuttle/arrival)
+"p" = (
+/turf/open/floor/plasteel/neutral,
+/area/shuttle/arrival)
+"q" = (
+/turf/open/floor/plasteel/neutral/side{
+ dir = 4
+ },
+/area/shuttle/arrival)
+"r" = (
+/obj/machinery/status_display{
+ pixel_x = -32
+ },
+/obj/item/twohanded/required/kirbyplants{
+ icon_state = "plant-21"
+ },
+/turf/open/floor/plasteel/neutral/side{
+ dir = 8;
+ heat_capacity = 1e+006
+ },
+/area/shuttle/arrival)
+"s" = (
+/obj/machinery/holopad,
+/obj/effect/turf_decal/bot,
+/obj/machinery/light,
+/turf/open/floor/plasteel,
+/area/shuttle/arrival)
+"t" = (
+/obj/machinery/ai_status_display{
+ pixel_x = 32
+ },
+/obj/item/twohanded/required/kirbyplants{
+ icon_state = "plant-21"
+ },
+/turf/open/floor/plasteel/neutral/side{
+ dir = 4
+ },
+/area/shuttle/arrival)
+"u" = (
+/obj/structure/chair{
+ dir = 4
+ },
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/shuttle/arrival)
+"v" = (
+/obj/structure/chair{
+ dir = 8
+ },
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/shuttle/arrival)
+"w" = (
+/obj/machinery/requests_console{
+ department = "Arrival shuttle";
+ name = "Arrivals Shuttle console"
+ },
+/turf/closed/wall/mineral/titanium/nodiagonal,
+/area/shuttle/arrival)
+"x" = (
+/obj/structure/flora/ausbushes/grassybush,
+/obj/structure/flora/ausbushes/lavendergrass,
+/obj/structure/flora/ausbushes/ppflowers,
+/obj/structure/flora/ausbushes/sunnybush,
+/obj/structure/window/shuttle,
+/turf/open/floor/grass,
+/area/shuttle/arrival)
+"y" = (
+/obj/structure/flora/ausbushes/grassybush,
+/obj/structure/flora/ausbushes/lavendergrass,
+/obj/structure/flora/ausbushes/ywflowers,
+/obj/structure/flora/ausbushes/fernybush,
+/obj/structure/window/shuttle,
+/turf/open/floor/grass,
+/area/shuttle/arrival)
+"z" = (
+/obj/structure/sign/nanotrasen,
+/turf/closed/wall/mineral/titanium,
+/area/shuttle/arrival)
+"A" = (
+/obj/item/twohanded/required/kirbyplants{
+ icon_state = "plant-21"
+ },
+/turf/open/floor/plasteel/neutral/side{
+ dir = 8;
+ heat_capacity = 1e+006
+ },
+/area/shuttle/arrival)
+"B" = (
+/obj/structure/table/reinforced,
+/obj/item/clipboard,
+/obj/item/toy/figure/assistant,
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/shuttle/arrival)
+"C" = (
+/obj/machinery/vending/wallmed{
+ name = "Emergency NanoMed";
+ req_access_txt = "0";
+ use_power = 0
+ },
+/turf/closed/wall/mineral/titanium/nodiagonal,
+/area/shuttle/arrival)
+"D" = (
+/obj/structure/table/reinforced,
+/obj/item/folder,
+/obj/item/storage/pill_bottle/dice,
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/shuttle/arrival)
+"E" = (
+/obj/item/twohanded/required/kirbyplants{
+ icon_state = "plant-21"
+ },
+/turf/open/floor/plasteel/neutral/side{
+ dir = 4
+ },
+/area/shuttle/arrival)
+"F" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/plasteel/neutral,
+/area/shuttle/arrival)
+"G" = (
+/obj/structure/table/reinforced,
+/obj/item/paper_bin,
+/obj/item/pen,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/shuttle/arrival)
+"H" = (
+/obj/structure/closet/wardrobe/black,
+/turf/open/floor/plasteel/neutral/side,
+/area/shuttle/arrival)
+"I" = (
+/obj/structure/closet/wardrobe/grey,
+/turf/open/floor/plasteel/blue/corner,
+/area/shuttle/arrival)
+"J" = (
+/turf/open/floor/plasteel/blue/side,
+/area/shuttle/arrival)
+"K" = (
+/obj/structure/closet/wardrobe/yellow,
+/turf/open/floor/plasteel/blue/corner{
+ dir = 8
+ },
+/area/shuttle/arrival)
+"L" = (
+/obj/structure/closet/wardrobe/grey,
+/turf/open/floor/plasteel/neutral,
+/area/shuttle/arrival)
+"M" = (
+/obj/structure/table/reinforced,
+/obj/item/storage/briefcase{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/storage/secure/briefcase,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/shuttle/arrival)
+"N" = (
+/obj/machinery/status_display,
+/turf/closed/wall/mineral/titanium,
+/area/shuttle/arrival)
+"O" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 2
+ },
+/obj/machinery/door/airlock/shuttle{
+ name = "Arrival Shuttle Airlock";
+ req_access_txt = "0"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/shuttle/arrival)
+"P" = (
+/obj/machinery/ai_status_display,
+/turf/closed/wall/mineral/titanium,
+/area/shuttle/arrival)
+"Q" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/open/floor/plasteel/blue/side{
+ dir = 8
+ },
+/area/shuttle/arrival)
+"R" = (
+/obj/structure/chair/office/dark,
+/turf/open/floor/plasteel/blue/side{
+ dir = 1
+ },
+/area/shuttle/arrival)
+"S" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/open/floor/plasteel/blue/side{
+ dir = 4
+ },
+/area/shuttle/arrival)
+"U" = (
+/obj/structure/frame/computer{
+ dir = 1
+ },
+/turf/open/floor/plasteel/blue,
+/area/shuttle/arrival)
+"V" = (
+/obj/structure/frame/computer{
+ dir = 1
+ },
+/turf/open/floor/plasteel/blue/side,
+/area/shuttle/arrival)
+
+(1,1,1) = {"
+a
+d
+f
+g
+n
+g
+h
+h
+h
+h
+z
+n
+g
+g
+a
+a
+a
+"}
+(2,1,1) = {"
+b
+d
+g
+i
+o
+r
+u
+u
+u
+u
+A
+o
+G
+g
+a
+a
+a
+"}
+(3,1,1) = {"
+b
+e
+h
+j
+p
+p
+p
+p
+p
+p
+p
+p
+H
+g
+g
+h
+g
+"}
+(4,1,1) = {"
+b
+e
+h
+k
+p
+p
+v
+v
+v
+v
+B
+p
+I
+N
+Q
+U
+h
+"}
+(5,1,1) = {"
+c
+d
+f
+l
+p
+s
+w
+x
+y
+x
+C
+F
+J
+O
+R
+V
+h
+"}
+(6,1,1) = {"
+b
+e
+h
+m
+p
+p
+u
+u
+u
+u
+D
+p
+K
+P
+S
+U
+h
+"}
+(7,1,1) = {"
+b
+e
+h
+j
+p
+p
+p
+p
+p
+p
+p
+p
+L
+g
+g
+h
+g
+"}
+(8,1,1) = {"
+b
+d
+g
+i
+q
+t
+v
+v
+v
+v
+E
+q
+M
+g
+a
+a
+a
+"}
+(9,1,1) = {"
+a
+d
+f
+g
+n
+g
+h
+h
+h
+h
+z
+n
+g
+g
+a
+a
+a
+"}
diff --git a/_maps/shuttles/arrival_pubby.dmm b/_maps/shuttles/arrival_pubby.dmm
new file mode 100644
index 0000000000..7912a7a5ef
--- /dev/null
+++ b/_maps/shuttles/arrival_pubby.dmm
@@ -0,0 +1,246 @@
+//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
+"a" = (
+/turf/template_noop,
+/area/template_noop)
+"b" = (
+/turf/closed/wall/mineral/titanium,
+/area/shuttle/arrival)
+"c" = (
+/obj/machinery/door/airlock/titanium{
+ name = "Arrivals Shuttle Airlock"
+ },
+/turf/open/floor/plating,
+/area/shuttle/arrival)
+"d" = (
+/obj/effect/spawner/structure/window/shuttle,
+/turf/open/floor/plating,
+/area/shuttle/arrival)
+"e" = (
+/obj/structure/table,
+/obj/item/storage/firstaid/regular{
+ pixel_y = 4
+ },
+/obj/item/storage/toolbox/emergency,
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/arrival)
+"f" = (
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/arrival)
+"g" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/structure/sign/poster/official/enlist{
+ pixel_y = 32
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/arrival)
+"h" = (
+/obj/structure/closet/wardrobe/black,
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/arrival)
+"i" = (
+/obj/structure/closet/wardrobe/mixed,
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/arrival)
+"j" = (
+/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)
+"k" = (
+/obj/structure/shuttle/engine/heater{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/open/floor/plating/airless,
+/area/shuttle/arrival)
+"l" = (
+/obj/structure/shuttle/engine/propulsion/burst/right{
+ dir = 4
+ },
+/turf/open/floor/plating/airless,
+/area/shuttle/arrival)
+"m" = (
+/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)
+"n" = (
+/obj/machinery/door/airlock/titanium{
+ name = "Arrivals Shuttle Airlock"
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/arrival)
+"o" = (
+/obj/structure/chair{
+ dir = 8
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/arrival)
+"p" = (
+/obj/structure/shuttle/engine/propulsion{
+ dir = 4
+ },
+/obj/docking_port/mobile/arrivals{
+ height = 13;
+ name = "pubby arrivals shuttle";
+ width = 6
+ },
+/turf/open/floor/plating/airless,
+/area/shuttle/arrival)
+"q" = (
+/obj/machinery/light/small,
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/arrival)
+"r" = (
+/obj/structure/shuttle/engine/propulsion{
+ dir = 4
+ },
+/turf/open/floor/plating/airless,
+/area/shuttle/arrival)
+"s" = (
+/obj/structure/closet/emcloset,
+/obj/item/storage/firstaid/o2,
+/obj/item/tank/internals/emergency_oxygen,
+/obj/item/clothing/mask/breath,
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/arrival)
+"t" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_y = -29
+ },
+/obj/machinery/light,
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/arrival)
+"u" = (
+/obj/item/device/radio/intercom{
+ name = "Station Intercom (General)";
+ pixel_y = -29
+ },
+/obj/machinery/light,
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/arrival)
+"v" = (
+/obj/structure/shuttle/engine/propulsion/burst/left{
+ dir = 4
+ },
+/turf/open/floor/plating/airless,
+/area/shuttle/arrival)
+
+(1,1,1) = {"
+a
+b
+m
+m
+b
+a
+"}
+(2,1,1) = {"
+a
+b
+f
+q
+b
+a
+"}
+(3,1,1) = {"
+b
+b
+n
+n
+b
+b
+"}
+(4,1,1) = {"
+b
+e
+f
+f
+s
+b
+"}
+(5,1,1) = {"
+c
+f
+o
+o
+f
+c
+"}
+(6,1,1) = {"
+b
+g
+f
+f
+t
+b
+"}
+(7,1,1) = {"
+d
+h
+o
+o
+f
+d
+"}
+(8,1,1) = {"
+d
+i
+f
+f
+f
+d
+"}
+(9,1,1) = {"
+d
+f
+o
+o
+f
+d
+"}
+(10,1,1) = {"
+b
+j
+o
+o
+u
+b
+"}
+(11,1,1) = {"
+c
+f
+f
+f
+f
+c
+"}
+(12,1,1) = {"
+b
+k
+k
+k
+k
+b
+"}
+(13,1,1) = {"
+b
+l
+p
+r
+v
+b
+"}
diff --git a/_maps/shuttles/assaultpod_basic.dmm b/_maps/shuttles/assaultpod_basic.dmm
new file mode 100644
index 0000000000..38d6210f01
--- /dev/null
+++ b/_maps/shuttles/assaultpod_basic.dmm
@@ -0,0 +1,68 @@
+//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
+"a" = (
+/turf/template_noop,
+/area/template_noop)
+
+(1,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+"}
+(2,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+"}
+(3,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+"}
+(4,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+"}
+(5,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+"}
+(6,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+"}
+(7,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+"}
diff --git a/_maps/shuttles/cargo_birdboat.dmm b/_maps/shuttles/cargo_birdboat.dmm
index 85c2579597..4abd694656 100644
--- a/_maps/shuttles/cargo_birdboat.dmm
+++ b/_maps/shuttles/cargo_birdboat.dmm
@@ -1,16 +1,7 @@
//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
-"a" = (
-/turf/closed/wall/mineral/titanium/overspace,
-/area/shuttle/supply)
"b" = (
/turf/closed/wall/mineral/titanium,
/area/shuttle/supply)
-"c" = (
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/supply)
-"d" = (
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/supply)
"e" = (
/obj/machinery/conveyor{
dir = 2;
@@ -138,12 +129,6 @@
},
/turf/open/floor/plating,
/area/shuttle/supply)
-"s" = (
-/turf/closed/wall/mineral/titanium/nodiagonal,
-/area/shuttle/supply)
-"t" = (
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/supply)
"u" = (
/obj/structure/window/reinforced{
dir = 1
@@ -151,9 +136,6 @@
/obj/structure/shuttle/engine/heater,
/turf/open/floor/plating/airless,
/area/shuttle/supply)
-"v" = (
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/supply)
"w" = (
/turf/template_noop,
/area/template_noop)
diff --git a/_maps/shuttles/cargo_box.dmm b/_maps/shuttles/cargo_box.dmm
index a63162bae7..8f5a8ef1b4 100644
--- a/_maps/shuttles/cargo_box.dmm
+++ b/_maps/shuttles/cargo_box.dmm
@@ -1,16 +1,7 @@
//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
-"a" = (
-/turf/closed/wall/mineral/titanium/overspace,
-/area/shuttle/supply)
"b" = (
/turf/closed/wall/mineral/titanium,
/area/shuttle/supply)
-"c" = (
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/supply)
-"d" = (
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/supply)
"e" = (
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/supply)
@@ -74,26 +65,9 @@
},
/turf/open/floor/plating,
/area/shuttle/supply)
-"k" = (
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/supply)
"l" = (
/turf/closed/wall/mineral/titanium/interior,
/area/shuttle/supply)
-"m" = (
-/turf/closed/wall/mineral/titanium/interior{
- icon_state = "swall_f6"
- },
-/area/shuttle/supply)
-"n" = (
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/supply)
-"o" = (
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/supply)
-"p" = (
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/supply)
"q" = (
/obj/structure/window/reinforced{
dir = 1
@@ -101,9 +75,6 @@
/obj/structure/shuttle/engine/heater,
/turf/open/floor/plating/airless,
/area/shuttle/supply)
-"r" = (
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/supply)
"s" = (
/turf/template_noop,
/area/template_noop)
diff --git a/_maps/shuttles/cargo_delta.dmm b/_maps/shuttles/cargo_delta.dmm
new file mode 100644
index 0000000000..ba8a8a555f
--- /dev/null
+++ b/_maps/shuttles/cargo_delta.dmm
@@ -0,0 +1,320 @@
+//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
+"a" = (
+/turf/closed/wall/mineral/titanium,
+/area/shuttle/supply)
+"b" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/turf/open/floor/plasteel,
+/area/shuttle/supply)
+"c" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/shuttle/supply)
+"d" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/shuttle/supply)
+"e" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/shuttle/supply)
+"f" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/turf/open/floor/plasteel,
+/area/shuttle/supply)
+"g" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/shuttle/supply)
+"h" = (
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/shuttle/supply)
+"i" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/shuttle/supply)
+"j" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/shuttle/supply)
+"k" = (
+/obj/machinery/conveyor{
+ dir = 8;
+ id = "cargounload"
+ },
+/obj/machinery/door/poddoor{
+ id = "cargounload";
+ name = "supply dock unloading door"
+ },
+/turf/open/floor/plating,
+/area/shuttle/supply)
+"l" = (
+/obj/effect/decal/cleanable/oil,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/shuttle/supply)
+"m" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/shuttle/supply)
+"n" = (
+/obj/machinery/door/airlock/shuttle{
+ name = "Supply Shuttle Airlock";
+ req_access_txt = "31"
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/docking_port/mobile/supply{
+ dir = 4;
+ dwidth = 4;
+ timid = 1;
+ width = 12
+ },
+/turf/open/floor/plating,
+/area/shuttle/supply)
+"o" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/shuttle/supply)
+"p" = (
+/obj/machinery/button/door{
+ dir = 2;
+ id = "cargounload";
+ name = "Loading Doors";
+ pixel_x = -24;
+ pixel_y = 8
+ },
+/obj/machinery/button/door{
+ id = "cargoload";
+ name = "Loading Doors";
+ pixel_x = -24;
+ pixel_y = -8
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/shuttle/supply)
+"q" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/shuttle/supply)
+"r" = (
+/obj/machinery/door/airlock/shuttle{
+ name = "Supply Shuttle Airlock";
+ req_access_txt = "31"
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/shuttle/supply)
+"s" = (
+/obj/machinery/door/poddoor{
+ id = "cargoload";
+ name = "supply dock loading door"
+ },
+/obj/machinery/conveyor{
+ dir = 4;
+ id = "cargoload"
+ },
+/turf/open/floor/plating,
+/area/shuttle/supply)
+"t" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/turf/open/floor/plasteel,
+/area/shuttle/supply)
+"u" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel,
+/area/shuttle/supply)
+"v" = (
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel,
+/area/shuttle/supply)
+"w" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/turf/open/floor/plasteel,
+/area/shuttle/supply)
+"x" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/shuttle/supply)
+"y" = (
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/shuttle/supply)
+"z" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/shuttle/engine/heater,
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plating/airless,
+/area/shuttle/supply)
+"A" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/shuttle/engine/heater,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plating/airless,
+/area/shuttle/supply)
+"B" = (
+/turf/template_noop,
+/area/template_noop)
+"C" = (
+/obj/structure/shuttle/engine/propulsion/burst/left,
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plating/airless,
+/area/shuttle/supply)
+"D" = (
+/obj/structure/shuttle/engine/propulsion,
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plating/airless,
+/area/shuttle/supply)
+"E" = (
+/obj/structure/shuttle/engine/propulsion/burst/right,
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plating/airless,
+/area/shuttle/supply)
+
+(1,1,1) = {"
+a
+a
+a
+k
+n
+a
+r
+s
+a
+a
+a
+B
+"}
+(2,1,1) = {"
+a
+b
+g
+g
+o
+p
+o
+o
+t
+a
+a
+C
+"}
+(3,1,1) = {"
+a
+c
+h
+l
+h
+h
+h
+i
+u
+x
+z
+D
+"}
+(4,1,1) = {"
+a
+d
+i
+i
+i
+h
+i
+h
+v
+x
+A
+D
+"}
+(5,1,1) = {"
+a
+e
+i
+h
+h
+h
+h
+h
+v
+y
+A
+D
+"}
+(6,1,1) = {"
+a
+f
+j
+m
+j
+q
+m
+j
+w
+a
+a
+E
+"}
+(7,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+B
+"}
diff --git a/_maps/shuttles/emergency_airless.dmm b/_maps/shuttles/emergency_airless.dmm
index d5dc2d6d00..1606703ac2 100644
--- a/_maps/shuttles/emergency_airless.dmm
+++ b/_maps/shuttles/emergency_airless.dmm
@@ -46,9 +46,6 @@
/obj/effect/shuttle_build,
/turf/open/floor/plating/airless,
/area/shuttle/escape)
-"i" = (
-/turf/open/space/basic,
-/area/space)
(1,1,1) = {"
a
@@ -76,9 +73,9 @@ f
e
e
a
-i
-i
-i
+a
+a
+a
a
"}
(2,1,1) = {"
@@ -107,9 +104,9 @@ f
f
e
a
-i
-i
-i
+a
+a
+a
a
"}
(3,1,1) = {"
@@ -138,9 +135,9 @@ f
f
f
a
-i
-i
-i
+a
+a
+a
a
"}
(4,1,1) = {"
@@ -169,9 +166,9 @@ f
f
e
a
-i
-i
-i
+a
+a
+a
a
"}
(5,1,1) = {"
diff --git a/_maps/shuttles/emergency_asteroid.dmm b/_maps/shuttles/emergency_asteroid.dmm
index 3eba8d7a61..01772ed706 100644
--- a/_maps/shuttles/emergency_asteroid.dmm
+++ b/_maps/shuttles/emergency_asteroid.dmm
@@ -2,9 +2,6 @@
"aa" = (
/turf/template_noop,
/area/template_noop)
-"ab" = (
-/turf/closed/wall/mineral/titanium/overspace,
-/area/shuttle/escape)
"ac" = (
/turf/closed/wall/mineral/titanium,
/area/shuttle/escape)
@@ -19,12 +16,6 @@
},
/turf/open/floor/mineral/titanium/yellow,
/area/shuttle/escape)
-"af" = (
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/escape)
-"ag" = (
-/turf/template_noop,
-/area/template_noop)
"ah" = (
/obj/effect/spawner/structure/window/shuttle,
/turf/open/floor/plating,
@@ -49,9 +40,6 @@
},
/turf/open/floor/mineral/titanium,
/area/shuttle/escape)
-"ak" = (
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/escape)
"al" = (
/obj/machinery/door/airlock/titanium{
name = "Emergency Shuttle Airlock";
@@ -71,9 +59,6 @@
},
/turf/open/floor/plating/airless,
/area/shuttle/escape)
-"ao" = (
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/escape)
"ap" = (
/obj/structure/ore_box,
/turf/open/floor/mineral/titanium/yellow,
@@ -85,15 +70,9 @@
/obj/machinery/recharge_station,
/turf/open/floor/mineral/titanium/yellow,
/area/shuttle/escape)
-"as" = (
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/escape)
"at" = (
/turf/open/floor/mineral/titanium,
/area/shuttle/escape)
-"au" = (
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/escape)
"av" = (
/obj/structure/chair{
dir = 4
@@ -109,26 +88,12 @@
},
/turf/open/floor/mineral/plastitanium/brig,
/area/shuttle/escape)
-"ay" = (
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/escape)
"az" = (
/turf/closed/wall/mineral/titanium/nodiagonal,
/area/shuttle/escape)
-"aA" = (
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/escape)
"aB" = (
/turf/closed/wall/mineral/titanium/interior,
/area/shuttle/escape)
-"aC" = (
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/escape)
-"aD" = (
-/obj/structure/window/shuttle,
-/obj/structure/grille,
-/turf/open/floor/plating/airless,
-/area/shuttle/escape)
"aE" = (
/obj/structure/chair{
dir = 4
@@ -193,9 +158,6 @@
/obj/structure/bed/roller,
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/escape)
-"aO" = (
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/escape)
"aP" = (
/obj/machinery/door/airlock/security/glass{
name = "Emergency Shuttle Brig";
@@ -303,10 +265,6 @@
},
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/escape)
-"bh" = (
-/obj/effect/spawner/structure/window/shuttle,
-/turf/open/floor/plasteel/shuttle,
-/area/shuttle/escape)
"bi" = (
/obj/machinery/status_display,
/turf/closed/wall/mineral/titanium,
@@ -344,10 +302,6 @@
},
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/escape)
-"bo" = (
-/obj/machinery/status_display,
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/escape)
"bp" = (
/obj/machinery/computer/crew{
dir = 4
@@ -427,12 +381,6 @@
},
/turf/open/floor/mineral/titanium,
/area/shuttle/escape)
-"bA" = (
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/escape)
-"bB" = (
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/escape)
"bC" = (
/obj/item/device/radio/intercom{
dir = 8;
@@ -490,13 +438,6 @@
},
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/escape)
-"bL" = (
-/obj/structure/chair,
-/obj/machinery/light{
- dir = 1
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/escape)
"bM" = (
/obj/machinery/light,
/turf/open/floor/mineral/plastitanium/brig,
@@ -507,20 +448,10 @@
},
/turf/open/floor/mineral/titanium,
/area/shuttle/escape)
-"bO" = (
-/obj/machinery/light{
- dir = 1
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/escape)
"bP" = (
/obj/machinery/light,
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/escape)
-"bQ" = (
-/obj/machinery/light,
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/escape)
(1,1,1) = {"
aa
@@ -643,7 +574,7 @@ ac
ac
"}
(9,1,1) = {"
-ag
+aa
ac
ac
aH
@@ -658,8 +589,8 @@ ac
aa
"}
(10,1,1) = {"
-ag
-ag
+aa
+aa
ac
aI
at
@@ -718,8 +649,8 @@ aa
aa
"}
(14,1,1) = {"
-ag
-ag
+aa
+aa
ad
aK
at
@@ -733,8 +664,8 @@ aa
aa
"}
(15,1,1) = {"
-ag
-ag
+aa
+aa
ad
aK
at
@@ -748,8 +679,8 @@ aa
aa
"}
(16,1,1) = {"
-ag
-ag
+aa
+aa
ad
aK
at
@@ -808,8 +739,8 @@ aa
aa
"}
(20,1,1) = {"
-ag
-ag
+aa
+aa
ac
aM
at
@@ -823,7 +754,7 @@ aa
aa
"}
(21,1,1) = {"
-ag
+aa
ac
ac
aN
@@ -928,9 +859,9 @@ aa
aa
"}
(28,1,1) = {"
-ag
-ag
-ag
+aa
+aa
+aa
ac
ac
ad
diff --git a/_maps/shuttles/emergency_bar.dmm b/_maps/shuttles/emergency_bar.dmm
index b5104569ac..262ed4029b 100644
--- a/_maps/shuttles/emergency_bar.dmm
+++ b/_maps/shuttles/emergency_bar.dmm
@@ -9,9 +9,6 @@
/obj/effect/spawner/structure/window/shuttle,
/turf/open/floor/plating,
/area/shuttle/escape)
-"ad" = (
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/escape)
"ae" = (
/turf/closed/wall/mineral/titanium/nodiagonal,
/area/shuttle/escape)
@@ -39,9 +36,6 @@
},
/turf/open/floor/carpet,
/area/shuttle/escape)
-"aj" = (
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/escape)
"ak" = (
/obj/structure/extinguisher_cabinet{
pixel_y = 30
@@ -118,18 +112,6 @@
},
/turf/open/floor/carpet,
/area/shuttle/escape)
-"av" = (
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/escape)
-"aw" = (
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/escape)
-"ax" = (
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/escape)
-"ay" = (
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/escape)
"az" = (
/obj/machinery/door/airlock/public/glass{
name = "Emergency Shuttle Cockpit";
@@ -141,9 +123,6 @@
/obj/machinery/status_display,
/turf/closed/wall/mineral/titanium,
/area/shuttle/escape)
-"aB" = (
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/escape)
"aC" = (
/obj/structure/chair,
/turf/open/floor/mineral/plastitanium/brig,
@@ -243,9 +222,6 @@
/obj/structure/table/wood/bar,
/turf/open/floor/plasteel/bar,
/area/shuttle/escape)
-"aQ" = (
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/escape)
"aR" = (
/obj/structure/table/wood/bar{
boot_dir = 8
@@ -331,40 +307,19 @@
},
/turf/open/floor/plasteel/bar,
/area/shuttle/escape)
-"bf" = (
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/escape)
"bg" = (
/obj/machinery/door/airlock/titanium{
name = "Emergency Shuttle Airlock"
},
/turf/open/floor/plasteel/bar,
/area/shuttle/escape)
-"bh" = (
-/obj/machinery/shower{
- dir = 4
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/escape)
"bi" = (
/turf/open/floor/mineral/titanium,
/area/shuttle/escape)
-"bj" = (
-/obj/structure/table/reinforced,
-/obj/item/storage/firstaid/regular,
-/obj/item/storage/firstaid/toxin{
- pixel_x = 4;
- pixel_y = 4
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/escape)
"bk" = (
/obj/machinery/vending/cigarette,
/turf/open/floor/plasteel/bar,
/area/shuttle/escape)
-"bl" = (
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/escape)
"bm" = (
/obj/machinery/door/airlock{
name = "Unisex Restrooms";
@@ -374,7 +329,7 @@
/area/shuttle/escape)
"bn" = (
/obj/effect/spawner/structure/window/shuttle,
-/obj/structure/sign/bluecross_2,
+/obj/structure/sign/departments/medbay/alt,
/turf/closed/wall/mineral/titanium,
/area/shuttle/escape)
"bo" = (
@@ -404,9 +359,6 @@
},
/turf/open/floor/plasteel/freezer,
/area/shuttle/escape)
-"bt" = (
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/escape)
"bu" = (
/obj/machinery/door/airlock{
name = "Unit 2"
@@ -452,14 +404,6 @@
/obj/item/scalpel,
/turf/open/floor/mineral/titanium,
/area/shuttle/escape)
-"bA" = (
-/turf/closed/wall/mineral/plastitanium{
- icon_state = "diagonalWall3"
- },
-/area/shuttle/escape)
-"bB" = (
-/turf/closed/wall/mineral/plastitanium,
-/area/shuttle/escape)
"bC" = (
/obj/structure/window/reinforced{
dir = 1
@@ -467,12 +411,6 @@
/obj/structure/shuttle/engine/heater,
/turf/open/floor/plating/airless,
/area/shuttle/escape)
-"bD" = (
-/turf/closed/wall/mineral/plastitanium{
- dir = 4;
- icon_state = "diagonalWall3"
- },
-/area/shuttle/escape)
"bE" = (
/obj/structure/shuttle/engine/propulsion,
/turf/open/floor/plating/airless,
@@ -624,35 +562,35 @@ aa
aa
aa
aa
-bt
-bt
-bt
+ab
+ab
+ab
aK
-bt
+ab
aT
-bt
+ab
ac
ac
ac
-bt
+ab
bg
-bt
+ab
bo
-bt
-bt
-bt
+ab
+ab
+ab
aa
"}
(2,1,1) = {"
aa
-bt
-bt
-bt
-bt
+ab
+ab
+ab
+ab
aC
aH
aL
-bt
+ab
bY
bH
aZ
@@ -660,23 +598,23 @@ bc
aZ
bH
bZ
-bt
+ab
bp
bs
bx
-bt
-bt
+ab
+ab
"}
(3,1,1) = {"
-bt
+ab
ae
al
aq
-bt
+ab
aC
aI
aM
-bt
+ab
aE
aW
ba
@@ -684,10 +622,10 @@ bL
bO
bQ
bR
-bt
+ab
bp
-bt
-bt
+ab
+ab
bC
bE
"}
@@ -696,11 +634,11 @@ ac
af
am
ar
-bt
+ab
aC
aI
aM
-bt
+ab
aE
aW
bJ
@@ -708,7 +646,7 @@ bM
bP
bQ
aE
-bt
+ab
ak
bu
bx
@@ -720,7 +658,7 @@ ac
ag
an
as
-bt
+ab
ac
aJ
ac
@@ -734,8 +672,8 @@ bH
aE
aA
bp
-bt
-bt
+ab
+ab
bC
bE
"}
@@ -744,7 +682,7 @@ ac
ah
an
at
-bt
+ab
aD
aE
aE
@@ -781,9 +719,9 @@ aN
aE
ca
ae
-bt
-bt
-bt
+ab
+ab
+ab
bC
bE
"}
@@ -812,11 +750,11 @@ bC
bE
"}
(9,1,1) = {"
-bt
+ab
ae
ap
au
-bt
+ab
aF
bH
aP
@@ -837,10 +775,10 @@ bE
"}
(10,1,1) = {"
aa
-bt
-bt
-bt
-bt
+ab
+ab
+ab
+ab
aG
bW
bI
@@ -856,30 +794,30 @@ bF
br
cb
bU
-bt
-bt
+ab
+ab
"}
(11,1,1) = {"
aa
aa
aa
aa
-bt
+ab
ac
-bt
+ab
ac
-bt
-bt
-bt
+ab
+ab
+ab
ac
ac
ac
-bt
-bt
-bt
+ab
+ab
+ab
ac
-bt
+ab
ac
-bt
+ab
aa
"}
diff --git a/_maps/shuttles/emergency_box.dmm b/_maps/shuttles/emergency_box.dmm
index 65cc9803cb..6443518590 100644
--- a/_maps/shuttles/emergency_box.dmm
+++ b/_maps/shuttles/emergency_box.dmm
@@ -2,9 +2,6 @@
"aa" = (
/turf/template_noop,
/area/template_noop)
-"ab" = (
-/turf/closed/wall/mineral/titanium/overspace,
-/area/shuttle/escape)
"ac" = (
/obj/effect/spawner/structure/window/shuttle,
/turf/open/floor/plating,
@@ -40,14 +37,6 @@
/obj/item/storage/firstaid/fire,
/turf/open/floor/mineral/titanium,
/area/shuttle/escape)
-"aj" = (
-/turf/closed/wall/mineral/titanium/interior{
- icon_state = "swall_f5"
- },
-/area/shuttle/escape)
-"ak" = (
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/escape)
"al" = (
/obj/machinery/computer/atmos_alert{
dir = 4
@@ -112,15 +101,6 @@
},
/turf/open/floor/mineral/titanium,
/area/shuttle/escape)
-"av" = (
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/escape)
-"aw" = (
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/escape)
-"ax" = (
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/escape)
"ay" = (
/obj/machinery/door/airlock/public/glass{
name = "Emergency Shuttle Cockpit";
@@ -218,12 +198,6 @@
/obj/structure/table,
/turf/open/floor/mineral/titanium,
/area/shuttle/escape)
-"aN" = (
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/escape)
-"aO" = (
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/escape)
"aP" = (
/obj/machinery/door/airlock/titanium{
name = "Emergency Shuttle Airlock"
@@ -292,19 +266,12 @@
},
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/escape)
-"aY" = (
-/obj/machinery/status_display,
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/escape)
"aZ" = (
/obj/machinery/door/airlock/public/glass{
name = "Emergency Shuttle Infirmary"
},
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/escape)
-"ba" = (
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/escape)
"bb" = (
/turf/open/floor/mineral/titanium/yellow,
/area/shuttle/escape)
@@ -344,9 +311,6 @@
/obj/structure/closet/crate,
/turf/open/floor/mineral/titanium/yellow,
/area/shuttle/escape)
-"bh" = (
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/escape)
"bi" = (
/obj/structure/window/reinforced{
dir = 1
@@ -414,35 +378,35 @@ aa
aa
aa
aa
-ak
-ak
-ak
+ad
+ad
+ad
aI
-ak
+ad
aP
-ak
+ad
ac
ac
ac
-ak
+ad
aV
-ak
+ad
aV
-ak
-ak
-ak
+ad
+ad
+ad
aa
"}
(2,1,1) = {"
aa
-ak
-ak
-ak
-ak
+ad
+ad
+ad
+ad
aA
aF
aG
-ak
+ad
bn
aL
aL
@@ -450,23 +414,23 @@ aL
aL
aL
bo
-ak
+ad
bb
bq
bf
-ak
-ak
+ad
+ad
"}
(3,1,1) = {"
-ak
+ad
ae
al
aq
-ak
+ad
aA
aG
aJ
-ak
+ad
aQ
an
an
@@ -474,7 +438,7 @@ an
an
an
aW
-ak
+ad
bb
bb
bf
@@ -486,11 +450,11 @@ ac
af
am
ar
-ak
+ad
aA
aG
aJ
-ak
+ad
an
aS
aS
@@ -510,7 +474,7 @@ ac
ag
an
as
-ak
+ad
ac
aH
ac
@@ -522,7 +486,7 @@ aT
aT
aT
an
-ak
+ad
bc
br
bg
@@ -534,7 +498,7 @@ ac
ah
an
at
-ak
+ad
aB
an
aK
@@ -547,9 +511,9 @@ an
an
bp
az
-ak
-ak
-ak
+ad
+ad
+ad
bi
bk
"}
@@ -602,11 +566,11 @@ bi
bk
"}
(9,1,1) = {"
-ak
+ad
ae
ap
au
-ak
+ad
aD
an
an
@@ -627,10 +591,10 @@ bk
"}
(10,1,1) = {"
aa
-ak
-ak
-ak
-ak
+ad
+ad
+ad
+ad
aE
bl
aC
@@ -646,30 +610,30 @@ ac
bd
be
bd
-ak
-ak
+ad
+ad
"}
(11,1,1) = {"
aa
aa
aa
aa
-ak
+ad
ac
-ak
+ad
ac
-ak
-ak
-ak
+ad
+ad
+ad
ac
ac
ac
-ak
-ak
-ak
+ad
+ad
+ad
ac
-ak
+ad
ac
-ak
+ad
aa
"}
diff --git a/_maps/shuttles/emergency_cere.dmm b/_maps/shuttles/emergency_cere.dmm
index f860593b6e..72620f68f7 100644
--- a/_maps/shuttles/emergency_cere.dmm
+++ b/_maps/shuttles/emergency_cere.dmm
@@ -695,7 +695,7 @@
/turf/open/floor/plasteel,
/area/shuttle/escape)
"cb" = (
-/obj/structure/sign/bluecross_2{
+/obj/structure/sign/departments/medbay/alt{
pixel_x = 32;
pixel_y = -32
},
@@ -1109,7 +1109,7 @@
},
/area/shuttle/escape)
"di" = (
-/obj/structure/sign/electricshock{
+/obj/structure/sign/warning/electricshock{
pixel_x = 32
},
/turf/open/floor/plasteel/yellow/side{
@@ -1131,7 +1131,7 @@
/area/shuttle/escape)
"dl" = (
/obj/structure/table,
-/obj/structure/sign/enginesafety{
+/obj/structure/sign/warning/enginesafety{
pixel_y = -32
},
/turf/open/floor/plasteel/yellow/side,
diff --git a/_maps/shuttles/emergency_delta.dmm b/_maps/shuttles/emergency_delta.dmm
index 6e22434fcd..6a166bfe15 100644
--- a/_maps/shuttles/emergency_delta.dmm
+++ b/_maps/shuttles/emergency_delta.dmm
@@ -392,7 +392,7 @@
/turf/open/floor/plasteel/white,
/area/shuttle/escape)
"aP" = (
-/obj/structure/sign/bluecross_2,
+/obj/structure/sign/departments/medbay/alt,
/turf/closed/wall/mineral/titanium,
/area/shuttle/escape)
"aQ" = (
@@ -1052,14 +1052,6 @@
dir = 1
},
/area/shuttle/escape)
-"cz" = (
-/obj/machinery/light{
- dir = 1
- },
-/turf/open/floor/plasteel/neutral/side{
- dir = 1
- },
-/area/shuttle/escape)
"cA" = (
/obj/item/twohanded/required/kirbyplants{
icon_state = "plant-21";
@@ -1088,24 +1080,6 @@
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
/area/shuttle/escape)
-"cD" = (
-/obj/effect/turf_decal/bot,
-/turf/open/floor/plasteel,
-/area/shuttle/escape)
-"cE" = (
-/obj/item/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- pixel_x = -3;
- pixel_y = 3
- },
-/obj/machinery/light{
- dir = 8
- },
-/turf/open/floor/plasteel/neutral/side{
- dir = 8;
- heat_capacity = 1e+006
- },
-/area/shuttle/escape)
"cF" = (
/obj/machinery/light,
/turf/open/floor/plasteel,
diff --git a/_maps/shuttles/emergency_discoinferno.dmm b/_maps/shuttles/emergency_discoinferno.dmm
index eb3a27359b..3cd9fc7890 100644
--- a/_maps/shuttles/emergency_discoinferno.dmm
+++ b/_maps/shuttles/emergency_discoinferno.dmm
@@ -221,12 +221,6 @@
"O" = (
/turf/closed/wall/mineral/plastitanium/nodiagonal,
/area/shuttle/escape)
-"P" = (
-/turf/closed/wall/mineral/plastitanium/nodiagonal,
-/area/shuttle/escape)
-"Q" = (
-/turf/closed/wall/mineral/plastitanium/nodiagonal,
-/area/shuttle/escape)
(1,1,1) = {"
a
diff --git a/_maps/shuttles/emergency_goon.dmm b/_maps/shuttles/emergency_goon.dmm
index 62a84d9c3d..b79aa8c62c 100644
--- a/_maps/shuttles/emergency_goon.dmm
+++ b/_maps/shuttles/emergency_goon.dmm
@@ -20,9 +20,6 @@
"d" = (
/turf/closed/wall/mineral/titanium,
/area/shuttle/escape)
-"e" = (
-/turf/closed/wall/mineral/titanium/overspace,
-/area/shuttle/escape)
"f" = (
/obj/machinery/status_display,
/turf/closed/wall/mineral/titanium,
@@ -47,15 +44,6 @@
},
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/escape)
-"i" = (
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/escape)
-"j" = (
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/escape)
-"k" = (
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/escape)
"l" = (
/obj/machinery/vending/wallmed,
/turf/closed/wall/mineral/titanium,
@@ -65,9 +53,6 @@
/obj/structure/grille,
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/escape)
-"n" = (
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/escape)
"o" = (
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/escape)
@@ -98,9 +83,6 @@
"t" = (
/turf/closed/wall/mineral/titanium/interior,
/area/shuttle/escape)
-"u" = (
-/turf/template_noop,
-/area/template_noop)
"v" = (
/obj/structure/table,
/obj/effect/spawner/lootdrop/maintenance,
@@ -153,12 +135,6 @@
/obj/structure/table/reinforced,
/turf/open/floor/mineral/titanium/yellow,
/area/shuttle/escape)
-"C" = (
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/escape)
-"D" = (
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/escape)
"E" = (
/obj/machinery/door/airlock/public/glass{
name = "Emergency Shuttle Cockpit";
@@ -217,16 +193,6 @@
},
/turf/open/floor/mineral/titanium/yellow,
/area/shuttle/escape)
-"N" = (
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/escape)
-"O" = (
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/escape)
-"P" = (
-/obj/machinery/status_display,
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/escape)
"Q" = (
/obj/machinery/light,
/turf/open/floor/mineral/titanium/blue,
@@ -253,15 +219,6 @@
},
/turf/open/floor/mineral/plastitanium/brig,
/area/shuttle/escape)
-"U" = (
-/obj/structure/chair{
- dir = 4
- },
-/obj/machinery/light{
- dir = 4
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/escape)
"V" = (
/obj/machinery/light{
dir = 1
diff --git a/_maps/shuttles/emergency_luxury.dmm b/_maps/shuttles/emergency_luxury.dmm
index 4345939922..8306423ffd 100644
--- a/_maps/shuttles/emergency_luxury.dmm
+++ b/_maps/shuttles/emergency_luxury.dmm
@@ -345,24 +345,6 @@
},
/turf/open/floor/mineral/gold,
/area/shuttle/escape/luxury)
-"bm" = (
-/obj/machinery/light{
- dir = 4
- },
-/turf/open/floor/mineral/gold,
-/area/shuttle/escape/luxury)
-"bn" = (
-/obj/machinery/light{
- dir = 8
- },
-/turf/open/floor/mineral/gold,
-/area/shuttle/escape/luxury)
-"bo" = (
-/obj/machinery/light{
- dir = 4
- },
-/turf/open/floor/mineral/gold,
-/area/shuttle/escape/luxury)
"bp" = (
/obj/item/twohanded/required/kirbyplants{
icon_state = "plant-21";
@@ -372,15 +354,6 @@
/obj/machinery/light,
/turf/open/floor/mineral/gold,
/area/shuttle/escape/luxury)
-"bq" = (
-/obj/item/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- pixel_x = -3;
- pixel_y = 3
- },
-/obj/machinery/light,
-/turf/open/floor/mineral/gold,
-/area/shuttle/escape/luxury)
(1,1,1) = {"
aa
diff --git a/_maps/shuttles/emergency_meta.dmm b/_maps/shuttles/emergency_meta.dmm
index 9824fec026..0bd4da4a7d 100644
--- a/_maps/shuttles/emergency_meta.dmm
+++ b/_maps/shuttles/emergency_meta.dmm
@@ -2,9 +2,6 @@
"aa" = (
/turf/template_noop,
/area/template_noop)
-"ab" = (
-/turf/closed/wall/mineral/titanium/overspace,
-/area/shuttle/escape)
"ac" = (
/obj/effect/spawner/structure/window/shuttle,
/turf/open/floor/plating,
@@ -12,9 +9,6 @@
"ad" = (
/turf/closed/wall/mineral/titanium,
/area/shuttle/escape)
-"ae" = (
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/escape)
"af" = (
/obj/machinery/door/airlock/titanium{
name = "Emergency Shuttle Airlock"
@@ -22,7 +16,7 @@
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/escape)
"ag" = (
-/obj/structure/sign/nosmoking_2,
+/obj/structure/sign/warning/nosmoking,
/turf/closed/wall/mineral/titanium,
/area/shuttle/escape)
"ah" = (
@@ -39,18 +33,6 @@
},
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/escape)
-"ai" = (
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/escape)
-"aj" = (
-/turf/closed/wall/mineral/plastitanium{
- dir = 8;
- icon_state = "diagonalWall3"
- },
-/area/shuttle/escape)
-"ak" = (
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/escape)
"al" = (
/obj/structure/table,
/obj/item/phone{
@@ -238,9 +220,6 @@
/obj/structure/chair/office/dark,
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/escape)
-"aD" = (
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/escape)
"aE" = (
/obj/structure/chair{
dir = 1
@@ -278,18 +257,12 @@
/obj/structure/extinguisher_cabinet,
/turf/closed/wall/mineral/titanium,
/area/shuttle/escape)
-"aK" = (
-/turf/closed/wall/mineral/plastitanium,
-/area/shuttle/escape)
"aL" = (
/obj/machinery/computer/station_alert{
dir = 4
},
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/escape)
-"aM" = (
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/escape)
"aN" = (
/obj/machinery/status_display{
dir = 8;
@@ -359,12 +332,6 @@
},
/turf/open/floor/mineral/titanium,
/area/shuttle/escape)
-"aU" = (
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/escape)
-"aV" = (
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/escape)
"aW" = (
/obj/machinery/door/airlock/command{
name = "Emergency Recovery Airlock";
@@ -373,9 +340,6 @@
},
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/escape)
-"aX" = (
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/escape)
"aY" = (
/obj/machinery/door/airlock/security/glass{
name = "Brig";
@@ -392,7 +356,7 @@
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/escape)
"ba" = (
-/obj/structure/sign/bluecross_2,
+/obj/structure/sign/departments/medbay/alt,
/turf/closed/wall/mineral/titanium,
/area/shuttle/escape)
"bb" = (
@@ -402,9 +366,6 @@
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
/area/shuttle/escape)
-"bc" = (
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/escape)
"bd" = (
/obj/structure/chair{
dir = 4
@@ -420,9 +381,6 @@
},
/turf/open/floor/plasteel/floorgrime,
/area/shuttle/escape)
-"bg" = (
-/turf/open/floor/mineral/plastitanium,
-/area/shuttle/escape)
"bh" = (
/obj/structure/chair{
dir = 4
@@ -482,9 +440,6 @@
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
/area/shuttle/escape)
-"br" = (
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/escape)
"bs" = (
/obj/structure/chair{
dir = 8
@@ -551,9 +506,6 @@
/obj/item/cigbutt,
/turf/open/floor/plasteel/floorgrime,
/area/shuttle/escape)
-"bx" = (
-/turf/open/floor/plasteel/floorgrime,
-/area/shuttle/escape)
"by" = (
/obj/machinery/suit_storage_unit/standard_unit,
/turf/open/floor/plasteel/floorgrime,
@@ -572,11 +524,6 @@
},
/turf/open/floor/plasteel,
/area/shuttle/escape)
-"bB" = (
-/turf/closed/wall/mineral/plastitanium{
- icon_state = "diagonalWall3"
- },
-/area/shuttle/escape)
"bC" = (
/obj/structure/reagent_dispensers/watertank,
/turf/open/floor/plasteel/floorgrime,
@@ -874,12 +821,6 @@
},
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/escape)
-"bZ" = (
-/obj/machinery/light{
- dir = 8
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/escape)
"ca" = (
/obj/structure/chair{
dir = 1
diff --git a/_maps/shuttles/emergency_mini.dmm b/_maps/shuttles/emergency_mini.dmm
index d7d5644336..8bf882302b 100644
--- a/_maps/shuttles/emergency_mini.dmm
+++ b/_maps/shuttles/emergency_mini.dmm
@@ -205,9 +205,6 @@
/obj/item/extinguisher,
/turf/closed/wall/mineral/titanium,
/area/shuttle/escape)
-"G" = (
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/escape)
"H" = (
/obj/machinery/status_display,
/turf/closed/wall/mineral/titanium,
diff --git a/_maps/shuttles/emergency_omega.dmm b/_maps/shuttles/emergency_omega.dmm
new file mode 100644
index 0000000000..19c1cadb7e
--- /dev/null
+++ b/_maps/shuttles/emergency_omega.dmm
@@ -0,0 +1,955 @@
+//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
+"aa" = (
+/turf/closed/wall/mineral/titanium,
+/area/shuttle/escape)
+"ab" = (
+/obj/structure/window/shuttle,
+/obj/structure/grille,
+/turf/open/floor/plating,
+/area/shuttle/escape)
+"ac" = (
+/obj/structure/sign/nanotrasen,
+/turf/closed/wall/mineral/titanium,
+/area/shuttle/escape)
+"ad" = (
+/obj/structure/chair{
+ dir = 4
+ },
+/obj/machinery/newscaster/security_unit{
+ pixel_y = 32
+ },
+/obj/structure/reagent_dispensers/peppertank{
+ pixel_x = -32
+ },
+/turf/open/floor/mineral/plastitanium/brig,
+/area/shuttle/escape)
+"ae" = (
+/obj/structure/chair,
+/turf/open/floor/mineral/plastitanium/brig,
+/area/shuttle/escape)
+"af" = (
+/obj/structure/chair{
+ dir = 8
+ },
+/obj/item/device/radio/intercom{
+ name = "Station Intercom";
+ pixel_y = 24
+ },
+/turf/open/floor/mineral/plastitanium/brig,
+/area/shuttle/escape)
+"ag" = (
+/obj/structure/table/reinforced,
+/obj/machinery/recharger,
+/obj/machinery/status_display{
+ pixel_y = 32
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/shuttle/escape)
+"ah" = (
+/obj/machinery/computer/emergency_shuttle,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/shuttle/escape)
+"ai" = (
+/obj/machinery/computer/communications,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/shuttle/escape)
+"aj" = (
+/obj/structure/table/reinforced,
+/obj/item/storage/firstaid/regular,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/shuttle/escape)
+"ak" = (
+/obj/structure/chair{
+ dir = 4
+ },
+/obj/machinery/status_display{
+ pixel_x = -32
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/mineral/plastitanium/brig,
+/area/shuttle/escape)
+"al" = (
+/turf/open/floor/mineral/plastitanium/brig,
+/area/shuttle/escape)
+"am" = (
+/obj/machinery/door/airlock/command{
+ name = "Emergency Recovery Airlock";
+ req_access = null;
+ req_access_txt = "19"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/shuttle/escape)
+"an" = (
+/turf/open/floor/plasteel/vault{
+ dir = 5
+ },
+/area/shuttle/escape)
+"ao" = (
+/obj/structure/chair/comfy/brown{
+ color = "#596479";
+ dir = 1
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 5
+ },
+/area/shuttle/escape)
+"ap" = (
+/obj/structure/table/reinforced,
+/obj/item/storage/fancy/donut_box,
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/shuttle/escape)
+"aq" = (
+/obj/machinery/door/airlock/shuttle{
+ name = "Emergency Shuttle Airlock";
+ req_access_txt = "2"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/shuttle/escape)
+"ar" = (
+/obj/structure/table/reinforced,
+/obj/machinery/recharger,
+/turf/open/floor/mineral/plastitanium/brig,
+/area/shuttle/escape)
+"as" = (
+/obj/item/twohanded/required/kirbyplants{
+ icon_state = "plant-21";
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 4
+ },
+/area/shuttle/escape)
+"at" = (
+/obj/structure/chair/comfy/brown{
+ color = "#596479";
+ dir = 4
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 5
+ },
+/area/shuttle/escape)
+"au" = (
+/obj/machinery/computer/crew{
+ dir = 8
+ },
+/obj/machinery/ai_status_display{
+ pixel_x = 32
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/shuttle/escape)
+"av" = (
+/obj/machinery/door/airlock/security/glass{
+ name = "Holding Area";
+ req_access_txt = "2"
+ },
+/turf/open/floor/mineral/plastitanium/brig,
+/area/shuttle/escape)
+"aw" = (
+/obj/machinery/ai_status_display,
+/turf/closed/wall/mineral/titanium/nodiagonal,
+/area/shuttle/escape)
+"ax" = (
+/obj/machinery/door/airlock/command/glass{
+ name = "Cockpit";
+ req_access_txt = "19"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 2
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/shuttle/escape)
+"ay" = (
+/obj/machinery/door/airlock/shuttle{
+ name = "Emergency Shuttle Airlock"
+ },
+/obj/docking_port/mobile/emergency{
+ dheight = 0;
+ dwidth = 5;
+ height = 11;
+ name = "Omega emergency shuttle";
+ width = 19
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel/white,
+/area/shuttle/escape)
+"az" = (
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/shuttle/escape)
+"aA" = (
+/turf/open/floor/plasteel/neutral/side{
+ dir = 1
+ },
+/area/shuttle/escape)
+"aB" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/plasteel/neutral/side{
+ dir = 1
+ },
+/area/shuttle/escape)
+"aC" = (
+/obj/item/twohanded/required/kirbyplants{
+ icon_state = "plant-21";
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/item/device/radio/intercom{
+ name = "Station Intercom";
+ pixel_x = 26
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/shuttle/escape)
+"aD" = (
+/obj/structure/chair{
+ dir = 4
+ },
+/obj/machinery/status_display{
+ pixel_x = -32
+ },
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/shuttle/escape)
+"aE" = (
+/turf/open/floor/plasteel/neutral,
+/area/shuttle/escape)
+"aF" = (
+/obj/structure/chair{
+ dir = 8
+ },
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/shuttle/escape)
+"aG" = (
+/obj/structure/flora/ausbushes/grassybush,
+/obj/structure/flora/ausbushes/lavendergrass,
+/obj/structure/flora/ausbushes/ppflowers,
+/obj/structure/flora/ausbushes/sunnybush,
+/obj/structure/window/shuttle,
+/turf/open/floor/grass,
+/area/shuttle/escape)
+"aH" = (
+/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/tank/internals/emergency_oxygen/double{
+ pixel_x = 3
+ },
+/obj/item/tank/internals/emergency_oxygen/double{
+ pixel_x = 3
+ },
+/obj/item/tank/internals/emergency_oxygen/double{
+ pixel_x = 3
+ },
+/obj/item/tank/internals/emergency_oxygen/double{
+ pixel_x = 3
+ },
+/obj/item/tank/internals/emergency_oxygen/double{
+ pixel_x = 3
+ },
+/obj/item/clothing/mask/breath{
+ pixel_x = -3;
+ pixel_y = -3
+ },
+/obj/item/clothing/mask/breath{
+ pixel_x = -3;
+ pixel_y = -3
+ },
+/obj/item/clothing/mask/breath{
+ pixel_x = -3;
+ pixel_y = -3
+ },
+/obj/item/clothing/mask/breath{
+ pixel_x = -3;
+ pixel_y = -3
+ },
+/obj/item/clothing/mask/breath{
+ pixel_x = -3;
+ pixel_y = -3
+ },
+/obj/item/clothing/head/hardhat/orange{
+ name = "protective hat";
+ pixel_y = 9
+ },
+/obj/item/clothing/head/hardhat/orange{
+ name = "protective hat";
+ pixel_y = 9
+ },
+/obj/item/clothing/head/hardhat/orange{
+ name = "protective hat";
+ pixel_y = 9
+ },
+/obj/item/clothing/head/hardhat/orange{
+ name = "protective hat";
+ pixel_y = 9
+ },
+/obj/item/clothing/head/hardhat/orange{
+ name = "protective hat";
+ pixel_y = 9
+ },
+/obj/structure/closet/crate/internals,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/shuttle/escape)
+"aI" = (
+/obj/structure/flora/ausbushes/grassybush,
+/obj/structure/flora/ausbushes/lavendergrass,
+/obj/structure/flora/ausbushes/ywflowers,
+/obj/structure/flora/ausbushes/fernybush,
+/obj/structure/window/shuttle,
+/turf/open/floor/grass,
+/area/shuttle/escape)
+"aJ" = (
+/obj/structure/chair{
+ dir = 4
+ },
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/shuttle/escape)
+"aK" = (
+/obj/structure/chair{
+ dir = 8
+ },
+/obj/effect/turf_decal/bot,
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/shuttle/escape)
+"aL" = (
+/obj/structure/extinguisher_cabinet,
+/turf/closed/wall/mineral/titanium/nodiagonal,
+/area/shuttle/escape)
+"aM" = (
+/obj/machinery/vending/wallmed{
+ name = "Emergency NanoMed";
+ req_access_txt = "0";
+ use_power = 0
+ },
+/turf/closed/wall/mineral/titanium/nodiagonal,
+/area/shuttle/escape)
+"aN" = (
+/obj/structure/chair{
+ dir = 4
+ },
+/obj/effect/turf_decal/bot,
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/shuttle/escape)
+"aO" = (
+/obj/structure/flora/ausbushes/grassybush,
+/obj/structure/flora/ausbushes/lavendergrass,
+/obj/structure/flora/ausbushes/brflowers,
+/obj/structure/flora/ausbushes/grassybush,
+/obj/structure/flora/ausbushes/pointybush,
+/turf/open/floor/grass,
+/area/shuttle/escape)
+"aP" = (
+/obj/machinery/door/airlock/shuttle{
+ name = "Emergency Shuttle Airlock";
+ req_access_txt = "0"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/shuttle/escape)
+"aQ" = (
+/turf/open/floor/plasteel/neutral/side,
+/area/shuttle/escape)
+"aR" = (
+/obj/machinery/light,
+/turf/open/floor/plasteel/neutral/side,
+/area/shuttle/escape)
+"aS" = (
+/obj/item/twohanded/required/kirbyplants{
+ icon_state = "plant-21";
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 24
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/shuttle/escape)
+"aT" = (
+/obj/machinery/door/airlock/shuttle{
+ name = "Emergency Shuttle Cargo"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 2
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/shuttle/escape)
+"aU" = (
+/obj/machinery/status_display,
+/turf/closed/wall/mineral/titanium/nodiagonal,
+/area/shuttle/escape)
+"aV" = (
+/obj/machinery/door/airlock/medical/glass{
+ id_tag = null;
+ name = "Escape Shuttle Infirmary";
+ req_access_txt = "0"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 2
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/shuttle/escape)
+"aW" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/shuttle/escape)
+"aX" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/shuttle/escape)
+"aY" = (
+/obj/structure/closet/crate/medical{
+ name = "medical crate"
+ },
+/obj/item/storage/firstaid/regular,
+/obj/item/storage/firstaid/o2{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/storage/firstaid/toxin{
+ pixel_x = -4;
+ pixel_y = 3
+ },
+/obj/item/device/healthanalyzer{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/lazarus_injector,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/bot,
+/mob/living/simple_animal/bot/medbot{
+ name = "\improper emergency medibot";
+ pixel_x = -3;
+ pixel_y = 2
+ },
+/turf/open/floor/plasteel,
+/area/shuttle/escape)
+"aZ" = (
+/turf/closed/wall/mineral/titanium/nodiagonal,
+/area/shuttle/escape)
+"ba" = (
+/obj/machinery/sleeper{
+ dir = 4
+ },
+/obj/machinery/vending/wallmed{
+ name = "Emergency NanoMed";
+ pixel_x = -26;
+ req_access_txt = "0";
+ use_power = 0
+ },
+/turf/open/floor/plasteel/cmo,
+/area/shuttle/escape)
+"bb" = (
+/turf/open/floor/plasteel/cmo,
+/area/shuttle/escape)
+"bc" = (
+/obj/machinery/sleeper{
+ dir = 8
+ },
+/obj/item/device/radio/intercom{
+ name = "Station Intercom";
+ pixel_x = 26
+ },
+/turf/open/floor/plasteel/cmo,
+/area/shuttle/escape)
+"bd" = (
+/obj/machinery/recharge_station,
+/obj/machinery/status_display{
+ pixel_x = -32
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/delivery,
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/shuttle/escape)
+"be" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/turf/open/floor/plasteel,
+/area/shuttle/escape)
+"bf" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/turf/open/floor/plasteel,
+/area/shuttle/escape)
+"bg" = (
+/obj/structure/closet/crate{
+ name = "emergency supplies crate"
+ },
+/obj/item/storage/toolbox/emergency,
+/obj/item/storage/toolbox/emergency,
+/obj/item/device/flashlight/flare{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/device/flashlight/flare{
+ pixel_x = -6;
+ pixel_y = -2
+ },
+/obj/item/crowbar,
+/obj/item/wrench,
+/obj/item/device/radio,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/shuttle/escape)
+"bh" = (
+/obj/machinery/shower{
+ dir = 4;
+ icon_state = "shower";
+ name = "emergency shower"
+ },
+/turf/open/floor/plasteel/cmo,
+/area/shuttle/escape)
+"bi" = (
+/obj/item/storage/firstaid/toxin,
+/obj/item/storage/firstaid/o2{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/structure/table/reinforced,
+/obj/machinery/status_display{
+ pixel_x = 32
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/plasteel/whiteblue/side{
+ dir = 5
+ },
+/area/shuttle/escape)
+"bj" = (
+/obj/structure/table,
+/obj/item/clipboard,
+/obj/item/folder/yellow,
+/obj/item/pen,
+/obj/item/hand_labeler_refill,
+/obj/structure/sign/warning/nosmoking/circle{
+ pixel_x = -32
+ },
+/obj/item/device/radio/intercom{
+ name = "Station Intercom";
+ pixel_y = -26
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/shuttle/escape)
+"bk" = (
+/obj/structure/reagent_dispensers/fueltank,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/shuttle/escape)
+"bl" = (
+/obj/structure/rack,
+/obj/item/storage/toolbox/electrical{
+ pixel_x = -3;
+ pixel_y = 1
+ },
+/obj/item/storage/toolbox/mechanical{
+ pixel_y = -1
+ },
+/obj/item/storage/toolbox/emergency{
+ pixel_x = 3;
+ pixel_y = -5
+ },
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/shuttle/escape)
+"bm" = (
+/obj/structure/table,
+/obj/machinery/cell_charger,
+/obj/item/stock_parts/cell/high,
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 24
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/shuttle/escape)
+"bn" = (
+/obj/item/scalpel{
+ pixel_y = 12
+ },
+/obj/item/circular_saw,
+/obj/item/retractor{
+ pixel_x = 4
+ },
+/obj/item/hemostat{
+ pixel_x = -4
+ },
+/obj/item/clothing/gloves/color/latex,
+/obj/item/clothing/mask/surgical,
+/obj/structure/table/reinforced,
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -24
+ },
+/turf/open/floor/plasteel/cmo,
+/area/shuttle/escape)
+"bo" = (
+/obj/structure/table/optable,
+/obj/item/surgical_drapes,
+/turf/open/floor/plasteel/cmo,
+/area/shuttle/escape)
+"bp" = (
+/obj/item/defibrillator/loaded,
+/obj/structure/table/reinforced,
+/turf/open/floor/plasteel/cmo,
+/area/shuttle/escape)
+"bq" = (
+/obj/item/storage/firstaid/fire,
+/obj/item/storage/firstaid/regular{
+ pixel_x = 2;
+ pixel_y = 3
+ },
+/obj/structure/table/reinforced,
+/turf/open/floor/plasteel/whiteblue/side{
+ dir = 4
+ },
+/area/shuttle/escape)
+"br" = (
+/turf/closed/wall/mineral/plastitanium,
+/area/shuttle/escape)
+"bs" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/shuttle/engine/heater,
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plating/airless,
+/area/shuttle/escape)
+"bt" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/shuttle/engine/heater,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plating/airless,
+/area/shuttle/escape)
+"bu" = (
+/turf/template_noop,
+/area/template_noop)
+"bv" = (
+/obj/structure/shuttle/engine/propulsion,
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plating/airless,
+/area/shuttle/escape)
+
+(1,1,1) = {"
+aa
+aa
+aa
+aq
+ac
+ay
+aa
+ab
+ab
+ab
+aa
+aP
+ac
+aP
+aa
+aa
+aZ
+br
+bu
+"}
+(2,1,1) = {"
+aa
+ad
+ak
+al
+ab
+az
+aD
+aJ
+aJ
+aJ
+aD
+az
+ab
+az
+bd
+bj
+aa
+br
+bv
+"}
+(3,1,1) = {"
+ab
+ae
+al
+al
+av
+aA
+aE
+aE
+aE
+aE
+aE
+aQ
+aT
+aW
+be
+bk
+ab
+bs
+bv
+"}
+(4,1,1) = {"
+ab
+ae
+al
+al
+ab
+aA
+aF
+aK
+aF
+aF
+aF
+aQ
+aT
+aX
+bf
+bl
+ab
+bt
+bv
+"}
+(5,1,1) = {"
+aa
+af
+al
+ar
+ab
+aA
+aG
+aL
+aI
+aM
+aG
+aQ
+ab
+aY
+bg
+bm
+aa
+bt
+bv
+"}
+(6,1,1) = {"
+ac
+ab
+am
+ab
+aw
+aB
+aH
+aG
+aO
+aI
+aH
+aR
+aU
+aZ
+ab
+aZ
+aZ
+br
+br
+"}
+(7,1,1) = {"
+aa
+ag
+an
+as
+ab
+aA
+aI
+aM
+aG
+aL
+aI
+aQ
+ab
+ba
+bh
+bn
+aa
+bt
+bv
+"}
+(8,1,1) = {"
+ab
+ah
+ao
+an
+ax
+aA
+aJ
+aN
+aJ
+aJ
+aJ
+aQ
+aV
+bb
+bb
+bo
+ab
+bt
+bv
+"}
+(9,1,1) = {"
+ab
+ai
+an
+at
+ab
+aA
+aE
+aE
+aE
+aE
+aE
+aQ
+aV
+bb
+bb
+bp
+ab
+bt
+bv
+"}
+(10,1,1) = {"
+ab
+aj
+ap
+au
+aa
+aC
+aF
+aF
+aF
+aF
+aF
+aS
+ab
+bc
+bi
+bq
+aa
+br
+bv
+"}
+(11,1,1) = {"
+aa
+ab
+ab
+aa
+ac
+aa
+ab
+ab
+ab
+ab
+ab
+aa
+ac
+aa
+aa
+aa
+aZ
+br
+bu
+"}
diff --git a/_maps/shuttles/emergency_pubby.dmm b/_maps/shuttles/emergency_pubby.dmm
index 9c84d5883b..92ad72d1c5 100644
--- a/_maps/shuttles/emergency_pubby.dmm
+++ b/_maps/shuttles/emergency_pubby.dmm
@@ -307,7 +307,7 @@
pixel_y = 3
},
/obj/item/crowbar,
-/obj/structure/sign/nosmoking_2{
+/obj/structure/sign/warning/nosmoking{
pixel_x = 32
},
/obj/machinery/light{
@@ -332,21 +332,6 @@
"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
diff --git a/_maps/shuttles/emergency_raven.dmm b/_maps/shuttles/emergency_raven.dmm
index c8178fd9a2..f1dbe29fbe 100644
--- a/_maps/shuttles/emergency_raven.dmm
+++ b/_maps/shuttles/emergency_raven.dmm
@@ -317,15 +317,6 @@
icon_state = "darkred"
},
/area/shuttle/escape)
-"aY" = (
-/obj/machinery/flasher{
- id = "shuttleflash";
- pixel_x = -26
- },
-/turf/open/floor/plasteel/darkgreen/side{
- dir = 8
- },
-/area/shuttle/escape)
"aZ" = (
/turf/open/floor/plasteel/darkgreen/side{
dir = 4
@@ -580,10 +571,6 @@
/obj/structure/chair/office/dark,
/turf/open/floor/plasteel/dark,
/area/shuttle/escape)
-"bw" = (
-/obj/machinery/door/airlock/shuttle,
-/turf/open/floor/plasteel/dark,
-/area/shuttle/escape)
"bx" = (
/obj/structure/chair{
dir = 8
@@ -892,22 +879,6 @@
dir = 6
},
/area/shuttle/escape)
-"cf" = (
-/obj/machinery/door/airlock/titanium/glass{
- name = "Shuttle Engine Room"
- },
-/turf/open/floor/plasteel/darkgreen/side{
- dir = 8
- },
-/area/shuttle/escape)
-"cg" = (
-/obj/machinery/door/airlock/titanium/glass{
- name = "Shuttle Engine Room"
- },
-/turf/open/floor/plasteel/darkgreen/side{
- dir = 4
- },
-/area/shuttle/escape)
"ch" = (
/obj/structure/reagent_dispensers/fueltank,
/obj/machinery/light{
@@ -988,18 +959,6 @@
"cs" = (
/turf/closed/wall/mineral/plastitanium/interior,
/area/shuttle/escape)
-"cx" = (
-/turf/closed/wall/mineral/plastitanium{
- dir = 8;
- icon_state = "diagonalWall3"
- },
-/area/shuttle/escape)
-"cy" = (
-/turf/closed/wall/mineral/plastitanium{
- dir = 1;
- icon_state = "diagonalWall3"
- },
-/area/shuttle/escape)
"cz" = (
/obj/machinery/button/door{
id = "shuttleshutters";
@@ -1010,25 +969,6 @@
/obj/machinery/light,
/turf/open/floor/plasteel/darkblue/side,
/area/shuttle/escape)
-"cA" = (
-/obj/machinery/door/poddoor/shutters{
- id = "shuttleshutters";
- name = "blast shutters"
- },
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/shuttle/escape)
-"cD" = (
-/turf/closed/wall/mineral/plastitanium{
- icon_state = "diagonalWall3"
- },
-/area/shuttle/escape)
-"cI" = (
-/turf/closed/wall/mineral/plastitanium{
- dir = 4;
- icon_state = "diagonalWall3"
- },
-/area/shuttle/escape)
"ei" = (
/obj/machinery/porta_turret/centcom_shuttle{
dir = 10
@@ -1091,15 +1031,6 @@
/obj/machinery/light,
/turf/open/floor/plasteel/darkgreen/side,
/area/shuttle/escape)
-"eJ" = (
-/obj/machinery/button/flasher{
- id = "cockpit_flasher";
- pixel_x = 6;
- pixel_y = -24
- },
-/obj/machinery/light,
-/turf/open/floor/mineral/titanium/blue,
-/area/space)
"eN" = (
/obj/machinery/light{
dir = 4
@@ -1115,9 +1046,6 @@
"eP" = (
/turf/closed/wall/mineral/plastitanium/nodiagonal,
/area/shuttle/escape)
-"eQ" = (
-/turf/template_noop,
-/area/template_noop)
(1,1,1) = {"
aa
@@ -1543,8 +1471,8 @@ bu
bA
bJ
ad
-eQ
-eQ
+ad
+ad
ad
cs
bV
@@ -1577,8 +1505,8 @@ bv
bB
bJ
ad
-eQ
-eQ
+ad
+ad
ad
bJ
br
@@ -1611,8 +1539,8 @@ aC
bC
bJ
ad
-eQ
-eQ
+ad
+ad
ad
bJ
br
@@ -1645,8 +1573,8 @@ bm
ar
cs
ad
-eQ
-eQ
+ad
+ad
ad
cs
bW
diff --git a/_maps/shuttles/emergency_supermatter.dmm b/_maps/shuttles/emergency_supermatter.dmm
index 1b4acd218f..d5caf0ddb2 100644
--- a/_maps/shuttles/emergency_supermatter.dmm
+++ b/_maps/shuttles/emergency_supermatter.dmm
@@ -2,11 +2,8 @@
"aa" = (
/turf/template_noop,
/area/template_noop)
-"ab" = (
-/turf/closed/wall/mineral/titanium/overspace,
-/area/shuttle/escape)
"ac" = (
-/obj/structure/sign/radiation,
+/obj/structure/sign/warning/radiation,
/turf/closed/wall/mineral/titanium,
/area/shuttle/escape)
"ad" = (
@@ -16,9 +13,6 @@
"ae" = (
/turf/closed/wall/mineral/titanium,
/area/shuttle/escape)
-"af" = (
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/escape)
"ag" = (
/obj/structure/closet/radiation{
anchored = 1
@@ -39,10 +33,6 @@
},
/turf/open/floor/mineral/titanium/yellow,
/area/shuttle/escape)
-"ak" = (
-/obj/structure/sign/radiation,
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/escape)
"al" = (
/obj/machinery/shower{
dir = 8
@@ -115,12 +105,6 @@
"ax" = (
/turf/closed/wall/mineral/titanium/interior,
/area/shuttle/escape)
-"ay" = (
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/escape)
-"az" = (
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/escape)
"aA" = (
/obj/machinery/door/airlock/titanium{
name = "Emergency Shuttle Airlock"
@@ -138,10 +122,6 @@
},
/turf/open/floor/plating,
/area/shuttle/escape)
-"aC" = (
-/obj/structure/sign/radiation,
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/escape)
"aD" = (
/obj/structure/table/reinforced,
/obj/item/storage/firstaid/toxin,
@@ -166,24 +146,10 @@
},
/turf/open/floor/plating,
/area/shuttle/escape)
-"aG" = (
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/escape)
-"aH" = (
-/obj/machinery/status_display,
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/escape)
"aI" = (
-/obj/structure/sign/radiation,
+/obj/structure/sign/warning/radiation,
/turf/closed/wall/mineral/titanium/nodiagonal,
/area/shuttle/escape)
-"aJ" = (
-/obj/structure/sign/radiation,
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/escape)
-"aK" = (
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/escape)
"aL" = (
/obj/machinery/door/airlock/external{
name = "Emergency Launch Catwalk";
@@ -385,8 +351,8 @@ aa
aa
"}
(2,1,1) = {"
-af
-af
+ae
+ae
ad
ac
aq
@@ -577,8 +543,8 @@ bc
be
"}
(10,1,1) = {"
-af
-af
+ae
+ae
ad
ac
aq
diff --git a/_maps/shuttles/emergency_wabbajack.dmm b/_maps/shuttles/emergency_wabbajack.dmm
index 7c4b5ea932..facb14a15c 100644
--- a/_maps/shuttles/emergency_wabbajack.dmm
+++ b/_maps/shuttles/emergency_wabbajack.dmm
@@ -29,7 +29,7 @@
/turf/open/floor/plasteel/darkgreen,
/area/shuttle/escape)
"ai" = (
-/obj/structure/sign/biohazard,
+/obj/structure/sign/warning/biohazard,
/turf/closed/wall/mineral/titanium,
/area/shuttle/escape)
"aj" = (
diff --git a/_maps/shuttles/ferry_base.dmm b/_maps/shuttles/ferry_base.dmm
index cc24ea9293..e0cdfc2c38 100644
--- a/_maps/shuttles/ferry_base.dmm
+++ b/_maps/shuttles/ferry_base.dmm
@@ -20,9 +20,6 @@
/obj/effect/spawner/structure/window/shuttle,
/turf/open/floor/plating,
/area/shuttle/transport)
-"f" = (
-/turf/closed/wall/mineral/titanium/overspace,
-/area/shuttle/transport)
"g" = (
/turf/closed/wall/mineral/titanium/interior,
/area/shuttle/transport)
@@ -57,22 +54,12 @@
height = 12;
id = "ferry";
name = "ferry shuttle";
- roundstart_move = "ferry_away";
port_direction = 2;
width = 5;
timid = 1
},
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/transport)
-"n" = (
-/obj/structure/shuttle/engine/propulsion{
- dir = 4
- },
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/transport)
-"o" = (
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/transport)
"p" = (
/obj/structure/closet/crate,
/turf/open/floor/mineral/titanium/blue,
@@ -83,9 +70,6 @@
},
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/transport)
-"r" = (
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/transport)
(1,1,1) = {"
a
diff --git a/_maps/shuttles/ferry_fancy.dmm b/_maps/shuttles/ferry_fancy.dmm
new file mode 100644
index 0000000000..83795f0c55
--- /dev/null
+++ b/_maps/shuttles/ferry_fancy.dmm
@@ -0,0 +1,195 @@
+//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
+"a" = (
+/turf/template_noop,
+/area/template_noop)
+"b" = (
+/turf/closed/wall/mineral/titanium,
+/area/shuttle/transport)
+"c" = (
+/obj/effect/spawner/structure/window/shuttle,
+/turf/open/floor/plating,
+/area/shuttle/transport)
+"d" = (
+/obj/machinery/door/airlock/external,
+/turf/open/floor/pod/dark,
+/area/shuttle/transport)
+"e" = (
+/obj/structure/shuttle/engine/propulsion/left{
+ dir = 8
+ },
+/turf/open/floor/plating/airless,
+/area/shuttle/transport)
+"f" = (
+/obj/structure/shuttle/engine/heater{
+ dir = 8
+ },
+/obj/structure/window/reinforced,
+/turf/open/floor/plating/airless,
+/area/shuttle/transport)
+"g" = (
+/obj/structure/chair,
+/turf/open/floor/pod/dark,
+/area/shuttle/transport)
+"h" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/pod/light,
+/area/shuttle/transport)
+"i" = (
+/turf/open/floor/pod/light,
+/area/shuttle/transport)
+"j" = (
+/obj/structure/shuttle/engine/heater{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/open/floor/plating/airless,
+/area/shuttle/transport)
+"k" = (
+/obj/machinery/light/small,
+/turf/open/floor/pod/light,
+/area/shuttle/transport)
+"l" = (
+/obj/machinery/door/airlock/titanium,
+/turf/open/floor/pod/light,
+/area/shuttle/transport)
+"m" = (
+/obj/machinery/computer/shuttle/ferry/request{
+ dir = 8
+ },
+/turf/open/floor/pod/dark,
+/area/shuttle/transport)
+"n" = (
+/obj/machinery/door/airlock/titanium,
+/obj/docking_port/mobile{
+ dir = 8;
+ dwidth = 2;
+ height = 13;
+ id = "ferry";
+ name = "ferry shuttle";
+ port_direction = 1;
+ preferred_direction = 4;
+ timid = 1;
+ width = 5
+ },
+/turf/open/floor/pod/light,
+/area/shuttle/transport)
+"o" = (
+/obj/structure/shuttle/engine/heater{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 1;
+ pixel_y = 1
+ },
+/turf/open/floor/plating/airless,
+/area/shuttle/transport)
+"p" = (
+/obj/structure/chair{
+ dir = 1
+ },
+/turf/open/floor/pod/dark,
+/area/shuttle/transport)
+"q" = (
+/obj/machinery/light,
+/turf/open/floor/pod/light,
+/area/shuttle/transport)
+"r" = (
+/obj/machinery/door/airlock/external,
+/turf/open/floor/pod/light,
+/area/shuttle/transport)
+
+(1,1,1) = {"
+a
+a
+e
+a
+a
+"}
+(2,1,1) = {"
+a
+e
+j
+e
+a
+"}
+(3,1,1) = {"
+a
+f
+i
+o
+a
+"}
+(4,1,1) = {"
+a
+b
+k
+b
+a
+"}
+(5,1,1) = {"
+b
+b
+l
+b
+b
+"}
+(6,1,1) = {"
+c
+g
+i
+p
+c
+"}
+(7,1,1) = {"
+b
+g
+i
+p
+b
+"}
+(8,1,1) = {"
+b
+h
+i
+i
+b
+"}
+(9,1,1) = {"
+d
+i
+m
+i
+r
+"}
+(10,1,1) = {"
+b
+i
+i
+q
+b
+"}
+(11,1,1) = {"
+b
+g
+i
+p
+b
+"}
+(12,1,1) = {"
+c
+g
+i
+p
+c
+"}
+(13,1,1) = {"
+b
+c
+n
+c
+b
+"}
diff --git a/_maps/shuttles/ferry_lighthouse.dmm b/_maps/shuttles/ferry_lighthouse.dmm
index f7e907a255..f1c7bb5e69 100644
--- a/_maps/shuttles/ferry_lighthouse.dmm
+++ b/_maps/shuttles/ferry_lighthouse.dmm
@@ -17,19 +17,12 @@
"ad" = (
/turf/closed/wall/mineral/titanium,
/area/shuttle/transport)
-"ae" = (
-/turf/template_noop,
-/area/template_noop)
"af" = (
/turf/closed/wall/r_wall,
/area/shuttle/transport)
"ag" = (
/turf/open/floor/plating/airless,
/area/shuttle/transport)
-"ah" = (
-/obj/structure/foamedmetal,
-/turf/open/space,
-/area/shuttle/transport)
"ai" = (
/obj/machinery/vending/liberationstation,
/turf/open/floor/mineral/titanium/blue,
@@ -97,9 +90,6 @@
/obj/effect/spawner/structure/window/shuttle,
/turf/closed/wall/mineral/titanium,
/area/shuttle/transport)
-"ax" = (
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/transport)
"ay" = (
/obj/structure/window/shuttle,
/obj/structure/grille,
@@ -109,9 +99,6 @@
/obj/effect/spawner/structure/window/shuttle,
/turf/open/floor/plating,
/area/shuttle/transport)
-"aA" = (
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/transport)
"aB" = (
/obj/structure/grille/broken,
/obj/structure/window/fulltile,
@@ -178,7 +165,6 @@
height = 27;
id = "ferry";
name = "The Lighthouse";
- roundstart_move = "ferry_away";
timid = 1;
port_direction = 2;
width = 16
@@ -232,9 +218,6 @@
/obj/effect/spawner/structure/window/reinforced,
/turf/closed/wall/mineral/titanium,
/area/shuttle/transport)
-"aZ" = (
-/turf/closed/wall/mineral/titanium/overspace,
-/area/shuttle/transport)
"ba" = (
/obj/machinery/conveyor{
dir = 1;
@@ -392,7 +375,7 @@ bi
bj
"}
(6,1,1) = {"
-ae
+aa
ad
aM
al
@@ -410,8 +393,8 @@ aM
ad
"}
(7,1,1) = {"
-ae
-ae
+aa
+aa
ad
ad
aM
@@ -425,13 +408,13 @@ aL
bf
aM
ad
-ae
+aa
"}
(8,1,1) = {"
-ae
-ae
-ae
-ae
+aa
+aa
+aa
+aa
ad
ar
au
@@ -442,14 +425,14 @@ au
bb
bg
ad
-ae
-ae
+aa
+aa
"}
(9,1,1) = {"
-ae
-ae
-ae
-ae
+aa
+aa
+aa
+aa
ap
ap
av
@@ -460,15 +443,15 @@ aC
bc
aM
ad
-ae
-ae
+aa
+aa
"}
(10,1,1) = {"
-ae
-ae
-ae
-ae
-ae
+aa
+aa
+aa
+aa
+aa
ap
au
aD
@@ -477,16 +460,16 @@ aD
aD
bd
ad
-ae
-ae
-ae
+aa
+aa
+aa
"}
(11,1,1) = {"
-ae
-ae
-ae
-ae
-ae
+aa
+aa
+aa
+aa
+aa
ap
ap
aD
@@ -495,295 +478,295 @@ aD
aD
aM
ad
-ae
-ae
-ae
+aa
+aa
+aa
"}
(12,1,1) = {"
-ae
-ae
-ae
-ae
-ae
-ae
+aa
+aa
+aa
+aa
+aa
+aa
ap
aD
aD
aD
aD
ad
-ae
-ae
-ae
-ae
+aa
+aa
+aa
+aa
"}
(13,1,1) = {"
-ae
-ae
-ae
-ae
-ae
-ae
+aa
+aa
+aa
+aa
+aa
+aa
ap
aE
aN
aE
aM
ad
-ae
-ae
-ae
-ae
+aa
+aa
+aa
+aa
"}
(14,1,1) = {"
-ae
-ae
-ae
-ae
-ae
-ae
+aa
+aa
+aa
+aa
+aa
+aa
aw
aE
aN
aE
ad
-ae
-ae
-ae
-ae
-ae
+aa
+aa
+aa
+aa
+aa
"}
(15,1,1) = {"
-ae
-ae
-ae
-ae
-ae
-ae
+aa
+aa
+aa
+aa
+aa
+aa
aw
aE
aE
aE
ad
-ae
-ae
-ae
-ae
-ae
+aa
+aa
+aa
+aa
+aa
"}
(16,1,1) = {"
-ae
-ae
-ae
-ae
-ae
-ae
+aa
+aa
+aa
+aa
+aa
+aa
ad
ak
aE
ak
aY
-ae
-ae
-ae
-ae
-ae
+aa
+aa
+aa
+aa
+aa
"}
(17,1,1) = {"
-ae
-ae
-ae
-ae
-ae
-ae
+aa
+aa
+aa
+aa
+aa
+aa
ad
aF
aE
aT
aw
-ae
-ae
-ae
-ae
-ae
+aa
+aa
+aa
+aa
+aa
"}
(18,1,1) = {"
-ae
-ae
-ae
-ae
-ae
-ae
+aa
+aa
+aa
+aa
+aa
+aa
ad
aG
aE
aU
ad
-ae
-ae
-ae
-ae
-ae
+aa
+aa
+aa
+aa
+aa
"}
(19,1,1) = {"
-ae
-ae
-ae
-ae
-ae
-ae
+aa
+aa
+aa
+aa
+aa
+aa
ad
aH
aE
aV
ad
-ae
-ae
-ae
-ae
-ae
+aa
+aa
+aa
+aa
+aa
"}
(20,1,1) = {"
-ae
-ae
-ae
-ae
-ae
-ae
+aa
+aa
+aa
+aa
+aa
+aa
ay
aI
aE
aW
ay
-ae
-ae
-ae
-ae
-ae
+aa
+aa
+aa
+aa
+aa
"}
(21,1,1) = {"
-ae
-ae
-ae
-ae
-ae
-ae
+aa
+aa
+aa
+aa
+aa
+aa
ad
ak
aE
aW
ad
-ae
-ae
-ae
-ae
-ae
+aa
+aa
+aa
+aa
+aa
"}
(22,1,1) = {"
-ae
-ae
-ae
-ae
-ae
-ae
+aa
+aa
+aa
+aa
+aa
+aa
ad
aJ
aE
aW
ad
-ae
-ae
-ae
-ae
-ae
+aa
+aa
+aa
+aa
+aa
"}
(23,1,1) = {"
-ae
-ae
-ae
-ae
-ae
-ae
+aa
+aa
+aa
+aa
+aa
+aa
ad
aJ
aE
aW
ad
-ae
-ae
-ae
-ae
-ae
+aa
+aa
+aa
+aa
+aa
"}
(24,1,1) = {"
-ae
-ae
-ae
-ae
-ae
-ae
+aa
+aa
+aa
+aa
+aa
+aa
az
aJ
aE
aW
az
-ae
-ae
-ae
-ae
-ae
+aa
+aa
+aa
+aa
+aa
"}
(25,1,1) = {"
-ae
-ae
-ae
-ae
-ae
-ae
+aa
+aa
+aa
+aa
+aa
+aa
ad
aJ
aE
aW
ad
-ae
-ae
-ae
-ae
-ae
+aa
+aa
+aa
+aa
+aa
"}
(26,1,1) = {"
-ae
-ae
-ae
-ae
-ae
-ae
+aa
+aa
+aa
+aa
+aa
+aa
ad
aK
aE
aW
ad
-ae
-ae
-ae
-ae
-ae
+aa
+aa
+aa
+aa
+aa
"}
(27,1,1) = {"
-ae
-ae
-ae
-ae
-ae
-ae
+aa
+aa
+aa
+aa
+aa
+aa
ad
ay
aO
ay
ad
-ae
-ae
-ae
-ae
-ae
+aa
+aa
+aa
+aa
+aa
"}
diff --git a/_maps/shuttles/ferry_meat.dmm b/_maps/shuttles/ferry_meat.dmm
index b9d3f49695..de68123287 100644
--- a/_maps/shuttles/ferry_meat.dmm
+++ b/_maps/shuttles/ferry_meat.dmm
@@ -11,9 +11,6 @@
"c" = (
/turf/closed/wall/mineral/titanium,
/area/shuttle/transport)
-"d" = (
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/transport)
"e" = (
/turf/closed/wall/mineral/titanium/interior,
/area/shuttle/transport)
@@ -113,22 +110,12 @@
height = 12;
id = "ferry";
name = "ferry shuttle";
- roundstart_move = "ferry_away";
port_direction = 2;
width = 5;
timid = 1
},
/turf/open/floor/plasteel/freezer,
/area/shuttle/transport)
-"r" = (
-/obj/structure/shuttle/engine/propulsion{
- dir = 4
- },
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/transport)
-"s" = (
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/transport)
"t" = (
/obj/structure/closet/chefcloset,
/turf/open/floor/plasteel/freezer,
@@ -140,7 +127,7 @@
"v" = (
/obj/machinery/door/airlock/freezer{
name = "Meat Tradeship Backroom";
- req_access = "28"
+ req_access = list(28)
},
/turf/open/floor/plasteel/freezer,
/area/shuttle/transport)
@@ -150,9 +137,6 @@
},
/turf/open/floor/plasteel/freezer,
/area/shuttle/transport)
-"x" = (
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/transport)
(1,1,1) = {"
a
diff --git a/_maps/shuttles/infiltrator_basic.dmm b/_maps/shuttles/infiltrator_basic.dmm
new file mode 100644
index 0000000000..8f45a0c4f1
--- /dev/null
+++ b/_maps/shuttles/infiltrator_basic.dmm
@@ -0,0 +1,1379 @@
+//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
+"aa" = (
+/turf/template_noop,
+/area/template_noop)
+"ac" = (
+/obj/machinery/porta_turret/syndicate{
+ dir = 9
+ },
+/turf/closed/wall/mineral/plastitanium,
+/area/shuttle/syndicate/bridge)
+"ad" = (
+/turf/closed/wall/mineral/plastitanium,
+/area/shuttle/syndicate/bridge)
+"ae" = (
+/obj/structure/window/plastitanium,
+/obj/machinery/door/poddoor/shutters{
+ id = "syndieshutters";
+ name = "blast shutters"
+ },
+/obj/structure/grille,
+/turf/open/floor/plating,
+/area/shuttle/syndicate/bridge)
+"af" = (
+/obj/machinery/porta_turret/syndicate{
+ dir = 5
+ },
+/turf/closed/wall/mineral/plastitanium,
+/area/shuttle/syndicate/bridge)
+"ag" = (
+/obj/machinery/computer/med_data/syndie,
+/obj/effect/turf_decal/bot_white,
+/turf/open/floor/plasteel/dark,
+/area/shuttle/syndicate/bridge)
+"ah" = (
+/obj/machinery/computer/crew/syndie,
+/obj/effect/turf_decal/bot_white,
+/turf/open/floor/plasteel/dark,
+/area/shuttle/syndicate/bridge)
+"ai" = (
+/obj/machinery/computer/camera_advanced/shuttle_docker/syndicate,
+/obj/effect/turf_decal/bot_white,
+/turf/open/floor/plasteel/dark,
+/area/shuttle/syndicate/bridge)
+"aj" = (
+/obj/machinery/computer/shuttle/syndicate,
+/obj/effect/turf_decal/bot_white,
+/turf/open/floor/plasteel/dark,
+/area/shuttle/syndicate/bridge)
+"ak" = (
+/obj/structure/table/reinforced,
+/turf/open/floor/plasteel/dark,
+/area/shuttle/syndicate/bridge)
+"al" = (
+/obj/machinery/computer/camera_advanced/syndie,
+/obj/effect/turf_decal/bot_white,
+/turf/open/floor/plasteel/dark,
+/area/shuttle/syndicate/bridge)
+"am" = (
+/obj/machinery/computer/secure_data/syndie,
+/obj/effect/turf_decal/bot_white,
+/turf/open/floor/plasteel/dark,
+/area/shuttle/syndicate/bridge)
+"an" = (
+/obj/structure/table/reinforced,
+/obj/machinery/status_display{
+ pixel_x = -32
+ },
+/obj/item/clipboard,
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/item/folder/red,
+/obj/item/toy/figure/syndie,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/shuttle/syndicate/bridge)
+"ao" = (
+/obj/structure/chair/office/dark{
+ dir = 8;
+ name = "tactical swivel chair"
+ },
+/turf/open/floor/plasteel/dark,
+/area/shuttle/syndicate/bridge)
+"ap" = (
+/turf/open/floor/plasteel/dark,
+/area/shuttle/syndicate/bridge)
+"aq" = (
+/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/dark,
+/area/shuttle/syndicate/bridge)
+"ar" = (
+/obj/structure/chair/office/dark{
+ dir = 4;
+ name = "tactical swivel chair"
+ },
+/turf/open/floor/plasteel/dark,
+/area/shuttle/syndicate/bridge)
+"as" = (
+/obj/structure/table/reinforced,
+/obj/machinery/ai_status_display{
+ pixel_x = 32
+ },
+/obj/item/storage/fancy/donut_box,
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/shuttle/syndicate/bridge)
+"at" = (
+/turf/open/floor/plasteel/vault/side,
+/area/shuttle/syndicate/bridge)
+"au" = (
+/obj/machinery/status_display,
+/turf/closed/wall/mineral/plastitanium,
+/area/shuttle/syndicate/bridge)
+"av" = (
+/obj/machinery/door/airlock/hatch{
+ name = "Cockpit";
+ req_access_txt = "150"
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/shuttle/syndicate/bridge)
+"aw" = (
+/obj/machinery/porta_turret/syndicate{
+ dir = 10
+ },
+/turf/closed/wall/mineral/plastitanium,
+/area/shuttle/syndicate/hallway)
+"ax" = (
+/turf/closed/wall/mineral/plastitanium,
+/area/shuttle/syndicate/hallway)
+"ay" = (
+/obj/structure/table/reinforced,
+/obj/item/stack/cable_coil/white,
+/obj/item/stack/cable_coil/white,
+/obj/item/crowbar/red,
+/turf/open/floor/plasteel/vault{
+ dir = 5
+ },
+/area/shuttle/syndicate/hallway)
+"az" = (
+/turf/open/floor/plasteel/vault{
+ dir = 5
+ },
+/area/shuttle/syndicate/hallway)
+"aA" = (
+/obj/structure/table/reinforced,
+/obj/item/storage/box/handcuffs{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/storage/box/zipties,
+/turf/open/floor/plasteel/vault{
+ dir = 5
+ },
+/area/shuttle/syndicate/hallway)
+"aB" = (
+/obj/machinery/porta_turret/syndicate{
+ dir = 6
+ },
+/turf/closed/wall/mineral/plastitanium,
+/area/shuttle/syndicate/hallway)
+"aC" = (
+/obj/structure/chair{
+ dir = 4;
+ name = "tactical chair"
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 5
+ },
+/area/shuttle/syndicate/hallway)
+"aD" = (
+/turf/open/floor/plasteel/dark,
+/area/shuttle/syndicate/hallway)
+"aE" = (
+/obj/structure/chair{
+ dir = 8;
+ name = "tactical chair"
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 5
+ },
+/area/shuttle/syndicate/hallway)
+"aF" = (
+/obj/machinery/porta_turret/syndicate{
+ dir = 9
+ },
+/turf/closed/wall/mineral/plastitanium,
+/area/shuttle/syndicate/eva)
+"aG" = (
+/turf/closed/wall/mineral/plastitanium,
+/area/shuttle/syndicate/eva)
+"aH" = (
+/obj/structure/chair{
+ dir = 4;
+ name = "tactical chair"
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 5
+ },
+/area/shuttle/syndicate/hallway)
+"aI" = (
+/obj/structure/chair{
+ dir = 8;
+ name = "tactical chair"
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 5
+ },
+/area/shuttle/syndicate/hallway)
+"aJ" = (
+/turf/closed/wall/mineral/plastitanium,
+/area/shuttle/syndicate/airlock)
+"aK" = (
+/obj/machinery/porta_turret/syndicate{
+ dir = 5
+ },
+/turf/closed/wall/mineral/plastitanium,
+/area/shuttle/syndicate/armory)
+"aL" = (
+/obj/machinery/suit_storage_unit/syndicate,
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate/eva)
+"aM" = (
+/turf/open/floor/plasteel/vault{
+ dir = 5
+ },
+/area/shuttle/syndicate/eva)
+"aN" = (
+/obj/machinery/portable_atmospherics/canister/oxygen,
+/obj/effect/turf_decal/bot_white,
+/turf/open/floor/plasteel/dark,
+/area/shuttle/syndicate/eva)
+"aO" = (
+/obj/structure/chair{
+ dir = 4;
+ name = "tactical chair"
+ },
+/obj/effect/turf_decal/bot_white,
+/turf/open/floor/plasteel/dark,
+/area/shuttle/syndicate/airlock)
+"aP" = (
+/turf/open/floor/plasteel/vault{
+ dir = 5
+ },
+/area/shuttle/syndicate/airlock)
+"aQ" = (
+/obj/structure/table/reinforced,
+/obj/item/storage/toolbox/syndicate,
+/obj/item/crowbar/red,
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate/airlock)
+"aR" = (
+/obj/machinery/suit_storage_unit/syndicate,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate/eva)
+"aS" = (
+/obj/structure/tank_dispenser/oxygen,
+/obj/effect/turf_decal/bot_white,
+/turf/open/floor/plasteel/dark,
+/area/shuttle/syndicate/eva)
+"aT" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate/airlock)
+"aU" = (
+/obj/machinery/portable_atmospherics/canister/oxygen,
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/effect/turf_decal/bot_white,
+/turf/open/floor/plasteel/dark,
+/area/shuttle/syndicate/eva)
+"aV" = (
+/obj/structure/grille,
+/obj/structure/window/plastitanium,
+/turf/open/floor/plating,
+/area/shuttle/syndicate/hallway)
+"aW" = (
+/obj/machinery/door/airlock/external{
+ name = "Ready Room";
+ req_access_txt = "150"
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/shuttle/syndicate/hallway)
+"aX" = (
+/obj/structure/chair{
+ dir = 4;
+ name = "tactical chair"
+ },
+/obj/effect/turf_decal/bot_white,
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/plasteel/dark,
+/area/shuttle/syndicate/airlock)
+"aY" = (
+/obj/machinery/door/poddoor{
+ id = "smindicate";
+ name = "outer blast door"
+ },
+/obj/machinery/button/door{
+ id = "smindicate";
+ name = "external door control";
+ pixel_y = 26;
+ req_access_txt = "150"
+ },
+/obj/docking_port/mobile{
+ dheight = 1;
+ dir = 8;
+ dwidth = 12;
+ height = 17;
+ hidden = 1;
+ id = "syndicate";
+ movement_force = list("KNOCKDOWN" = 0, "THROW" = 0);
+ name = "syndicate infiltrator";
+ port_direction = 4;
+ width = 23
+ },
+/obj/structure/fans/tiny,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate/airlock)
+"aZ" = (
+/turf/open/floor/plasteel/dark,
+/area/shuttle/syndicate/eva)
+"ba" = (
+/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/eva)
+"bb" = (
+/obj/machinery/door/airlock/external{
+ req_access_txt = "150"
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate/airlock)
+"bc" = (
+/turf/open/floor/plasteel/dark,
+/area/shuttle/syndicate/airlock)
+"bd" = (
+/obj/structure/sign/warning/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/airlock)
+"be" = (
+/obj/machinery/suit_storage_unit/syndicate,
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate/eva)
+"bf" = (
+/obj/structure/reagent_dispensers/fueltank,
+/obj/effect/turf_decal/bot_white,
+/turf/open/floor/plasteel/dark,
+/area/shuttle/syndicate/eva)
+"bg" = (
+/obj/structure/grille,
+/obj/structure/window/plastitanium,
+/turf/open/floor/plating,
+/area/shuttle/syndicate/eva)
+"bh" = (
+/obj/structure/grille,
+/obj/structure/window/plastitanium,
+/turf/open/floor/plating,
+/area/shuttle/syndicate/airlock)
+"bi" = (
+/obj/structure/rack,
+/obj/item/clothing/suit/space/syndicate/black/red,
+/obj/item/clothing/head/helmet/space/syndicate/black/red,
+/obj/effect/turf_decal/bot_white,
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate/airlock)
+"bj" = (
+/obj/machinery/porta_turret/syndicate{
+ dir = 9
+ },
+/turf/closed/wall/mineral/plastitanium,
+/area/shuttle/syndicate/medical)
+"bk" = (
+/turf/closed/wall/mineral/plastitanium,
+/area/shuttle/syndicate/medical)
+"bl" = (
+/obj/machinery/ai_status_display,
+/turf/closed/wall/mineral/plastitanium,
+/area/shuttle/syndicate/medical)
+"bm" = (
+/turf/closed/wall/mineral/plastitanium/nodiagonal,
+/area/shuttle/syndicate/medical)
+"bn" = (
+/turf/closed/wall/mineral/plastitanium/nodiagonal,
+/area/shuttle/syndicate/armory)
+"bo" = (
+/turf/closed/wall/mineral/plastitanium,
+/area/shuttle/syndicate/armory)
+"bp" = (
+/obj/machinery/status_display,
+/turf/closed/wall/mineral/plastitanium,
+/area/shuttle/syndicate/armory)
+"bq" = (
+/obj/machinery/sleeper/syndie{
+ dir = 4
+ },
+/obj/effect/turf_decal/bot_white,
+/turf/open/floor/plasteel/dark,
+/area/shuttle/syndicate/medical)
+"br" = (
+/turf/open/floor/plasteel/dark,
+/area/shuttle/syndicate/medical)
+"bs" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/plasteel/dark,
+/area/shuttle/syndicate/medical)
+"bt" = (
+/obj/item/reagent_containers/glass/bottle/epinephrine{
+ pixel_x = 6
+ },
+/obj/item/reagent_containers/glass/bottle/charcoal{
+ pixel_x = -3
+ },
+/obj/item/reagent_containers/glass/bottle/epinephrine{
+ pixel_x = -3;
+ pixel_y = 8
+ },
+/obj/item/reagent_containers/glass/bottle/charcoal{
+ pixel_x = 6;
+ pixel_y = 8
+ },
+/obj/item/reagent_containers/syringe/epinephrine{
+ pixel_x = 3;
+ pixel_y = -2
+ },
+/obj/item/reagent_containers/syringe/epinephrine{
+ pixel_x = 4;
+ pixel_y = 1
+ },
+/obj/item/reagent_containers/syringe/epinephrine{
+ pixel_x = -2;
+ pixel_y = 5
+ },
+/obj/item/reagent_containers/syringe/epinephrine{
+ pixel_x = 2;
+ pixel_y = 8
+ },
+/obj/structure/table/reinforced,
+/obj/effect/turf_decal/bot_white,
+/turf/open/floor/plasteel/dark,
+/area/shuttle/syndicate/medical)
+"bu" = (
+/obj/structure/table/reinforced,
+/obj/item/stack/medical/gauze,
+/obj/item/stack/medical/bruise_pack,
+/obj/item/stack/medical/ointment,
+/obj/effect/turf_decal/bot_white,
+/turf/open/floor/plasteel/dark,
+/area/shuttle/syndicate/medical)
+"bv" = (
+/obj/structure/grille,
+/obj/structure/window/plastitanium,
+/turf/open/floor/plating,
+/area/shuttle/syndicate/medical)
+"bw" = (
+/obj/structure/grille,
+/obj/structure/window/plastitanium,
+/turf/open/floor/plating,
+/area/shuttle/syndicate/armory)
+"bx" = (
+/obj/item/stock_parts/cell/high{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/item/stock_parts/cell/high,
+/obj/structure/table/reinforced,
+/turf/open/floor/plasteel/dark,
+/area/shuttle/syndicate/armory)
+"by" = (
+/obj/item/screwdriver{
+ pixel_y = 9
+ },
+/obj/item/device/assembly/voice{
+ pixel_y = 3
+ },
+/obj/structure/table/reinforced,
+/turf/open/floor/plasteel/dark,
+/area/shuttle/syndicate/armory)
+"bz" = (
+/obj/item/wrench,
+/obj/item/device/assembly/infra,
+/obj/structure/table/reinforced,
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/plasteel/dark,
+/area/shuttle/syndicate/armory)
+"bA" = (
+/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/dark,
+/area/shuttle/syndicate/armory)
+"bB" = (
+/obj/item/weldingtool/largetank{
+ pixel_y = 3
+ },
+/obj/item/device/multitool,
+/obj/structure/table/reinforced,
+/turf/open/floor/plasteel/dark,
+/area/shuttle/syndicate/armory)
+"bC" = (
+/obj/structure/bed/roller,
+/obj/machinery/iv_drip,
+/obj/effect/turf_decal/bot_white,
+/turf/open/floor/plasteel/dark,
+/area/shuttle/syndicate/medical)
+"bD" = (
+/turf/open/floor/plasteel/vault/side,
+/area/shuttle/syndicate/medical)
+"bE" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 5
+ },
+/area/shuttle/syndicate/hallway)
+"bF" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 5
+ },
+/area/shuttle/syndicate/hallway)
+"bG" = (
+/turf/open/floor/plasteel/vault/side,
+/area/shuttle/syndicate/armory)
+"bH" = (
+/turf/open/floor/plasteel/vault{
+ dir = 5
+ },
+/area/shuttle/syndicate/medical)
+"bI" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate/medical)
+"bJ" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate/medical)
+"bK" = (
+/obj/machinery/door/airlock/hatch{
+ req_access_txt = "150"
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/shuttle/syndicate/medical)
+"bL" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate/hallway)
+"bM" = (
+/obj/machinery/door/airlock/hatch{
+ req_access_txt = "150"
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/shuttle/syndicate/armory)
+"bN" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate/armory)
+"bO" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate/armory)
+"bP" = (
+/turf/open/floor/plasteel/vault{
+ dir = 5
+ },
+/area/shuttle/syndicate/armory)
+"bQ" = (
+/obj/structure/closet/syndicate/personal,
+/obj/effect/turf_decal/bot_white,
+/turf/open/floor/plasteel/dark,
+/area/shuttle/syndicate/armory)
+"bR" = (
+/obj/structure/table/reinforced,
+/obj/item/reagent_containers/glass/beaker/large,
+/obj/item/reagent_containers/glass/beaker,
+/obj/item/reagent_containers/dropper,
+/turf/open/floor/plasteel/vault/side,
+/area/shuttle/syndicate/medical)
+"bS" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate/medical)
+"bT" = (
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate/medical)
+"bU" = (
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate/hallway)
+"bV" = (
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate/armory)
+"bW" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate/armory)
+"bX" = (
+/obj/structure/closet/syndicate/nuclear,
+/obj/effect/turf_decal/bot_white,
+/turf/open/floor/plasteel/dark,
+/area/shuttle/syndicate/armory)
+"bY" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/item/bodypart/r_arm/robot,
+/obj/item/bodypart/l_arm/robot,
+/obj/structure/table/reinforced,
+/obj/item/toy/plush/nukeplushie,
+/turf/open/floor/plasteel/vault/side,
+/area/shuttle/syndicate/medical)
+"bZ" = (
+/obj/machinery/door/window{
+ dir = 1;
+ name = "Surgery";
+ req_access_txt = "150"
+ },
+/turf/open/floor/plasteel/vault/side,
+/area/shuttle/syndicate/medical)
+"ca" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/turf/open/floor/plasteel/vault/side,
+/area/shuttle/syndicate/medical)
+"cb" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/item/storage/firstaid/regular{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/storage/firstaid/brute,
+/obj/item/storage/firstaid/regular{
+ pixel_x = -3;
+ pixel_y = -3
+ },
+/obj/structure/table/reinforced,
+/turf/open/floor/plasteel/vault/side,
+/area/shuttle/syndicate/medical)
+"cc" = (
+/obj/item/storage/firstaid/regular{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/storage/firstaid/fire,
+/obj/item/storage/firstaid/regular{
+ pixel_x = -3;
+ pixel_y = -3
+ },
+/obj/structure/table/reinforced,
+/turf/open/floor/plasteel/vault/side,
+/area/shuttle/syndicate/medical)
+"cd" = (
+/turf/open/floor/plasteel/vault,
+/area/shuttle/syndicate/hallway)
+"ce" = (
+/obj/item/device/sbeacondrop/bomb{
+ pixel_y = 5
+ },
+/obj/item/device/sbeacondrop/bomb,
+/obj/structure/table/reinforced,
+/turf/open/floor/plasteel/vault/side,
+/area/shuttle/syndicate/armory)
+"cf" = (
+/obj/item/grenade/syndieminibomb{
+ pixel_x = 4;
+ pixel_y = 2
+ },
+/obj/item/grenade/syndieminibomb{
+ pixel_x = -1
+ },
+/obj/structure/table/reinforced,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/item/grenade/plastic/c4,
+/obj/item/grenade/plastic/c4,
+/obj/item/grenade/plastic/c4,
+/obj/item/grenade/plastic/c4,
+/obj/item/grenade/plastic/c4,
+/turf/open/floor/plasteel/vault/side,
+/area/shuttle/syndicate/armory)
+"cg" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/turf/open/floor/plasteel/vault/side,
+/area/shuttle/syndicate/armory)
+"ch" = (
+/obj/machinery/door/window{
+ dir = 1;
+ name = "Technological Storage";
+ req_access_txt = "150"
+ },
+/turf/open/floor/plasteel/vault/side,
+/area/shuttle/syndicate/armory)
+"ci" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/table/reinforced,
+/obj/item/device/aicard,
+/turf/open/floor/plasteel/vault/side,
+/area/shuttle/syndicate/armory)
+"cj" = (
+/obj/item/surgicaldrill,
+/obj/item/circular_saw,
+/obj/structure/table/reinforced,
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 5
+ },
+/area/shuttle/syndicate/medical)
+"ck" = (
+/obj/structure/sink{
+ dir = 4;
+ pixel_x = 11
+ },
+/obj/structure/mirror{
+ pixel_x = 30
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 5
+ },
+/area/shuttle/syndicate/medical)
+"cl" = (
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/shuttle/syndicate/hallway)
+"cm" = (
+/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/hallway)
+"cn" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 5
+ },
+/area/shuttle/syndicate/armory)
+"co" = (
+/obj/item/cautery,
+/obj/item/scalpel,
+/obj/structure/table/reinforced,
+/turf/open/floor/plasteel/vault{
+ dir = 5
+ },
+/area/shuttle/syndicate/medical)
+"cp" = (
+/obj/structure/table/optable,
+/obj/item/surgical_drapes,
+/obj/effect/turf_decal/bot_white,
+/turf/open/floor/plasteel/dark,
+/area/shuttle/syndicate/medical)
+"cq" = (
+/obj/item/retractor,
+/obj/item/hemostat,
+/obj/structure/table/reinforced,
+/turf/open/floor/plasteel/vault{
+ dir = 5
+ },
+/area/shuttle/syndicate/medical)
+"cr" = (
+/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/hallway)
+"cs" = (
+/obj/machinery/recharge_station,
+/turf/open/floor/circuit/red,
+/area/shuttle/syndicate/armory)
+"ct" = (
+/obj/machinery/telecomms/allinone{
+ intercept = 1
+ },
+/turf/open/floor/circuit/red,
+/area/shuttle/syndicate/armory)
+"cu" = (
+/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/medical)
+"cv" = (
+/obj/structure/shuttle/engine/propulsion/left,
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plating/airless,
+/area/shuttle/syndicate/hallway)
+"cw" = (
+/obj/structure/shuttle/engine/propulsion,
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plating/airless,
+/area/shuttle/syndicate/hallway)
+"cx" = (
+/obj/structure/shuttle/engine/propulsion/right,
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plating/airless,
+/area/shuttle/syndicate/hallway)
+"cy" = (
+/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/armory)
+"cz" = (
+/obj/structure/shuttle/engine/propulsion/left,
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plating/airless,
+/area/shuttle/syndicate/medical)
+"cA" = (
+/obj/structure/shuttle/engine/propulsion,
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plating/airless,
+/area/shuttle/syndicate/medical)
+"cB" = (
+/obj/structure/shuttle/engine/propulsion/right,
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plating/airless,
+/area/shuttle/syndicate/medical)
+"cC" = (
+/obj/machinery/porta_turret/syndicate{
+ dir = 6
+ },
+/turf/closed/wall/mineral/plastitanium,
+/area/shuttle/syndicate/medical)
+"cD" = (
+/obj/machinery/porta_turret/syndicate{
+ dir = 10
+ },
+/turf/closed/wall/mineral/plastitanium,
+/area/shuttle/syndicate/armory)
+"cE" = (
+/obj/structure/shuttle/engine/propulsion/left,
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plating/airless,
+/area/shuttle/syndicate/armory)
+"cF" = (
+/obj/structure/shuttle/engine/propulsion,
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plating/airless,
+/area/shuttle/syndicate/armory)
+"cG" = (
+/obj/structure/shuttle/engine/propulsion/right,
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plating/airless,
+/area/shuttle/syndicate/armory)
+
+(1,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+bj
+bk
+bk
+bk
+bk
+bk
+bk
+bk
+bk
+bk
+"}
+(2,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aF
+aG
+aG
+aG
+aG
+aG
+bk
+bq
+bC
+bq
+bR
+bY
+cj
+co
+cu
+cz
+"}
+(3,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aG
+aL
+aR
+aR
+aR
+be
+bk
+br
+bD
+bH
+bH
+bZ
+bH
+cp
+cu
+cA
+"}
+(4,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aG
+aM
+aM
+aM
+aM
+aM
+bl
+bs
+bD
+bI
+bS
+ca
+ck
+cq
+cu
+cB
+"}
+(5,1,1) = {"
+ac
+ad
+ad
+ad
+ad
+aa
+aa
+aG
+aM
+aM
+aM
+aM
+aM
+bk
+bt
+bD
+bJ
+bT
+cb
+bm
+bk
+bk
+cC
+"}
+(6,1,1) = {"
+ad
+ag
+an
+at
+ad
+aw
+aa
+aG
+aN
+aS
+aU
+aZ
+bf
+bk
+bu
+bD
+bJ
+bT
+cc
+bk
+aa
+aa
+aa
+"}
+(7,1,1) = {"
+ae
+ah
+ao
+at
+ad
+ax
+ax
+aG
+aG
+aG
+aG
+ba
+bg
+bm
+bv
+bv
+bK
+bv
+bk
+bk
+ax
+ax
+aa
+"}
+(8,1,1) = {"
+ae
+ai
+ap
+at
+au
+ay
+aC
+aH
+aC
+aC
+aV
+az
+az
+az
+az
+bE
+bL
+bU
+cd
+cl
+cr
+cv
+aa
+"}
+(9,1,1) = {"
+ae
+aj
+aq
+at
+av
+az
+aD
+aD
+aD
+az
+aW
+az
+aD
+aD
+aD
+aD
+bL
+bU
+cd
+cm
+cr
+cw
+aa
+"}
+(10,1,1) = {"
+ae
+ak
+ap
+at
+ad
+aA
+aE
+aI
+aE
+aE
+aV
+az
+az
+az
+az
+bF
+bL
+bU
+cd
+cl
+cr
+cx
+aa
+"}
+(11,1,1) = {"
+ae
+al
+ar
+at
+ad
+ax
+ax
+ax
+ax
+aJ
+aJ
+bb
+bh
+bn
+bw
+bw
+bM
+bw
+bo
+bo
+ax
+ax
+aa
+"}
+(12,1,1) = {"
+ad
+am
+as
+at
+ad
+aB
+aa
+aJ
+aO
+aO
+aX
+bc
+aO
+bo
+bx
+bG
+bN
+bV
+ce
+bo
+aa
+aa
+aa
+"}
+(13,1,1) = {"
+af
+ad
+ad
+ad
+ad
+aa
+aa
+aJ
+aP
+aP
+aP
+aP
+aP
+bo
+by
+bG
+bN
+bV
+cf
+bn
+bo
+bo
+cD
+"}
+(14,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aJ
+aP
+aP
+aP
+aP
+aP
+bp
+bz
+bG
+bO
+bW
+cg
+bP
+cs
+cy
+cE
+"}
+(15,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aJ
+aQ
+aT
+aT
+aT
+bi
+bo
+bA
+bG
+bP
+bP
+ch
+bP
+ct
+cy
+cF
+"}
+(16,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aK
+aJ
+aJ
+aY
+bd
+aJ
+bo
+bB
+bG
+bQ
+bX
+ci
+cn
+cs
+cy
+cG
+"}
+(17,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aK
+bo
+bo
+bo
+bo
+bo
+bo
+bo
+bo
+bo
+"}
diff --git a/_maps/shuttles/labour_box.dmm b/_maps/shuttles/labour_box.dmm
new file mode 100644
index 0000000000..dac173c279
--- /dev/null
+++ b/_maps/shuttles/labour_box.dmm
@@ -0,0 +1,186 @@
+//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
+"a" = (
+/turf/closed/wall/mineral/titanium,
+/area/shuttle/labor)
+"b" = (
+/obj/effect/spawner/structure/window/shuttle,
+/turf/open/floor/plating,
+/area/shuttle/labor)
+"c" = (
+/obj/machinery/computer/shuttle/labor{
+ dir = 4
+ },
+/obj/structure/reagent_dispensers/peppertank{
+ pixel_x = -31
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/labor)
+"d" = (
+/obj/structure/chair/office/dark{
+ dir = 1
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/labor)
+"e" = (
+/obj/structure/table,
+/obj/item/folder/red,
+/obj/item/restraints/handcuffs,
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/labor)
+"f" = (
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/labor)
+"g" = (
+/obj/machinery/button/flasher{
+ id = "gulagshuttleflasher";
+ name = "Flash Control";
+ pixel_y = -26;
+ req_access_txt = "1"
+ },
+/obj/machinery/light,
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/labor)
+"h" = (
+/obj/machinery/mineral/labor_claim_console{
+ machinedir = 2;
+ pixel_x = 30;
+ pixel_y = 30
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/labor)
+"i" = (
+/obj/machinery/door/airlock/titanium{
+ name = "Labor Shuttle Airlock";
+ req_access_txt = "2"
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/labor)
+"j" = (
+/obj/machinery/door/airlock/titanium{
+ name = "Labor Shuttle Airlock";
+ req_access_txt = "2"
+ },
+/turf/open/floor/plasteel/dark,
+/area/shuttle/labor)
+"k" = (
+/obj/machinery/mineral/stacking_machine/laborstacker{
+ input_dir = 2;
+ output_dir = 1
+ },
+/turf/open/floor/plasteel/dark,
+/area/shuttle/labor)
+"l" = (
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/labor)
+"m" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/labor)
+"n" = (
+/obj/machinery/mineral/labor_claim_console{
+ machinedir = 1;
+ pixel_x = 30
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/labor)
+"o" = (
+/obj/structure/chair{
+ dir = 8
+ },
+/obj/machinery/flasher{
+ id = "gulagshuttleflasher";
+ pixel_x = 25
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/labor)
+"p" = (
+/obj/structure/closet/crate,
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/labor)
+"q" = (
+/obj/machinery/door/airlock/titanium{
+ id_tag = "prisonshuttle";
+ name = "Labor Shuttle Airlock"
+ },
+/obj/docking_port/mobile{
+ dir = 8;
+ dwidth = 2;
+ height = 5;
+ id = "laborcamp";
+ name = "labor camp shuttle";
+ port_direction = 4;
+ timid = 1;
+ width = 9
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/labor)
+"r" = (
+/obj/structure/shuttle/engine/heater,
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 2.9
+ },
+/turf/open/floor/plating/airless,
+/area/shuttle/labor)
+"s" = (
+/obj/structure/shuttle/engine/propulsion,
+/turf/open/floor/plating/airless,
+/area/shuttle/labor)
+
+(1,1,1) = {"
+a
+a
+b
+a
+a
+b
+a
+a
+a
+"}
+(2,1,1) = {"
+b
+c
+f
+j
+l
+l
+p
+r
+s
+"}
+(3,1,1) = {"
+b
+d
+g
+a
+m
+l
+l
+r
+s
+"}
+(4,1,1) = {"
+b
+e
+h
+k
+n
+o
+l
+r
+s
+"}
+(5,1,1) = {"
+a
+a
+i
+a
+a
+a
+q
+a
+a
+"}
diff --git a/_maps/shuttles/labour_delta.dmm b/_maps/shuttles/labour_delta.dmm
new file mode 100644
index 0000000000..2ad922d9f4
--- /dev/null
+++ b/_maps/shuttles/labour_delta.dmm
@@ -0,0 +1,333 @@
+//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
+"a" = (
+/turf/closed/wall/mineral/titanium,
+/area/shuttle/labor)
+"b" = (
+/obj/effect/spawner/structure/window/shuttle,
+/turf/open/floor/plating,
+/area/shuttle/labor)
+"c" = (
+/obj/machinery/computer/shuttle/labor{
+ dir = 4
+ },
+/obj/structure/reagent_dispensers/peppertank{
+ pixel_x = -31
+ },
+/turf/open/floor/mineral/plastitanium/brig,
+/area/shuttle/labor)
+"d" = (
+/obj/structure/chair/office/dark{
+ dir = 1
+ },
+/turf/open/floor/mineral/plastitanium/brig,
+/area/shuttle/labor)
+"e" = (
+/obj/item/folder/red,
+/obj/item/restraints/handcuffs,
+/obj/structure/table/reinforced,
+/turf/open/floor/mineral/plastitanium/brig,
+/area/shuttle/labor)
+"f" = (
+/obj/structure/grille,
+/obj/structure/cable/yellow{
+ icon_state = "0-8"
+ },
+/obj/structure/window/shuttle,
+/turf/open/floor/plating,
+/area/shuttle/labor)
+"g" = (
+/turf/open/floor/mineral/plastitanium/brig,
+/area/shuttle/labor)
+"h" = (
+/obj/machinery/button/flasher{
+ id = "gulagshuttleflasher";
+ name = "Flash Control";
+ pixel_y = -26;
+ req_access_txt = "1"
+ },
+/obj/machinery/light,
+/turf/open/floor/mineral/plastitanium/brig,
+/area/shuttle/labor)
+"i" = (
+/obj/machinery/mineral/labor_claim_console{
+ machinedir = 2;
+ pixel_x = 30;
+ pixel_y = 30
+ },
+/turf/open/floor/mineral/plastitanium/brig,
+/area/shuttle/labor)
+"j" = (
+/obj/machinery/door/airlock/shuttle{
+ name = "Labor Shuttle Airlock";
+ req_access_txt = "2"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/shuttle/labor)
+"k" = (
+/obj/machinery/door/airlock/shuttle{
+ name = "Labor Shuttle Airlock";
+ req_access_txt = "2"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 2
+ },
+/turf/open/floor/plasteel/white,
+/area/shuttle/labor)
+"l" = (
+/turf/closed/wall/mineral/titanium/nodiagonal,
+/area/shuttle/labor)
+"m" = (
+/obj/machinery/mineral/stacking_machine/laborstacker{
+ input_dir = 2;
+ output_dir = 1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 2
+ },
+/turf/open/floor/plasteel/white,
+/area/shuttle/labor)
+"n" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/turf/open/floor/plasteel,
+/area/shuttle/labor)
+"o" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/shuttle/labor)
+"p" = (
+/obj/machinery/mineral/labor_claim_console{
+ machinedir = 1;
+ pixel_x = 30
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/turf/open/floor/plasteel,
+/area/shuttle/labor)
+"q" = (
+/obj/structure/chair{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/turf/open/floor/plasteel,
+/area/shuttle/labor)
+"r" = (
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel,
+/area/shuttle/labor)
+"s" = (
+/obj/structure/chair{
+ dir = 8
+ },
+/obj/machinery/flasher{
+ id = "gulagshuttleflasher";
+ pixel_x = 25
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/turf/open/floor/plasteel,
+/area/shuttle/labor)
+"t" = (
+/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/tank/internals/emergency_oxygen/double{
+ pixel_x = 3
+ },
+/obj/item/tank/internals/emergency_oxygen/double{
+ pixel_x = 3
+ },
+/obj/item/tank/internals/emergency_oxygen/double{
+ pixel_x = 3
+ },
+/obj/item/tank/internals/emergency_oxygen/double{
+ pixel_x = 3
+ },
+/obj/item/tank/internals/emergency_oxygen/double{
+ pixel_x = 3
+ },
+/obj/item/clothing/mask/breath{
+ pixel_x = -3;
+ pixel_y = -3
+ },
+/obj/item/clothing/mask/breath{
+ pixel_x = -3;
+ pixel_y = -3
+ },
+/obj/item/clothing/mask/breath{
+ pixel_x = -3;
+ pixel_y = -3
+ },
+/obj/item/clothing/mask/breath{
+ pixel_x = -3;
+ pixel_y = -3
+ },
+/obj/item/clothing/mask/breath{
+ pixel_x = -3;
+ pixel_y = -3
+ },
+/obj/item/clothing/head/hardhat/orange{
+ name = "protective hat";
+ pixel_y = 9
+ },
+/obj/item/clothing/head/hardhat/orange{
+ name = "protective hat";
+ pixel_y = 9
+ },
+/obj/item/clothing/head/hardhat/orange{
+ name = "protective hat";
+ pixel_y = 9
+ },
+/obj/item/clothing/head/hardhat/orange{
+ name = "protective hat";
+ pixel_y = 9
+ },
+/obj/item/clothing/head/hardhat/orange{
+ name = "protective hat";
+ pixel_y = 9
+ },
+/obj/structure/closet/crate/internals,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/shuttle/labor)
+"u" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/stripes/end{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/shuttle/labor)
+"v" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 2
+ },
+/turf/open/floor/plasteel,
+/area/shuttle/labor)
+"w" = (
+/obj/machinery/door/airlock/shuttle{
+ id_tag = "prisonshuttle";
+ name = "Labor Shuttle Airlock"
+ },
+/obj/docking_port/mobile{
+ dir = 8;
+ dwidth = 2;
+ height = 5;
+ id = "laborcamp";
+ name = "labor camp shuttle";
+ port_direction = 4;
+ width = 9
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/shuttle/labor)
+"x" = (
+/obj/structure/shuttle/engine/heater,
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 2.9
+ },
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plating/airless,
+/area/shuttle/labor)
+"y" = (
+/obj/structure/shuttle/engine/propulsion,
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plating/airless,
+/area/shuttle/labor)
+
+(1,1,1) = {"
+a
+a
+f
+a
+a
+f
+a
+a
+a
+"}
+(2,1,1) = {"
+b
+c
+g
+k
+n
+q
+t
+a
+y
+"}
+(3,1,1) = {"
+b
+d
+h
+l
+o
+r
+u
+x
+y
+"}
+(4,1,1) = {"
+b
+e
+i
+m
+p
+s
+v
+a
+y
+"}
+(5,1,1) = {"
+a
+a
+j
+a
+a
+a
+w
+a
+a
+"}
diff --git a/_maps/shuttles/mining_box.dmm b/_maps/shuttles/mining_box.dmm
new file mode 100644
index 0000000000..2b1771e0c7
--- /dev/null
+++ b/_maps/shuttles/mining_box.dmm
@@ -0,0 +1,114 @@
+//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
+"a" = (
+/turf/closed/wall/mineral/titanium,
+/area/shuttle/mining)
+"b" = (
+/obj/effect/spawner/structure/window/shuttle,
+/turf/open/floor/plating,
+/area/shuttle/mining)
+"c" = (
+/obj/structure/table,
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/mining)
+"d" = (
+/obj/machinery/computer/shuttle/mining,
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/mining)
+"e" = (
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/mining)
+"f" = (
+/obj/structure/chair{
+ dir = 1
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/mining)
+"g" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/mining)
+"h" = (
+/obj/machinery/door/airlock/titanium{
+ name = "Mining Shuttle Airlock";
+ req_access_txt = "0"
+ },
+/obj/docking_port/mobile{
+ dir = 8;
+ dwidth = 3;
+ height = 5;
+ id = "mining";
+ name = "mining shuttle";
+ port_direction = 4;
+ timid = 1;
+ width = 7
+ },
+/turf/open/floor/plating,
+/area/shuttle/mining)
+"i" = (
+/obj/structure/closet/crate,
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/mining)
+"j" = (
+/obj/structure/shuttle/engine/heater,
+/turf/open/floor/plating,
+/area/shuttle/mining)
+"k" = (
+/obj/structure/ore_box,
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/mining)
+"l" = (
+/obj/structure/shuttle/engine/propulsion/burst,
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 2.9
+ },
+/turf/open/floor/plating/airless,
+/area/shuttle/mining)
+
+(1,1,1) = {"
+a
+a
+b
+a
+b
+a
+a
+"}
+(2,1,1) = {"
+a
+c
+e
+g
+f
+i
+a
+"}
+(3,1,1) = {"
+b
+d
+f
+e
+f
+j
+l
+"}
+(4,1,1) = {"
+a
+c
+e
+e
+f
+k
+a
+"}
+(5,1,1) = {"
+a
+a
+b
+h
+b
+a
+a
+"}
diff --git a/_maps/shuttles/mining_delta.dmm b/_maps/shuttles/mining_delta.dmm
new file mode 100644
index 0000000000..bbdc919afc
--- /dev/null
+++ b/_maps/shuttles/mining_delta.dmm
@@ -0,0 +1,310 @@
+//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
+"a" = (
+/turf/closed/wall/mineral/titanium,
+/area/shuttle/mining)
+"b" = (
+/obj/effect/spawner/structure/window/shuttle,
+/turf/open/floor/plating,
+/area/shuttle/mining)
+"c" = (
+/obj/structure/table/reinforced,
+/obj/item/storage/toolbox/emergency,
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/shuttle/mining)
+"d" = (
+/obj/machinery/computer/shuttle/mining,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/shuttle/mining)
+"e" = (
+/obj/structure/table/reinforced,
+/obj/effect/decal/cleanable/dirt,
+/obj/item/crowbar/red,
+/obj/item/wrench,
+/obj/item/tank/internals/emergency_oxygen/engi,
+/obj/item/clothing/mask/gas,
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/shuttle/mining)
+"f" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/shuttle/mining)
+"g" = (
+/obj/structure/chair{
+ dir = 1
+ },
+/turf/open/floor/plasteel/neutral,
+/area/shuttle/mining)
+"h" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/blood/old,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/shuttle/mining)
+"i" = (
+/obj/machinery/door/airlock/shuttle{
+ name = "Mining Shuttle Airlock";
+ req_access_txt = "0"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/docking_port/mobile{
+ dir = 4;
+ dwidth = 3;
+ height = 5;
+ id = "mining";
+ name = "mining shuttle";
+ port_direction = 8;
+ width = 7
+ },
+/turf/open/floor/plasteel/white,
+/area/shuttle/mining)
+"j" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/shuttle/mining)
+"k" = (
+/turf/open/floor/plasteel/neutral,
+/area/shuttle/mining)
+"l" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/shuttle/mining)
+"m" = (
+/obj/machinery/door/airlock/shuttle{
+ name = "Mining Shuttle Airlock";
+ req_access_txt = "0"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/shuttle/mining)
+"n" = (
+/obj/structure/chair{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/stripes/end{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/shuttle/mining)
+"o" = (
+/obj/structure/chair{
+ dir = 1
+ },
+/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/shuttle/mining)
+"p" = (
+/obj/structure/chair{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/stripes/end{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/shuttle/mining)
+"q" = (
+/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/tank/internals/emergency_oxygen/double{
+ pixel_x = 3
+ },
+/obj/item/tank/internals/emergency_oxygen/double{
+ pixel_x = 3
+ },
+/obj/item/tank/internals/emergency_oxygen/double{
+ pixel_x = 3
+ },
+/obj/item/tank/internals/emergency_oxygen/double{
+ pixel_x = 3
+ },
+/obj/item/tank/internals/emergency_oxygen/double{
+ pixel_x = 3
+ },
+/obj/item/clothing/mask/breath{
+ pixel_x = -3;
+ pixel_y = -3
+ },
+/obj/item/clothing/mask/breath{
+ pixel_x = -3;
+ pixel_y = -3
+ },
+/obj/item/clothing/mask/breath{
+ pixel_x = -3;
+ pixel_y = -3
+ },
+/obj/item/clothing/mask/breath{
+ pixel_x = -3;
+ pixel_y = -3
+ },
+/obj/item/clothing/mask/breath{
+ pixel_x = -3;
+ pixel_y = -3
+ },
+/obj/item/clothing/head/hardhat/orange{
+ name = "protective hat";
+ pixel_y = 9
+ },
+/obj/item/clothing/head/hardhat/orange{
+ name = "protective hat";
+ pixel_y = 9
+ },
+/obj/item/clothing/head/hardhat/orange{
+ name = "protective hat";
+ pixel_y = 9
+ },
+/obj/item/clothing/head/hardhat/orange{
+ name = "protective hat";
+ pixel_y = 9
+ },
+/obj/item/clothing/head/hardhat/orange{
+ name = "protective hat";
+ pixel_y = 9
+ },
+/obj/structure/closet/crate/internals,
+/obj/effect/decal/cleanable/dirt,
+/obj/item/pickaxe/emergency,
+/obj/item/pickaxe/emergency,
+/obj/effect/turf_decal/delivery,
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/shuttle/mining)
+"r" = (
+/obj/structure/shuttle/engine/heater,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plating/airless,
+/area/shuttle/mining)
+"s" = (
+/obj/structure/ore_box,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/delivery,
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/shuttle/mining)
+"t" = (
+/obj/structure/shuttle/engine/propulsion/burst,
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 2.9
+ },
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plating/airless,
+/area/shuttle/mining)
+
+(1,1,1) = {"
+a
+a
+b
+i
+b
+a
+a
+"}
+(2,1,1) = {"
+a
+c
+f
+j
+n
+q
+a
+"}
+(3,1,1) = {"
+b
+d
+g
+k
+o
+r
+t
+"}
+(4,1,1) = {"
+a
+e
+h
+l
+p
+s
+a
+"}
+(5,1,1) = {"
+a
+a
+b
+m
+b
+a
+a
+"}
diff --git a/_maps/shuttles/whiteship_box.dmm b/_maps/shuttles/whiteship_box.dmm
index f1c6c838b1..d51176b1b8 100644
--- a/_maps/shuttles/whiteship_box.dmm
+++ b/_maps/shuttles/whiteship_box.dmm
@@ -2,9 +2,6 @@
"aa" = (
/turf/template_noop,
/area/template_noop)
-"ab" = (
-/turf/closed/wall/mineral/titanium/overspace,
-/area/shuttle/abandoned)
"ac" = (
/turf/closed/wall/mineral/titanium,
/area/shuttle/abandoned)
@@ -22,15 +19,11 @@
name = "NT Medical Ship";
port_direction = 8;
preferred_direction = 4;
- roundstart_move = "whiteship_away";
timid = 1;
width = 35
},
/turf/open/floor/mineral/titanium,
/area/shuttle/abandoned)
-"ae" = (
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/abandoned)
"af" = (
/obj/machinery/door/airlock/titanium,
/turf/open/floor/mineral/titanium,
@@ -41,12 +34,6 @@
},
/turf/open/floor/plating/airless,
/area/shuttle/abandoned)
-"ah" = (
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/abandoned)
-"ai" = (
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/abandoned)
"aj" = (
/turf/open/floor/mineral/titanium,
/area/shuttle/abandoned)
@@ -63,9 +50,6 @@
},
/turf/open/floor/mineral/titanium,
/area/shuttle/abandoned)
-"am" = (
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/abandoned)
"an" = (
/obj/structure/shuttle/engine/propulsion{
dir = 8
@@ -84,9 +68,6 @@
"ap" = (
/turf/closed/wall/mineral/titanium/interior,
/area/shuttle/abandoned)
-"aq" = (
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/abandoned)
"ar" = (
/obj/machinery/computer/pod{
dir = 8;
@@ -94,15 +75,9 @@
},
/turf/open/floor/mineral/titanium,
/area/shuttle/abandoned)
-"as" = (
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/abandoned)
"at" = (
/turf/open/floor/plating,
/area/shuttle/abandoned)
-"au" = (
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/abandoned)
"av" = (
/obj/structure/rack,
/obj/item/clothing/suit/space/hardsuit/medical,
@@ -128,21 +103,12 @@
},
/turf/open/floor/plating,
/area/shuttle/abandoned)
-"az" = (
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/abandoned)
-"aA" = (
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/abandoned)
"aB" = (
/obj/structure/shuttle/engine/propulsion/right{
dir = 8
},
/turf/open/floor/plating/airless,
/area/shuttle/abandoned)
-"aC" = (
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/abandoned)
"aD" = (
/obj/machinery/door/airlock/titanium,
/turf/open/floor/plating,
@@ -154,9 +120,6 @@
},
/turf/open/floor/mineral/titanium,
/area/shuttle/abandoned)
-"aF" = (
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/abandoned)
"aG" = (
/obj/structure/rack,
/obj/item/tank/internals/emergency_oxygen,
@@ -174,9 +137,6 @@
/obj/structure/light_construct,
/turf/open/floor/mineral/titanium,
/area/shuttle/abandoned)
-"aI" = (
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/abandoned)
"aJ" = (
/obj/structure/chair{
dir = 1
@@ -193,10 +153,6 @@
/obj/effect/spawner/structure/window/shuttle,
/turf/open/floor/plating,
/area/shuttle/abandoned)
-"aM" = (
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
"aN" = (
/obj/machinery/door/window,
/turf/open/floor/mineral/titanium/purple,
@@ -245,13 +201,6 @@
/obj/item/tank/internals/oxygen,
/turf/open/floor/mineral/titanium,
/area/shuttle/abandoned)
-"aW" = (
-/obj/machinery/door/airlock/titanium,
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"aX" = (
-/turf/closed/wall/mineral/titanium/interior,
-/area/shuttle/abandoned)
"aY" = (
/obj/structure/bed,
/obj/item/bedsheet,
@@ -287,10 +236,6 @@
/obj/structure/chair,
/turf/open/floor/mineral/titanium,
/area/shuttle/abandoned)
-"be" = (
-/obj/machinery/door/airlock/public/glass,
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
"bf" = (
/obj/item/scalpel,
/turf/open/floor/mineral/titanium,
@@ -352,26 +297,12 @@
},
/turf/open/floor/mineral/titanium,
/area/shuttle/abandoned)
-"bp" = (
-/obj/structure/light_construct,
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
"bq" = (
/obj/structure/light_construct/small{
dir = 8
},
/turf/open/floor/mineral/titanium,
/area/shuttle/abandoned)
-"br" = (
-/obj/structure/light_construct,
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"bs" = (
-/obj/structure/light_construct{
- dir = 1
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
"bt" = (
/obj/structure/light_construct/small{
dir = 1
@@ -394,11 +325,11 @@ aa
aa
aa
aa
-aC
-aC
-aW
-aC
-aC
+ac
+ac
+af
+ac
+ac
aa
aa
aa
@@ -418,11 +349,11 @@ aa
aa
aa
aa
-aC
-aX
+ac
+ap
aj
-aX
-aC
+ap
+ac
aa
aa
aa
@@ -442,11 +373,11 @@ aa
aa
aa
aa
-aC
+ac
aj
aj
aj
-aC
+ac
aa
aa
aa
@@ -466,11 +397,11 @@ aa
aa
aa
aa
-aC
+ac
aj
aj
aj
-aC
+ac
aa
aa
aa
@@ -490,11 +421,11 @@ aa
aa
aa
aa
-aC
+ac
aj
aj
aj
-aC
+ac
aa
aa
aa
@@ -514,11 +445,11 @@ aa
aa
aa
aa
-aC
+ac
aj
aj
bk
-aC
+ac
aa
aa
aa
@@ -538,11 +469,11 @@ aa
aa
aa
aa
-aC
+ac
aj
aj
aj
-aC
+ac
aa
aa
aa
@@ -562,11 +493,11 @@ aa
aa
aa
aa
-aC
+ac
aj
aj
aj
-aC
+ac
aa
aa
aa
@@ -586,11 +517,11 @@ aa
aa
aa
aa
-aC
+ac
aj
aj
aU
-aC
+ac
aa
aa
aa
@@ -610,11 +541,11 @@ aa
aa
aa
aa
-aC
-aX
+ac
+ap
aj
-aX
-aC
+ap
+ac
aa
aa
aa
@@ -634,11 +565,11 @@ aa
aa
aa
aa
-aC
-aC
-aW
-aC
-aC
+ac
+ac
+af
+ac
+ac
aa
aa
aa
@@ -659,9 +590,9 @@ aa
aa
aa
aa
-aC
+ac
aj
-aC
+ac
aa
aa
aa
@@ -682,11 +613,11 @@ aa
aa
aa
aa
-aC
-aC
-aW
-aC
-aC
+ac
+ac
+af
+ac
+ac
aa
aa
aa
@@ -705,13 +636,13 @@ aa
aa
aa
aa
-aC
-aC
-aX
+ac
+ac
+ap
aj
-aX
-aC
-aC
+ap
+ac
+ac
aa
aa
aa
@@ -722,85 +653,85 @@ aa
aa
"}
(15,1,1) = {"
-aC
+ac
ag
an
an
an
aB
aa
-aC
-aX
+ac
+ap
aj
aj
aj
-aX
-aC
+ap
+ac
aa
ag
an
an
an
aB
-aC
+ac
aa
"}
(16,1,1) = {"
-aC
-aC
+ac
+ac
ao
ao
ao
-aC
-aC
-aC
+ac
+ac
+ac
bl
aj
aj
aj
bk
-aC
-aC
-aC
+ac
+ac
+ac
ao
ao
ao
-aC
-aC
+ac
+ac
aa
"}
(17,1,1) = {"
aa
-aC
+ac
ap
at
at
ap
-aC
-aX
+ac
+ap
aj
aj
aj
aj
aj
-aX
-aC
+ap
+ac
ap
at
at
ap
-aC
+ac
aa
aa
"}
(18,1,1) = {"
aa
aa
-aC
+ac
ap
at
bi
-aC
+ac
aj
aj
aj
@@ -808,11 +739,11 @@ aj
aj
aj
ba
-aC
+ac
bt
at
ap
-aC
+ac
aa
aa
aa
@@ -821,21 +752,21 @@ aa
aa
aa
aa
-aC
-aC
+ac
+ac
aD
-aC
-aC
-aC
+ac
+ac
+ac
aL
-be
+aR
aL
-aC
-aC
-aC
+ac
+ac
+ac
aD
-aC
-aC
+ac
+ac
aa
aa
aa
@@ -845,8 +776,8 @@ aa
aa
aa
aa
-aC
-aC
+ac
+ac
aj
aj
aj
@@ -858,8 +789,8 @@ aj
aj
aj
aj
-aC
-aC
+ac
+ac
aa
aa
aa
@@ -868,9 +799,9 @@ aa
(21,1,1) = {"
aa
aa
-aC
-aC
-aX
+ac
+ac
+ap
aE
aj
aj
@@ -882,58 +813,58 @@ aj
aj
aj
aj
-aC
-aC
-aC
+ac
+ac
+ac
aa
aa
aa
"}
(22,1,1) = {"
aa
-aC
-aC
-aX
+ac
+ac
+ap
aj
aj
aj
aj
-aC
-aC
-aC
-aC
-aC
-aC
+ac
+ac
+ac
+ac
+ac
+ac
aj
aj
-aC
-aC
-aC
-aC
+ac
+ac
+ac
+ac
aa
aa
"}
(23,1,1) = {"
-aC
-aC
-aC
-aC
-aC
-aC
-aX
+ac
+ac
+ac
+ac
+ac
+ac
+ap
aj
-aC
+ac
aN
aj
bq
aj
-aW
+af
aj
aj
-aW
+af
aj
-aX
-aC
+ap
+ac
aa
aa
"}
@@ -943,80 +874,80 @@ aj
aj
av
av
-aX
-aC
+ap
+ac
bk
-aC
+ac
aO
aj
aV
aY
-aC
+ac
bl
aj
-aC
+ac
aj
bg
-aC
-aC
+ac
+ac
aa
"}
(25,1,1) = {"
-aC
+ac
aj
aj
aj
aj
aG
-aC
+ac
aj
-aW
+af
aj
bn
aj
aZ
-aC
+ac
aj
aj
-aC
+ac
aj
aj
-aX
-aC
+ap
+ac
aa
"}
(26,1,1) = {"
-aC
+ac
ak
aj
aj
aj
aj
-aC
+ac
aj
-aC
-aC
-aC
-aC
-aC
-aC
+ac
+ac
+ac
+ac
+ac
+ac
aj
aE
aL
bf
aj
aj
-aC
+ac
aa
"}
(27,1,1) = {"
-aC
+ac
al
aj
aj
aj
aj
-aW
+af
aj
aj
aj
@@ -1030,18 +961,18 @@ aL
aj
aj
bh
-aC
+ac
aa
"}
(28,1,1) = {"
-aC
+ac
aj
aj
aj
aj
aj
-aC
-aX
+ac
+ap
aj
aj
aj
@@ -1054,41 +985,41 @@ aL
aj
aj
aj
-aC
+ac
aa
"}
(29,1,1) = {"
-aC
+ac
aj
aj
aj
aj
-aX
-aC
-aC
-aC
+ap
+ac
+ac
+ac
aL
-be
+aR
aL
-aC
-aC
-aC
-aC
-aC
+ac
+ac
+ac
+ac
+ac
aj
aj
aj
-aC
+ac
aa
"}
(30,1,1) = {"
-aC
+ac
aj
aj
aj
-aX
-aC
-aX
+ap
+ac
+ap
aj
aj
aj
@@ -1098,20 +1029,20 @@ aj
aP
aP
aP
-aC
+ac
aj
aj
-aX
-aC
+ap
+ac
aa
"}
(31,1,1) = {"
-aW
+af
aj
ar
aj
-aC
-aX
+ac
+ap
aj
aj
aj
@@ -1122,19 +1053,19 @@ aj
aj
aj
aj
-aX
-aX
+ap
+ap
bb
-aC
+ac
aa
aa
"}
(32,1,1) = {"
-aC
-aC
-aC
+ac
+ac
+ac
aw
-aC
+ac
bj
aJ
aj
@@ -1147,18 +1078,18 @@ aj
aj
bd
aH
-aC
-aC
-aC
+ac
+ac
+ac
aa
aa
"}
(33,1,1) = {"
aa
aa
-aC
+ac
ax
-aC
+ac
bu
aJ
aj
@@ -1170,9 +1101,9 @@ aj
aj
aj
aj
-aX
-aC
-aC
+ap
+ac
+ac
aa
aa
aa
@@ -1180,10 +1111,10 @@ aa
(34,1,1) = {"
aa
aa
-aC
+ac
ay
-aC
-aX
+ac
+ap
aK
aj
aj
@@ -1193,9 +1124,9 @@ aP
aj
aj
aj
-aX
-aC
-aC
+ap
+ac
+ac
aa
aa
aa
@@ -1206,9 +1137,9 @@ aa
aa
aa
aa
-aC
-aC
-aC
+ac
+ac
+ac
aL
aL
aL
@@ -1216,9 +1147,9 @@ aL
aL
aL
aL
-aC
-aC
-aC
+ac
+ac
+ac
aa
aa
aa
diff --git a/_maps/shuttles/whiteship_cere.dmm b/_maps/shuttles/whiteship_cere.dmm
index dc51d7630c..54cda6755b 100644
--- a/_maps/shuttles/whiteship_cere.dmm
+++ b/_maps/shuttles/whiteship_cere.dmm
@@ -24,7 +24,6 @@
port_direction = 8;
preferred_direction = 1;
timid = 1;
- roundstart_move = "whiteship_away";
width = 16
},
/turf/open/floor/plating,
@@ -584,9 +583,6 @@
},
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/abandoned)
-"aY" = (
-/turf/template_noop,
-/area/template_noop)
"aZ" = (
/obj/structure/table,
/obj/item/phone{
@@ -637,8 +633,8 @@ aa
aa
aa
aa
-aY
-aY
+aa
+aa
"}
(2,1,1) = {"
aa
@@ -656,7 +652,7 @@ ab
ab
aa
aa
-aY
+aa
"}
(3,1,1) = {"
ab
diff --git a/_maps/shuttles/whiteship_delta.dmm b/_maps/shuttles/whiteship_delta.dmm
index 25f6b99ae4..57adba831c 100644
--- a/_maps/shuttles/whiteship_delta.dmm
+++ b/_maps/shuttles/whiteship_delta.dmm
@@ -47,7 +47,7 @@
/turf/open/floor/plasteel/neutral,
/area/shuttle/abandoned)
"ah" = (
-/obj/structure/sign/vacuum,
+/obj/structure/sign/warning/vacuum,
/turf/closed/wall/mineral/titanium/nodiagonal,
/area/shuttle/abandoned)
"ai" = (
@@ -891,7 +891,7 @@
},
/area/shuttle/abandoned)
"bI" = (
-/obj/structure/sign/vacuum,
+/obj/structure/sign/warning/vacuum,
/turf/closed/wall/mineral/titanium,
/area/shuttle/abandoned)
"bJ" = (
@@ -1084,7 +1084,7 @@
/turf/open/floor/plasteel/whiteblue/side,
/area/shuttle/abandoned)
"cc" = (
-/obj/structure/sign/bluecross_2,
+/obj/structure/sign/departments/medbay/alt,
/turf/closed/wall/mineral/titanium,
/area/shuttle/abandoned)
"cd" = (
@@ -1097,7 +1097,7 @@
},
/area/shuttle/abandoned)
"ce" = (
-/obj/structure/sign/engineering,
+/obj/structure/sign/departments/engineering,
/turf/closed/wall/mineral/titanium,
/area/shuttle/abandoned)
"cf" = (
@@ -1430,7 +1430,7 @@
/turf/open/floor/plasteel/whitepurple/corner,
/area/shuttle/abandoned)
"cL" = (
-/obj/structure/sign/science,
+/obj/structure/sign/departments/science,
/turf/closed/wall/mineral/titanium,
/area/shuttle/abandoned)
"cM" = (
@@ -1518,7 +1518,6 @@
name = "White-Ship";
port_direction = 8;
preferred_direction = 8;
- roundstart_move = "whiteship_away";
timid = 1;
width = 32
},
diff --git a/_maps/shuttles/whiteship_meta.dmm b/_maps/shuttles/whiteship_meta.dmm
index 96f6e7e3b4..be7b37b260 100644
--- a/_maps/shuttles/whiteship_meta.dmm
+++ b/_maps/shuttles/whiteship_meta.dmm
@@ -39,15 +39,11 @@
name = "NT Recovery White-Ship";
port_direction = 8;
preferred_direction = 4;
- roundstart_move = "whiteship_away";
timid = 1;
width = 28
},
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/abandoned)
-"af" = (
-/turf/template_noop,
-/area/template_noop)
"ag" = (
/obj/structure/shuttle/engine/propulsion/left{
dir = 8
@@ -151,7 +147,7 @@
/turf/open/floor/mineral/titanium,
/area/shuttle/abandoned)
"ao" = (
-/obj/structure/sign/vacuum{
+/obj/structure/sign/warning/vacuum{
pixel_x = -32
},
/obj/effect/decal/cleanable/dirt{
@@ -559,7 +555,7 @@
/turf/open/floor/plasteel,
/area/shuttle/abandoned)
"aT" = (
-/obj/structure/sign/restroom,
+/obj/structure/sign/departments/restroom,
/turf/closed/wall/mineral/titanium,
/area/shuttle/abandoned)
"aU" = (
@@ -608,7 +604,7 @@
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/abandoned)
"aY" = (
-/obj/structure/sign/cargo,
+/obj/structure/sign/departments/cargo,
/turf/closed/wall/mineral/titanium,
/area/shuttle/abandoned)
"aZ" = (
@@ -730,7 +726,7 @@
/area/shuttle/abandoned)
"bl" = (
/obj/structure/reagent_dispensers/fueltank,
-/obj/structure/sign/vacuum{
+/obj/structure/sign/warning/vacuum{
pixel_x = -32
},
/obj/effect/decal/cleanable/dirt{
@@ -1085,7 +1081,7 @@
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/abandoned)
"bR" = (
-/obj/structure/sign/science{
+/obj/structure/sign/departments/science{
pixel_y = -32
},
/obj/effect/decal/cleanable/dirt{
@@ -1118,7 +1114,7 @@
},
/obj/machinery/computer/camera_advanced/shuttle_docker/whiteship{
dir = 1;
- station_lock_override = 1;
+ lock_override = 1;
view_range = 15;
x_offset = -3;
y_offset = -7
@@ -1148,7 +1144,7 @@
/turf/open/floor/mineral/titanium,
/area/shuttle/abandoned)
"bX" = (
-/obj/structure/sign/botany,
+/obj/structure/sign/departments/botany,
/turf/closed/wall/mineral/titanium,
/area/shuttle/abandoned)
"bY" = (
@@ -1182,7 +1178,7 @@
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/abandoned)
"cb" = (
-/obj/structure/sign/bluecross_2,
+/obj/structure/sign/departments/medbay/alt,
/turf/closed/wall/mineral/titanium,
/area/shuttle/abandoned)
"cc" = (
@@ -1634,20 +1630,20 @@
(1,1,1) = {"
aa
-af
-af
-af
-af
+aa
+aa
+aa
+aa
ab
ab
ad
ab
ab
-af
-af
-af
-af
-af
+aa
+aa
+aa
+aa
+aa
"}
(2,1,1) = {"
aa
@@ -1664,7 +1660,7 @@ au
au
au
cA
-af
+aa
"}
(3,1,1) = {"
ab
@@ -2025,9 +2021,9 @@ ab
"}
(24,1,1) = {"
aa
-af
-af
-af
+aa
+aa
+aa
ac
bj
aB
@@ -2035,16 +2031,16 @@ bH
bN
bV
ac
-af
-af
-af
-af
+aa
+aa
+aa
+aa
"}
(25,1,1) = {"
-af
-af
-af
-af
+aa
+aa
+aa
+aa
ac
bk
bs
@@ -2052,16 +2048,16 @@ bI
bO
bW
ac
-af
-af
-af
-af
+aa
+aa
+aa
+aa
"}
(26,1,1) = {"
aa
-af
-af
-af
+aa
+aa
+aa
ba
ac
ac
@@ -2069,10 +2065,10 @@ ac
ac
ac
ba
-af
-af
-af
-af
+aa
+aa
+aa
+aa
"}
(27,1,1) = {"
aa
@@ -2092,19 +2088,19 @@ aa
aa
"}
(28,1,1) = {"
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
"}
diff --git a/_maps/shuttles/whiteship_pubby.dmm b/_maps/shuttles/whiteship_pubby.dmm
index 1ea9db3063..3ef386e265 100644
--- a/_maps/shuttles/whiteship_pubby.dmm
+++ b/_maps/shuttles/whiteship_pubby.dmm
@@ -94,7 +94,6 @@
name = "White Ship";
port_direction = 4;
preferred_direction = 1;
- roundstart_move = "whiteship_away";
timid = 1;
width = 9
},
diff --git a/_maps/templates/medium_shuttle1.dmm b/_maps/templates/medium_shuttle1.dmm
index 80833ada8d..ec158f3b4c 100644
--- a/_maps/templates/medium_shuttle1.dmm
+++ b/_maps/templates/medium_shuttle1.dmm
@@ -20,7 +20,7 @@
"d" = (
/turf/closed/wall/mineral/plastitanium,
/area/ruin/powered/shuttle/medium_1)
-"g" = (
+"f" = (
/turf/closed/wall/mineral/titanium,
/area/ruin/powered/shuttle/medium_1)
"h" = (
@@ -96,7 +96,7 @@ a
a
i
h
-g
+f
h
i
a
@@ -111,11 +111,11 @@ a
a
a
a
-g
+f
n
n
n
-g
+f
a
a
a
@@ -127,13 +127,13 @@ a
a
a
i
-g
-g
+f
+f
o
-g
+f
o
-g
-g
+f
+f
i
a
a
@@ -143,15 +143,15 @@ a
b
b
b
-g
+f
j
-g
+f
n
n
n
-g
+f
j
-g
+f
w
w
w
@@ -160,7 +160,7 @@ w
c
c
c
-g
+f
j
k
n
@@ -168,7 +168,7 @@ t
n
k
j
-g
+f
c
c
c
@@ -176,41 +176,41 @@ c
(6,1,1) = {"
d
d
-g
-g
+f
+f
k
-g
-g
-g
-g
-g
+f
+f
+f
+f
+f
k
-g
-g
+f
+f
d
d
"}
(7,1,1) = {"
d
d
-g
+f
j
j
-g
+f
j
j
j
-g
+f
j
j
-g
+f
d
d
"}
(8,1,1) = {"
d
d
-g
+f
j
j
k
@@ -220,41 +220,41 @@ j
k
j
j
-g
+f
d
d
"}
(9,1,1) = {"
d
d
-g
+f
j
j
-g
+f
j
j
j
-g
+f
j
j
-g
+f
d
a
"}
(10,1,1) = {"
a
d
-g
-g
-g
-g
+f
+f
+f
+f
k
-g
+f
k
-g
-g
-g
-g
+f
+f
+f
+f
a
a
"}
@@ -280,13 +280,13 @@ a
a
h
j
-g
+f
j
j
u
j
j
-g
+f
j
h
a
@@ -296,15 +296,15 @@ a
a
a
i
-g
-g
-g
+f
+f
+f
k
-g
+f
k
-g
-g
-g
+f
+f
+f
i
a
a
@@ -314,13 +314,13 @@ a
a
a
a
-g
+f
l
p
u
j
j
-g
+f
a
a
a
@@ -331,13 +331,13 @@ a
a
a
a
-g
+f
m
p
u
j
j
-g
+f
a
a
a
@@ -348,13 +348,13 @@ a
a
a
a
-g
-g
+f
+f
k
-g
+f
k
-g
-g
+f
+f
a
a
a
@@ -365,13 +365,13 @@ a
a
a
a
-g
+f
j
j
-g
+f
j
j
-g
+f
a
a
a
@@ -382,13 +382,13 @@ a
a
a
a
-g
+f
j
j
-g
+f
j
j
-g
+f
a
a
a
@@ -400,11 +400,11 @@ a
a
a
i
-g
+f
k
-g
+f
k
-g
+f
i
a
a
@@ -417,11 +417,11 @@ a
a
a
a
-g
+f
q
q
q
-g
+f
a
a
a
@@ -434,11 +434,11 @@ a
a
a
a
-g
+f
q
v
q
-g
+f
a
a
a
@@ -451,11 +451,11 @@ a
a
a
a
-g
+f
r
r
r
-g
+f
a
a
a
diff --git a/_maps/templates/medium_shuttle2.dmm b/_maps/templates/medium_shuttle2.dmm
index 3b46d40382..904c7da6d6 100644
--- a/_maps/templates/medium_shuttle2.dmm
+++ b/_maps/templates/medium_shuttle2.dmm
@@ -26,7 +26,7 @@
},
/turf/open/space,
/area/ruin/powered/shuttle/medium_2)
-"h" = (
+"g" = (
/turf/closed/wall/mineral/titanium,
/area/ruin/powered/shuttle/medium_2)
"i" = (
@@ -159,11 +159,11 @@ c
c
d
d
-h
-h
+g
+g
l
-h
-h
+g
+g
d
d
c
@@ -172,22 +172,22 @@ c
(6,1,1) = {"
d
d
-h
-h
-h
+g
+g
+g
r
m
r
-h
-h
-h
+g
+g
+g
d
d
"}
(7,1,1) = {"
d
d
-h
+g
m
m
m
@@ -195,74 +195,74 @@ m
m
m
m
-h
+g
d
d
"}
(8,1,1) = {"
d
-h
-h
+g
+g
n
-h
+g
B
w
B
-h
+g
n
-h
-h
+g
+g
d
"}
(9,1,1) = {"
d
-h
+g
k
k
-h
-h
+g
+g
B
-h
-h
+g
+g
k
k
-h
+g
d
"}
(10,1,1) = {"
d
-h
+g
k
k
-h
-h
-h
-h
-h
+g
+g
+g
+g
+g
k
k
-h
+g
d
"}
(11,1,1) = {"
a
i
-h
+g
n
-h
-h
-h
-h
-h
+g
+g
+g
+g
+g
n
-h
+g
i
a
"}
(12,1,1) = {"
a
a
-h
+g
k
k
n
@@ -270,37 +270,37 @@ k
n
k
k
-h
+g
a
a
"}
(13,1,1) = {"
a
a
-h
+g
k
k
-h
-h
-h
+g
+g
+g
k
k
-h
+g
a
a
"}
(14,1,1) = {"
a
a
-h
-h
+g
+g
n
-h
-h
-h
+g
+g
+g
n
-h
-h
+g
+g
a
a
"}
@@ -310,9 +310,9 @@ a
l
k
k
-h
-h
-h
+g
+g
+g
k
k
l
@@ -323,13 +323,13 @@ a
a
a
i
-h
+g
n
-h
-h
-h
+g
+g
+g
n
-h
+g
i
a
a
@@ -338,13 +338,13 @@ a
a
a
a
-h
+g
k
k
k
k
k
-h
+g
a
a
a
@@ -353,13 +353,13 @@ a
a
a
a
-h
+g
n
-h
-h
-h
+g
+g
+g
n
-h
+g
a
a
a
@@ -368,13 +368,13 @@ a
a
a
a
-h
+g
o
s
x
k
k
-h
+g
a
a
a
@@ -383,13 +383,13 @@ a
a
a
a
-h
+g
o
t
x
k
k
-h
+g
a
a
a
@@ -398,13 +398,13 @@ a
a
a
a
-h
+g
n
-h
-h
-h
+g
+g
+g
n
-h
+g
a
a
a
@@ -413,13 +413,13 @@ a
a
a
a
-h
+g
k
k
x
k
k
-h
+g
a
a
a
@@ -428,13 +428,13 @@ a
a
a
a
-h
+g
k
k
x
k
k
-h
+g
a
a
a
@@ -443,13 +443,13 @@ a
a
a
a
-h
+g
n
-h
-h
-h
+g
+g
+g
n
-h
+g
a
a
a
@@ -458,13 +458,13 @@ a
a
a
a
-h
+g
p
p
y
p
p
-h
+g
a
a
a
@@ -473,13 +473,13 @@ a
a
a
a
-h
+g
p
u
u
u
p
-h
+g
a
a
a
@@ -489,11 +489,11 @@ a
a
a
i
-h
+g
v
v
v
-h
+g
i
a
a
diff --git a/_maps/templates/medium_shuttle4.dmm b/_maps/templates/medium_shuttle4.dmm
index 1464f0961d..4595f8704a 100644
--- a/_maps/templates/medium_shuttle4.dmm
+++ b/_maps/templates/medium_shuttle4.dmm
@@ -54,27 +54,6 @@
},
/turf/open/floor/oldshuttle,
/area/ruin/powered/shuttle/medium_4)
-"m" = (
-/turf/closed/indestructible/oldshuttle/corner{
- dir = 8
- },
-/area/ruin/powered/shuttle/medium_4)
-"n" = (
-/turf/closed/indestructible/oldshuttle/corner,
-/area/ruin/powered/shuttle/medium_4)
-"o" = (
-/turf/closed/indestructible/oldshuttle/corner{
- dir = 1
- },
-/area/ruin/powered/shuttle/medium_4)
-"p" = (
-/turf/closed/indestructible/oldshuttle/corner{
- dir = 4
- },
-/area/ruin/powered/shuttle/medium_4)
-"q" = (
-/turf/closed/indestructible/oldshuttle/corner,
-/area/ruin/powered/shuttle/medium_4)
"r" = (
/obj/machinery/power/generator,
/turf/open/floor/oldshuttle,
@@ -162,7 +141,7 @@ g
g
g
g
-m
+b
d
k
u
@@ -178,8 +157,8 @@ c
g
g
g
-m
-o
+b
+f
a
a
a
@@ -199,7 +178,7 @@ c
c
c
c
-p
+h
a
"}
(7,1,1) = {"
@@ -217,7 +196,7 @@ i
c
s
c
-p
+h
"}
(8,1,1) = {"
b
@@ -233,7 +212,7 @@ l
l
c
g
-n
+e
c
"}
(9,1,1) = {"
@@ -247,7 +226,7 @@ l
l
l
l
-m
+b
c
g
g
@@ -281,7 +260,7 @@ l
l
l
l
-n
+e
c
g
g
@@ -301,7 +280,7 @@ l
l
c
g
-m
+b
c
"}
(13,1,1) = {"
@@ -319,7 +298,7 @@ i
c
s
c
-o
+f
"}
(14,1,1) = {"
a
@@ -335,7 +314,7 @@ c
c
c
c
-o
+f
a
"}
(15,1,1) = {"
@@ -348,8 +327,8 @@ c
g
g
g
-n
-p
+e
+h
a
a
a
@@ -366,7 +345,7 @@ g
g
g
g
-n
+e
d
k
t
@@ -417,7 +396,7 @@ a
a
a
a
-q
+e
c
k
v
diff --git a/_maps/templates/pirate_ship.dmm b/_maps/templates/pirate_ship.dmm
index a97be6e9bd..9ecd27ac28 100644
--- a/_maps/templates/pirate_ship.dmm
+++ b/_maps/templates/pirate_ship.dmm
@@ -213,7 +213,7 @@
/turf/open/floor/plasteel/dark,
/area/shuttle/pirate)
"aD" = (
-/obj/structure/sign/bluecross_2,
+/obj/structure/sign/departments/medbay/alt,
/turf/closed/wall/mineral/plastitanium/nodiagonal,
/area/shuttle/pirate)
"aE" = (
@@ -542,11 +542,7 @@
/turf/open/floor/plasteel,
/area/shuttle/pirate)
"bt" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
- icon_state = "space";
- layer = 4;
- name = "EXTERNAL AIRLOCK";
+/obj/structure/sign/warning/vacuum/external{
pixel_x = -32
},
/obj/machinery/light/small{
@@ -641,11 +637,7 @@
/turf/open/floor/plasteel,
/area/shuttle/pirate)
"bE" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
- icon_state = "space";
- layer = 4;
- name = "EXTERNAL AIRLOCK";
+/obj/structure/sign/warning/vacuum/external{
pixel_x = 32
},
/obj/machinery/light/small{
@@ -672,7 +664,7 @@
name = "Pirate Ship";
port_direction = 8;
preferred_direction = 1;
- roundstart_move = "pirateship_home";
+ timid = 0;
width = 23
},
/obj/docking_port/stationary{
@@ -715,7 +707,7 @@
/obj/machinery/airalarm{
dir = 8;
pixel_x = 24;
- req_access = 152
+ req_access = list(152)
},
/obj/effect/decal/cleanable/dirt,
/obj/structure/rack{
@@ -1310,7 +1302,7 @@
/turf/open/floor/plasteel/bar,
/area/shuttle/pirate)
"cS" = (
-/obj/structure/sign/engineering{
+/obj/structure/sign/departments/engineering{
pixel_x = 32
},
/obj/machinery/light/small{
@@ -1379,7 +1371,7 @@
/turf/closed/wall/mineral/plastitanium/nodiagonal,
/area/shuttle/pirate)
"cY" = (
-/obj/structure/sign/engineering{
+/obj/structure/sign/departments/engineering{
pixel_x = -32
},
/obj/machinery/light/small{
@@ -1462,7 +1454,7 @@
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/obj/structure/sign/nosmoking_2{
+/obj/structure/sign/warning/nosmoking{
pixel_y = 32
},
/turf/open/floor/plasteel,
@@ -1707,7 +1699,7 @@
/turf/open/floor/plating/airless,
/area/shuttle/pirate)
"dJ" = (
-/obj/structure/sign/fire,
+/obj/structure/sign/warning/fire,
/turf/closed/wall/mineral/plastitanium/nodiagonal,
/area/shuttle/pirate)
"dK" = (
@@ -1753,11 +1745,7 @@
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";
+/obj/structure/sign/warning/vacuum/external{
pixel_y = -32
},
/turf/open/floor/engine/vacuum,
@@ -1789,7 +1777,7 @@
/turf/open/floor/engine/vacuum,
/area/shuttle/pirate)
"dT" = (
-/obj/structure/sign/fire,
+/obj/structure/sign/warning/fire,
/turf/closed/wall/mineral/plastitanium,
/area/shuttle/pirate)
"dU" = (
diff --git a/_maps/templates/shelter_2.dmm b/_maps/templates/shelter_2.dmm
index 69e7369af7..1d4c810eb4 100644
--- a/_maps/templates/shelter_2.dmm
+++ b/_maps/templates/shelter_2.dmm
@@ -8,9 +8,6 @@
},
/turf/closed/wall/mineral/titanium/survival/pod,
/area/survivalpod)
-"c" = (
-/turf/closed/wall/mineral/titanium/survival,
-/area/survivalpod)
"d" = (
/obj/structure/sign/mining/survival{
dir = 8
@@ -154,7 +151,7 @@
alert = 0;
desc = "A display case containing an expensive forgery, probably.";
pixel_y = -4;
- req_access = 48;
+ req_access = list(48);
start_showpiece_type = /obj/item/fakeartefact
},
/turf/open/floor/carpet/black,
diff --git a/_maps/templates/small_shuttle_1.dmm b/_maps/templates/small_shuttle_1.dmm
index 901d67d6d6..03789ef847 100644
--- a/_maps/templates/small_shuttle_1.dmm
+++ b/_maps/templates/small_shuttle_1.dmm
@@ -12,9 +12,6 @@
"d" = (
/turf/closed/wall/mineral/titanium,
/area/space)
-"e" = (
-/turf/closed/wall/mineral/titanium,
-/area/space)
"f" = (
/turf/open/floor/mineral/titanium/blue,
/area/space)
@@ -24,19 +21,10 @@
},
/turf/open/floor/mineral/titanium/blue,
/area/space)
-"h" = (
-/turf/closed/wall/mineral/titanium,
-/area/space)
-"i" = (
-/turf/closed/wall/mineral/titanium,
-/area/space)
"j" = (
/obj/machinery/door/unpowered/shuttle,
/turf/open/floor/mineral/titanium/blue,
/area/space)
-"k" = (
-/turf/closed/wall/mineral/titanium,
-/area/space)
"l" = (
/obj/structure/chair{
dir = 4
@@ -53,9 +41,6 @@
/obj/structure/shuttle/engine/heater,
/turf/open/floor/plating/airless,
/area/space)
-"o" = (
-/turf/closed/wall/mineral/titanium,
-/area/space)
"p" = (
/obj/structure/shuttle/engine/propulsion/left,
/turf/open/floor/plating/airless,
@@ -68,28 +53,25 @@
/obj/structure/shuttle/engine/propulsion/right,
/turf/open/floor/plating/airless,
/area/space)
-"s" = (
-/turf/closed/wall/mineral/titanium,
-/area/space)
(1,1,1) = {"
a
a
a
b
-e
-e
+d
+d
j
j
-e
-e
+d
+d
b
"}
(2,1,1) = {"
b
-e
-e
-e
+d
+d
+d
l
l
f
@@ -102,7 +84,7 @@ p
c
f
f
-e
+d
f
f
f
@@ -128,7 +110,7 @@ q
c
f
f
-e
+d
f
f
f
@@ -139,9 +121,9 @@ q
"}
(6,1,1) = {"
b
-e
-e
-e
+d
+d
+d
m
m
f
@@ -155,11 +137,11 @@ a
a
a
b
-e
-e
+d
+d
j
j
-e
-e
+d
+d
b
"}
diff --git a/apc_repair.dmi b/apc_repair.dmi
deleted file mode 100644
index 6e861eef61..0000000000
Binary files a/apc_repair.dmi and /dev/null differ
diff --git a/cfg/admin.txt b/cfg/admin.txt
index ea2886f6e3..8b13789179 100644
--- a/cfg/admin.txt
+++ b/cfg/admin.txt
@@ -1,125 +1 @@
-jayehh role=admin
-optimumtact role=admin
-newsta role=admin
-expletives role=admin
-kingofkosmos role=admin
-mrstonedone role=admin
-microscopics role=admin
-gunhog role=admin
-korphaeron role=admin
-razharas role=admin
-lordpidey role=admin
-niknakflak role=admin
-rolan7 role=admin
-quarxink role=admin
-adrix89 role=admin
-tle role=admin
-xsi role=admin
-scaredofshadows role=admin
-neofite role=admin
-trubblebass role=admin
-mport2004 role=admin
-deuryn role=admin
-agouri role=admin
-errorage role=admin
-superxpdude role=admin
-petethegoat role=admin
-nodrak role=admin
-carnwennan role=admin
-ikarrus role=admin
-cheridan role=admin
-giacomand role=admin
-rockdtben role=admin
-sieve role=admin
-aranclanos role=admin
-intigracy role=admin
-dumpdavidson role=admin
-kazeespada role=admin
-malkevin role=admin
-incoming role=admin
-demas role=admin
-fleure role=admin
-ricotez role=admin
-misterperson role=admin
-crimsonvision role=admin
-iamgoofball role=admin
-zelacks role=admin
-androidsfv role=admin
-miggles role=admin
-jordie0608 role=admin
-s0ldi3rkr4s0 role=admin
-ergovisavi role=admin
-vistapowa role=admin
-miauw62 role=admin
-rumia29 role=admin
-bobylein role=admin
-sirbayer role=admin
-hornygranny role=admin
-yota role=admin
-firecage role=admin
-donkieyo role=admin
-argoneus role=admin
-paprka role=admin
-cookingboy3 role=admin
-limeliz role=admin
-steelpoint role=admin
-phil235 role=admin
-corruptcomputer role=admin
-xxnoob role=admin
-tkdrg role=admin
-cuboos role=admin
-thunder12345 role=admin
-wjohnston role=admin
-mandurrh role=admin
-thurgatar role=admin
-xerux role=admin
-dannno role=admin
-lo6a4evskiy role=admin
-vekter role=admin
-ahammer18 role=admin
-account12 role=admin
-fayrik role=admin
-shadowlight213 role=admin
-drovidicorv role=admin
-dunc role=admin
-mmmiracles role=admin
-bear1ake role=admin
-coreoverload role=admin
-jalleo role=admin
-changelingrain role=admin
-foxpmccloud role=admin
-xhuis role=admin
-astralenigma role=admin
-tokiko1 role=admin
-supersayu role=admin
-lzimann role=admin
-as334 role=admin
-neersighted role=admin
-swankcookie role=admin
-ressler role=admin
-folix role=admin
-bawhoppennn role=admin
-anturke role=admin
-lumipharon role=admin
-bgobandit role=admin
-coiax role=admin
-randommarine role=admin
-pkpenguin321 role=admin
-technoalchemist role=admin
-aloraydrel role=admin
-quiltyquilty role=admin
-snipedragon role=admin
-fjeld role=admin
-kevinz000 role=admin
-tacolizard role=admin
-trustygun role=admin
-cyberboss role=admin
-pjb3005 role=admin
-sweaterkittens role=admin
-feemjmeem role=admin
-jstheguy role=admin
-excessiveuseofcobby role=admin
-plizzard role=admin
-octareenroon91 role=admin
-serpentarium role=admin
-cebutris role=admin
+
diff --git a/code/__DATASTRUCTURES/linked_lists.dm b/code/__DATASTRUCTURES/linked_lists.dm
deleted file mode 100644
index 1d2e8d78a6..0000000000
--- a/code/__DATASTRUCTURES/linked_lists.dm
+++ /dev/null
@@ -1,191 +0,0 @@
-
-//Ok so it's technically a double linked list, bite me.
-
-/datum/linked_list
- var/datum/linked_node/head
- var/datum/linked_node/tail
- var/node_amt = 0
-
-
-/datum/linked_node
- var/value = null
- var/datum/linked_list/linked_list = null
- var/datum/linked_node/next_node = null
- var/datum/linked_node/previous_node = null
-
-
-/datum/linked_list/proc/IsEmpty()
- . = (node_amt <= 0)
-
-
-//Add a linked_node (or value, creating a linked_node) at position
-//the added node BECOMES the position-th element,
-//eg: add("Test",5), the 5th node is now "Test", the previous 5th moves up to become the 6th
-/datum/linked_list/proc/Add(node, position)
- var/datum/linked_node/adding
- if(istype(node, /datum/linked_node))
- adding = node
- else
- adding = new()
- adding.value = node
-
- if(!adding.linked_list || (adding.linked_list && (adding.linked_list != src)))
- node_amt++
-
- adding.linked_list = src
-
- if(position && position < node_amt)
- //Replacing head
- if(position == 1)
- if(head)
- head.previous_node = adding
- adding.next_node = head
- head = adding
-
- //Replacing any middle node
- else
- var/location = 0
- var/datum/linked_node/at
- while((location != position) && (location <= node_amt))
- if(at)
- if(at.next_node)
- at = at.next_node
- else
- break
- else
- at = head
- location++
-
- //Push at up and assume it's place as the position-th element
- if(at && at.previous_node)
- at.previous_node.next_node = adding
- adding.previous_node = at.previous_node
- at.previous_node = adding
- adding.next_node = at
- return
-
- //Replacing tail
- if(tail)
- tail.next_node = adding
- adding.previous_node = tail
- if(!tail.previous_node)
- head = tail
- tail = adding
-
-
-
-//Remove a linked_node or the linked_node of a value
-//If you specify a value the FIRST ONE is removed
-/datum/linked_list/proc/Remove(node)
- var/datum/linked_node/removing
- if(istype(node, /datum/linked_node))
- removing = node
- else
- //optimise removing head and tail, no point looping for them, especially the tail
- if(removing == head)
- removing = head
- else if(removing == tail)
- removing = tail
- else
- var/location = 1
- var/current_value = null
- var/datum/linked_node/at = null
- while((current_value != node) && (location <= node_amt))
- if(at)
- if(at.next_node)
- at = at.next_node
- else
- at = head
- location++
- if(at)
- current_value = at.value
- if(current_value == node)
- removing = at
- break
-
- //Adjust pointers of where removing -was- in the chain.
- if(removing)
- if(removing.previous_node)
- if(removing == tail)
- tail = removing.previous_node
- if(removing.next_node)
- if(removing == head)
- head = removing.next_node
- removing.next_node.previous_node = removing.previous_node
- removing.previous_node.next_node = removing.next_node
- else
- removing.previous_node.next_node = null
- else
- if(removing.next_node)
- if(removing == head)
- head = removing.next_node
- removing.next_node.previous_node = null
-
- //if this is still true at this point, there's no more nodes to replace them with
- if(removing == head)
- head = null
- if(removing == tail)
- tail = null
-
- removing.next_node = null
- removing.previous_node = null
- if(removing.linked_list == src)
- node_amt--
- removing.linked_list = null
-
- return removing
- return 0
-
-
-//Removes and deletes a node or value
-/datum/linked_list/proc/RemoveDelete(node)
- var/datum/linked_node/dead = Remove(node)
- if(dead)
- qdel(dead)
- return 1
- return 0
-
-
-//Empty the linked_list, deleting all nodes
-/datum/linked_list/proc/Empty()
- var/datum/linked_node/n = head
- while(n)
- var/next = n.next_node
- Remove(n)
- qdel(n)
- n = next
- node_amt = 0
-
-
-//Some debugging tools
-/datum/linked_list/proc/CheckNodeLinks()
- var/datum/linked_node/n = head
- while(n)
- . = "|[n.value]|"
- if(n.previous_node)
- . = "[n.previous_node.value]<-" + .
- if(n.next_node)
- . += "->[n.next_node.value]"
- n = n.next_node
- . += "
"
-
-
-/datum/linked_list/proc/DrawNodeLinks()
- . = "|<-"
- var/datum/linked_node/n = head
- while(n)
- if(n.previous_node)
- . += "<-"
- . += "[n.value]"
- if(n.next_node)
- . += "->"
- n = n.next_node
- . += "->|"
-
-
-/datum/linked_list/proc/ToList()
- . = list()
- var/datum/linked_node/n = head
- while(n)
- . += n
- n = n.next_node
\ No newline at end of file
diff --git a/code/__DATASTRUCTURES/priority_queue.dm b/code/__DATASTRUCTURES/priority_queue.dm
deleted file mode 100644
index 8689a19f4e..0000000000
--- a/code/__DATASTRUCTURES/priority_queue.dm
+++ /dev/null
@@ -1,83 +0,0 @@
-
-//////////////////////
-//PriorityQueue object
-//////////////////////
-
-//an ordered list, using the cmp proc to weight the list elements
-/PriorityQueue
- var/list/L //the actual queue
- var/cmp //the weight function used to order the queue
-
-/PriorityQueue/New(compare)
- L = new()
- cmp = compare
-
-/PriorityQueue/proc/IsEmpty()
- return !L.len
-
-//return the index the element should be in the priority queue using dichotomic search
-/PriorityQueue/proc/FindElementIndex(atom/A)
- var/i = 1
- var/j = L.len
- var/mid
-
- while(i < j)
- mid = round((i+j)/2)
-
- if(call(cmp)(L[mid],A) < 0)
- i = mid + 1
- else
- j = mid
-
- if(i == 1 || i == L.len) //edge cases
- return (call(cmp)(L[i],A) > 0) ? i : i+1
- else
- return i
-
-
-//add an element in the list,
-//immediatly ordering it to its position using dichotomic search
-/PriorityQueue/proc/Enqueue(atom/A)
- if(!L.len)
- L.Add(A)
- return
-
- L.Insert(FindElementIndex(A),A)
-
-//removes and returns the first element in the queue
-/PriorityQueue/proc/Dequeue()
- if(!L.len)
- return 0
- . = L[1]
-
- Remove(.)
-
-//removes an element
-/PriorityQueue/proc/Remove(atom/A)
- return L.Remove(A)
-
-//returns a copy of the elements list
-/PriorityQueue/proc/List()
- . = L.Copy()
-
-//return the position of an element or 0 if not found
-/PriorityQueue/proc/Seek(atom/A)
- . = L.Find(A)
-
-//return the element at the i_th position
-/PriorityQueue/proc/Get(i)
- if(i > L.len || i < 1)
- return 0
- return L[i]
-
-//replace the passed element at it's right position using the cmp proc
-/PriorityQueue/proc/ReSort(atom/A)
- var/i = Seek(A)
- if(i == 0)
- return
- while(i < L.len && call(cmp)(L[i],L[i+1]) > 0)
- L.Swap(i,i+1)
- i++
- while(i > 1 && call(cmp)(L[i],L[i-1]) <= 0) //last inserted element being first in case of ties (optimization)
- L.Swap(i,i-1)
- i--
\ No newline at end of file
diff --git a/code/__DATASTRUCTURES/stacks.dm b/code/__DATASTRUCTURES/stacks.dm
deleted file mode 100644
index b310a3b940..0000000000
--- a/code/__DATASTRUCTURES/stacks.dm
+++ /dev/null
@@ -1,56 +0,0 @@
-/datum/stack
- var/list/stack = list()
- var/max_elements = 0
-
-/datum/stack/New(list/elements,max)
- ..()
- if(elements)
- stack = elements.Copy()
- if(max)
- max_elements = max
-
-/datum/stack/proc/Pop()
- if(is_empty())
- return null
- . = stack[stack.len]
- stack.Cut(stack.len,0)
-
-/datum/stack/proc/Push(element)
- if(max_elements && (stack.len+1 > max_elements))
- return null
- stack += element
-
-/datum/stack/proc/Top()
- if(is_empty())
- return null
- . = stack[stack.len]
-
-/datum/stack/proc/is_empty()
- . = stack.len ? 0 : 1
-
-//Rotate entire stack left with the leftmost looping around to the right
-/datum/stack/proc/RotateLeft()
- if(is_empty())
- return 0
- . = stack[1]
- stack.Cut(1,2)
- Push(.)
-
-//Rotate entire stack to the right with the rightmost looping around to the left
-/datum/stack/proc/RotateRight()
- if(is_empty())
- return 0
- . = stack[stack.len]
- stack.Cut(stack.len,0)
- stack.Insert(1,.)
-
-
-/datum/stack/proc/Copy()
- var/datum/stack/S=new()
- S.stack = stack.Copy()
- S.max_elements = max_elements
- return S
-
-
-/datum/stack/proc/Clear()
- stack.Cut()
diff --git a/code/__DEFINES/DNA.dm b/code/__DEFINES/DNA.dm
index 253e9f5888..87552e5841 100644
--- a/code/__DEFINES/DNA.dm
+++ b/code/__DEFINES/DNA.dm
@@ -123,6 +123,7 @@
#define SPECIES_INORGANIC 32
#define SPECIES_UNDEAD 33
#define SPECIES_ROBOTIC 34
+#define NOEYES 35
#define ORGAN_SLOT_BRAIN "brain"
#define ORGAN_SLOT_APPENDIX "appendix"
diff --git a/code/__DATASTRUCTURES/globals.dm b/code/__DEFINES/_globals.dm
similarity index 97%
rename from code/__DATASTRUCTURES/globals.dm
rename to code/__DEFINES/_globals.dm
index c7aa865573..7e7aa3158f 100644
--- a/code/__DATASTRUCTURES/globals.dm
+++ b/code/__DEFINES/_globals.dm
@@ -1,38 +1,38 @@
-//See controllers/globals.dm
-#define GLOBAL_MANAGED(X, InitValue)\
-/datum/controller/global_vars/proc/InitGlobal##X(){\
- ##X = ##InitValue;\
- gvars_datum_init_order += #X;\
-}
-#define GLOBAL_UNMANAGED(X) /datum/controller/global_vars/proc/InitGlobal##X() { return; }
-
-#ifndef TESTING
-#define GLOBAL_PROTECT(X)\
-/datum/controller/global_vars/InitGlobal##X(){\
- ..();\
- gvars_datum_protected_varlist[#X] = TRUE;\
-}
-#else
-#define GLOBAL_PROTECT(X)
-#endif
-
-#define GLOBAL_REAL_VAR(X) var/global/##X
-#define GLOBAL_REAL(X, Typepath) var/global##Typepath/##X
-
-#define GLOBAL_RAW(X) /datum/controller/global_vars/var/global##X
-
-#define GLOBAL_VAR_INIT(X, InitValue) GLOBAL_RAW(/##X); GLOBAL_MANAGED(X, InitValue)
-
-#define GLOBAL_VAR_CONST(X, InitValue) GLOBAL_RAW(/const/##X) = InitValue; GLOBAL_UNMANAGED(X)
-
-#define GLOBAL_LIST_INIT(X, InitValue) GLOBAL_RAW(/list/##X); GLOBAL_MANAGED(X, InitValue)
-
-#define GLOBAL_LIST_EMPTY(X) GLOBAL_LIST_INIT(X, list())
-
-#define GLOBAL_DATUM_INIT(X, Typepath, InitValue) GLOBAL_RAW(Typepath/##X); GLOBAL_MANAGED(X, InitValue)
-
-#define GLOBAL_VAR(X) GLOBAL_RAW(/##X); GLOBAL_UNMANAGED(X)
-
-#define GLOBAL_LIST(X) GLOBAL_RAW(/list/##X); GLOBAL_UNMANAGED(X)
-
-#define GLOBAL_DATUM(X, Typepath) GLOBAL_RAW(Typepath/##X); GLOBAL_UNMANAGED(X)
+//See controllers/globals.dm
+#define GLOBAL_MANAGED(X, InitValue)\
+/datum/controller/global_vars/proc/InitGlobal##X(){\
+ ##X = ##InitValue;\
+ gvars_datum_init_order += #X;\
+}
+#define GLOBAL_UNMANAGED(X) /datum/controller/global_vars/proc/InitGlobal##X() { return; }
+
+#ifndef TESTING
+#define GLOBAL_PROTECT(X)\
+/datum/controller/global_vars/InitGlobal##X(){\
+ ..();\
+ gvars_datum_protected_varlist[#X] = TRUE;\
+}
+#else
+#define GLOBAL_PROTECT(X)
+#endif
+
+#define GLOBAL_REAL_VAR(X) var/global/##X
+#define GLOBAL_REAL(X, Typepath) var/global##Typepath/##X
+
+#define GLOBAL_RAW(X) /datum/controller/global_vars/var/global##X
+
+#define GLOBAL_VAR_INIT(X, InitValue) GLOBAL_RAW(/##X); GLOBAL_MANAGED(X, InitValue)
+
+#define GLOBAL_VAR_CONST(X, InitValue) GLOBAL_RAW(/const/##X) = InitValue; GLOBAL_UNMANAGED(X)
+
+#define GLOBAL_LIST_INIT(X, InitValue) GLOBAL_RAW(/list/##X); GLOBAL_MANAGED(X, InitValue)
+
+#define GLOBAL_LIST_EMPTY(X) GLOBAL_LIST_INIT(X, list())
+
+#define GLOBAL_DATUM_INIT(X, Typepath, InitValue) GLOBAL_RAW(Typepath/##X); GLOBAL_MANAGED(X, InitValue)
+
+#define GLOBAL_VAR(X) GLOBAL_RAW(/##X); GLOBAL_UNMANAGED(X)
+
+#define GLOBAL_LIST(X) GLOBAL_RAW(/list/##X); GLOBAL_UNMANAGED(X)
+
+#define GLOBAL_DATUM(X, Typepath) GLOBAL_RAW(Typepath/##X); GLOBAL_UNMANAGED(X)
diff --git a/code/__DEFINES/admin.dm b/code/__DEFINES/admin.dm
index 2c60abb325..62d4b94528 100644
--- a/code/__DEFINES/admin.dm
+++ b/code/__DEFINES/admin.dm
@@ -76,3 +76,8 @@
#define AHELP_ACTIVE 1
#define AHELP_CLOSED 2
#define AHELP_RESOLVED 3
+
+#define ROUNDSTART_LOGOUT_REPORT_TIME 6000 //Amount of time (in deciseconds) after the rounds starts, that the player disconnect report is issued.
+
+#define SPAM_TRIGGER_WARNING 5 //Number of identical messages required before the spam-prevention will warn you to stfu
+#define SPAM_TRIGGER_AUTOMUTE 10 //Number of identical messages required before the spam-prevention will automute you
diff --git a/code/__DEFINES/antagonists.dm b/code/__DEFINES/antagonists.dm
new file mode 100644
index 0000000000..c82404fd00
--- /dev/null
+++ b/code/__DEFINES/antagonists.dm
@@ -0,0 +1,14 @@
+#define NUKE_RESULT_FLUKE 0
+#define NUKE_RESULT_NUKE_WIN 1
+#define NUKE_RESULT_CREW_WIN 2
+#define NUKE_RESULT_CREW_WIN_SYNDIES_DEAD 3
+#define NUKE_RESULT_DISK_LOST 4
+#define NUKE_RESULT_DISK_STOLEN 5
+#define NUKE_RESULT_NOSURVIVORS 6
+#define NUKE_RESULT_WRONG_STATION 7
+#define NUKE_RESULT_WRONG_STATION_DEAD 8
+
+#define APPRENTICE_DESTRUCTION "destruction"
+#define APPRENTICE_BLUESPACE "bluespace"
+#define APPRENTICE_ROBELESS "robeless"
+#define APPRENTICE_HEALING "healing"
\ No newline at end of file
diff --git a/code/__DEFINES/citadel_defines.dm b/code/__DEFINES/citadel_defines.dm
index ff60d1c030..1516be9fa3 100644
--- a/code/__DEFINES/citadel_defines.dm
+++ b/code/__DEFINES/citadel_defines.dm
@@ -99,3 +99,5 @@
//Brainslugs
#define isborer(A) (istype(A, /mob/living/simple_animal/borer))
+
+#define CITADEL_MENTOR_OOC_COLOUR "#ad396e"
\ No newline at end of file
diff --git a/code/__DEFINES/clockcult.dm b/code/__DEFINES/clockcult.dm
index cc501b5289..9f23ba2d38 100644
--- a/code/__DEFINES/clockcult.dm
+++ b/code/__DEFINES/clockcult.dm
@@ -28,8 +28,9 @@ GLOBAL_LIST_EMPTY(all_scripture) //a list containing scripture instances; not us
#define SCRIPTURE_APPLICATION "Application"
//Various costs related to power.
-#define SCRIPT_UNLOCK_THRESHOLD 50000 //Scripts will unlock if the total power reaches this amount
-#define APPLICATION_UNLOCK_THRESHOLD 100000 //Applications will unlock if the total powre reaches this amount
+#define MAX_CLOCKWORK_POWER 50000 //The max power in W that the cult can stockpile
+#define SCRIPT_UNLOCK_THRESHOLD 25000 //Scripts will unlock if the total power reaches this amount
+#define APPLICATION_UNLOCK_THRESHOLD 40000 //Applications will unlock if the total powre reaches this amount
#define ABSCOND_ABDUCTION_COST 95
diff --git a/code/__DEFINES/combat.dm b/code/__DEFINES/combat.dm
index 582074fcba..8e791cfffd 100644
--- a/code/__DEFINES/combat.dm
+++ b/code/__DEFINES/combat.dm
@@ -34,13 +34,7 @@
#define CANKNOCKDOWN 2
#define CANUNCONSCIOUS 4
#define CANPUSH 8
-#define IGNORESLOWDOWN 16
-#define GOTTAGOFAST 32
-#define GOTTAGOREALLYFAST 64
-#define GODMODE 4096
-#define FAKEDEATH 8192 //Replaces stuff like changeling.changeling_fakedeath
-#define DISFIGURED 16384 //I'll probably move this elsewhere if I ever get wround to writing a bitflag mob-damage system
-#define XENO_HOST 32768 //Tracks whether we're gonna be a baby alien's mummy.
+#define GODMODE 16
//Health Defines
#define HEALTH_THRESHOLD_CRIT 0
diff --git a/code/__DEFINES/cult.dm b/code/__DEFINES/cult.dm
index 71d4ad3af9..73ec1bc8d7 100644
--- a/code/__DEFINES/cult.dm
+++ b/code/__DEFINES/cult.dm
@@ -4,6 +4,11 @@
#define RUNE_COLOR_OFFER "#FFFFFF"
#define RUNE_COLOR_DARKRED "#7D1717"
#define RUNE_COLOR_MEDIUMRED "#C80000"
+#define RUNE_COLOR_BURNTORANGE "#CC5500"
#define RUNE_COLOR_RED "#FF0000"
#define RUNE_COLOR_EMP "#4D94FF"
#define RUNE_COLOR_SUMMON "#00FF00"
+
+//blood magic
+#define MAX_BLOODCHARGE 5
+#define RUNELESS_MAX_BLOODCHARGE 2
\ No newline at end of file
diff --git a/code/__DEFINES/flags.dm b/code/__DEFINES/flags.dm
index cb8a2ad2ca..d2c88a0c1b 100644
--- a/code/__DEFINES/flags.dm
+++ b/code/__DEFINES/flags.dm
@@ -65,7 +65,8 @@ GLOBAL_LIST_INIT(bitflags, list(1, 2, 4, 8, 16, 32, 64, 128, 256, 512, 1024, 204
#define UNUSED_TRANSIT_TURF_1 2
#define CAN_BE_DIRTY_1 4 // If a turf can be made dirty at roundstart. This is also used in areas.
#define NO_DEATHRATTLE_1 16 // Do not notify deadchat about any deaths that occur on this turf.
-#define NO_RUINS_1 32 //Blocks ruins spawning in the area
+#define NO_RUINS_1 32 //Blocks ruins spawning on the turf
+#define NO_LAVA_GEN_1 64 //Blocks lava rivers being generated on the turf
//#define CHECK_RICOCHET_1 32 //Same thing as atom flag.
/*
diff --git a/code/__DEFINES/is_helpers.dm b/code/__DEFINES/is_helpers.dm
index addeca8739..cd73f2b1f8 100644
--- a/code/__DEFINES/is_helpers.dm
+++ b/code/__DEFINES/is_helpers.dm
@@ -61,13 +61,15 @@
#define isplasmaman(A) (is_species(A, /datum/species/plasmaman))
#define ispodperson(A) (is_species(A, /datum/species/podperson))
#define isflyperson(A) (is_species(A, /datum/species/fly))
+#define isjellyperson(A) (is_species(A, /datum/species/jelly))
#define isslimeperson(A) (is_species(A, /datum/species/jelly/slime))
+#define isluminescent(A) (is_species(A, /datum/species/jelly/luminescent))
#define isshadowperson(A) (is_species(A, /datum/species/shadow))
#define iszombie(A) (is_species(A, /datum/species/zombie))
#define ishumanbasic(A) (is_species(A, /datum/species/human))
//why arent catpeople a subspecies
-#define iscatperson(A) (ishumanbasic(A) && ( A.dna.features["ears"] == "Cat" || A.dna.features["human_tail"] == "Cat") )
+#define iscatperson(A) (ishumanbasic(A) && ( A.dna.features["ears"] == "Cat" || A.dna.features["tail_human"] == "Cat") )
//more carbon mobs
#define ismonkey(A) (istype(A, /mob/living/carbon/monkey))
diff --git a/code/__DEFINES/layers.dm b/code/__DEFINES/layers.dm
index a3e2222f2e..80d5730386 100644
--- a/code/__DEFINES/layers.dm
+++ b/code/__DEFINES/layers.dm
@@ -34,7 +34,7 @@
#define HIGH_SIGIL_LAYER 2.56
#define BELOW_OPEN_DOOR_LAYER 2.6
-#define SHUTTER_LAYER 2.65 //Prevents shutters from being placed above doors. It's overridden by /obj/machinery/door/New() & poddoor/shutters/New()
+#define SHUTTER_LAYER 2.65 //Prevents shutters from being placed above doors. It's overridden by /obj/machinery/door/Initialize() & poddoor/shutters/Initialize()
#define OPEN_DOOR_LAYER 2.7
#define PROJECTILE_HIT_THRESHHOLD_LAYER 2.75 //projectiles won't hit objects at or below this layer if possible
#define TABLE_LAYER 2.8
diff --git a/code/__DEFINES/maps.dm b/code/__DEFINES/maps.dm
index 5306110b3b..5ab7e793ae 100644
--- a/code/__DEFINES/maps.dm
+++ b/code/__DEFINES/maps.dm
@@ -70,3 +70,18 @@ Last space-z level = empty
DECLARE_LEVEL("Lavaland", UNAFFECTED, list(ZTRAIT_MINING = TRUE, ZTRAIT_LAVA_RUINS = TRUE, ZTRAIT_BOMBCAP_MULTIPLIER = 3)),\
DECLARE_LEVEL("Reebe", UNAFFECTED, list(ZTRAIT_REEBE = TRUE, ZTRAIT_BOMBCAP_MULTIPLIER = 0.5)),\
)
+
+//Camera lock flags
+#define CAMERA_LOCK_STATION 1
+#define CAMERA_LOCK_MINING 2
+#define CAMERA_LOCK_CENTCOM 4
+#define CAMERA_LOCK_REEBE 8
+
+//Ruin Generation
+
+#define PLACEMENT_TRIES 100 //How many times we try to fit the ruin somewhere until giving up (really should just swap to some packing algo)
+
+#define PLACE_DEFAULT "random"
+#define PLACE_SAME_Z "same"
+#define PLACE_SPACE_RUIN "space"
+#define PLACE_LAVA_RUIN "lavaland"
\ No newline at end of file
diff --git a/code/__DEFINES/misc.dm b/code/__DEFINES/misc.dm
index ddf5286305..c3a331b651 100644
--- a/code/__DEFINES/misc.dm
+++ b/code/__DEFINES/misc.dm
@@ -61,6 +61,7 @@ Will print: "/mob/living/carbon/human/death" (you can optionally embed it in a s
#define DAMAGE_LAYER 22 //damage indicators (cuts and burns)
#define UNIFORM_LAYER 21
#define ID_LAYER 20
+#define HANDS_PART_LAYER 20
#define SHOES_LAYER 19
#define GLOVES_LAYER 18
#define EARS_LAYER 17
@@ -93,8 +94,9 @@ Will print: "/mob/living/carbon/human/death" (you can optionally embed it in a s
#define UNDER_DAMAGE_LAYER DAMAGE_LAYER+1
#define UNDER_UNIFORM_LAYER UNIFORM_LAYER+1
#define UNDER_ID_LAYER ID_LAYER+1
-#define UNDER_SHOES_LAYER SHOES_LAYER+1
+#define UNDER_HANDS_PART_LAYER HANDS_PART_LAYER+1
#define UNDER_GLOVES_LAYER GLOVES_LAYER+1
+#define UNDER_SHOES_LAYER SHOES_LAYER+1
#define UNDER_EARS_LAYER EARS_LAYER+1
#define UNDER_SUIT_LAYER SUIT_LAYER+1
#define UNDER_GLASSES_LAYER GLASSES_LAYER+1
@@ -119,8 +121,9 @@ Will print: "/mob/living/carbon/human/death" (you can optionally embed it in a s
#define ABOVE_DAMAGE_LAYER DAMAGE_LAYER-1
#define ABOVE_UNIFORM_LAYER UNIFORM_LAYER-1
#define ABOVE_ID_LAYER ID_LAYER-1
-#define ABOVE_SHOES_LAYER SHOES_LAYER-1
+#define ABOVE_HANDS_PART_LAYER HANDS_PART_LAYER-1
#define ABOVE_GLOVES_LAYER GLOVES_LAYER-1
+#define ABOVE_SHOES_LAYER SHOES_LAYER-1
#define ABOVE_EARS_LAYER EARS_LAYER-1
#define ABOVE_SUIT_LAYER SUIT_LAYER-1
#define ABOVE_GLASSES_LAYER GLASSES_LAYER-1
@@ -488,8 +491,18 @@ GLOBAL_LIST_INIT(ghost_others_options, list(GHOST_OTHERS_SIMPLE, GHOST_OTHERS_DE
#define HOSTILE_SPAWN 1
#define FRIENDLY_SPAWN 2
+//slime core activation type
+#define SLIME_ACTIVATE_MINOR 1
+#define SLIME_ACTIVATE_MAJOR 2
+
+#define LUMINESCENT_DEFAULT_GLOW 2
+
#define RIDING_OFFSET_ALL "ALL"
+//stack recipe placement check types
+#define STACK_CHECK_CARDINALS "cardinals" //checks if there is an object of the result type in any of the cardinal directions
+#define STACK_CHECK_ADJACENT "adjacent" //checks if there is an object of the result type within one tile
+
//text files
#define BRAIN_DAMAGE_FILE "traumas.json"
@@ -499,3 +512,10 @@ GLOBAL_LIST_INIT(ghost_others_options, list(GHOST_OTHERS_SIMPLE, GHOST_OTHERS_DE
#define SUMMON_GUNS "guns"
#define SUMMON_MAGIC "magic"
+
+//Run the world with this parameter to enable a single run though of the game setup and tear down process with unit tests in between
+#define TEST_RUN_PARAMETER "test-run"
+//Force the log directory to be something specific in the data/logs folder
+#define OVERRIDE_LOG_DIRECTORY_PARAMETER "log-directory"
+//Prevent the master controller from starting automatically, overrides TEST_RUN_PARAMETER
+#define NO_INIT_PARAMETER "no-init"
diff --git a/code/__DEFINES/mobs.dm b/code/__DEFINES/mobs.dm
index 4bfb70a257..9142996693 100644
--- a/code/__DEFINES/mobs.dm
+++ b/code/__DEFINES/mobs.dm
@@ -188,4 +188,21 @@
#define OFFSET_BELT "belt"
#define OFFSET_BACK "back"
#define OFFSET_SUIT "suit"
-#define OFFSET_NECK "neck"
\ No newline at end of file
+#define OFFSET_NECK "neck"
+
+//MINOR TWEAKS/MISC
+#define AGE_MIN 17 //youngest a character can be
+#define AGE_MAX 85 //oldest a character can be
+#define WIZARD_AGE_MIN 30 //youngest a wizard can be
+#define APPRENTICE_AGE_MIN 29 //youngest an apprentice can be
+#define SHOES_SLOWDOWN 0 //How much shoes slow you down by default. Negative values speed you up
+#define POCKET_STRIP_DELAY 40 //time taken (in deciseconds) to search somebody's pockets
+#define DOOR_CRUSH_DAMAGE 15 //the amount of damage that airlocks deal when they crush you
+
+#define HUNGER_FACTOR 0.1 //factor at which mob nutrition decreases
+#define REAGENTS_METABOLISM 0.4 //How many units of reagent are consumed per tick, by default.
+#define REAGENTS_EFFECT_MULTIPLIER (REAGENTS_METABOLISM / 0.4) // By defining the effect multiplier this way, it'll exactly adjust all effects according to how they originally were with the 0.4 metabolism
+
+// AI Toggles
+#define AI_CAMERA_LUMINOSITY 5
+#define AI_VOX // Comment out if you don't want VOX to be enabled and have players download the voice sounds.
diff --git a/code/__DEFINES/obj_flags.dm b/code/__DEFINES/obj_flags.dm
new file mode 100644
index 0000000000..ba326b7c91
--- /dev/null
+++ b/code/__DEFINES/obj_flags.dm
@@ -0,0 +1,19 @@
+// Flags for the obj_flags var on /obj
+
+
+#define EMAGGED 1
+#define IN_USE 2 // If we have a user using us, this will be set on. We will check if the user has stopped using us, and thus stop updating and LAGGING EVERYTHING!
+#define CAN_BE_HIT 4 //can this be bludgeoned by items?
+#define BEING_SHOCKED 8 // Whether this thing is currently (already) being shocked by a tesla
+#define DANGEROUS_POSSESSION 16 //Admin possession yes/no
+#define ON_BLUEPRINTS 32 //Are we visible on the station blueprints at roundstart?
+#define UNIQUE_RENAME 64 // can you customize the description/name of the thing?
+
+// If you add new ones, be sure to add them to /obj/Initialize as well for complete mapping support
+
+// Flags for the item_flags var on /obj/item
+
+#define BEING_REMOVED 1
+#define IN_INVENTORY 2 //is this item equipped into an inventory slot or hand of a mob? used for tooltips
+#define FORCE_STRING_OVERRIDE 4 // used for tooltips
+#define NEEDS_PERMIT 8 //Used by security bots to determine if this item is safe for public use.
diff --git a/code/__DEFINES/pipe_construction.dm b/code/__DEFINES/pipe_construction.dm
index 641187e964..7d2899d869 100644
--- a/code/__DEFINES/pipe_construction.dm
+++ b/code/__DEFINES/pipe_construction.dm
@@ -1,10 +1,11 @@
//Construction Categories
-#define PIPE_STRAIGHT 0 //2 directions: N/S, E/W
-#define PIPE_BENDABLE 1 //6 directions: N/S, E/W, N/E, N/W, S/E, S/W
-#define PIPE_TRINARY 2 //4 directions: N/E/S, E/S/W, S/W/N, W/N/E
-#define PIPE_TRIN_M 3 //8 directions: N->S+E, S->N+E, N->S+W, S->N+W, E->W+S, W->E+S, E->W+N, W->E+N
-#define PIPE_UNARY 4 //4 directions: N, S, E, W
-#define PIPE_ONEDIR 5 //1 direction: N/S/E/W
+#define PIPE_STRAIGHT 0 //2 directions: N/S, E/W
+#define PIPE_BENDABLE 1 //6 directions: N/S, E/W, N/E, N/W, S/E, S/W
+#define PIPE_TRINARY 2 //4 directions: N/E/S, E/S/W, S/W/N, W/N/E
+#define PIPE_TRIN_M 3 //8 directions: N->S+E, S->N+E, N->S+W, S->N+W, E->W+S, W->E+S, E->W+N, W->E+N
+#define PIPE_UNARY 4 //4 directions: N, S, E, W
+#define PIPE_ONEDIR 5 //1 direction: N/S/E/W
+#define PIPE_UNARY_FLIPPABLE 6 //8 directions: N/S/E/W/N-flipped/S-flipped/E-flipped/W-flipped
//Disposal pipe relative connection directions
#define DISP_DIR_BASE 0
diff --git a/code/__DEFINES/role_preferences.dm b/code/__DEFINES/role_preferences.dm
index a489f449cf..8c2791670c 100644
--- a/code/__DEFINES/role_preferences.dm
+++ b/code/__DEFINES/role_preferences.dm
@@ -6,12 +6,14 @@
//These are synced with the Database, if you change the values of the defines
//then you MUST update the database!
+#define ROLE_SYNDICATE "Syndicate"
#define ROLE_TRAITOR "traitor"
#define ROLE_OPERATIVE "operative"
#define ROLE_CHANGELING "changeling"
#define ROLE_WIZARD "wizard"
#define ROLE_MALF "malf AI"
#define ROLE_REV "revolutionary"
+#define ROLE_REV_HEAD "Head Revolutionary"
#define ROLE_ALIEN "xenomorph"
#define ROLE_PAI "pAI"
#define ROLE_CULTIST "cultist"
diff --git a/code/__DEFINES/say.dm b/code/__DEFINES/say.dm
index 8f38acb203..c5708034fe 100644
--- a/code/__DEFINES/say.dm
+++ b/code/__DEFINES/say.dm
@@ -56,4 +56,10 @@
#define LINGHIVE_NONE 0
#define LINGHIVE_OUTSIDER 1
#define LINGHIVE_LING 2
-#define LINGHIVE_LINK 3
\ No newline at end of file
+#define LINGHIVE_LINK 3
+
+//Don't set this very much higher then 1024 unless you like inviting people in to dos your server with message spam
+#define MAX_MESSAGE_LEN 1024
+#define MAX_NAME_LEN 42
+#define MAX_BROADCAST_LEN 512
+#define MAX_CHARTER_LEN 80
diff --git a/code/__DEFINES/stat.dm b/code/__DEFINES/stat.dm
index 96dceb6db2..96c72bcab2 100644
--- a/code/__DEFINES/stat.dm
+++ b/code/__DEFINES/stat.dm
@@ -8,35 +8,6 @@
#define UNCONSCIOUS 2
#define DEAD 3
-//mob disabilities stat
-
-#define DISABILITY_BLIND "blind"
-#define DISABILITY_MUTE "mute"
-#define DISABILITY_DEAF "deaf"
-#define DISABILITY_NEARSIGHT "nearsighted"
-#define DISABILITY_FAT "fat"
-#define DISABILITY_HUSK "husk"
-#define DISABILITY_NOCLONE "noclone"
-#define DISABILITY_CLUMSY "clumsy"
-#define DISABILITY_DUMB "dumb"
-#define DISABILITY_MONKEYLIKE "monkeylike" //sets IsAdvancedToolUser to FALSE
-#define DISABILITY_PACIFISM "pacifism"
-
-// common disability sources
-#define EYE_DAMAGE "eye_damage"
-#define GENETIC_MUTATION "genetic"
-#define OBESITY "obesity"
-#define MAGIC_DISABILITY "magic"
-#define STASIS_MUTE "stasis"
-#define GENETICS_SPELL "genetics_spell"
-#define TRAUMA_DISABILITY "trauma"
-#define CHEMICAL_DISABILITY "chemical"
-
-// unique disability sources, still defines
-#define STATUE_MUTE "statue"
-#define CHANGELING_DRAIN "drain"
-#define ABYSSAL_GAZE_BLIND "abyssal_gaze"
-
// bitflags for machine stat variable
#define BROKEN 1
#define NOPOWER 2
diff --git a/code/__DEFINES/subsystems.dm b/code/__DEFINES/subsystems.dm
index 6e223446fd..27cd86edd4 100644
--- a/code/__DEFINES/subsystems.dm
+++ b/code/__DEFINES/subsystems.dm
@@ -1,3 +1,7 @@
+//Update this whenever the db schema changes
+//make sure you add an update to the schema_version stable in the db changelog
+#define DB_MAJOR_VERSION 4
+#define DB_MINOR_VERSION 0
//Timing subsystem
//Don't run if there is an identical unique timer active
diff --git a/code/__DEFINES/time.dm b/code/__DEFINES/time.dm
index 987d52e0cd..8bc4d039f6 100644
--- a/code/__DEFINES/time.dm
+++ b/code/__DEFINES/time.dm
@@ -22,6 +22,6 @@ When using time2text(), please use "DDD" to find the weekday. Refrain from using
#define TICKS *world.tick_lag
-#define DS2TICKS(DS) (DS/world.tick_lag)
+#define DS2TICKS(DS) ((DS)/world.tick_lag)
-#define TICKS2DS(T) (T TICKS)
\ No newline at end of file
+#define TICKS2DS(T) ((T) TICKS)
\ No newline at end of file
diff --git a/code/__DEFINES/tools.dm b/code/__DEFINES/tools.dm
index 8b696032fa..e4eaf09347 100644
--- a/code/__DEFINES/tools.dm
+++ b/code/__DEFINES/tools.dm
@@ -1,6 +1,7 @@
-#define TOOL_NONE 0
-#define TOOL_CROWBAR 1
-#define TOOL_MULTITOOL 2
-#define TOOL_SCREWDRIVER 3
-#define TOOL_WIRECUTTER 4
-#define TOOL_WRENCH 5
\ No newline at end of file
+// Tool types
+#define TOOL_CROWBAR "crowbar"
+#define TOOL_MULTITOOL "multitool"
+#define TOOL_SCREWDRIVER "screwdriver"
+#define TOOL_WIRECUTTER "wirecutter"
+#define TOOL_WRENCH "wrench"
+#define TOOL_WELDER "welder"
diff --git a/code/__DEFINES/traits.dm b/code/__DEFINES/traits.dm
new file mode 100644
index 0000000000..b180a32674
--- /dev/null
+++ b/code/__DEFINES/traits.dm
@@ -0,0 +1,40 @@
+//mob traits
+#define TRAIT_BLIND "blind"
+#define TRAIT_MUTE "mute"
+#define TRAIT_DEAF "deaf"
+#define TRAIT_NEARSIGHT "nearsighted"
+#define TRAIT_FAT "fat"
+#define TRAIT_HUSK "husk"
+#define TRAIT_NOCLONE "noclone"
+#define TRAIT_CLUMSY "clumsy"
+#define TRAIT_DUMB "dumb"
+#define TRAIT_MONKEYLIKE "monkeylike" //sets IsAdvancedToolUser to FALSE
+#define TRAIT_PACIFISM "pacifism"
+#define TRAIT_IGNORESLOWDOWN "ignoreslow"
+#define TRAIT_GOTTAGOFAST "fast"
+#define TRAIT_GOTTAGOREALLYFAST "2fast"
+#define TRAIT_FAKEDEATH "fakedeath"
+#define TRAIT_DISFIGURED "disfigured"
+#define TRAIT_XENO_HOST "xeno_host" //Tracks whether we're gonna be a baby alien's mummy.
+#define TRAIT_STUNIMMUNE "stun_immunity"
+#define TRAIT_SLEEPIMMUNE "sleep_immunity"
+#define TRAIT_PUSHIMMUNE "push_immunity"
+#define TRAIT_SHOCKIMMUNE "shock_immunity"
+
+// common trait sources
+#define TRAIT_GENERIC "generic"
+#define EYE_DAMAGE "eye_damage"
+#define GENETIC_MUTATION "genetic"
+#define OBESITY "obesity"
+#define MAGIC_TRAIT "magic"
+#define STASIS_MUTE "stasis"
+#define GENETICS_SPELL "genetics_spell"
+#define TRAUMA_TRAIT "trauma"
+
+// unique trait sources, still defines
+#define STATUE_MUTE "statue"
+#define CHANGELING_DRAIN "drain"
+#define CHANGELING_HIVEMIND_MUTE "ling_mute"
+#define ABYSSAL_GAZE_BLIND "abyssal_gaze"
+#define HIGHLANDER "highlander"
+#define TRAIT_HULK "hulk"
diff --git a/code/__DEFINES/vv.dm b/code/__DEFINES/vv.dm
index 807e5187b0..0617c5d345 100644
--- a/code/__DEFINES/vv.dm
+++ b/code/__DEFINES/vv.dm
@@ -18,4 +18,4 @@
#define VV_NULL "NULL"
#define VV_RESTORE_DEFAULT "Restore to Default"
#define VV_MARKED_DATUM "Marked Datum"
-
+#define VV_BITFIELD "Bitfield"
diff --git a/code/__HELPERS/_logging.dm b/code/__HELPERS/_logging.dm
index 8b7cdc0c2e..18dd85fa5b 100644
--- a/code/__HELPERS/_logging.dm
+++ b/code/__HELPERS/_logging.dm
@@ -24,6 +24,12 @@
#define testing(msg)
#endif
+#ifdef UNIT_TESTS
+/proc/log_test(text)
+ WRITE_FILE(GLOB.test_log, "\[[time_stamp()]]: [text]")
+ SEND_TEXT(world.log, text)
+#endif
+
/proc/log_admin(text)
GLOB.admin_log.Add(text)
if (CONFIG_GET(flag/log_admin))
diff --git a/code/__HELPERS/areas.dm b/code/__HELPERS/areas.dm
index 3a35646321..3e097c46f3 100644
--- a/code/__HELPERS/areas.dm
+++ b/code/__HELPERS/areas.dm
@@ -42,12 +42,13 @@
if(turfs.len > BP_MAX_ROOM_SIZE)
to_chat(creator, "The room you're in is too big. It is [((turfs.len / BP_MAX_ROOM_SIZE)-1)*100]% larger than allowed.")
return
- // This will fuck up shuttles that use the base area type but we need to fix those anyway
- var/list/areas = list("New Area" = /area, "New Shuttle Area" = /area/shuttle/custom)
+ var/list/areas = list("New Area" = /area)
for(var/i in 1 to turfs.len)
var/area/place = get_area(turfs[i])
if(blacklisted_areas[place.type])
continue
+ if(!place.requires_power || place.noteleport || place.hidden)
+ continue // No expanding powerless rooms etc
areas[place.name] = place
var/area_choice = input(creator, "Choose an area to expand or make a new area.", "Area Expansion") as null|anything in areas
area_choice = areas[area_choice]
diff --git a/code/__HELPERS/dates.dm b/code/__HELPERS/dates.dm
new file mode 100644
index 0000000000..240ff87b9d
--- /dev/null
+++ b/code/__HELPERS/dates.dm
@@ -0,0 +1,47 @@
+//Curse you calenders...
+/proc/IsLeapYear(y)
+ return ((y) % 4 == 0 && ((y) % 100 != 0 || (y) % 400 == 0))
+
+//Y, eg: 2017, 2018, 2019, in num form (not string)
+//etc. Between 1583 and 4099
+//Adapted from a free algorithm written in BASIC (https://www.assa.org.au/edm#Computer)
+/proc/EasterDate(y)
+ var/FirstDig, Remain19, temp //Intermediate Results
+ var/tA, tB, tC, tD, tE //Table A-E results
+ var/d, m //Day and Month returned
+
+ FirstDig = round((y / 100))
+ Remain19 = y % 19
+
+ temp = (round((FirstDig - 15) / 2)) + 202 - 11 * Remain19
+
+ switch(FirstDig)
+ if(21,24,25,27,28,29,30,31,32,34,35,38)
+ temp -= 1
+ if(33,36,37,39,40)
+ temp -= 2
+ temp %= 30
+
+ tA = temp + 21
+ if(temp == 29)
+ tA -= 1
+ if(temp == 28 && (Remain19 > 10))
+ tA -= 1
+ tB = (tA - 19) % 7
+
+ tC = (40 - FirstDig) % 4
+ if(tC == 3)
+ tC += 1
+ if(tC > 1)
+ tC += 1
+ temp = y % 100
+ tD = (temp + round((temp / 4))) % 7
+
+ tE = ((20 - tB - tC - tD) % 7) + 1
+ d = tA + tE
+ if(d > 31)
+ d -= 31
+ m = 4
+ else
+ m = 3
+ return list("day" = d, "month" = m)
diff --git a/code/__HELPERS/game.dm b/code/__HELPERS/game.dm
index 2d200438ef..b120dfd52c 100644
--- a/code/__HELPERS/game.dm
+++ b/code/__HELPERS/game.dm
@@ -241,9 +241,6 @@
processing_list += A.contents
/proc/get_mobs_in_radio_ranges(list/obj/item/device/radio/radios)
-
- set background = BACKGROUND_ENABLED
-
. = list()
// Returns a list of mobs who can hear any of the radios given in @radios
for(var/obj/item/device/radio/R in radios)
@@ -358,7 +355,7 @@
/proc/flick_overlay(image/I, list/show_to, duration)
for(var/client/C in show_to)
C.images += I
- addtimer(CALLBACK(GLOBAL_PROC, /.proc/remove_images_from_clients, I, show_to), duration)
+ addtimer(CALLBACK(GLOBAL_PROC, /.proc/remove_images_from_clients, I, show_to), duration, TIMER_CLIENT_TIME)
/proc/flick_overlay_view(image/I, atom/target, duration) //wrapper for the above, flicks to everyone who can see the target atom
var/list/viewing = list()
@@ -479,7 +476,7 @@
if(!gametypeCheck.age_check(M.client))
continue
if(jobbanType)
- if(jobban_isbanned(M, jobbanType) || jobban_isbanned(M, "Syndicate"))
+ if(jobban_isbanned(M, jobbanType) || jobban_isbanned(M, ROLE_SYNDICATE))
continue
showCandidatePollWindow(M, poll_time, Question, result, ignore_category, time_passed, flashwindow)
diff --git a/code/__HELPERS/global_lists.dm b/code/__HELPERS/global_lists.dm
index 0f7f4397db..fd83cc0658 100644
--- a/code/__HELPERS/global_lists.dm
+++ b/code/__HELPERS/global_lists.dm
@@ -29,7 +29,9 @@
init_sprite_accessory_subtypes(/datum/sprite_accessory/spines_animated, GLOB.animated_spines_list)
init_sprite_accessory_subtypes(/datum/sprite_accessory/legs, GLOB.legs_list)
init_sprite_accessory_subtypes(/datum/sprite_accessory/wings, GLOB.r_wings_list,roundstart = TRUE)
-
+ //moffs
+ init_sprite_accessory_subtypes(/datum/sprite_accessory/moth_wings, GLOB.moth_wings_list)
+
//CIT CHANGES START HERE, ADDS SNOWFLAKE BODYPARTS AND MORE
//mammal bodyparts (fucking furries)
init_sprite_accessory_subtypes(/datum/sprite_accessory/mam_body_markings, GLOB.mam_body_markings_list)
diff --git a/code/__DATASTRUCTURES/heap.dm b/code/__HELPERS/heap.dm
similarity index 100%
rename from code/__DATASTRUCTURES/heap.dm
rename to code/__HELPERS/heap.dm
index ce03b482e5..c34d5a2b9e 100644
--- a/code/__DATASTRUCTURES/heap.dm
+++ b/code/__HELPERS/heap.dm
@@ -38,6 +38,7 @@
while(parent > 0 && (call(cmp)(L[index],L[parent]) > 0))
L.Swap(index,parent)
+
index = parent
parent = round(index * 0.5)
@@ -67,7 +68,6 @@
//Replaces a given node so it verify the heap condition
/datum/Heap/proc/ReSort(atom/A)
var/index = L.Find(A)
-
Swim(index)
Sink(index)
diff --git a/code/__HELPERS/icons.dm b/code/__HELPERS/icons.dm
index eb09ce6daa..0e5fff082c 100644
--- a/code/__HELPERS/icons.dm
+++ b/code/__HELPERS/icons.dm
@@ -890,7 +890,10 @@ The _flatIcons list is a cache for generated icon files.
flat.Blend(rgb(255, 255, 255, A.alpha), ICON_MULTIPLY)
if(no_anim)
- return icon(flat, "", SOUTH, frame=1)
+ //Clean up repeated frames
+ var/icon/cleaned = new /icon()
+ cleaned.Insert(flat, "", SOUTH, 1, 0)
+ return cleaned
else
return icon(flat, "", SOUTH)
diff --git a/code/__HELPERS/mobs.dm b/code/__HELPERS/mobs.dm
index 9d01999847..b2bb939b11 100644
--- a/code/__HELPERS/mobs.dm
+++ b/code/__HELPERS/mobs.dm
@@ -32,7 +32,7 @@
else
return pick(GLOB.underwear_list)*/
-/proc/random_undershirt(gender)//Cit change - makes random underwear always return nude
+/proc/random_undershirt(gender)//Cit change - makes random undershirts always return nude
if(!GLOB.undershirt_list.len)
init_sprite_accessory_subtypes(/datum/sprite_accessory/undershirt, GLOB.undershirt_list, GLOB.undershirt_m, GLOB.undershirt_f)
return "Nude"
@@ -44,7 +44,7 @@
else
return pick(GLOB.undershirt_list)*/
-/proc/random_socks()//Cit change - makes random underwear always return nude
+/proc/random_socks()//Cit change - makes random socks always return nude
if(!GLOB.socks_list.len)
init_sprite_accessory_subtypes(/datum/sprite_accessory/socks, GLOB.socks_list)
return "Nude"
@@ -71,6 +71,8 @@
init_sprite_accessory_subtypes(/datum/sprite_accessory/body_markings, GLOB.body_markings_list)
if(!GLOB.wings_list.len)
init_sprite_accessory_subtypes(/datum/sprite_accessory/wings, GLOB.wings_list)
+ if(!GLOB.moth_wings_list.len)
+ init_sprite_accessory_subtypes(/datum/sprite_accessory/moth_wings, GLOB.moth_wings_list)
//CIT CHANGES - genitals and such
if(!GLOB.cock_shapes_list.len)
@@ -109,6 +111,7 @@
"spines" = pick(GLOB.spines_list),
"body_markings" = pick(GLOB.body_markings_list),
"legs" = "Normal Legs",
+ "moth_wings" = pick(GLOB.moth_wings_list),
"taur" = "None",
"mam_body_markings" = "None",
"mam_ears" = "None",
@@ -163,7 +166,6 @@
"womb_efficiency" = CUM_EFFICIENCY,
"womb_fluid" = "femcum",
"flavor_text" = ""))
-
/proc/random_hair_style(gender)
switch(gender)
if(MALE)
@@ -183,27 +185,34 @@
return pick(GLOB.facial_hair_styles_list)
/proc/random_unique_name(gender, attempts_to_find_unique_name=10)
- for(var/i=1, i<=attempts_to_find_unique_name, i++)
+ for(var/i in 1 to attempts_to_find_unique_name)
if(gender==FEMALE)
. = capitalize(pick(GLOB.first_names_female)) + " " + capitalize(pick(GLOB.last_names))
else
. = capitalize(pick(GLOB.first_names_male)) + " " + capitalize(pick(GLOB.last_names))
- if(i != attempts_to_find_unique_name && !findname(.))
+ if(!findname(.))
break
/proc/random_unique_lizard_name(gender, attempts_to_find_unique_name=10)
- for(var/i=1, i<=attempts_to_find_unique_name, i++)
+ for(var/i in 1 to attempts_to_find_unique_name)
. = capitalize(lizard_name(gender))
- if(i != attempts_to_find_unique_name && !findname(.))
+ if(!findname(.))
break
/proc/random_unique_plasmaman_name(attempts_to_find_unique_name=10)
- for(var/i=1, i<=attempts_to_find_unique_name, i++)
+ for(var/i in 1 to attempts_to_find_unique_name)
. = capitalize(plasmaman_name())
- if(i != attempts_to_find_unique_name && !findname(.))
+ if(!findname(.))
+ break
+
+/proc/random_unique_moth_name(attempts_to_find_unique_name=10)
+ for(var/i in 1 to attempts_to_find_unique_name)
+ . = capitalize(moth_name())
+
+ if(!findname(.))
break
/proc/random_skin_tone()
@@ -580,3 +589,24 @@ Proc for attack log creation, because really why not
warning("Invalid speech logging type detected. [logtype]. Defaulting to say")
log_say(logmessage)
+//Used in chemical_mob_spawn. Generates a random mob based on a given gold_core_spawnable value.
+/proc/create_random_mob(spawn_location, mob_class = HOSTILE_SPAWN)
+ var/static/list/mob_spawn_meancritters = list() // list of possible hostile mobs
+ var/static/list/mob_spawn_nicecritters = list() // and possible friendly mobs
+
+ if(mob_spawn_meancritters.len <= 0 || mob_spawn_nicecritters.len <= 0)
+ for(var/T in typesof(/mob/living/simple_animal))
+ var/mob/living/simple_animal/SA = T
+ switch(initial(SA.gold_core_spawnable))
+ if(HOSTILE_SPAWN)
+ mob_spawn_meancritters += T
+ if(FRIENDLY_SPAWN)
+ mob_spawn_nicecritters += T
+
+ var/chosen
+ if(mob_class == FRIENDLY_SPAWN)
+ chosen = pick(mob_spawn_nicecritters)
+ else
+ chosen = pick(mob_spawn_meancritters)
+ var/mob/living/simple_animal/C = new chosen(spawn_location)
+ return C
diff --git a/code/__HELPERS/names.dm b/code/__HELPERS/names.dm
index e019af213f..8fbb5d805b 100644
--- a/code/__HELPERS/names.dm
+++ b/code/__HELPERS/names.dm
@@ -9,6 +9,9 @@
/proc/plasmaman_name()
return "[pick(GLOB.plasmaman_names)] \Roman[rand(1,99)]"
+/proc/moth_name()
+ return "[pick(GLOB.moth_names)]"
+
/proc/church_name()
var/static/church_name
if (church_name)
diff --git a/code/__HELPERS/roundend.dm b/code/__HELPERS/roundend.dm
index bd18ce239f..ee575f686f 100644
--- a/code/__HELPERS/roundend.dm
+++ b/code/__HELPERS/roundend.dm
@@ -391,6 +391,7 @@
if(X.get_team() == T)
all_antagonists -= X
result += " "//newline between teams
+ CHECK_TICK
var/currrent_category
var/datum/antagonist/previous_category
@@ -410,6 +411,7 @@
previous_category = A
result += A.roundend_report()
result += "
"
+ CHECK_TICK
if(all_antagonists.len)
var/datum/antagonist/last = all_antagonists[all_antagonists.len]
diff --git a/code/__HELPERS/sorts/InsertSort.dm b/code/__HELPERS/sorts/InsertSort.dm
index 23e0dc8876..962709527e 100644
--- a/code/__HELPERS/sorts/InsertSort.dm
+++ b/code/__HELPERS/sorts/InsertSort.dm
@@ -8,9 +8,12 @@
if(toIndex <= 0)
toIndex += L.len + 1
- GLOB.sortInstance.L = L
- GLOB.sortInstance.cmp = cmp
- GLOB.sortInstance.associative = associative
+ var/datum/sortInstance/SI = GLOB.sortInstance
+ if(!SI)
+ SI = new
+ SI.L = L
+ SI.cmp = cmp
+ SI.associative = associative
- GLOB.sortInstance.binarySort(fromIndex, toIndex, fromIndex)
+ SI.binarySort(fromIndex, toIndex, fromIndex)
return L
\ No newline at end of file
diff --git a/code/__HELPERS/sorts/MergeSort.dm b/code/__HELPERS/sorts/MergeSort.dm
index cc47123b3c..39d3799725 100644
--- a/code/__HELPERS/sorts/MergeSort.dm
+++ b/code/__HELPERS/sorts/MergeSort.dm
@@ -8,9 +8,12 @@
if(toIndex <= 0)
toIndex += L.len + 1
- GLOB.sortInstance.L = L
- GLOB.sortInstance.cmp = cmp
- GLOB.sortInstance.associative = associative
- GLOB.sortInstance.mergeSort(fromIndex, toIndex)
+ var/datum/sortInstance/SI = GLOB.sortInstance
+ if(!SI)
+ SI = new
+ SI.L = L
+ SI.cmp = cmp
+ SI.associative = associative
+ SI.mergeSort(fromIndex, toIndex)
return L
\ No newline at end of file
diff --git a/code/__HELPERS/sorts/TimSort.dm b/code/__HELPERS/sorts/TimSort.dm
index 8cfb792672..d709044dc0 100644
--- a/code/__HELPERS/sorts/TimSort.dm
+++ b/code/__HELPERS/sorts/TimSort.dm
@@ -8,10 +8,13 @@
if(toIndex <= 0)
toIndex += L.len + 1
- GLOB.sortInstance.L = L
- GLOB.sortInstance.cmp = cmp
- GLOB.sortInstance.associative = associative
+ var/datum/sortInstance/SI = GLOB.sortInstance
+ if(!SI)
+ SI = new
- GLOB.sortInstance.timSort(fromIndex, toIndex)
+ SI.L = L
+ SI.cmp = cmp
+ SI.associative = associative
+ SI.timSort(fromIndex, toIndex)
return L
\ No newline at end of file
diff --git a/code/__HELPERS/text_vr.dm b/code/__HELPERS/text_vr.dm
index 7cd683f456..846cb1b26a 100644
--- a/code/__HELPERS/text_vr.dm
+++ b/code/__HELPERS/text_vr.dm
@@ -17,11 +17,11 @@ proc/TextPreview(var/string,var/len=40)
else
return "[copytext(string, 1, 37)]..."
-GLOBAL_LIST_EMPTY(mentor_log)
-GLOBAL_PROTECT(mentor_log)
+GLOBAL_LIST_EMPTY(mentorlog)
+GLOBAL_PROTECT(mentorlog)
GLOBAL_LIST_EMPTY(whitelisted_species_list)
/proc/log_mentor(text)
- GLOB.mentor_log.Add(text)
- GLOB.world_game_log << "\[[time_stamp()]]MENTOR: [text]"
\ No newline at end of file
+ GLOB.mentorlog.Add(text)
+ GLOB.world_game_log << "\[[time_stamp()]]MENTOR: [text]"
\ No newline at end of file
diff --git a/code/__HELPERS/type2type.dm b/code/__HELPERS/type2type.dm
index 372dc64cab..59f9a82309 100644
--- a/code/__HELPERS/type2type.dm
+++ b/code/__HELPERS/type2type.dm
@@ -65,6 +65,7 @@
return .
//Splits the text of a file at seperator and returns them in a list.
+//returns an empty list if the file doesn't exist
/world/proc/file2list(filename, seperator="\n", trim = TRUE)
if (trim)
return splittext(trim(file2text(filename)),seperator)
@@ -589,4 +590,4 @@
for(var/i = 1 to length(str)/2)
c= hex2num(copytext(str,i*2-1,i*2+1))
r+= ascii2text(c)
- return r
\ No newline at end of file
+ return r
diff --git a/code/__HELPERS/unsorted.dm b/code/__HELPERS/unsorted.dm
index aaabbef74b..598fb8b7a2 100644
--- a/code/__HELPERS/unsorted.dm
+++ b/code/__HELPERS/unsorted.dm
@@ -1511,7 +1511,7 @@ GLOBAL_DATUM_INIT(dview_mob, /mob/dview, new)
usr = M
. = CB.Invoke()
usr = temp
-
+
//Returns a list of all servants of Ratvar and observers.
/proc/servants_and_ghosts()
. = list()
diff --git a/code/_globalvars/lists/flavor_misc.dm b/code/_globalvars/lists/flavor_misc.dm
index 7acb5bf729..ebf86ed666 100644
--- a/code/_globalvars/lists/flavor_misc.dm
+++ b/code/_globalvars/lists/flavor_misc.dm
@@ -34,6 +34,7 @@ GLOBAL_LIST_EMPTY(ears_list)
GLOBAL_LIST_EMPTY(wings_list)
GLOBAL_LIST_EMPTY(wings_open_list)
GLOBAL_LIST_EMPTY(r_wings_list)
+GLOBAL_LIST_EMPTY(moth_wings_list)
GLOBAL_LIST_INIT(ghost_forms_with_directions_list, list("ghost")) //stores the ghost forms that support directional sprites
GLOBAL_LIST_INIT(ghost_forms_with_accessories_list, list("ghost")) //stores the ghost forms that support hair and other such things
diff --git a/code/_globalvars/lists/names.dm b/code/_globalvars/lists/names.dm
index ad5e18d3f7..eaaa2c1755 100644
--- a/code/_globalvars/lists/names.dm
+++ b/code/_globalvars/lists/names.dm
@@ -13,6 +13,7 @@ GLOBAL_LIST_INIT(clown_names, world.file2list("strings/names/clown.txt"))
GLOBAL_LIST_INIT(mime_names, world.file2list("strings/names/mime.txt"))
GLOBAL_LIST_INIT(carp_names, world.file2list("strings/names/carp.txt"))
GLOBAL_LIST_INIT(golem_names, world.file2list("strings/names/golem.txt"))
+GLOBAL_LIST_INIT(moth_names, world.file2list("strings/names/moth.txt"))
GLOBAL_LIST_INIT(plasmaman_names, world.file2list("strings/names/plasmaman.txt"))
GLOBAL_LIST_INIT(posibrain_names, world.file2list("strings/names/posibrain.txt"))
GLOBAL_LIST_INIT(nightmare_names, world.file2list("strings/names/nightmare.txt"))
diff --git a/code/_globalvars/misc.dm b/code/_globalvars/misc.dm
index 8b8b817586..807ec5c5fe 100644
--- a/code/_globalvars/misc.dm
+++ b/code/_globalvars/misc.dm
@@ -17,4 +17,10 @@ GLOBAL_LIST_EMPTY(powernets)
GLOBAL_VAR_INIT(bsa_unlock, FALSE) //BSA unlocked by head ID swipes
-GLOBAL_LIST_EMPTY(player_details) // ckey -> /datum/player_details
\ No newline at end of file
+GLOBAL_LIST_EMPTY(player_details) // ckey -> /datum/player_details
+
+GLOBAL_LIST_INIT(bitfields, list(
+ "obj_flags" = list("EMAGGED" = EMAGGED, "IN_USE" = IN_USE, "CAN_BE_HIT" = CAN_BE_HIT, "BEING_SHOCKED" = BEING_SHOCKED, "DANGEROUS_POSSESSION" = DANGEROUS_POSSESSION, "ON_BLUEPRINTS" = ON_BLUEPRINTS, "UNIQUE_RENAME" = UNIQUE_RENAME),
+ "datum_flags" = list("DF_USE_TAG" = DF_USE_TAG, "DF_VAR_EDITED" = DF_VAR_EDITED),
+ "item_flags" = list("BEING_REMOVED" = BEING_REMOVED, "IN_INVENTORY" = IN_INVENTORY, "FORCE_STRING_OVERRIDE" = FORCE_STRING_OVERRIDE, "NEEDS_PERMIT" = NEEDS_PERMIT)
+ ))
diff --git a/code/_onclick/ai.dm b/code/_onclick/ai.dm
index e97f4d5426..ac03465773 100644
--- a/code/_onclick/ai.dm
+++ b/code/_onclick/ai.dm
@@ -130,16 +130,16 @@
/* Airlocks */
/obj/machinery/door/airlock/AICtrlClick() // Bolts doors
- if(emagged)
+ if(obj_flags & EMAGGED)
return
-
+
if(locked)
bolt_raise(usr)
else
bolt_drop(usr)
/obj/machinery/door/airlock/AIAltClick() // Eletrifies doors.
- if(emagged)
+ if(obj_flags & EMAGGED)
return
if(!secondsElectrified)
@@ -148,15 +148,15 @@
shock_restore(usr)
/obj/machinery/door/airlock/AIShiftClick() // Opens and closes doors!
- if(emagged)
+ if(obj_flags & EMAGGED)
return
user_toggle_open(usr)
/obj/machinery/door/airlock/AICtrlShiftClick() // Sets/Unsets Emergency Access Override
- if(emagged)
+ if(obj_flags & EMAGGED)
return
-
+
if(!emergency)
emergency_on(usr)
else
diff --git a/code/_onclick/hud/alert.dm b/code/_onclick/hud/alert.dm
index 97d6549048..4379398a7d 100644
--- a/code/_onclick/hud/alert.dm
+++ b/code/_onclick/hud/alert.dm
@@ -330,20 +330,20 @@ or shoot a gun to move around via Newton's 3rd Law of Motion."
var/datum/objective/eldergod/summon_objective = locate() in antag.cult_team.objectives
if(!summon_objective)
return
+ desc = "The sacrifice is complete, summon Nar-Sie! The summoning can only take place in [english_list(summon_objective.summon_spots)]!"
if(icon_state == "runed_sense1")
return
animate(src, transform = null, time = 1, loop = 0)
angle = 0
cut_overlays()
icon_state = "runed_sense1"
- desc = "The sacrifice is complete, summon Nar-Sie! The summoning can only take place in [english_list(summon_objective.summon_spots)]!"
add_overlay(narnar)
return
var/turf/P = get_turf(blood_target)
var/turf/Q = get_turf(mob_viewer)
- if(P.z != Q.z) //The target is on a different Z level, we cannot sense that far.
+ if(!P || !Q || (P.z != Q.z)) //The target is on a different Z level, we cannot sense that far.
icon_state = "runed_sense2"
- desc = "[blood_target] is no longer in your sector, you cannot sense its presence here."
+ desc = "You can no longer sense your target's presence."
return
desc = "You are currently tracking [blood_target] in [get_area_name(blood_target)]."
var/target_angle = Get_Angle(Q, P)
@@ -419,7 +419,7 @@ or shoot a gun to move around via Newton's 3rd Law of Motion."
time_name = "until the Ark finishes summoning"
if(time_info)
textlist += "[time_info / 60] minutes [time_name].
"
- textlist += "[DisplayPower(get_clockwork_power())] power available for use."
+ textlist += "[DisplayPower(get_clockwork_power())] / [DisplayPower(MAX_CLOCKWORK_POWER)] power available for use."
desc = textlist.Join()
..()
diff --git a/code/_onclick/hud/screen_objects.dm b/code/_onclick/hud/screen_objects.dm
index 10744f401d..c7df44dfec 100644
--- a/code/_onclick/hud/screen_objects.dm
+++ b/code/_onclick/hud/screen_objects.dm
@@ -548,7 +548,7 @@
/obj/screen/splash/New(client/C, visible, use_previous_title) //TODO: Make this use INITIALIZE_IMMEDIATE, except its not easy
. = ..()
-
+
holder = C
if(!visible)
@@ -565,8 +565,6 @@
holder.screen += src
- ..()
-
/obj/screen/splash/proc/Fade(out, qdel_after = TRUE)
if(QDELETED(src))
return
diff --git a/code/_onclick/item_attack.dm b/code/_onclick/item_attack.dm
index 8a5b9ba519..3368960da4 100644
--- a/code/_onclick/item_attack.dm
+++ b/code/_onclick/item_attack.dm
@@ -1,6 +1,6 @@
/obj/item/proc/melee_attack_chain(mob/user, atom/target, params)
- if(!tool_check(user, target) && pre_attackby(target, user, params))
+ if(!tool_attack_chain(user, target) && pre_attackby(target, user, params))
// Return 1 in attackby() to prevent afterattack() effects (when safely moving items for example)
var/resolved = target.attackby(src, user, params)
if(!resolved && target && !QDELETED(src))
@@ -8,20 +8,11 @@
//Checks if the item can work as a tool, calling the appropriate tool behavior on the target
-/obj/item/proc/tool_check(mob/user, atom/target)
- switch(tool_behaviour)
- if(TOOL_NONE)
- return FALSE
- if(TOOL_CROWBAR)
- return target.crowbar_act(user, src)
- if(TOOL_MULTITOOL)
- return target.multitool_act(user, src)
- if(TOOL_SCREWDRIVER)
- return target.screwdriver_act(user, src)
- if(TOOL_WRENCH)
- return target.wrench_act(user, src)
- if(TOOL_WIRECUTTER)
- return target.wirecutter_act(user, src)
+/obj/item/proc/tool_attack_chain(mob/user, atom/target)
+ if(!tool_behaviour)
+ return FALSE
+
+ return target.tool_act(user, src, tool_behaviour)
// Called when the item is in the active hand, and clicked; alternately, there is an 'activate held object' verb or you can hit pagedown.
@@ -39,7 +30,7 @@
return FALSE
/obj/attackby(obj/item/I, mob/living/user, params)
- return ..() || (can_be_hit && I.attack_obj(src, user))
+ return ..() || ((obj_flags & CAN_BE_HIT) && I.attack_obj(src, user))
/mob/living/attackby(obj/item/I, mob/living/user, params)
user.changeNext_move(CLICK_CD_MELEE)
@@ -59,10 +50,10 @@
if(flags_1 & NOBLUDGEON_1)
return
- if(force && user.has_disability(DISABILITY_PACIFISM))
+ if(force && user.has_trait(TRAIT_PACIFISM))
to_chat(user, "You don't want to harm other living beings!")
return
-
+
if(!force)
playsound(loc, 'sound/weapons/tap.ogg', get_clamped_volume(), 1, -1)
else if(hitsound)
diff --git a/code/citadel/_cit_helpers.dm b/code/citadel/_cit_helpers.dm
index 1eacc01ef3..f4772fa464 100644
--- a/code/citadel/_cit_helpers.dm
+++ b/code/citadel/_cit_helpers.dm
@@ -86,9 +86,6 @@ GLOBAL_LIST_INIT(dildo_colors, list(//mostly neon colors
"Purple" = "#e300ff"//purple
))
-//mentor stuff
-GLOBAL_LIST_EMPTY(mentors)
-
//Looc stuff
GLOBAL_VAR_INIT(looc_allowed, 1)
GLOBAL_VAR_INIT(dlooc_allowed, 1)
diff --git a/code/citadel/cit_guns.dm b/code/citadel/cit_guns.dm
index 8f113494cb..a0a80bdbfb 100644
--- a/code/citadel/cit_guns.dm
+++ b/code/citadel/cit_guns.dm
@@ -182,7 +182,7 @@
icon = 'icons/obj/guns/cit_guns.dmi'
icon_state = "toy9"
can_suppress = 0
- needs_permit = 0
+ obj_flags = 0
mag_type = /obj/item/ammo_box/magazine/toy/x9
casing_ejector = 0
spread = 90 //MAXIMUM XCOM MEMES (actually that'd be 180 spread)
@@ -489,7 +489,7 @@
name = "foamag rifle"
desc = "A foam launching magnetic rifle. Ages 8 and up."
icon_state = "foamagrifle"
- needs_permit = FALSE
+ obj_flags = 0
mag_type = /obj/item/ammo_box/magazine/toy/foamag
casing_ejector = FALSE
spread = 60
@@ -617,7 +617,7 @@
icon = 'icons/obj/guns/cit_guns.dmi'
icon_state = "toyburst"
clumsy_check = FALSE
- needs_permit = FALSE
+ obj_flags = 0
fire_delay = 40
weapon_weight = WEAPON_HEAVY
selfcharge = TRUE
@@ -772,7 +772,7 @@ obj/item/projectile/bullet/c10mm/soporific
caliber = "flechette"
throwforce = 2
throw_speed = 3
- embed_chance = 75
+ embedding = list("embedded_pain_multiplier" = 0, "embed_chance" = 40, "embedded_fall_chance" = 10)
///magazine///
@@ -858,7 +858,7 @@ obj/item/projectile/bullet/c10mm/soporific
icon = 'icons/obj/guns/cit_guns.dmi'
icon_state = "cde"
can_unsuppress = TRUE
- unique_rename = TRUE
+ obj_flags = UNIQUE_RENAME
unique_reskin = list("Default" = "cde",
"NT-99" = "n99",
"Stealth" = "stealthpistol",
@@ -1154,7 +1154,7 @@ obj/item/projectile/bullet/c10mm/soporific
icon_state = "p37_foam"
pin = /obj/item/device/firing_pin
spawnwithmagazine = TRUE
- needs_permit = FALSE
+ obj_flags = 0
mag_type = /obj/item/ammo_box/magazine/toy/pistol
can_suppress = FALSE
actions_types = list(/datum/action/item_action/pick_color)
@@ -1216,3 +1216,86 @@ obj/item/gun/energy/e_gun/cx/worn_overlays(isinhands, icon_file)
/obj/item/ammo_box/magazine/toy/pistol //forcing this might be a bad idea, but it'll fix the foam gun infinite material exploit
materials = list(MAT_METAL = 200)
+
+/*/////////////////////////////////////////////////////////////
+//////////////////////// Zero's Meme //////////////////////////
+*//////////////////////////////////////////////////////////////
+/obj/item/ammo_box/magazine/toy/AM4B
+ name = "foam force AM4-B magazine"
+ icon = 'icons/obj/guns/cit_guns.dmi'
+ icon_state = "AM4MAG-60"
+ max_ammo = 60
+ multiple_sprites = 0
+ materials = list(MAT_METAL = 200)
+
+/obj/item/gun/ballistic/automatic/AM4B
+ name = "AM4-B"
+ desc = "A Relic from a bygone age. Nobody quite knows why it's here. Has a polychromic coating."
+ icon = 'icons/obj/guns/cit_guns.dmi'
+ icon_state = "AM4"
+ item_state = "arg"
+ mag_type = /obj/item/ammo_box/magazine/toy/AM4B
+ can_suppress = 0
+ item_flags = NEEDS_PERMIT
+ casing_ejector = 0
+ spread = 30 //Assault Rifleeeeeee
+ w_class = WEIGHT_CLASS_NORMAL
+ burst_size = 4 //Shh.
+ fire_delay = 1
+ var/body_color = "#3333aa"
+
+/obj/item/gun/ballistic/automatic/AM4B/update_icon()
+ ..()
+ var/mutable_appearance/body_overlay = mutable_appearance('icons/obj/guns/cit_guns.dmi', "AM4-Body")
+ if(body_color)
+ body_overlay.color = body_color
+ cut_overlays() //So that it doesn't keep stacking overlays non-stop on top of each other
+ add_overlay(body_overlay)
+ if(ismob(loc))
+ var/mob/M = loc
+ M.update_inv_hands()
+/obj/item/gun/ballistic/automatic/AM4B/AltClick(mob/living/user)
+ if(!in_range(src, user)) //Basic checks to prevent abuse
+ return
+ if(user.incapacitated() || !istype(user))
+ to_chat(user, "You can't do that right now!")
+ return
+ if(alert("Are you sure you want to recolor your gun?", "Confirm Repaint", "Yes", "No") == "Yes")
+ var/body_color_input = input(usr,"Choose Shroud Color") as color|null
+ if(body_color_input)
+ body_color = sanitize_hexcolor(body_color_input, desired_format=6, include_crunch=1)
+ update_icon()
+/obj/item/gun/ballistic/automatic/AM4B/examine(mob/user)
+ ..()
+ to_chat(user, "Alt-click to recolor it.")
+
+/obj/item/ammo_box/magazine/toy/AM4C
+ name = "foam force AM4-C magazine"
+ icon = 'icons/obj/guns/cit_guns.dmi'
+ icon_state = "AM4MAG-32"
+ max_ammo = 32
+ multiple_sprites = 0
+ materials = list(MAT_METAL = 200)
+
+/obj/item/gun/ballistic/automatic/AM4C
+ name = "AM4-C"
+ desc = "A Relic from a bygone age. This one seems newer, yet less effective."
+ icon = 'icons/obj/guns/cit_guns.dmi'
+ icon_state = "AM4C"
+ item_state = "arg"
+ mag_type = /obj/item/ammo_box/magazine/toy/AM4C
+ can_suppress = 0
+ item_flags = NEEDS_PERMIT
+ casing_ejector = 0
+ spread = 45 //Assault Rifleeeeeee
+ w_class = WEIGHT_CLASS_NORMAL
+ burst_size = 4 //Shh.
+ fire_delay = 1
+
+/datum/design/am4c
+ name = "Foam Force AM4-C Rifle"
+ id = "foam_am4c"
+ build_type = AUTOLATHE
+ materials = list(MAT_METAL = 24000, MAT_GLASS = 14000)
+ build_path = /obj/item/gun/ballistic/automatic/AM4C
+ category = list("hacked", "Misc")
diff --git a/code/citadel/dogborgstuff.dm b/code/citadel/dogborgstuff.dm
index 2713b19976..bfa40c6cda 100644
--- a/code/citadel/dogborgstuff.dm
+++ b/code/citadel/dogborgstuff.dm
@@ -31,32 +31,30 @@
/obj/item/dogborg/jaws/small/attack_self(mob/user)
var/mob/living/silicon/robot.R = user
if(R.emagged)
- emagged = !emagged
- if(emagged)
- name = "combat jaws"
- icon = 'icons/mob/dogborg.dmi'
- icon_state = "jaws"
- desc = "The jaws of the law."
- flags_1 = CONDUCT_1
- force = 12
- throwforce = 0
- hitsound = 'sound/weapons/bite.ogg'
- attack_verb = list("chomped", "bit", "ripped", "mauled", "enforced")
- w_class = 3
- sharpness = IS_SHARP
- else
- name = "puppy jaws"
- icon = 'icons/mob/dogborg.dmi'
- icon_state = "smalljaws"
- desc = "The jaws of a small dog."
- flags_1 = CONDUCT_1
- force = 5
- throwforce = 0
- hitsound = 'sound/weapons/bite.ogg'
- attack_verb = list("nibbled", "bit", "gnawed", "chomped", "nommed")
- w_class = 3
- sharpness = IS_SHARP
- update_icon()
+ name = "combat jaws"
+ icon = 'icons/mob/dogborg.dmi'
+ icon_state = "jaws"
+ desc = "The jaws of the law."
+ flags_1 = CONDUCT_1
+ force = 12
+ throwforce = 0
+ hitsound = 'sound/weapons/bite.ogg'
+ attack_verb = list("chomped", "bit", "ripped", "mauled", "enforced")
+ w_class = 3
+ sharpness = IS_SHARP
+ else
+ name = "puppy jaws"
+ icon = 'icons/mob/dogborg.dmi'
+ icon_state = "smalljaws"
+ desc = "The jaws of a small dog."
+ flags_1 = CONDUCT_1
+ force = 5
+ throwforce = 0
+ hitsound = 'sound/weapons/bite.ogg'
+ attack_verb = list("nibbled", "bit", "gnawed", "chomped", "nommed")
+ w_class = 3
+ sharpness = IS_SHARP
+ update_icon()
//Cuffs
@@ -189,107 +187,101 @@
/obj/item/soap/tongue/attack_self(mob/user)
var/mob/living/silicon/robot.R = user
if(R.emagged)
- emagged = !emagged
- if(emagged)
- name = "hacked tongue of doom"
- desc = "Your tongue has been upgraded successfully. Congratulations."
- icon = 'icons/mob/dogborg.dmi'
- icon_state = "syndietongue"
- cleanspeed = 10 //(nerf'd)tator soap stat
- else
- name = "synthetic tongue"
- desc = "Useful for slurping mess off the floor before affectionally licking the crew members in the face."
- icon = 'icons/mob/dogborg.dmi'
- icon_state = "synthtongue"
- cleanspeed = initial(cleanspeed)
- update_icon()
+ name = "hacked tongue of doom"
+ desc = "Your tongue has been upgraded successfully. Congratulations."
+ icon = 'icons/mob/dogborg.dmi'
+ icon_state = "syndietongue"
+ cleanspeed = 10 //(nerf'd)tator soap stat
+ else
+ name = "synthetic tongue"
+ desc = "Useful for slurping mess off the floor before affectionally licking the crew members in the face."
+ icon = 'icons/mob/dogborg.dmi'
+ icon_state = "synthtongue"
+ cleanspeed = initial(cleanspeed)
+ update_icon()
/obj/item/soap/tongue/afterattack(atom/target, mob/user, proximity)
+ var/mob/living/silicon/robot.R = user
if(!proximity || !check_allowed_items(target))
return
- if(user.client && (target in user.client.screen))
- to_chat(user, "You need to take that [target.name] off before cleaning it!")
+ if(R.client && (target in R.client.screen))
+ to_chat(R, "You need to take that [target.name] off before cleaning it!")
else if(istype(target,/obj/effect/decal/cleanable))
- user.visible_message("[user] begins to lick off \the [target.name].", "You begin to lick off \the [target.name]...")
- if(do_after(user, src.cleanspeed, target = target))
+ R.visible_message("[R] begins to lick off \the [target.name].", "You begin to lick off \the [target.name]...")
+ if(do_after(R, src.cleanspeed, target = target))
if(!in_range(src, target)) //Proximity is probably old news by now, do a new check.
return //If they moved away, you can't eat them.
- to_chat(user, "You finish licking off \the [target.name].")
+ to_chat(R, "You finish licking off \the [target.name].")
qdel(target)
- var/mob/living/silicon/robot.R = user
R.cell.give(50)
else if(istype(target,/obj/item)) //hoo boy. danger zone man
if(istype(target,/obj/item/trash))
- user.visible_message("[user] nibbles away at \the [target.name].", "You begin to nibble away at \the [target.name]...")
- if(do_after(user, src.cleanspeed, target = target))
+ R.visible_message("[R] nibbles away at \the [target.name].", "You begin to nibble away at \the [target.name]...")
+ if(do_after(R, src.cleanspeed, target = target))
if(!in_range(src, target)) //Proximity is probably old news by now, do a new check.
return //If they moved away, you can't eat them.
- to_chat(user, "You finish off \the [target.name].")
+ to_chat(R, "You finish off \the [target.name].")
qdel(target)
- var/mob/living/silicon/robot.R = user
R.cell.give(250)
return
if(istype(target,/obj/item/stock_parts/cell))
- user.visible_message("[user] begins cramming \the [target.name] down its throat.", "You begin cramming \the [target.name] down your throat...")
- if(do_after(user, 50, target = target))
+ R.visible_message("[R] begins cramming \the [target.name] down its throat.", "You begin cramming \the [target.name] down your throat...")
+ if(do_after(R, 50, target = target))
if(!in_range(src, target)) //Proximity is probably old news by now, do a new check.
return //If they moved away, you can't eat them.
- to_chat(user, "You finish off \the [target.name].")
- var/mob/living/silicon/robot.R = user
+ to_chat(R, "You finish off \the [target.name].")
var/obj/item/stock_parts/cell.C = target
R.cell.charge = R.cell.charge + (C.charge / 3) //Instant full cell upgrades op idgaf
qdel(target)
return
var/obj/item/I = target //HAHA FUCK IT, NOT LIKE WE ALREADY HAVE A SHITTON OF WAYS TO REMOVE SHIT
- if(!I.anchored && src.emagged)
- user.visible_message("[user] begins chewing up \the [target.name]. Looks like it's trying to loophole around its diet restriction!", "You begin chewing up \the [target.name]...")
- if(do_after(user, 100, target = I)) //Nerf dat time yo
+ if(!I.anchored && R.emagged)
+ R.visible_message("[R] begins chewing up \the [target.name]. Looks like it's trying to loophole around its diet restriction!", "You begin chewing up \the [target.name]...")
+ if(do_after(R, 100, target = I)) //Nerf dat time yo
if(!in_range(src, target)) //Proximity is probably old news by now, do a new check. Even emags don't make you magically eat things at range.
return //If they moved away, you can't eat them.
- visible_message("[user] chews up \the [target.name] and cleans off the debris!")
- to_chat(user, "You finish off \the [target.name].")
+ visible_message("[R] chews up \the [target.name] and cleans off the debris!")
+ to_chat(R, "You finish off \the [target.name].")
qdel(I)
- var/mob/living/silicon/robot.R = user
R.cell.give(500)
return
- user.visible_message("[user] begins to lick \the [target.name] clean...", "You begin to lick \the [target.name] clean...")
- if(do_after(user, src.cleanspeed, target = target))
+ R.visible_message("[R] begins to lick \the [target.name] clean...", "You begin to lick \the [target.name] clean...")
+ if(do_after(R, src.cleanspeed, target = target))
if(!in_range(src, target)) //Proximity is probably old news by now, do a new check.
return //If they moved away, you can't clean them.
- to_chat(user,"You clean \the [target.name].")
+ to_chat(R,"You clean \the [target.name].")
var/obj/effect/decal/cleanable/C = locate() in target
qdel(C)
SendSignal(COMSIG_COMPONENT_CLEAN_ACT, CLEAN_STRENGTH_BLOOD)
else if(ishuman(target))
- if(src.emagged)
- var/mob/living/silicon/robot.R = user
+ if(R.emagged)
var/mob/living/L = target
if(R.cell.charge <= 666)
return
L.Stun(4) // normal stunbaton is force 7 gimme a break good sir!
L.Knockdown(80)
L.apply_effect(STUTTER, 4)
- L.visible_message("[user] has shocked [L] with its tongue!", \
- "[user] has shocked you with its tongue! You can feel the betrayal.")
+ L.visible_message("[R] has shocked [L] with its tongue!", \
+ "[R] has shocked you with its tongue! You can feel the betrayal.")
playsound(loc, 'sound/weapons/Egloves.ogg', 50, 1, -1)
R.cell.use(666)
else
- user.visible_message("\the [user] affectionally licks \the [target]'s face!", "You affectionally lick \the [target]'s face!")
+ R.visible_message("\the [R] affectionally licks \the [target]'s face!", "You affectionally lick \the [target]'s face!")
playsound(src.loc, 'sound/effects/attackblob.ogg', 50, 1)
return
else if(istype(target, /obj/structure/window))
- user.visible_message("[user] begins to lick \the [target.name] clean...", "You begin to lick \the [target.name] clean...")
- if(do_after(user, src.cleanspeed, target = target))
+ R.visible_message("[R] begins to lick \the [target.name] clean...", "You begin to lick \the [target.name] clean...")
+ if(do_after(R, src.cleanspeed, target = target))
if(!in_range(src, target)) //Proximity is probably old news by now, do a new check.
return //If they moved away, you can't clean them.
- to_chat(user, "You clean \the [target.name].")
+ to_chat(R, "You clean \the [target.name].")
target.color = initial(target.color)
else
- user.visible_message("[user] begins to lick \the [target.name] clean...", "You begin to lick \the [target.name] clean...")
- if(do_after(user, src.cleanspeed, target = target))
+ R.visible_message("[R] begins to lick \the [target.name] clean...", "You begin to lick \the [target.name] clean...")
+ if(do_after(R, src.cleanspeed, target = target))
if(!in_range(src, target)) //Proximity is probably old news by now, do a new check.
return //If they moved away, you can't clean them.
- to_chat(user, "You clean \the [target.name].")
+ to_chat(R, "You clean \the [target.name].")
var/obj/effect/decal/cleanable/C = locate() in target
qdel(C)
SendSignal(COMSIG_COMPONENT_CLEAN_ACT, CLEAN_STRENGTH_BLOOD)
@@ -338,10 +330,10 @@
var/escape_in_progress = FALSE
var/message_cooldown
var/breakout_time = 300
- var/list/items_preserved = list(
+ var/list/items_preserved = list()
+ var/static/list/important_items = typecacheof(list(
/obj/item/hand_tele,
/obj/item/card/id,
- /obj/item/device/pda,
/obj/item/device/aicard,
/obj/item/gun,
/obj/item/pinpointer,
@@ -359,31 +351,11 @@
/obj/item/documents/syndicate,
/obj/item/disk/nuclear,
/obj/item/bombcore,
- /obj/item/grenade
- )
+ /obj/item/grenade,
+ /obj/item/storage
+ ))
- var/list/important_items = list(
- /obj/item/hand_tele,
- /obj/item/card/id/captains_spare,
- /obj/item/device/aicard,
- /obj/item/gun,
- /obj/item/pinpointer,
- /obj/item/clothing/shoes/magboots,
- /obj/item/clothing/head/helmet/space,
- /obj/item/clothing/suit/space,
- /obj/item/reagent_containers/hypospray/CMO,
- /obj/item/tank/jetpack/oxygen/captain,
- /obj/item/clothing/accessory/medal/gold/captain,
- /obj/item/clothing/suit/armor,
- /obj/item/documents,
- /obj/item/nuke_core,
- /obj/item/nuke_core_container,
- /obj/item/areaeditor/blueprints,
- /obj/item/documents/syndicate,
- /obj/item/disk/nuclear,
- /obj/item/bombcore,
- /obj/item/grenade
- )
+// Bags are prohibited from this due to the potential explotation of objects, same with brought
/obj/item/device/dogborg/sleeper/New()
..()
@@ -397,7 +369,7 @@
hound = loc
if(!proximity)
return
- if(!ishuman(target))
+ if(!iscarbon(target))
return
if(target.buckled)
to_chat(user, "The user is buckled and can not be put into your [src.name].")
@@ -405,8 +377,9 @@
if(patient)
to_chat(user, "Your [src.name] is already occupied.")
return
+ testing("using sleeper/afterattack")
user.visible_message("[hound.name] is carefully inserting [target.name] into their [src.name].", "You start placing [target] into your [src]...")
- if(!patient && ishuman(target) && !target.buckled && do_after (user, 50, target = target))
+ if(!patient && iscarbon(target) && !target.buckled && do_after (user, 50, target = target))
if(!in_range(src, target)) //Proximity is probably old news by now, do a new check.
return //If they moved away, you can't eat them.
@@ -414,10 +387,10 @@
if(patient) return //If you try to eat two people at once, you can only eat one.
else //If you don't have someone in you, proceed.
- if(!isslimeperson(target) && ("toxin" in injection_chems))
+ if(!isjellyperson(target) && ("toxin" in injection_chems))
injection_chems -= "toxin"
injection_chems += "antitoxin"
- if(isslimeperson(target) && !("toxin" in injection_chems))
+ if(isjellyperson(target) && !("toxin" in injection_chems))
injection_chems -= "antitoxin"
injection_chems += "toxin"
target.forceMove(src)
@@ -451,8 +424,8 @@
if(length(contents) > 0)
hound.visible_message("[hound.name] empties out their contents via their release port.", "You empty your contents via your release port.")
if(target)
- if(ishuman(target))
- var/mob/living/carbon/human/person = target
+ if(iscarbon(target))
+ var/mob/living/carbon/person = target
person.forceMove(get_turf(src))
person.reset_perspective()
else
@@ -460,8 +433,8 @@
T.loc = hound.loc
else
for(var/C in contents)
- if(ishuman(C))
- var/mob/living/carbon/human/person = C
+ if(iscarbon(C))
+ var/mob/living/carbon/person = C
person.forceMove(get_turf(src))
person.reset_perspective()
else
@@ -580,7 +553,6 @@
hound.update_icons()
//Return original patient
return(patient)
-
//Check for a new patient
else
for(var/mob/living/carbon/human/C in contents)
@@ -601,7 +573,6 @@
if(cleaning && !patient)
hound.sleeper_r = 1
hound.sleeper_g = 0
-
//Couldn't find anyone, and not cleaning
else if(!cleaning && !patient)
hound.sleeper_r = 0
@@ -615,18 +586,15 @@
//Gurgleborg process
/obj/item/device/dogborg/sleeper/proc/clean_cycle()
testing("clean_cycle activated")
- //Sanity? Maybe not required. More like if indigestible person OOC escapes.
+ //Sanity
for(var/I in items_preserved)
if(!(I in contents))
items_preserved -= I
-
var/list/touchable_items = contents - items_preserved
-
if(cleaning_cycles)
testing("clean_cycle being used")
cleaning_cycles--
cleaning = TRUE
- //Burn all the mobs or add them to the exclusion list
for(var/mob/living/carbon/human/T in (touchable_items))
if((T.status_flags & GODMODE) || !T.digestable)
src.items_preserved += T
@@ -634,38 +602,11 @@
T.adjustBruteLoss(2)
T.adjustFireLoss(3)
update_gut()
- addtimer(CALLBACK(src, .proc/clean_cycle), 50)
- else
- testing("clean_cycle resetted")
- cleaning_cycles = initial(cleaning_cycles)
- cleaning = FALSE
- update_gut()
- to_chat(hound, "Your [src.name] chimes it ends its self-cleaning cycle.")//Belly is entirely empty
- if(!length(contents))
- to_chat(hound, "Your [src.name] is now clean. Ending self-cleaning cycle.")
- cleaning = FALSE
- update_gut()
- return
-
- //sound effects
- for(var/mob/living/M in contents)
- if(prob(50))
- M.stop_sound_channel(CHANNEL_PRED)
- playsound(get_turf(hound),"digest_pred",75,0,-6,0,channel=CHANNEL_PRED)
- M.stop_sound_channel(CHANNEL_PRED)
- M.playsound_local("digest_prey",60)
-
-
- //Pick a random item to deal with (if there are any)
var/atom/target = pick(touchable_items)
-
- //Handle the target being a mob
- if(ishuman(target))
- var/mob/living/carbon/human/T = target
-
- //Mob is now dead
- if(T.stat == DEAD && T.digestable)
+ if(iscarbon(target)) //Handle the target being a mob
+ var/mob/living/carbon/T = target
+ if(T.stat == DEAD && T.digestable) //Mob is now dead
message_admins("[key_name(hound)] has digested [key_name(T)] as a dogborg. ([hound ? "JMP" : "null"])")
to_chat(hound,"You feel your belly slowly churn around [T], breaking them down into a soft slurry to be used as power for your systems.")
to_chat(T,"You feel [hound]'s belly slowly churn around your form, breaking you down into a soft slurry to be used as power for [hound]'s systems.")
@@ -674,24 +615,47 @@
playsound(get_turf(hound),"death_pred",50,0,-6,0,channel=CHANNEL_PRED)
T.stop_sound_channel(CHANNEL_PRED)
T.playsound_local("death_prey",60)
+ for(var/obj/item/W in T)
+ if(!T.dropItemToGround(W))
+ qdel(W)
qdel(T)
- src.update_gut()
-
- //Handle the target being anything but a /mob/living/carbon/human
- else
+ update_gut()
+ //Handle the target being anything but a mob
+ else if(isobj(target))
var/obj/T = target
-
- //If the object is in the items_preserved global list //POLARISTODO
-
- if(T.type in important_items)
+ if(T.type in important_items) //If the object is in the items_preserved global list
src.items_preserved += T
-
//If the object is not one to preserve
else
qdel(T)
src.update_gut()
src.hound.cell.give(10)
- return
+ else
+ testing("clean_cycle finished and reset")
+ cleaning_cycles = initial(cleaning_cycles)
+ cleaning = FALSE
+ to_chat(hound, "Your [src.name] chimes it ends its self-cleaning cycle.")//Belly is entirely empty
+ update_gut()
+
+ if(!length(contents))
+ to_chat(hound, "Your [src.name] is now clean. Ending self-cleaning cycle.")
+ cleaning = FALSE
+ update_gut()
+ return
+
+//sound effects
+ for(var/mob/living/M in contents)
+ if(prob(50))
+ M.stop_sound_channel(CHANNEL_PRED)
+ playsound(get_turf(hound),"digest_pred",75,0,-6,0,channel=CHANNEL_PRED)
+ M.stop_sound_channel(CHANNEL_PRED)
+ M.playsound_local("digest_prey",60)
+
+ if(cleaning)
+ addtimer(CALLBACK(src, .proc/clean_cycle), 50)
+
+/obj/item/device/dogborg/sleeper/proc/CheckAccepted(obj/item/I)
+ return is_type_in_typecache(I, important_items)
/obj/item/device/dogborg/sleeper/proc/inject_chem(chem)
testing("inject chem triggered, checking power")
@@ -737,8 +701,11 @@
return
if(target.anchored)
return
- if(ishuman(target))
- var/mob/living/carbon/human/brigman = target
+ if(isobj(target))
+ to_chat(user, "You are above putting such trash inside of yourself.")
+ return
+ if(iscarbon(target))
+ var/mob/living/carbon/brigman = target
if (!brigman.devourable)
to_chat(user, "The target registers an error code. Unable to insert into [src.name].")
return
@@ -776,7 +743,7 @@
/obj/item/device/dogborg/sleeper/compactor/afterattack(var/atom/movable/target, mob/living/silicon/user, proximity)//GARBO NOMS
hound = loc
-
+ var/obj/item/target_obj = target
if(!istype(target))
return
if(!proximity)
@@ -786,14 +753,16 @@
if(length(contents) > (max_item_count - 1))
to_chat(user,"Your [src.name] is full. Eject or process contents to continue.")
return
- if(istype(target,/obj/item))
- var/obj/item/target_obj = target
- if(target_obj.type in important_items)
+ if(isobj(target))
+ testing("Checking target type")
+ if(CheckAccepted(target))
to_chat(user,"\The [target] registers an error code to your [src.name]")
return
+ testing("Target not on the important list")
if(target_obj.w_class > WEIGHT_CLASS_NORMAL)
to_chat(user,"\The [target] is too large to fit into your [src.name]")
return
+ testing("Target not too large.")
user.visible_message("[hound.name] is ingesting [target.name] into their [src.name].", "You start ingesting [target] into your [src.name]...")
if(do_after(user, 15, target = target) && length(contents) < max_item_count)
if(!in_range(src, target)) //Proximity is probably old news by now, do a new check.
@@ -804,10 +773,13 @@
if(length(contents) > 11) //grow that tum after a certain junk amount
hound.sleeper_r = 1
hound.update_icons()
+ else
+ hound.sleeper_r = 0
+ hound.update_icons()
return
- else if(ishuman(target))
- var/mob/living/carbon/human/trashman = target
+ else if(iscarbon(target))
+ var/mob/living/carbon/trashman = target
if (!trashman.devourable)
to_chat(user, "\The [target] registers an error code to your [src.name]")
return
diff --git a/code/citadel/organs/genitals.dm b/code/citadel/organs/genitals.dm
index 79784a1eb8..ee706fa7f9 100644
--- a/code/citadel/organs/genitals.dm
+++ b/code/citadel/organs/genitals.dm
@@ -260,11 +260,10 @@
for(var/L in relevant_layers) //Less hardcode
H.remove_overlay(L)
- if(H.has_disability(DISABILITY_HUSK))
+ if(H.has_trait(TRAIT_HUSK))
return
//start scanning for genitals
//var/list/worn_stuff = H.get_equipped_items()//cache this list so it's not built again
-
for(var/obj/item/organ/O in H.internal_organs)
if(istype(O, /obj/item/organ/genital))
var/obj/item/organ/genital/G = O
@@ -272,7 +271,6 @@
genitals_to_add += H.getorganslot(G.slot)
//Now we added all genitals that aren't internal and should be rendered
- var/image/I
//start applying overlays
for(var/layer in relevant_layers)
var/layertext = genitals_layertext(layer)
@@ -289,46 +287,45 @@
if(!S || S.icon_state == "none")
continue
- var/icon_string
+ var/mutable_appearance/genital_overlay = mutable_appearance(S.icon, layer = -layer)
if(S.alt_aroused)
G.aroused_state = H.isPercentAroused(G.aroused_amount)
else
G.aroused_state = FALSE
- icon_string = "[G.slot]_[S.icon_state]_[size]_[G.aroused_state]_[layertext]"
- I = image("icon" = S.icon, "icon_state" = icon_string, "layer" =- layer)
+ genital_overlay.icon_state = "[G.slot]_[S.icon_state]_[size]_[G.aroused_state]_[layertext]"
if(S.center)
- I = center_image(I,S.dimension_x,S.dimension_y)
+ genital_overlay = center_image(genital_overlay, S.dimension_x, S.dimension_y)
if(use_skintones && H.dna.features["genitals_use_skintone"])
- I.color = "#[skintone2hex(H.skin_tone)]"
+ genital_overlay.color = "#[skintone2hex(H.skin_tone)]"
else
switch(S.color_src)
if("cock_color")
- I.color = "#[H.dna.features["cock_color"]]"
+ genital_overlay.color = "#[H.dna.features["cock_color"]]"
if("breasts_color")
- I.color = "#[H.dna.features["breasts_color"]]"
+ genital_overlay.color = "#[H.dna.features["breasts_color"]]"
if("vag_color")
- I.color = "#[H.dna.features["vag_color"]]"
+ genital_overlay.color = "#[H.dna.features["vag_color"]]"
if(MUTCOLORS)
if(fixed_mut_color)
- I.color = "#[fixed_mut_color]"
+ genital_overlay.color = "#[fixed_mut_color]"
else
- I.color = "#[H.dna.features["mcolor"]]"
+ genital_overlay.color = "#[H.dna.features["mcolor"]]"
if(MUTCOLORS2)
if(fixed_mut_color2)
- I.color = "#[fixed_mut_color2]"
+ genital_overlay.color = "#[fixed_mut_color2]"
else
- I.color = "#[H.dna.features["mcolor2"]]"
+ genital_overlay.color = "#[H.dna.features["mcolor2"]]"
if(MUTCOLORS3)
if(fixed_mut_color3)
- I.color = "#[fixed_mut_color3]"
+ genital_overlay.color = "#[fixed_mut_color3]"
else
- I.color = "#[H.dna.features["mcolor3"]]"
- standing += I
+ genital_overlay.color = "#[H.dna.features["mcolor3"]]"
+ standing += genital_overlay
if(LAZYLEN(standing))
H.overlays_standing[layer] = standing.Copy()
standing = list()
for(var/L in relevant_layers)
- H.apply_overlay(L)
\ No newline at end of file
+ H.apply_overlay(L)
diff --git a/code/controllers/configuration/configuration.dm b/code/controllers/configuration/configuration.dm
index 3ca27110ef..c05221944b 100644
--- a/code/controllers/configuration/configuration.dm
+++ b/code/controllers/configuration/configuration.dm
@@ -187,7 +187,7 @@
mode_names[M.config_tag] = M.name
probabilities[M.config_tag] = M.probability
mode_reports[M.config_tag] = M.generate_report()
- if(M.probability)
+ if(probabilities[M.config_tag]>0)
mode_false_report_weight[M.config_tag] = M.false_report_weight
else
mode_false_report_weight[M.config_tag] = 1
diff --git a/code/controllers/configuration/entries/game_options.dm b/code/controllers/configuration/entries/game_options.dm
index f91d775fba..cc8f832229 100644
--- a/code/controllers/configuration/entries/game_options.dm
+++ b/code/controllers/configuration/entries/game_options.dm
@@ -249,6 +249,15 @@
/datum/config_entry/flag/allow_miscreants
/datum/config_entry/flag/allow_extended_miscreants
+
+
+/datum/config_entry/flag/nightshift_enabled
+
+/datum/config_entry/number/nightshift_start
+ config_entry_value = 20
+
+/datum/config_entry/number/nightshift_finish
+ config_entry_value = 6
//End of Cit changes
/datum/config_entry/number/bombcap/ValidateAndSet(str_val)
diff --git a/code/controllers/master.dm b/code/controllers/master.dm
index 6363cc435d..68f75491f3 100644
--- a/code/controllers/master.dm
+++ b/code/controllers/master.dm
@@ -49,6 +49,7 @@ GLOBAL_REAL(Master, /datum/controller/master) = new
var/map_loading = FALSE //Are we loading in a new map?
var/current_runlevel //for scheduling different subsystems for different stages of the round
+ var/sleep_offline_after_initializations = TRUE
var/static/restart_clear = 0
var/static/restart_timeout = 0
@@ -65,7 +66,7 @@ GLOBAL_REAL(Master, /datum/controller/master) = new
// Highlander-style: there can only be one! Kill off the old and replace it with the new.
if(!random_seed)
- random_seed = rand(1, 1e9)
+ random_seed = (TEST_RUN_PARAMETER in world.params) ? 29051994 : rand(1, 1e9)
rand_seed(random_seed)
var/list/_subsystems = list()
@@ -197,11 +198,12 @@ GLOBAL_REAL(Master, /datum/controller/master) = new
// Sort subsystems by display setting for easy access.
sortTim(subsystems, /proc/cmp_subsystem_display)
// Set world options.
- world.sleep_offline = TRUE
+ if(sleep_offline_after_initializations)
+ world.sleep_offline = TRUE
world.fps = CONFIG_GET(number/fps)
var/initialized_tod = REALTIMEOFDAY
sleep(1)
- if(CONFIG_GET(flag/resume_after_initializations))
+ if(sleep_offline_after_initializations && CONFIG_GET(flag/resume_after_initializations))
world.sleep_offline = FALSE
initializations_finished_with_no_players_logged_in = initialized_tod < REALTIMEOFDAY - 10
// Loop.
diff --git a/code/controllers/subsystem/augury.dm b/code/controllers/subsystem/augury.dm
index 38e9724b5f..875f1ee7d3 100644
--- a/code/controllers/subsystem/augury.dm
+++ b/code/controllers/subsystem/augury.dm
@@ -76,7 +76,7 @@ SUBSYSTEM_DEF(augury)
active = FALSE
UpdateButtonIcon()
-/datum/action/innate/augury/UpdateButtonIcon(status_only = FALSE)
+/datum/action/innate/augury/UpdateButtonIcon(status_only = FALSE, force)
..()
if(active)
button.icon_state = "template_active"
diff --git a/code/controllers/subsystem/communications.dm b/code/controllers/subsystem/communications.dm
index fcf7dba607..d4838a21c3 100644
--- a/code/controllers/subsystem/communications.dm
+++ b/code/controllers/subsystem/communications.dm
@@ -23,7 +23,7 @@ SUBSYSTEM_DEF(communications)
minor_announce(html_decode(input),"[user.name] Announces:")
silicon_message_cooldown = world.time + COMMUNICATION_COOLDOWN_AI
else
- priority_announce(html_decode(input), null, 'sound/misc/announce.ogg', "Captain")
+ priority_announce(html_decode(user.treat_message(input)), null, 'sound/misc/announce.ogg', "Captain")
nonsilicon_message_cooldown = world.time + COMMUNICATION_COOLDOWN
log_talk(user,"[key_name(user)] has made a priority announcement: [input]",LOGSAY)
message_admins("[key_name_admin(user)] has made a priority announcement.")
diff --git a/code/controllers/subsystem/dbcore.dm b/code/controllers/subsystem/dbcore.dm
index 850fccd1fb..5555525262 100644
--- a/code/controllers/subsystem/dbcore.dm
+++ b/code/controllers/subsystem/dbcore.dm
@@ -1,14 +1,26 @@
-#define FAILED_DB_CONNECTION_CUTOFF 5
-#define DM_DEFAULT_CURSOR 0
-
SUBSYSTEM_DEF(dbcore)
name = "Database"
flags = SS_NO_FIRE
init_order = INIT_ORDER_DBCORE
+ var/const/FAILED_DB_CONNECTION_CUTOFF = 5
+ var/const/Default_Cursor = 0
+ var/const/Client_Cursor = 1
+ var/const/Server_Cursor = 2
+ //conversions
+ var/const/TEXT_CONV = 1
+ var/const/RSC_FILE_CONV = 2
+ var/const/NUMBER_CONV = 3
+ //column flag values:
+ var/const/IS_NUMERIC = 1
+ var/const/IS_BINARY = 2
+ var/const/IS_NOT_NULL = 4
+ var/const/IS_PRIMARY_KEY = 8
+ var/const/IS_UNSIGNED = 16
var/schema_mismatch = 0
var/db_minor = 0
var/db_major = 0
+// TODO: Investigate more recent type additions and see if I can handle them. - Nadrew
var/_db_con// This variable contains a reference to the actual database connection.
var/failed_connections = 0
@@ -64,7 +76,7 @@ SUBSYSTEM_DEF(dbcore)
var/address = CONFIG_GET(string/address)
var/port = CONFIG_GET(number/port)
- _dm_db_connect(_db_con, "dbi:mysql:[db]:[address]:[port]", user, pass, DM_DEFAULT_CURSOR, null)
+ _dm_db_connect(_db_con, "dbi:mysql:[db]:[address]:[port]", user, pass, Default_Cursor, null)
. = IsConnected()
if (!.)
log_sql("Connect() failed | [ErrorMsg()]")
@@ -117,7 +129,7 @@ SUBSYSTEM_DEF(dbcore)
return "Database disabled by configuration"
return _dm_db_error_msg(_db_con)
-/datum/controller/subsystem/dbcore/proc/NewQuery(sql_query, cursor_handler = DM_DEFAULT_CURSOR)
+/datum/controller/subsystem/dbcore/proc/NewQuery(sql_query, cursor_handler = Default_Cursor)
if(IsAdminAdvancedProcCall())
log_admin_private("ERROR: Advanced admin proc call led to sql query: [sql_query]. Query has been blocked")
message_admins("ERROR: Advanced admin proc call led to sql query. Query has been blocked")
diff --git a/code/controllers/subsystem/garbage.dm b/code/controllers/subsystem/garbage.dm
index 4faf234ffd..e83d05a28d 100644
--- a/code/controllers/subsystem/garbage.dm
+++ b/code/controllers/subsystem/garbage.dm
@@ -332,7 +332,6 @@ SUBSYSTEM_DEF(garbage)
/datum/verb/find_refs()
set category = "Debug"
set name = "Find References"
- set background = 1
set src in world
find_references(FALSE)
@@ -385,7 +384,6 @@ SUBSYSTEM_DEF(garbage)
/datum/verb/qdel_then_find_references()
set category = "Debug"
set name = "qdel() then Find References"
- set background = 1
set src in world
qdel(src)
diff --git a/code/controllers/subsystem/idlenpcpool.dm b/code/controllers/subsystem/idlenpcpool.dm
index a15237e5a7..1e895d56f3 100644
--- a/code/controllers/subsystem/idlenpcpool.dm
+++ b/code/controllers/subsystem/idlenpcpool.dm
@@ -1,6 +1,6 @@
SUBSYSTEM_DEF(idlenpcpool)
name = "Idling NPC Pool"
- flags = SS_POST_FIRE_TIMING|SS_BACKGROUND
+ flags = SS_POST_FIRE_TIMING|SS_BACKGROUND|SS_NO_INIT
priority = FIRE_PRIORITY_IDLE_NPC
wait = 60
runlevels = RUNLEVEL_GAME | RUNLEVEL_POSTGAME
@@ -13,9 +13,12 @@ SUBSYSTEM_DEF(idlenpcpool)
var/list/zlist = GLOB.simple_animals[AI_Z_OFF]
..("IdleNPCS:[idlelist.len]|Z:[zlist.len]")
-/datum/controller/subsystem/idlenpcpool/Initialize(start_timeofday)
- idle_mobs_by_zlevel = new /list(world.maxz,0)
- return ..()
+/datum/controller/subsystem/idlenpcpool/proc/MaxZChanged()
+ if (!islist(idle_mobs_by_zlevel))
+ idle_mobs_by_zlevel = new /list(world.maxz,0)
+ while (SSidlenpcpool.idle_mobs_by_zlevel.len < world.maxz)
+ SSidlenpcpool.idle_mobs_by_zlevel.len++
+ SSidlenpcpool.idle_mobs_by_zlevel[idle_mobs_by_zlevel.len] = list()
/datum/controller/subsystem/idlenpcpool/fire(resumed = FALSE)
diff --git a/code/controllers/subsystem/input.dm b/code/controllers/subsystem/input.dm
index 136501373e..8a17ad07d1 100644
--- a/code/controllers/subsystem/input.dm
+++ b/code/controllers/subsystem/input.dm
@@ -61,7 +61,7 @@ SUBSYSTEM_DEF(input)
"North", "East", "South", "West",
"Northeast", "Southeast", "Northwest", "Southwest",
"Insert", "Delete", "Ctrl", "Alt",
- "F1", "F2", "F5", "F6", "F7", "F8", "F12",
+ "F1", "F2", "F3", "F4", "F5", "F6", "F7", "F8", "F9", "F10", "F11", "F12",
)
for(var/i in 1 to oldmode_keys.len)
diff --git a/code/controllers/subsystem/mobs.dm b/code/controllers/subsystem/mobs.dm
index 14ad19e1ea..cd47adf476 100644
--- a/code/controllers/subsystem/mobs.dm
+++ b/code/controllers/subsystem/mobs.dm
@@ -1,7 +1,7 @@
SUBSYSTEM_DEF(mobs)
name = "Mobs"
priority = FIRE_PRIORITY_MOBS
- flags = SS_KEEP_TIMING
+ flags = SS_KEEP_TIMING | SS_NO_INIT
runlevels = RUNLEVEL_GAME | RUNLEVEL_POSTGAME
var/list/currentrun = list()
@@ -10,9 +10,12 @@ SUBSYSTEM_DEF(mobs)
/datum/controller/subsystem/mobs/stat_entry()
..("P:[GLOB.mob_living_list.len]")
-/datum/controller/subsystem/mobs/Initialize(start_timeofday)
- clients_by_zlevel = new /list(world.maxz,0)
- return ..()
+/datum/controller/subsystem/mobs/proc/MaxZChanged()
+ if (!islist(clients_by_zlevel))
+ clients_by_zlevel = new /list(world.maxz,0)
+ while (clients_by_zlevel.len < world.maxz)
+ clients_by_zlevel.len++
+ clients_by_zlevel[clients_by_zlevel.len] = list()
/datum/controller/subsystem/mobs/fire(resumed = 0)
var/seconds = wait * 0.1
diff --git a/code/controllers/subsystem/persistence.dm b/code/controllers/subsystem/persistence.dm
index b98be937fc..3973d9d281 100644
--- a/code/controllers/subsystem/persistence.dm
+++ b/code/controllers/subsystem/persistence.dm
@@ -10,6 +10,7 @@ SUBSYSTEM_DEF(persistence)
var/list/saved_messages = list()
var/list/saved_modes = list(1,2,3)
var/list/saved_trophies = list()
+ var/list/spawned_objects = list()
/datum/controller/subsystem/persistence/Initialize()
LoadSatchels()
@@ -62,7 +63,8 @@ SUBSYSTEM_DEF(persistence)
if(isfloorturf(F.loc) && !isplatingturf(F.loc))
F.hide(1)
if(ispath(path))
- new path(F)
+ var/spawned_item = new path(F)
+ spawned_objects[spawned_item] = TRUE
placed_satchel++
var/free_satchels = 0
for(var/turf/T in shuffle(block(locate(TRANSITIONEDGE,TRANSITIONEDGE,ZLEVEL_STATION_PRIMARY), locate(world.maxx-TRANSITIONEDGE,world.maxy-TRANSITIONEDGE,ZLEVEL_STATION_PRIMARY)))) //Nontrivially expensive but it's roundstart only
diff --git a/code/controllers/subsystem/shuttle.dm b/code/controllers/subsystem/shuttle.dm
index bdf124cc4e..bff46717b1 100644
--- a/code/controllers/subsystem/shuttle.dm
+++ b/code/controllers/subsystem/shuttle.dm
@@ -8,6 +8,8 @@ SUBSYSTEM_DEF(shuttle)
flags = SS_KEEP_TIMING|SS_NO_TICK_CHECK
runlevels = RUNLEVEL_SETUP | RUNLEVEL_GAME
+ var/obj/machinery/shuttle_manipulator/manipulator
+
var/list/mobile = list()
var/list/stationary = list()
var/list/transit = list()
@@ -53,19 +55,10 @@ SUBSYSTEM_DEF(shuttle)
var/list/shuttle_purchase_requirements_met = list() //For keeping track of ingame events that would unlock new shuttles, such as defeating a boss or discovering a secret item
var/lockdown = FALSE //disallow transit after nuke goes off
-
+
var/auto_call = 99000 //CIT CHANGE - time before in deciseconds in which the shuttle is auto called. Default is 2½ hours plus 15 for the shuttle. So total is 3.
/datum/controller/subsystem/shuttle/Initialize(timeofday)
- if(!arrivals)
- WARNING("No /obj/docking_port/mobile/arrivals placed on the map!")
- if(!emergency)
- WARNING("No /obj/docking_port/mobile/emergency placed on the map!")
- if(!backup_shuttle)
- WARNING("No /obj/docking_port/mobile/emergency/backup placed on the map!")
- if(!supply)
- WARNING("No /obj/docking_port/mobile/supply placed on the map!")
-
ordernum = rand(1, 9000)
for(var/pack in subtypesof(/datum/supply_pack))
@@ -76,12 +69,32 @@ SUBSYSTEM_DEF(shuttle)
if(!transit_turfs.len)
setup_transit_zone()
- initial_move()
+
+ initial_load()
+
#ifdef HIGHLIGHT_DYNAMIC_TRANSIT
color_space()
#endif
+
+ if(!arrivals)
+ WARNING("No /obj/docking_port/mobile/arrivals placed on the map!")
+ if(!emergency)
+ WARNING("No /obj/docking_port/mobile/emergency placed on the map!")
+ if(!backup_shuttle)
+ WARNING("No /obj/docking_port/mobile/emergency/backup placed on the map!")
+ if(!supply)
+ WARNING("No /obj/docking_port/mobile/supply placed on the map!")
..()
+/datum/controller/subsystem/shuttle/proc/initial_load()
+ if(!istype(manipulator))
+ CRASH("No shuttle manipulator found.")
+
+ for(var/s in stationary)
+ var/obj/docking_port/stationary/S = s
+ S.load_roundstart()
+ CHECK_TICK
+
/datum/controller/subsystem/shuttle/proc/setup_transit_zone()
// transit zone
var/z = SSmapping.transit.z_value
@@ -436,14 +449,6 @@ SUBSYSTEM_DEF(shuttle)
if(!(M in transit_requesters))
transit_requesters += M
-
-/datum/controller/subsystem/shuttle/proc/autoEnd() //CIT CHANGE - allows shift to end after 3 hours has passed.
- if(world.time > auto_call && EMERGENCY_IDLE_OR_RECALLED) //3 hours
- SSshuttle.emergency.request(null, 1.5)
- priority_announce("The shift has come to an end and the shuttle called.")
- log_game("Round time limit reached. Shuttle has been auto-called.")
- message_admins("Round time limit reached. Shuttle called.")
-
/datum/controller/subsystem/shuttle/proc/generate_transit_dock(obj/docking_port/mobile/M)
// First, determine the size of the needed zone
// Because of shuttle rotation, the "width" of the shuttle is not
@@ -558,15 +563,7 @@ SUBSYSTEM_DEF(shuttle)
T.flags_1 &= ~(UNUSED_TRANSIT_TURF_1)
M.assigned_transit = new_transit_dock
- return TRUE
-
-/datum/controller/subsystem/shuttle/proc/initial_move()
- for(var/obj/docking_port/mobile/M in mobile)
- if(!M.roundstart_move)
- continue
- M.dockRoundstart()
- M.roundstart_move = FALSE
- CHECK_TICK
+ return new_transit_dock
/datum/controller/subsystem/shuttle/Recover()
if (istype(SSshuttle.mobile))
diff --git a/code/controllers/subsystem/ticker.dm b/code/controllers/subsystem/ticker.dm
index 4894edb6dd..03a1325923 100755
--- a/code/controllers/subsystem/ticker.dm
+++ b/code/controllers/subsystem/ticker.dm
@@ -65,6 +65,7 @@ SUBSYSTEM_DEF(ticker)
var/end_state = "undefined"
var/modevoted = FALSE //Have we sent a vote for the gamemode?
+ var/tumpedbuckets = FALSE //Have we tumped over buckets?
//Crew Objective/Miscreant stuff
var/list/crewobjlist = list()
@@ -159,6 +160,8 @@ SUBSYSTEM_DEF(ticker)
fire()
if(GAME_STATE_PREGAME)
//lobby stats for statpanels
+ if(!tumpedbuckets)
+ SStimer.tump_buckets()
if(!modevoted)
send_gamemode_vote()
if(isnull(timeLeft))
diff --git a/code/controllers/subsystem/timer.dm b/code/controllers/subsystem/timer.dm
index 6c48531cf9..2c46621f16 100644
--- a/code/controllers/subsystem/timer.dm
+++ b/code/controllers/subsystem/timer.dm
@@ -1,5 +1,6 @@
#define BUCKET_LEN (world.fps*1*60) //how many ticks should we keep in the bucket. (1 minutes worth)
-#define BUCKET_POS(timer) (round((timer.timeToRun - SStimer.head_offset) / world.tick_lag) + 1)
+#define BUCKET_POS(timer) ((round((timer.timeToRun - SStimer.head_offset) / world.tick_lag) % BUCKET_LEN) + 1)
+#define TIMER_MAX (world.time + TICKS2DS(min(BUCKET_LEN-(SStimer.practical_offset-DS2TICKS(world.time - SStimer.head_offset))-1, BUCKET_LEN-1)))
#define TIMER_ID_MAX (2**24) //max float with integer precision
SUBSYSTEM_DEF(timer)
@@ -9,11 +10,11 @@ SUBSYSTEM_DEF(timer)
flags = SS_TICKER|SS_NO_INIT
- var/list/datum/timedevent/processing = list()
+ var/list/datum/timedevent/second_queue = list() //awe, yes, you've had first queue, but what about second queue?
var/list/hashes = list()
var/head_offset = 0 //world.time of the first entry in the the bucket.
- var/practical_offset = 0 //index of the first non-empty item in the bucket.
+ var/practical_offset = 1 //index of the first non-empty item in the bucket.
var/bucket_resolution = 0 //world.tick_lag the bucket was designed for
var/bucket_count = 0 //how many timers are in the buckets
@@ -27,13 +28,19 @@ SUBSYSTEM_DEF(timer)
var/static/last_invoke_warning = 0
var/static/bucket_auto_reset = TRUE
+/datum/controller/subsystem/timer/PreInit()
+ bucket_list.len = BUCKET_LEN
+ head_offset = world.time
+ bucket_resolution = world.tick_lag
+
/datum/controller/subsystem/timer/stat_entry(msg)
- ..("B:[bucket_count] P:[length(processing)] H:[length(hashes)] C:[length(clienttime_timers)]")
+ ..("B:[bucket_count] P:[length(second_queue)] H:[length(hashes)] C:[length(clienttime_timers)] S:[length(timer_id_dict)]")
/datum/controller/subsystem/timer/fire(resumed = FALSE)
var/lit = last_invoke_tick
var/last_check = world.time - TIMER_NO_INVOKE_WARNING
var/list/bucket_list = src.bucket_list
+
if(!bucket_count)
last_invoke_tick = world.time
@@ -60,50 +67,62 @@ SUBSYSTEM_DEF(timer)
bucket_node = bucket_node.next
anti_loop_check--
while(bucket_node && bucket_node != bucket_head && anti_loop_check)
- log_world("Active timers in the processing queue:")
- for(var/I in processing)
+ log_world("Active timers in the second_queue queue:")
+ for(var/I in second_queue)
log_world(get_timer_debug_string(I))
- while(length(clienttime_timers))
- var/datum/timedevent/ctime_timer = clienttime_timers[clienttime_timers.len]
- if (ctime_timer.timeToRun <= REALTIMEOFDAY)
- --clienttime_timers.len
- var/datum/callback/callBack = ctime_timer.callBack
- ctime_timer.spent = REALTIMEOFDAY
- callBack.InvokeAsync()
- qdel(ctime_timer)
- else
- break //None of the rest are ready to run
+ var/next_clienttime_timer_index = 0
+ var/len = length(clienttime_timers)
+
+ for (next_clienttime_timer_index in 1 to len)
if (MC_TICK_CHECK)
- return
+ next_clienttime_timer_index--
+ break
+ var/datum/timedevent/ctime_timer = clienttime_timers[next_clienttime_timer_index]
+ if (ctime_timer.timeToRun > REALTIMEOFDAY)
+ next_clienttime_timer_index--
+ break
+
+ var/datum/callback/callBack = ctime_timer.callBack
+ if (!callBack)
+ clienttime_timers.Cut(next_clienttime_timer_index,next_clienttime_timer_index+1)
+ CRASH("Invalid timer: [get_timer_debug_string(ctime_timer)] world.time: [world.time], head_offset: [head_offset], practical_offset: [practical_offset], REALTIMEOFDAY: [REALTIMEOFDAY]")
+
+ ctime_timer.spent = REALTIMEOFDAY
+ callBack.InvokeAsync()
+ qdel(ctime_timer)
+
+
+ if (next_clienttime_timer_index)
+ clienttime_timers.Cut(1,next_clienttime_timer_index+1)
+
+ if (MC_TICK_CHECK)
+ return
var/static/list/spent = list()
var/static/datum/timedevent/timer
- var/static/datum/timedevent/head
+ if (practical_offset > BUCKET_LEN)
+ head_offset += TICKS2DS(BUCKET_LEN)
+ practical_offset = 1
+ resumed = FALSE
- if (practical_offset > BUCKET_LEN || (!resumed && length(bucket_list) != BUCKET_LEN || world.tick_lag != bucket_resolution))
- shift_buckets()
+ if ((length(bucket_list) != BUCKET_LEN) || (world.tick_lag != bucket_resolution))
+ reset_buckets()
bucket_list = src.bucket_list
resumed = FALSE
if (!resumed)
timer = null
- head = null
- while (practical_offset <= BUCKET_LEN && head_offset + (practical_offset*world.tick_lag) <= world.time && !MC_TICK_CHECK)
+ while (practical_offset <= BUCKET_LEN && head_offset + (practical_offset*world.tick_lag) <= world.time)
+ var/datum/timedevent/head = bucket_list[practical_offset]
if (!timer || !head || timer == head)
head = bucket_list[practical_offset]
- if (!head)
- practical_offset++
- if (MC_TICK_CHECK)
- break
- continue
timer = head
- do
+ while (timer)
var/datum/callback/callBack = timer.callBack
if (!callBack)
- qdel(timer)
bucket_resolution = null //force bucket recreation
CRASH("Invalid timer: [get_timer_debug_string(timer)] world.time: [world.time], head_offset: [head_offset], practical_offset: [practical_offset]")
@@ -113,15 +132,68 @@ SUBSYSTEM_DEF(timer)
callBack.InvokeAsync()
last_invoke_tick = world.time
- timer = timer.next
-
if (MC_TICK_CHECK)
return
- while (timer && timer != head)
- timer = null
+
+ timer = timer.next
+ if (timer == head)
+ break
+
+
bucket_list[practical_offset++] = null
- if (MC_TICK_CHECK)
- return
+
+ //we freed up a bucket, lets see if anything in second_queue needs to be shifted to that bucket.
+ var/i = 0
+ var/L = length(second_queue)
+ for (i in 1 to L)
+ timer = second_queue[i]
+ if (timer.timeToRun >= TIMER_MAX)
+ i--
+ break
+
+ if (timer.timeToRun < head_offset)
+ bucket_resolution = null //force bucket recreation
+ CRASH("[i] Invalid timer state: Timer in long run queue with a time to run less then head_offset. [get_timer_debug_string(timer)] world.time: [world.time], head_offset: [head_offset], practical_offset: [practical_offset]")
+
+ if (timer.callBack && !timer.spent)
+ timer.callBack.InvokeAsync()
+ spent += timer
+ bucket_count++
+ else if(!QDELETED(timer))
+ qdel(timer)
+ continue
+
+ if (timer.timeToRun < head_offset + TICKS2DS(practical_offset))
+ bucket_resolution = null //force bucket recreation
+ CRASH("[i] Invalid timer state: Timer in long run queue that would require a backtrack to transfer to short run queue. [get_timer_debug_string(timer)] world.time: [world.time], head_offset: [head_offset], practical_offset: [practical_offset]")
+ if (timer.callBack && !timer.spent)
+ timer.callBack.InvokeAsync()
+ spent += timer
+ bucket_count++
+ else if(!QDELETED(timer))
+ qdel(timer)
+ continue
+
+ bucket_count++
+ var/bucket_pos = max(1, BUCKET_POS(timer))
+
+ var/datum/timedevent/bucket_head = bucket_list[bucket_pos]
+ if (!bucket_head)
+ bucket_list[bucket_pos] = timer
+ timer.next = null
+ timer.prev = null
+ continue
+
+ if (!bucket_head.prev)
+ bucket_head.prev = bucket_head
+ timer.next = bucket_head
+ timer.prev = bucket_head.prev
+ timer.next.prev = timer
+ timer.prev.next = timer
+ if (i)
+ second_queue.Cut(1, i+1)
+
+ timer = null
bucket_count -= length(spent)
@@ -141,7 +213,7 @@ SUBSYSTEM_DEF(timer)
if(!TE.callBack)
. += ", NO CALLBACK"
-/datum/controller/subsystem/timer/proc/shift_buckets()
+/datum/controller/subsystem/timer/proc/reset_buckets()
var/list/bucket_list = src.bucket_list
var/list/alltimers = list()
//collect the timers currently in the bucket
@@ -162,7 +234,7 @@ SUBSYSTEM_DEF(timer)
head_offset = world.time
bucket_resolution = world.tick_lag
- alltimers += processing
+ alltimers += second_queue
if (!length(alltimers))
return
@@ -173,22 +245,26 @@ SUBSYSTEM_DEF(timer)
if (head.timeToRun < head_offset)
head_offset = head.timeToRun
- var/list/timers_to_remove = list()
-
- for (var/thing in alltimers)
- var/datum/timedevent/timer = thing
+ var/new_bucket_count
+ var/i = 1
+ for (i in 1 to length(alltimers))
+ var/datum/timedevent/timer = alltimers[1]
if (!timer)
- timers_to_remove += timer
continue
var/bucket_pos = BUCKET_POS(timer)
- if (bucket_pos > BUCKET_LEN)
+ if (timer.timeToRun >= TIMER_MAX)
+ i--
break
- timers_to_remove += timer //remove it from the big list once we are done
+
if (!timer.callBack || timer.spent)
+ WARNING("Invalid timer: [get_timer_debug_string(timer)] world.time: [world.time], head_offset: [head_offset], practical_offset: [practical_offset]")
+ if (timer.callBack)
+ qdel(timer)
continue
- bucket_count++
+
+ new_bucket_count++
var/datum/timedevent/bucket_head = bucket_list[bucket_pos]
if (!bucket_head)
bucket_list[bucket_pos] = timer
@@ -202,12 +278,14 @@ SUBSYSTEM_DEF(timer)
timer.prev = bucket_head.prev
timer.next.prev = timer
timer.prev.next = timer
-
- processing = (alltimers - timers_to_remove)
+ if (i)
+ alltimers.Cut(1, i+1)
+ second_queue = alltimers
+ bucket_count = new_bucket_count
/datum/controller/subsystem/timer/Recover()
- processing |= SStimer.processing
+ second_queue |= SStimer.second_queue
hashes |= SStimer.hashes
timer_id_dict |= SStimer.timer_id_dict
bucket_list |= SStimer.bucket_list
@@ -224,9 +302,8 @@ SUBSYSTEM_DEF(timer)
var/datum/timedevent/next
var/datum/timedevent/prev
- var/static/nextid = 1
-
/datum/timedevent/New(datum/callback/callBack, timeToRun, flags, hash)
+ var/static/nextid = 1
id = TIMER_ID_NULL
src.callBack = callBack
src.timeToRun = timeToRun
@@ -235,56 +312,69 @@ SUBSYSTEM_DEF(timer)
if (flags & TIMER_UNIQUE)
SStimer.hashes[hash] = src
+
if (flags & TIMER_STOPPABLE)
- do
- if (nextid >= TIMER_ID_MAX)
- nextid = 1
- id = nextid++
- while(SStimer.timer_id_dict["timerid" + num2text(id, 8)])
- SStimer.timer_id_dict["timerid" + num2text(id, 8)] = src
+ id = num2text(nextid, 100)
+ if (nextid >= SHORT_REAL_LIMIT)
+ nextid += min(1, 2**round(nextid/SHORT_REAL_LIMIT))
+ else
+ nextid++
+ SStimer.timer_id_dict[id] = src
- name = "Timer: " + num2text(id, 8) + ", TTR: [timeToRun], Flags: [jointext(bitfield2list(flags, list("TIMER_UNIQUE", "TIMER_OVERRIDE", "TIMER_CLIENT_TIME", "TIMER_STOPPABLE", "TIMER_NO_HASH_WAIT")), ", ")], callBack: [REF(callBack)], callBack.object: [callBack.object][REF(callBack.object)]([getcallingtype()]), callBack.delegate:[callBack.delegate]([callBack.arguments ? callBack.arguments.Join(", ") : ""])"
+ name = "Timer: [id] (\ref[src]), TTR: [timeToRun], Flags: [jointext(bitfield2list(flags, list("TIMER_UNIQUE", "TIMER_OVERRIDE", "TIMER_CLIENT_TIME", "TIMER_STOPPABLE", "TIMER_NO_HASH_WAIT")), ", ")], callBack: \ref[callBack], callBack.object: [callBack.object]\ref[callBack.object]([getcallingtype()]), callBack.delegate:[callBack.delegate]([callBack.arguments ? callBack.arguments.Join(", ") : ""])"
- if (spent)
- CRASH("HOLY JESUS. WHAT IS THAT? WHAT THE FUCK IS THAT?")
+ if ((timeToRun < world.time || timeToRun < SStimer.head_offset) && !(flags & TIMER_CLIENT_TIME))
+ CRASH("Invalid timer state: Timer created that would require a backtrack to run (addtimer would never let this happen): [SStimer.get_timer_debug_string(src)]")
if (callBack.object != GLOBAL_PROC)
LAZYADD(callBack.object.active_timers, src)
+
+ var/list/L
+
if (flags & TIMER_CLIENT_TIME)
- //sorted insert
- var/list/ctts = SStimer.clienttime_timers
- var/cttl = length(ctts)
+ L = SStimer.clienttime_timers
+ else if (timeToRun >= TIMER_MAX)
+ L = SStimer.second_queue
+
+
+ if (L)
+ //binary search sorted insert
+ var/cttl = length(L)
if(cttl)
- var/datum/timedevent/Last = ctts[cttl]
- if(Last.timeToRun >= timeToRun)
- ctts += src
- else
- for(var/i in cttl to 1 step -1)
- var/datum/timedevent/E = ctts[i]
- if(E.timeToRun <= timeToRun)
- ctts.Insert(i, src)
- break
+ var/left = 1
+ var/right = cttl
+ var/mid = (left+right) >> 1 //rounded divide by two for hedgehogs
+
+ var/datum/timedevent/item
+ while (left < right)
+ item = L[mid]
+ if (item.timeToRun <= timeToRun)
+ left = mid+1
+ else
+ right = mid
+ mid = (left+right) >> 1
+
+ item = L[mid]
+ mid = item.timeToRun > timeToRun ? mid : mid+1
+ L.Insert(mid, src)
+
else
- ctts += src
+ L += src
return
//get the list of buckets
var/list/bucket_list = SStimer.bucket_list
+
//calculate our place in the bucket list
var/bucket_pos = BUCKET_POS(src)
- //we are too far aways from needing to run to be in the bucket list, shift_buckets() will handle us.
- if (bucket_pos > length(bucket_list))
- SStimer.processing += src
- return
+
//get the bucket for our tick
var/datum/timedevent/bucket_head = bucket_list[bucket_pos]
SStimer.bucket_count++
//empty bucket, we will just add ourselves
if (!bucket_head)
bucket_list[bucket_pos] = src
- if (bucket_pos < SStimer.practical_offset)
- SStimer.practical_offset = bucket_pos
return
//other wise, lets do a simplified linked list add.
if (!bucket_head.prev)
@@ -296,10 +386,9 @@ SUBSYSTEM_DEF(timer)
/datum/timedevent/Destroy()
..()
- if (flags & TIMER_UNIQUE)
+ if (flags & TIMER_UNIQUE && hash)
SStimer.hashes -= hash
-
if (callBack && callBack.object && callBack.object != GLOBAL_PROC && callBack.object.active_timers)
callBack.object.active_timers -= src
UNSETEMPTY(callBack.object.active_timers)
@@ -307,13 +396,33 @@ SUBSYSTEM_DEF(timer)
callBack = null
if (flags & TIMER_STOPPABLE)
- SStimer.timer_id_dict -= "timerid" + num2text(id, 8)
+ SStimer.timer_id_dict -= id
if (flags & TIMER_CLIENT_TIME)
- SStimer.clienttime_timers -= src
+ if (!spent)
+ spent = world.time
+ SStimer.clienttime_timers -= src
return QDEL_HINT_IWILLGC
if (!spent)
+ spent = world.time
+ var/bucketpos = BUCKET_POS(src)
+ var/datum/timedevent/buckethead
+ var/list/bucket_list = SStimer.bucket_list
+ if (bucketpos > 0)
+ buckethead = bucket_list[bucketpos]
+
+ if (buckethead == src)
+ bucket_list[bucketpos] = next
+ SStimer.bucket_count--
+ else if (timeToRun < TIMER_MAX || next || prev)
+ SStimer.bucket_count--
+ else
+ var/l = length(SStimer.second_queue)
+ SStimer.second_queue -= src
+ if (l == length(SStimer.second_queue))
+ SStimer.bucket_count--
+
if (prev == next && next)
next.prev = null
prev.next = null
@@ -322,19 +431,6 @@ SUBSYSTEM_DEF(timer)
prev.next = next
if (next)
next.prev = prev
-
- var/bucketpos = BUCKET_POS(src)
- var/datum/timedevent/buckethead
- var/list/bucket_list = SStimer.bucket_list
-
- if (bucketpos > 0 && bucketpos <= length(bucket_list))
- buckethead = bucket_list[bucketpos]
- SStimer.bucket_count--
- else
- SStimer.processing -= src
-
- if (buckethead == src)
- bucket_list[bucketpos] = next
else
if (prev && prev.next == src)
prev.next = next
@@ -351,7 +447,7 @@ SUBSYSTEM_DEF(timer)
else
. = "[callBack.object.type]"
-/proc/addtimer(datum/callback/callback, wait, flags)
+/proc/addtimer(datum/callback/callback, wait = 0, flags = 0)
if (!callback)
CRASH("addtimer called without a callback")
@@ -362,7 +458,7 @@ SUBSYSTEM_DEF(timer)
if (wait >= 1 && callback && callback.object && callback.object != GLOBAL_PROC && QDELETED(callback.object))
stack_trace("addtimer called with a callback assigned to a qdeleted object")
- wait = max(wait, 0)
+ wait = max(wait, world.tick_lag)
if(wait >= INFINITY)
CRASH("Attempted to create timer with INFINITY delay")
@@ -381,11 +477,10 @@ SUBSYSTEM_DEF(timer)
var/datum/timedevent/hash_timer = SStimer.hashes[hash]
if(hash_timer)
if (hash_timer.spent) //it's pending deletion, pretend it doesn't exist.
- hash_timer.hash = null
- SStimer.hashes -= hash
+ hash_timer.hash = null //but keep it from accidentally deleting us
else
-
if (flags & TIMER_OVERRIDE)
+ hash_timer.hash = null //no need having it delete it's hash if we are going to replace it
qdel(hash_timer)
else
if (hash_timer.flags & TIMER_STOPPABLE)
@@ -410,12 +505,17 @@ SUBSYSTEM_DEF(timer)
qdel(id)
return TRUE
//id is string
- var/datum/timedevent/timer = SStimer.timer_id_dict["timerid[id]"]
+ var/datum/timedevent/timer = SStimer.timer_id_dict[id]
if (timer && !timer.spent)
qdel(timer)
return TRUE
return FALSE
+/datum/controller/subsystem/timer/proc/tump_buckets()
+ reset_buckets()
+ SSticker.tumpedbuckets = TRUE
#undef BUCKET_LEN
#undef BUCKET_POS
+#undef TIMER_MAX
+#undef TIMER_ID_MAX
diff --git a/code/controllers/subsystem/title.dm b/code/controllers/subsystem/title.dm
index 6168ca0905..94dff9b742 100644
--- a/code/controllers/subsystem/title.dm
+++ b/code/controllers/subsystem/title.dm
@@ -26,19 +26,12 @@ SUBSYSTEM_DEF(title)
if((L.len == 1 && L[1] != "blank.png")|| (L.len > 1 && ((use_rare_screens && lowertext(L[1]) == "rare") || (lowertext(L[1]) == lowertext(SSmapping.config.map_name)))))
title_screens += S
- for(var/S in title_screens)
- var/list/L = splittext(S,".")
- if(L.len != 2)
- continue
- title_screens -= S
- break
-
if(length(title_screens))
file_path = "[global.config.directory]/title_screens/images/[pick(title_screens)]"
if(!file_path)
file_path = "icons/default_title.dmi"
-
+
ASSERT(fexists(file_path))
icon = new(fcopy_rsc(file_path))
diff --git a/code/controllers/subsystem/traumas.dm b/code/controllers/subsystem/traumas.dm
index 14f15a4b89..235b25b566 100644
--- a/code/controllers/subsystem/traumas.dm
+++ b/code/controllers/subsystem/traumas.dm
@@ -11,7 +11,7 @@ SUBSYSTEM_DEF(traumas)
#define PHOBIA_FILE "phobia.json"
/datum/controller/subsystem/traumas/Initialize()
- phobia_types = list("spiders", "space", "security", "clowns", "greytide", "lizards", "skeletons")
+ phobia_types = list("spiders", "space", "security", "clowns", "greytide", "lizards", "skeletons", "snakes")
phobia_words = list("spiders" = strings(PHOBIA_FILE, "spiders"),
"space" = strings(PHOBIA_FILE, "space"),
@@ -20,11 +20,13 @@ SUBSYSTEM_DEF(traumas)
"greytide" = strings(PHOBIA_FILE, "greytide"),
"lizards" = strings(PHOBIA_FILE, "lizards"),
"skeletons" = strings(PHOBIA_FILE, "skeletons"),
+ "snakes" = strings(PHOBIA_FILE, "snakes")
)
phobia_mobs = list("spiders" = typecacheof(list(/mob/living/simple_animal/hostile/poison/giant_spider)),
"security" = typecacheof(list(/mob/living/simple_animal/bot/secbot)),
- "lizards" = typecacheof(list(/mob/living/simple_animal/hostile/lizard))
+ "lizards" = typecacheof(list(/mob/living/simple_animal/hostile/lizard)),
+ "snakes" = typecacheof(list(/mob/living/simple_animal/hostile/retaliate/poison/snake))
)
phobia_objs = list("spiders" = typecacheof(list(/obj/structure/spider)),
diff --git a/code/datums/action.dm b/code/datums/action.dm
index fb1f2fb8cb..15f62b20b7 100644
--- a/code/datums/action.dm
+++ b/code/datums/action.dm
@@ -104,7 +104,7 @@
return 0
return 1
-/datum/action/proc/UpdateButtonIcon(status_only = FALSE)
+/datum/action/proc/UpdateButtonIcon(status_only = FALSE, force = FALSE)
if(button)
if(!status_only)
button.name = name
@@ -121,7 +121,7 @@
if(button.icon_state != background_icon_state)
button.icon_state = background_icon_state
- ApplyIcon(button)
+ ApplyIcon(button, force)
if(!IsAvailable())
button.color = rgb(128,0,0,128)
@@ -129,8 +129,8 @@
button.color = rgb(255,255,255,255)
return 1
-/datum/action/proc/ApplyIcon(obj/screen/movable/action_button/current_button)
- if(icon_icon && button_icon_state && current_button.button_icon_state != button_icon_state)
+/datum/action/proc/ApplyIcon(obj/screen/movable/action_button/current_button, force = FALSE)
+ if(icon_icon && button_icon_state && ((current_button.button_icon_state != button_icon_state) || force))
current_button.cut_overlays(TRUE)
current_button.add_overlay(mutable_appearance(icon_icon, button_icon_state))
current_button.button_icon_state = button_icon_state
@@ -163,11 +163,11 @@
I.ui_action_click(owner, src)
return 1
-/datum/action/item_action/ApplyIcon(obj/screen/movable/action_button/current_button)
+/datum/action/item_action/ApplyIcon(obj/screen/movable/action_button/current_button, force)
if(button_icon && button_icon_state)
// If set, use the custom icon that we set instead
// of the item appearence
- ..(current_button)
+ ..()
else if(target && current_button.appearance_cache != target.appearance) //replace with /ref comparison if this is not valid.
var/obj/item/I = target
var/old_layer = I.layer
@@ -215,7 +215,7 @@
/datum/action/item_action/set_internals
name = "Set Internals"
-/datum/action/item_action/set_internals/UpdateButtonIcon(status_only = FALSE)
+/datum/action/item_action/set_internals/UpdateButtonIcon(status_only = FALSE, force)
if(..()) //button available
if(iscarbon(owner))
var/mob/living/carbon/C = owner
@@ -253,7 +253,7 @@
if(..())
UpdateButtonIcon()
-/datum/action/item_action/toggle_unfriendly_fire/UpdateButtonIcon(status_only = FALSE)
+/datum/action/item_action/toggle_unfriendly_fire/UpdateButtonIcon(status_only = FALSE, force)
if(istype(target, /obj/item/hierophant_club))
var/obj/item/hierophant_club/H = target
if(H.friendly_fire_check)
@@ -454,7 +454,34 @@
name = "Use [target.name]"
button.name = name
+/datum/action/item_action/cult_dagger
+ name = "Draw Blood Rune"
+ desc = "Use the ritual dagger to create a powerful blood rune"
+ icon_icon = 'icons/mob/actions/actions_cult.dmi'
+ button_icon_state = "draw"
+ buttontooltipstyle = "cult"
+ background_icon_state = "bg_demon"
+/datum/action/item_action/cult_dagger/Grant(mob/M)
+ if(iscultist(M))
+ ..()
+ button.screen_loc = "6:157,4:-2"
+ button.moved = "6:157,4:-2"
+ else
+ Remove(owner)
+
+/datum/action/item_action/cult_dagger/Trigger()
+ for(var/obj/item/H in owner.held_items) //In case we were already holding another dagger
+ if(istype(H, /obj/item/melee/cultblade/dagger))
+ H.attack_self(owner)
+ return
+ var/obj/item/I = target
+ if(owner.can_equip(I, slot_hands))
+ owner.temporarilyRemoveItemFromInventory(I)
+ owner.put_in_hands(I)
+ I.attack_self(owner)
+ else
+ to_chat(owner, "Your hands are full!")
//Preset for spells
diff --git a/code/datums/antagonists/antag_datum.dm b/code/datums/antagonists/antag_datum.dm
index 6140dc6797..5f12d02398 100644
--- a/code/datums/antagonists/antag_datum.dm
+++ b/code/datums/antagonists/antag_datum.dm
@@ -72,19 +72,18 @@ GLOBAL_LIST_EMPTY(antagonists)
/datum/antagonist/proc/is_banned(mob/M)
if(!M)
return FALSE
- . = (jobban_isbanned(M,"Syndicate") || (job_rank && jobban_isbanned(M,job_rank)))
+ . = (jobban_isbanned(M, ROLE_SYNDICATE) || (job_rank && jobban_isbanned(M,job_rank)))
/datum/antagonist/proc/replace_banned_player()
set waitfor = FALSE
var/list/mob/dead/observer/candidates = pollCandidatesForMob("Do you want to play as a [name]?", "[name]", null, job_rank, 50, owner.current)
- var/mob/dead/observer/theghost = null
- if(candidates.len)
- theghost = pick(candidates)
+ if(LAZYLEN(candidates))
+ var/client/C = pick(candidates)
to_chat(owner, "Your mob has been taken over by a ghost! Appeal your job ban if you want to avoid this in the future!")
- message_admins("[key_name_admin(theghost)] has taken control of ([key_name_admin(owner.current)]) to replace a jobbaned player.")
+ message_admins("[key_name_admin(C)] has taken control of ([key_name_admin(owner.current)]) to replace a jobbaned player.")
owner.current.ghostize(0)
- owner.current.key = theghost.key
+ owner.current.key = C.key
/datum/antagonist/proc/on_removal()
remove_innate_effects()
diff --git a/code/datums/antagonists/brother.dm b/code/datums/antagonists/brother.dm
index f692335ee1..d8371d3751 100644
--- a/code/datums/antagonists/brother.dm
+++ b/code/datums/antagonists/brother.dm
@@ -2,7 +2,7 @@
name = "Brother"
antagpanel_category = "Brother"
job_rank = ROLE_BROTHER
- var/special_role = "blood brother"
+ var/special_role = ROLE_BROTHER
var/datum/team/brother_team/team
/datum/antagonist/brother/create_team(datum/team/brother_team/new_team)
diff --git a/code/datums/antagonists/changeling.dm b/code/datums/antagonists/changeling.dm
index 5d4e34cd97..2bc4900ac5 100644
--- a/code/datums/antagonists/changeling.dm
+++ b/code/datums/antagonists/changeling.dm
@@ -76,6 +76,13 @@
. = ..()
/datum/antagonist/changeling/on_removal()
+ //We'll be using this from now on
+ var/mob/living/carbon/C = owner.current
+ if(istype(C))
+ var/obj/item/organ/brain/B = C.getorganslot(ORGAN_SLOT_BRAIN)
+ if(B && (B.decoy_override != initial(B.decoy_override)))
+ B.vital = TRUE
+ B.decoy_override = FALSE
remove_changeling_powers()
owner.objectives -= objectives
. = ..()
@@ -389,7 +396,7 @@
var/datum/objective/assassinate/kill_objective = new
kill_objective.owner = owner
if(team_mode) //No backstabbing while in a team
- kill_objective.find_target_by_role(role = "Changeling", role_type = 1, invert = 1)
+ kill_objective.find_target_by_role(role = ROLE_CHANGELING, role_type = 1, invert = 1)
else
kill_objective.find_target()
objectives += kill_objective
@@ -397,7 +404,7 @@
var/datum/objective/maroon/maroon_objective = new
maroon_objective.owner = owner
if(team_mode)
- maroon_objective.find_target_by_role(role = "Changeling", role_type = 1, invert = 1)
+ maroon_objective.find_target_by_role(role = ROLE_CHANGELING, role_type = 1, invert = 1)
else
maroon_objective.find_target()
objectives += maroon_objective
@@ -419,7 +426,7 @@
var/datum/objective/escape/escape_with_identity/identity_theft = new
identity_theft.owner = owner
if(team_mode)
- identity_theft.find_target_by_role(role = "Changeling", role_type = 1, invert = 1)
+ identity_theft.find_target_by_role(role = ROLE_CHANGELING, role_type = 1, invert = 1)
else
identity_theft.find_target()
objectives += identity_theft
diff --git a/code/datums/antagonists/clockcult.dm b/code/datums/antagonists/clockcult.dm
index 2a05b14d70..067801677b 100644
--- a/code/datums/antagonists/clockcult.dm
+++ b/code/datums/antagonists/clockcult.dm
@@ -51,7 +51,7 @@
var/mob/living/current = owner.current
SSticker.mode.servants_of_ratvar += owner
SSticker.mode.update_servant_icons_added(owner)
- owner.special_role = "Servant of Ratvar"
+ owner.special_role = ROLE_SERVANT_OF_RATVAR
owner.current.log_message("Has been converted to the cult of Ratvar!", INDIVIDUAL_ATTACK_LOG)
if(issilicon(current))
if(iscyborg(current) && !silent)
diff --git a/code/datums/antagonists/datum_traitor.dm b/code/datums/antagonists/datum_traitor.dm
index 6c55563810..da34debf95 100644
--- a/code/datums/antagonists/datum_traitor.dm
+++ b/code/datums/antagonists/datum_traitor.dm
@@ -6,7 +6,7 @@
var/should_specialise = TRUE //do we split into AI and human, set to true on inital assignment only
var/ai_datum = /datum/antagonist/traitor/AI
var/human_datum = /datum/antagonist/traitor/human
- var/special_role = "traitor"
+ var/special_role = ROLE_TRAITOR
var/employer = "The Syndicate"
var/give_objectives = TRUE
var/should_give_codewords = TRUE
@@ -85,7 +85,9 @@
return
/datum/antagonist/traitor/human/forge_traitor_objectives()
- var/is_hijacker = prob(10)
+ var/is_hijacker = FALSE
+ if (GLOB.joined_player_list.len >= 30) // Less murderboning on lowpop thanks
+ is_hijacker = prob(10)
var/martyr_chance = prob(20)
var/objective_count = is_hijacker //Hijacking counts towards number of objectives
if(!SSticker.mode.exchange_blue && SSticker.mode.traitors.len >= 8) //Set up an exchange if there are enough traitors
diff --git a/code/datums/antagonists/ninja.dm b/code/datums/antagonists/ninja.dm
index 8124b8c5b8..e8a1c140ea 100644
--- a/code/datums/antagonists/ninja.dm
+++ b/code/datums/antagonists/ninja.dm
@@ -135,8 +135,8 @@
adj = "objectiveless"
else
return
- new_owner.assigned_role = "Space Ninja"
- new_owner.special_role = "Space Ninja"
+ new_owner.assigned_role = ROLE_NINJA
+ new_owner.special_role = ROLE_NINJA
new_owner.add_antag_datum(src)
message_admins("[key_name_admin(admin)] has [adj] ninja'ed [new_owner.current].")
log_admin("[key_name(admin)] has [adj] ninja'ed [new_owner.current].")
diff --git a/code/datums/antagonists/nukeop.dm b/code/datums/antagonists/nukeop.dm
index 843b142c08..1ec2e77f64 100644
--- a/code/datums/antagonists/nukeop.dm
+++ b/code/datums/antagonists/nukeop.dm
@@ -122,7 +122,7 @@
nuke_team = new_team
/datum/antagonist/nukeop/admin_add(datum/mind/new_owner,mob/admin)
- new_owner.assigned_role = "Syndicate"
+ new_owner.assigned_role = ROLE_SYNDICATE
new_owner.add_antag_datum(src)
message_admins("[key_name_admin(admin)] has nuke op'ed [new_owner.current].")
log_admin("[key_name(admin)] has nuke op'ed [new_owner.current].")
diff --git a/code/datums/antagonists/revolution.dm b/code/datums/antagonists/revolution.dm
index 1e81987e92..5ac3bfe2aa 100644
--- a/code/datums/antagonists/revolution.dm
+++ b/code/datums/antagonists/revolution.dm
@@ -184,7 +184,7 @@
carbon_mob.flash_act(1, 1)
rev_mind.current.Stun(100)
rev_mind.add_antag_datum(/datum/antagonist/rev,rev_team)
- rev_mind.special_role = "Revolutionary"
+ rev_mind.special_role = ROLE_REV
return TRUE
/datum/antagonist/rev/head/proc/demote()
diff --git a/code/datums/antagonists/wizard.dm b/code/datums/antagonists/wizard.dm
index c4f029e5e3..8aba74f70a 100644
--- a/code/datums/antagonists/wizard.dm
+++ b/code/datums/antagonists/wizard.dm
@@ -161,12 +161,12 @@
/datum/antagonist/wizard/apply_innate_effects(mob/living/mob_override)
var/mob/living/M = mob_override || owner.current
update_wiz_icons_added(M, wiz_team ? TRUE : FALSE) //Don't bother showing the icon if you're solo wizard
- M.faction |= "wizard"
+ M.faction |= ROLE_WIZARD
/datum/antagonist/wizard/remove_innate_effects(mob/living/mob_override)
var/mob/living/M = mob_override || owner.current
update_wiz_icons_removed(M)
- M.faction -= "wizard"
+ M.faction -= ROLE_WIZARD
/datum/antagonist/wizard/get_admin_commands()
diff --git a/code/datums/armor.dm b/code/datums/armor.dm
new file mode 100644
index 0000000000..cbf4b76c60
--- /dev/null
+++ b/code/datums/armor.dm
@@ -0,0 +1,70 @@
+#define ARMORID "armor-[melee]-[bullet]-[laser]-[energy]-[bomb]-[bio]-[rad]-[fire]-[acid]-[magic]"
+
+/proc/getArmor(melee = 0, bullet = 0, laser = 0, energy = 0, bomb = 0, bio = 0, rad = 0, fire = 0, acid = 0, magic = 0)
+ . = locate(ARMORID)
+ if (!.)
+ . = new /datum/armor(melee, bullet, laser, energy, bomb, bio, rad, fire, acid, magic)
+
+/datum/armor
+ datum_flags = DF_USE_TAG
+ var/melee
+ var/bullet
+ var/laser
+ var/energy
+ var/bomb
+ var/bio
+ var/rad
+ var/fire
+ var/acid
+ var/magic
+
+/datum/armor/New(melee = 0, bullet = 0, laser = 0, energy = 0, bomb = 0, bio = 0, rad = 0, fire = 0, acid = 0, magic = 0)
+ src.melee = melee
+ src.bullet = bullet
+ src.laser = laser
+ src.energy = energy
+ src.bomb = bomb
+ src.bio = bio
+ src.rad = rad
+ src.fire = fire
+ src.acid = acid
+ src.magic = magic
+ tag = ARMORID
+
+/datum/armor/proc/modifyRating(melee = 0, bullet = 0, laser = 0, energy = 0, bomb = 0, bio = 0, rad = 0, fire = 0, acid = 0, magic = 0)
+ return getArmor(src.melee+melee, src.bullet+bullet, src.laser+laser, src.energy+energy, src.bomb+bomb, src.bio+bio, src.rad+rad, src.fire+fire, src.acid+acid, src.magic+magic)
+
+/datum/armor/proc/modifyAllRatings(modifier = 0)
+ return getArmor(melee+modifier, bullet+modifier, laser+modifier, energy+modifier, bomb+modifier, bio+modifier, rad+modifier, fire+modifier, acid+modifier, magic+modifier)
+
+/datum/armor/proc/setRating(melee, bullet, laser, energy, bomb, bio, rad, fire, acid, magic)
+ return getArmor((isnull(melee) ? src.melee : melee),\
+ (isnull(bullet) ? src.bullet : bullet),\
+ (isnull(laser) ? src.laser : laser),\
+ (isnull(energy) ? src.energy : energy),\
+ (isnull(bomb) ? src.bomb : bomb),\
+ (isnull(bio) ? src.bio : bio),\
+ (isnull(rad) ? src.rad : rad),\
+ (isnull(fire) ? src.fire : fire),\
+ (isnull(acid) ? src.acid : acid),\
+ (isnull(magic) ? src.magic : magic))
+
+/datum/armor/proc/getRating(rating)
+ return vars[rating]
+
+/datum/armor/proc/getList()
+ return list("melee" = melee, "bullet" = bullet, "laser" = laser, "energy" = energy, "bomb" = bomb, "bio" = bio, "rad" = rad, "fire" = fire, "acid" = acid, "magic" = magic)
+
+/datum/armor/proc/attachArmor(datum/armor/AA)
+ return getArmor(melee+AA.melee, bullet+AA.bullet, laser+AA.laser, energy+AA.energy, bomb+AA.bomb, bio+AA.bio, rad+AA.rad, fire+AA.fire, acid+AA.acid, magic+AA.magic)
+
+/datum/armor/proc/detachArmor(datum/armor/AA)
+ return getArmor(melee-AA.melee, bullet-AA.bullet, laser-AA.laser, energy-AA.energy, bomb-AA.bomb, bio-AA.bio, rad-AA.rad, fire-AA.fire, acid-AA.acid, magic-AA.magic)
+
+/datum/armor/vv_edit_var(var_name, var_value)
+ if (var_name == NAMEOF(src, tag))
+ return FALSE
+ . = ..()
+ tag = ARMORID // update tag in case armor values were edited
+
+#undef ARMORID
diff --git a/code/datums/brain_damage/mild.dm b/code/datums/brain_damage/mild.dm
index a28a108365..87e0cb3457 100644
--- a/code/datums/brain_damage/mild.dm
+++ b/code/datums/brain_damage/mild.dm
@@ -42,7 +42,7 @@
lose_text = "You feel smart again."
/datum/brain_trauma/mild/dumbness/on_gain()
- owner.add_disability(DISABILITY_DUMB, TRAUMA_DISABILITY)
+ owner.add_trait(TRAIT_DUMB, TRAUMA_TRAIT)
..()
/datum/brain_trauma/mild/dumbness/on_life()
@@ -54,7 +54,7 @@
..()
/datum/brain_trauma/mild/dumbness/on_lose()
- owner.remove_disability(DISABILITY_DUMB, TRAUMA_DISABILITY)
+ owner.remove_trait(TRAIT_DUMB, TRAUMA_TRAIT)
owner.derpspeech = 0
..()
diff --git a/code/datums/brain_damage/phobia.dm b/code/datums/brain_damage/phobia.dm
index a775113491..15db4a3d3e 100644
--- a/code/datums/brain_damage/phobia.dm
+++ b/code/datums/brain_damage/phobia.dm
@@ -68,7 +68,7 @@
return
/datum/brain_trauma/mild/phobia/on_hear(message, speaker, message_language, raw_message, radio_freq)
- if(owner.has_disability(DISABILITY_DEAF) || world.time < next_scare) //words can't trigger you if you can't hear them *taps head*
+ if(owner.has_trait(TRAIT_DEAF) || world.time < next_scare) //words can't trigger you if you can't hear them *taps head*
return message
for(var/word in trigger_words)
if(findtext(message, word))
diff --git a/code/datums/brain_damage/severe.dm b/code/datums/brain_damage/severe.dm
index ba4eaa376e..b4d1951eb5 100644
--- a/code/datums/brain_damage/severe.dm
+++ b/code/datums/brain_damage/severe.dm
@@ -12,11 +12,11 @@
lose_text = "You suddenly remember how to speak."
/datum/brain_trauma/severe/mute/on_gain()
- owner.add_disability(DISABILITY_MUTE, TRAUMA_DISABILITY)
+ owner.add_trait(TRAIT_MUTE, TRAUMA_TRAIT)
..()
/datum/brain_trauma/severe/mute/on_lose()
- owner.remove_disability(DISABILITY_MUTE, TRAUMA_DISABILITY)
+ owner.remove_trait(TRAIT_MUTE, TRAUMA_TRAIT)
..()
/datum/brain_trauma/severe/aphasia
@@ -50,11 +50,11 @@
lose_text = "Your vision returns."
/datum/brain_trauma/severe/blindness/on_gain()
- owner.become_blind(TRAUMA_DISABILITY)
+ owner.become_blind(TRAUMA_TRAIT)
..()
/datum/brain_trauma/severe/blindness/on_lose()
- owner.cure_blind(TRAUMA_DISABILITY)
+ owner.cure_blind(TRAUMA_TRAIT)
..()
/datum/brain_trauma/severe/paralysis
@@ -120,7 +120,7 @@
stress -= 4
/datum/brain_trauma/severe/monophobia/proc/check_alone()
- if(owner.has_disability(DISABILITY_BLIND))
+ if(owner.has_trait(TRAIT_BLIND))
return TRUE
for(var/mob/M in oview(owner, 7))
if(!isliving(M)) //ghosts ain't people
@@ -182,11 +182,11 @@
lose_text = "You feel in control of your hands again."
/datum/brain_trauma/severe/discoordination/on_gain()
- owner.add_disability(DISABILITY_MONKEYLIKE, TRAUMA_DISABILITY)
+ owner.add_trait(TRAIT_MONKEYLIKE, TRAUMA_TRAIT)
..()
/datum/brain_trauma/severe/discoordination/on_lose()
- owner.remove_disability(DISABILITY_MONKEYLIKE, TRAUMA_DISABILITY)
+ owner.remove_trait(TRAIT_MONKEYLIKE, TRAUMA_TRAIT)
..()
/datum/brain_trauma/severe/pacifism
@@ -197,9 +197,9 @@
lose_text = "You no longer feel compelled to not harm."
/datum/brain_trauma/severe/pacifism/on_gain()
- owner.add_disability(DISABILITY_PACIFISM, TRAUMA_DISABILITY)
+ owner.add_trait(TRAIT_PACIFISM, TRAUMA_TRAIT)
..()
/datum/brain_trauma/severe/pacifism/on_lose()
- owner.remove_disability(DISABILITY_PACIFISM, TRAUMA_DISABILITY)
+ owner.remove_trait(TRAIT_PACIFISM, TRAUMA_TRAIT)
..()
\ No newline at end of file
diff --git a/code/datums/brain_damage/split_personality.dm b/code/datums/brain_damage/split_personality.dm
index dcb7fca3d1..9e273f19f7 100644
--- a/code/datums/brain_damage/split_personality.dm
+++ b/code/datums/brain_damage/split_personality.dm
@@ -192,7 +192,7 @@
return //no random switching
/datum/brain_trauma/severe/split_personality/brainwashing/on_hear(message, speaker, message_language, raw_message, radio_freq)
- if(owner.has_disability(DISABILITY_DEAF) || owner == speaker)
+ if(owner.has_trait(TRAIT_DEAF) || owner == speaker)
return message
if(findtext(message, codeword))
message = replacetext(message, codeword, "[codeword]")
diff --git a/code/datums/browser.dm b/code/datums/browser.dm
index f863a5007d..d525b52ca5 100644
--- a/code/datums/browser.dm
+++ b/code/datums/browser.dm
@@ -120,13 +120,7 @@
else
WARNING("Browser [title] tried to close with a null ID")
-/datum/browser/alert
- var/selectedbutton = 0
- var/opentime = 0
- var/timeout
- var/stealfocus
-
-/datum/browser/alert/New(User,Message,Title,Button1="Ok",Button2,Button3,StealFocus = 1,Timeout=6000)
+/datum/browser/modal/alert/New(User,Message,Title,Button1="Ok",Button2,Button3,StealFocus = 1,Timeout=6000)
if (!User)
return
@@ -142,44 +136,10 @@
output += {""}
- ..(User, ckey("[User]-[Message]-[Title]-[world.time]-[rand(1,10000)]"), Title, 350, 150, src)
+ ..(User, ckey("[User]-[Message]-[Title]-[world.time]-[rand(1,10000)]"), Title, 350, 150, src, StealFocus, Timeout)
set_content(output)
- stealfocus = StealFocus
- if (!StealFocus)
- window_options += "focus=false;"
- timeout = Timeout
-/datum/browser/alert/open()
- set waitfor = 0
- opentime = world.time
-
- if (stealfocus)
- . = ..(use_onclose = 1)
- else
- var/focusedwindow = winget(user, null, "focus")
- . = ..(use_onclose = 1)
-
- //waits for the window to show up client side before attempting to un-focus it
- //winexists sleeps until it gets a reply from the client, so we don't need to bother sleeping
- for (var/i in 1 to 10)
- if (user && winexists(user, window_id))
- if (focusedwindow)
- winset(user, focusedwindow, "focus=true")
- else
- winset(user, "mapwindow", "focus=true")
- break
- if (timeout)
- addtimer(CALLBACK(src, .proc/close), timeout)
-
-/datum/browser/alert/close()
- .=..()
- opentime = 0
-
-/datum/browser/alert/proc/wait()
- while (opentime && selectedbutton <= 0 && (!timeout || opentime+timeout > world.time))
- stoplag(1)
-
-/datum/browser/alert/Topic(href,href_list)
+/datum/browser/modal/alert/Topic(href,href_list)
if (href_list["close"] || !user || !user.client)
opentime = 0
return
@@ -210,12 +170,141 @@
User = C.mob
else
return
- var/datum/browser/alert/A = new(User, Message, Title, Button1, Button2, Button3, StealFocus, Timeout)
+ var/datum/browser/modal/alert/A = new(User, Message, Title, Button1, Button2, Button3, StealFocus, Timeout)
A.open()
A.wait()
if (A.selectedbutton)
return A.selectedbutton
+/datum/browser/modal
+ var/opentime = 0
+ var/timeout
+ var/selectedbutton = 0
+ var/stealfocus
+
+/datum/browser/modal/New(nuser, nwindow_id, ntitle = 0, nwidth = 0, nheight = 0, var/atom/nref = null, StealFocus = 1, Timeout = 6000)
+ ..()
+ stealfocus = StealFocus
+ if (!StealFocus)
+ window_options += "focus=false;"
+ timeout = Timeout
+
+
+/datum/browser/modal/close()
+ .=..()
+ opentime = 0
+
+/datum/browser/modal/open()
+ set waitfor = 0
+ opentime = world.time
+
+ if (stealfocus)
+ . = ..(use_onclose = 1)
+ else
+ var/focusedwindow = winget(user, null, "focus")
+ . = ..(use_onclose = 1)
+
+ //waits for the window to show up client side before attempting to un-focus it
+ //winexists sleeps until it gets a reply from the client, so we don't need to bother sleeping
+ for (var/i in 1 to 10)
+ if (user && winexists(user, window_id))
+ if (focusedwindow)
+ winset(user, focusedwindow, "focus=true")
+ else
+ winset(user, "mapwindow", "focus=true")
+ break
+ if (timeout)
+ addtimer(CALLBACK(src, .proc/close), timeout)
+
+/datum/browser/modal/proc/wait()
+ while (opentime && selectedbutton <= 0 && (!timeout || opentime+timeout > world.time))
+ stoplag(1)
+
+/datum/browser/modal/listpicker
+ var/valueslist = list()
+
+/datum/browser/modal/listpicker/New(User,Message,Title,Button1="Ok",Button2,Button3,StealFocus = 1, Timeout = FALSE,list/values,inputtype="checkbox")
+ if (!User)
+ return
+
+ var/output = {"